3 implementations of MarkViewedErrorLogs
Aspire.Dashboard (1)
Otlp\Storage\SqliteTelemetryRepository.Runtime.cs (1)
61public void MarkViewedErrorLogs(ResourceKey? key)
Aspire.Dashboard.Components.Tests (1)
Shared\TestTelemetryRepository.cs (1)
26public void MarkViewedErrorLogs(ResourceKey? key) => inner.MarkViewedErrorLogs(key);
Aspire.Dashboard.Tests (1)
tests\Shared\Telemetry\InMemoryTelemetryRepository.cs (1)
232public void MarkViewedErrorLogs(ResourceKey? key)
4 references to MarkViewedErrorLogs
Aspire.Dashboard (1)
Components\Pages\StructuredLogs.razor.cs (1)
165TelemetryRepository.MarkViewedErrorLogs(ViewModel.ResourceKey);
Aspire.Dashboard.Components.Tests (1)
Shared\TestTelemetryRepository.cs (1)
26public void MarkViewedErrorLogs(ResourceKey? key) => inner.MarkViewedErrorLogs(key);
Aspire.Dashboard.Tests (2)
TelemetryRepositoryTests\LogTests.cs (2)
508repositoryContext.Repository.MarkViewedErrorLogs(new ResourceKey("TestService", "1")); 517repositoryContext.Repository.MarkViewedErrorLogs(null);