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