3 implementations of GetLogsForTraceAsync
Aspire.Dashboard (1)
Otlp\Storage\SqliteTelemetryRepository.cs (1)
196
public async Task<List<OtlpLogEntry>>
GetLogsForTraceAsync
(string traceId, CancellationToken cancellationToken)
Aspire.Dashboard.Components.Tests (1)
Shared\TestTelemetryRepository.cs (1)
38
public Task<List<OtlpLogEntry>>
GetLogsForTraceAsync
(string traceId, CancellationToken cancellationToken) => inner.GetLogsForTraceAsync(traceId, cancellationToken);
Aspire.Dashboard.Tests (1)
tests\Shared\Telemetry\InMemoryTelemetryRepository.cs (1)
630
public async Task<List<OtlpLogEntry>>
GetLogsForTraceAsync
(string traceId, CancellationToken cancellationToken)
2 references to GetLogsForTraceAsync
Aspire.Dashboard (1)
Model\ExportHelpers.cs (1)
49
var logs = await telemetryRepository.
GetLogsForTraceAsync
(trace.TraceId, cancellationToken).ConfigureAwait(false);
Aspire.Dashboard.Components.Tests (1)
Shared\TestTelemetryRepository.cs (1)
38
public Task<List<OtlpLogEntry>> GetLogsForTraceAsync(string traceId, CancellationToken cancellationToken) => inner.
GetLogsForTraceAsync
(traceId, cancellationToken);