1 instantiation of CachedInstrument
Aspire.Dashboard (1)
Otlp\Storage\SqliteTelemetryRepository.Caching.cs (1)
670instrument = new CachedInstrument(
9 references to CachedInstrument
Aspire.Dashboard (9)
Otlp\Storage\SqliteTelemetryRepository.Caching.cs (6)
261private CachedInstrument GetOrAddCachedInstrument( 276if (resourceScope.Instruments.TryGetValue(metric.Name, out var instrument)) 666private static CachedInstrument AddCachedInstrument(CachedResource resource, CachedResourceScope resourceScope, CachedInstrumentRecord record) 668if (!resourceScope.Instruments.TryGetValue(record.InstrumentName, out var instrument)) 701private List<CachedInstrument> GetCachedInstruments(ResourceKey resourceKey, string meterName, string instrumentName) 777public Dictionary<string, CachedInstrument> Instruments { get; } = new(StringComparer.Ordinal);
Otlp\Storage\SqliteTelemetryRepository.Metrics.Reads.cs (2)
162IReadOnlyList<CachedInstrument> instruments, 263IReadOnlyList<CachedInstrument> instruments,
Otlp\Storage\SqliteTelemetryRepository.Metrics.Writes.cs (1)
131CachedInstrument cachedInstrument;