4 implementations of CreateTelemetryRepository
Aspire.Dashboard (1)
ServiceClient\RepositoryFactory.cs (1)
18public ITelemetryRepository CreateTelemetryRepository(DashboardSqliteDatabase database) =>
Aspire.Dashboard.Components.Tests (1)
Shared\FluentUISetupHelpers.cs (1)
322public ITelemetryRepository CreateTelemetryRepository(DashboardSqliteDatabase database) => telemetryRepository;
Aspire.Dashboard.Tests (2)
Model\DashboardDataSourceTests.cs (1)
1337public ITelemetryRepository CreateTelemetryRepository(DashboardSqliteDatabase database)
Shared\TestDashboardDataSource.cs (1)
36public ITelemetryRepository CreateTelemetryRepository(DashboardSqliteDatabase database) => telemetryRepository;
3 references to CreateTelemetryRepository
Aspire.Dashboard (2)
ServiceClient\DashboardDataSourcePool.cs (2)
55() => _repositoryFactory.CreateTelemetryRepository(database), 122() => _repositoryFactory.CreateTelemetryRepository(entry.Database),
Aspire.Dashboard.Tests (1)
Model\DashboardDataSourceTests.cs (1)
1340return inner.CreateTelemetryRepository(database);