1 write to Name
System.Diagnostics.DiagnosticSource (1)
System\Diagnostics\Metrics\MeterOptions.cs (1)
51
Name
= name;
6 references to Name
Microsoft.Extensions.Diagnostics (3)
Metrics\DefaultMeterFactory.cs (3)
28
Debug.Assert(options.
Name
is not null);
37
if (_cachedMeters.TryGetValue(options.
Name
, out List<FactoryMeter>? meterList))
50
_cachedMeters.Add(options.
Name
, meterList);
Microsoft.Extensions.Diagnostics.ResourceMonitoring.Tests (1)
Helpers\TestMeterFactory.cs (1)
16
var meter = new Meter(options.
Name
, options.Version, Array.Empty<KeyValuePair<string, object?>>(), scope: this);
System.Diagnostics.DiagnosticSource (2)
System\Diagnostics\Metrics\Meter.cs (2)
34
Debug.Assert(options.
Name
is not null);
36
Initialize(options.
Name
, options.Version, options.Tags, options.Scope, options.TelemetrySchemaUrl);