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