3 instantiations of OtlpInstrumentKey
Aspire.Dashboard (3)
Otlp\Model\OtlpInstrument.cs (1)
23
public OtlpInstrumentKey GetKey() =>
new
(Parent.Name, Name);
Otlp\Model\OtlpResource.cs (2)
88
var instrumentKey = new
OtlpInstrumentKey
(scope.Name, metric.Name);
245
if (!_instruments.TryGetValue(new
OtlpInstrumentKey
(meterName, instrumentName), out var instrument))
4 references to OtlpInstrumentKey
Aspire.Dashboard (4)
Components\Controls\Chart\ChartBase.cs (1)
30
private
OtlpInstrumentKey
? _renderedInstrument;
Otlp\Model\OtlpInstrument.cs (1)
23
public
OtlpInstrumentKey
GetKey() => new(Parent.Name, Name);
Otlp\Model\OtlpResource.cs (2)
49
private readonly Dictionary<
OtlpInstrumentKey
, OtlpInstrument> _instruments = new();
88
var
instrumentKey = new OtlpInstrumentKey(scope.Name, metric.Name);