2 implementations of GetLogPropertyKeysAsync
Aspire.Dashboard (1)
Otlp\Storage\SqliteTelemetryRepository.cs (1)
210
public Task<List<string>>
GetLogPropertyKeysAsync
(ResourceKey? resourceKey, CancellationToken cancellationToken) =>
Aspire.Dashboard.Components.Tests (1)
Shared\TestTelemetryRepository.cs (1)
39
public Task<List<string>>
GetLogPropertyKeysAsync
(ResourceKey? resourceKey, CancellationToken cancellationToken) => inner.GetLogPropertyKeysAsync(resourceKey, cancellationToken);
5 references to GetLogPropertyKeysAsync
Aspire.Dashboard (1)
Components\Pages\StructuredLogs.razor.cs (1)
340
getPropertyKeysAsync: cancellationToken => TelemetryRepository.
GetLogPropertyKeysAsync
(resourceKey, cancellationToken),
Aspire.Dashboard.Components.Tests (1)
Shared\TestTelemetryRepository.cs (1)
39
public Task<List<string>> GetLogPropertyKeysAsync(ResourceKey? resourceKey, CancellationToken cancellationToken) => inner.
GetLogPropertyKeysAsync
(resourceKey, cancellationToken);
Aspire.Dashboard.Tests (3)
TelemetryRepositoryTests\LogTests.cs (3)
90
var propertyKeys = await repositoryContext.Repository.
GetLogPropertyKeysAsync
(resources[0].ResourceKey, TestContext.Current.CancellationToken);
693
var propertyKeys = await repositoryContext.Repository.
GetLogPropertyKeysAsync
(new ResourceKey("TestService", "UnknownResource"), TestContext.Current.CancellationToken);
1348
var propertyKeys = await repositoryContext.Repository.
GetLogPropertyKeysAsync
(resourceKey, TestContext.Current.CancellationToken);