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