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