3 implementations of GetLogsForSpanAsync
Aspire.Dashboard (1)
Otlp\Storage\SqliteTelemetryRepository.cs (1)
181
public async Task<List<OtlpLogEntry>>
GetLogsForSpanAsync
(string traceId, string spanId, CancellationToken cancellationToken)
Aspire.Dashboard.Components.Tests (1)
Shared\TestTelemetryRepository.cs (1)
37
public Task<List<OtlpLogEntry>>
GetLogsForSpanAsync
(string traceId, string spanId, CancellationToken cancellationToken) => inner.GetLogsForSpanAsync(traceId, spanId, cancellationToken);
Aspire.Dashboard.Tests (1)
tests\Shared\Telemetry\InMemoryTelemetryRepository.cs (1)
594
public async Task<List<OtlpLogEntry>>
GetLogsForSpanAsync
(string traceId, string spanId, CancellationToken cancellationToken)
2 references to GetLogsForSpanAsync
Aspire.Dashboard (1)
Model\ExportHelpers.cs (1)
26
var logs = await telemetryRepository.
GetLogsForSpanAsync
(span.TraceId, span.SpanId, cancellationToken).ConfigureAwait(false);
Aspire.Dashboard.Components.Tests (1)
Shared\TestTelemetryRepository.cs (1)
37
public Task<List<OtlpLogEntry>> GetLogsForSpanAsync(string traceId, string spanId, CancellationToken cancellationToken) => inner.
GetLogsForSpanAsync
(traceId, spanId, cancellationToken);