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)
18
private readonly
CircularBuffer
<MetricValueBase> _values;
Otlp\Storage\TelemetryRepository.cs (3)
38
private readonly
CircularBuffer
<OtlpLogEntry> _logs;
45
private readonly
CircularBuffer
<OtlpTrace> _traces;
907
static bool TryGetTraceById(
CircularBuffer
<OtlpTrace> traces, ReadOnlyMemory<byte> traceId, [NotNullWhen(true)] out OtlpTrace? trace)
src\Shared\CircularBuffer.cs (3)
15
[DebuggerTypeProxy(typeof(
CircularBuffer
<>.CircularBufferDebugView))]
285
private sealed class CircularBufferDebugView(
CircularBuffer
<T> collection)
287
private readonly
CircularBuffer
<T> _collection = collection;
src\Shared\ConsoleLogs\LogEntries.cs (1)
18
private readonly
CircularBuffer
<LogEntry> _logEntries = new(maximumEntryCount);