1 instantiation of CircularBuffer
Aspire.Dashboard (1)
Otlp\Model\MetricValues\DimensionScope.cs (1)
29_values = new(capacity);
8 references to CircularBuffer
Aspire.Dashboard (8)
Otlp\Model\MetricValues\DimensionScope.cs (1)
18private readonly CircularBuffer<MetricValueBase> _values;
Otlp\Storage\TelemetryRepository.cs (3)
38private readonly CircularBuffer<OtlpLogEntry> _logs; 45private readonly CircularBuffer<OtlpTrace> _traces; 907static bool TryGetTraceById(CircularBuffer<OtlpTrace> traces, ReadOnlyMemory<byte> traceId, [NotNullWhen(true)] out OtlpTrace? trace)
src\Shared\CircularBuffer.cs (3)
15[DebuggerTypeProxy(typeof(CircularBuffer<>.CircularBufferDebugView))] 285private sealed class CircularBufferDebugView(CircularBuffer<T> collection) 287private readonly CircularBuffer<T> _collection = collection;
src\Shared\ConsoleLogs\LogEntries.cs (1)
18private readonly CircularBuffer<LogEntry> _logEntries = new(maximumEntryCount);