4 implementations of CreateTelemetryRepository
Aspire.Dashboard (1)
ServiceClient\RepositoryFactory.cs (1)
18
public ITelemetryRepository
CreateTelemetryRepository
(DashboardSqliteDatabase database) =>
Aspire.Dashboard.Components.Tests (1)
Shared\FluentUISetupHelpers.cs (1)
322
public ITelemetryRepository
CreateTelemetryRepository
(DashboardSqliteDatabase database) => telemetryRepository;
Aspire.Dashboard.Tests (2)
Model\DashboardDataSourceTests.cs (1)
1337
public ITelemetryRepository
CreateTelemetryRepository
(DashboardSqliteDatabase database)
Shared\TestDashboardDataSource.cs (1)
36
public 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)
1340
return inner.
CreateTelemetryRepository
(database);