12 references to TracesUrl
Aspire.Dashboard (6)
Components\Layout\MainLayout.razor.cs (1)
305
NavigationManager.NavigateTo(DashboardUrls.
TracesUrl
());
Components\Layout\MobileNavMenu.razor.cs (2)
65
() => NavigateToAsync(DashboardUrls.
TracesUrl
()),
67
LinkMatchRegex: GetNonIndexPageRegex(DashboardUrls.
TracesUrl
())
Components\Pages\Traces.razor.cs (1)
338
return DashboardUrls.
TracesUrl
(
Components_Layout_DesktopNavMenu_razor.g.cs (1)
467
DashboardUrls.
TracesUrl
()
Model\ResourceMenuItems.cs (1)
183
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);