10 references to DatabaseFileName
Aspire.Dashboard (7)
Model\DashboardSqliteOutgoingPeerResolver.cs (3)
14var isDashboardSqlite = string.Equals(attributes.GetValue(OtlpSpan.PeerServiceAttributeKey), DashboardRunStore.DatabaseFileName, StringComparison.Ordinal) && 16string.Equals(attributes.GetValue("db.namespace"), DashboardRunStore.DatabaseFileName, StringComparison.Ordinal); 18name = isDashboardSqlite ? DashboardRunStore.DatabaseFileName : null;
ServiceClient\DashboardRunStore.cs (4)
127DatabasePath = Path.Combine(CurrentWorkingDirectory, DatabaseFileName); 135DatabasePath = Path.Combine(CurrentWorkingDirectory, DatabaseFileName); 157DatabasePath = Path.Combine(CurrentWorkingDirectory, DatabaseFileName); 216!File.Exists(Path.Combine(directory, DatabaseFileName)))
Aspire.Dashboard.Tests (3)
Model\DashboardDataSourceTests.cs (3)
1018var historicalDatabasePath = Path.Combine(historicalDirectory, DashboardRunStore.DatabaseFileName); 1024var malformedDatabasePath = Path.Combine(malformedDirectory, DashboardRunStore.DatabaseFileName); 1050DatabasePath = Path.Combine(workspace.Path, "unavailable", DashboardRunStore.DatabaseFileName),