3 implementations of GetLogSummariesAsync
Aspire.Dashboard (1)
Otlp\Storage\SqliteTelemetryRepository.cs (1)
178public Task<PagedResult<LogSummary>> GetLogSummariesAsync(GetLogsContext context, CancellationToken cancellationToken) =>
Aspire.Dashboard.Components.Tests (1)
Shared\TestTelemetryRepository.cs (1)
34public Task<PagedResult<LogSummary>> GetLogSummariesAsync(GetLogsContext context, CancellationToken cancellationToken) =>
Aspire.Dashboard.Tests (1)
tests\Shared\Telemetry\InMemoryTelemetryRepository.cs (1)
535public Task<PagedResult<LogSummary>> GetLogSummariesAsync(GetLogsContext context, CancellationToken cancellationToken)
7 references to GetLogSummariesAsync
Aspire.Dashboard (2)
Components\Pages\TraceDetail.razor.cs (1)
278var result = (await TelemetryRepository.GetLogSummariesAsync(new GetLogsContext
Model\StructuredLogsViewModel.cs (1)
86logs = await _dataSource.TelemetryRepository.GetLogSummariesAsync(new GetLogsContext
Aspire.Dashboard.Components.Tests (1)
Shared\TestTelemetryRepository.cs (1)
35GetLogSummariesAsyncHandler?.Invoke(context, cancellationToken) ?? inner.GetLogSummariesAsync(context, cancellationToken);
Aspire.Dashboard.Tests (4)
TelemetryRepositoryTests\LogTests.cs (4)
185var summaries = await repositoryContext.Repository.GetLogSummariesAsync(context, cancellationToken: CancellationToken.None); 225var latestSummaries = await repositoryContext.Repository.GetLogSummariesAsync(latestContext, cancellationToken: CancellationToken.None); 252var filtered = await repositoryContext.Repository.GetLogSummariesAsync(new GetLogsContext 270var emptyPage = await repositoryContext.Repository.GetLogSummariesAsync(new GetLogsContext