11 references to TracesUrl
Aspire.Dashboard (5)
Components\Layout\MainLayout.razor.cs (1)
267
NavigationManager.NavigateTo(DashboardUrls.
TracesUrl
());
Components\Layout\MobileNavMenu.razor.cs (2)
62
() => NavigateToAsync(DashboardUrls.
TracesUrl
()),
64
LinkMatchRegex: GetNonIndexPageRegex(DashboardUrls.
TracesUrl
())
Components\Pages\Traces.razor.cs (1)
289
return DashboardUrls.
TracesUrl
(
Model\ResourceMenuItems.cs (1)
87
navigationManager.NavigateTo(DashboardUrls.
TracesUrl
(resource: getResourceName(resource)));
Aspire.Dashboard.Tests (6)
DashboardUrlsTests.cs (1)
58
Assert.Equal($"/traces/resource/resource{PlaceholderAllCharactersEncoded}", DashboardUrls.
TracesUrl
(resource: $"resource{PlaceholderInput}"));
Integration\FrontendBrowserTokenAuthTests.cs (5)
64
var response1 = await client.GetAsync(DashboardUrls.LoginUrl(returnUrl: DashboardUrls.
TracesUrl
(), token: apiKey)).DefaultTimeout();
68
Assert.Equal(DashboardUrls.
TracesUrl
(), response1.RequestMessage!.RequestUri!.PathAndQuery);
95
var response = await client.GetAsync(DashboardUrls.LoginUrl(returnUrl: DashboardUrls.
TracesUrl
(), token: apiKey)).DefaultTimeout();
119
var response = await client.GetAsync(DashboardUrls.LoginUrl(returnUrl: DashboardUrls.
TracesUrl
(), token: "Wrong!")).DefaultTimeout();
123
Assert.Equal(DashboardUrls.LoginUrl(returnUrl: DashboardUrls.
TracesUrl
()), response.RequestMessage!.RequestUri!.PathAndQuery, ignoreCase: true);