10 references to DatabaseFileName
Aspire.Dashboard (7)
Model\DashboardSqliteOutgoingPeerResolver.cs (3)
14
var isDashboardSqlite = string.Equals(attributes.GetValue(OtlpSpan.PeerServiceAttributeKey), DashboardRunStore.
DatabaseFileName
, StringComparison.Ordinal) &&
16
string.Equals(attributes.GetValue("db.namespace"), DashboardRunStore.
DatabaseFileName
, StringComparison.Ordinal);
18
name = isDashboardSqlite ? DashboardRunStore.
DatabaseFileName
: null;
ServiceClient\DashboardRunStore.cs (4)
123
DatabasePath = Path.Combine(RunDirectory,
DatabaseFileName
);
132
DatabasePath = Path.Combine(RunDirectory,
DatabaseFileName
);
141
DatabasePath = Path.Combine(RunDirectory,
DatabaseFileName
);
200
!File.Exists(Path.Combine(directory,
DatabaseFileName
)))
Aspire.Dashboard.Tests (3)
Model\DashboardDataSourceTests.cs (3)
962
var historicalDatabasePath = Path.Combine(historicalDirectory, DashboardRunStore.
DatabaseFileName
);
968
var malformedDatabasePath = Path.Combine(malformedDirectory, DashboardRunStore.
DatabaseFileName
);
994
DatabasePath = Path.Combine(workspace.Path, "unavailable", DashboardRunStore.
DatabaseFileName
),