10 references to TelemetryLogsApiUrl
aspire (4)
Commands\ExportCommand.cs (1)
294
var url = DashboardUrls.
TelemetryLogsApiUrl
(baseUrl, resolvedResources, limit: TelemetryCommandHelpers.MaxTelemetryLimit);
Commands\TelemetryLogsCommand.cs (1)
146
var url = DashboardUrls.
TelemetryLogsApiUrl
(baseUrl, resolvedResources, traceId: traceId, severity: severity, limit: effectiveLimit, follow: follow ? true : null, search: search);
Mcp\Tools\ListStructuredLogsTool.cs (1)
95
var url = DashboardUrls.
TelemetryLogsApiUrl
(apiBaseUrl, resolvedResources, limit: TelemetryCommandHelpers.MaxTelemetryLimit, search: search);
Mcp\Tools\ListTraceStructuredLogsTool.cs (1)
85
var url = DashboardUrls.
TelemetryLogsApiUrl
(apiBaseUrl, traceId: traceId, limit: TelemetryCommandHelpers.MaxTelemetryLimit, search: search);
Aspire.Cli.Tests (6)
Commands\TelemetryCommandTests.cs (6)
40
var result = DashboardUrls.
TelemetryLogsApiUrl
("https://localhost:5000");
47
var result = DashboardUrls.
TelemetryLogsApiUrl
("https://localhost:5000", ["frontend"]);
54
var result = DashboardUrls.
TelemetryLogsApiUrl
("https://localhost:5000", ["frontend-abc123", "frontend-xyz789"]);
61
var result = DashboardUrls.
TelemetryLogsApiUrl
("https://localhost:5000", ["frontend"], traceId: "abc123", severity: "Error", limit: 10, follow: true);
68
var result = DashboardUrls.
TelemetryLogsApiUrl
("https://localhost:5000", ["frontend"], traceId: null, limit: 10);
75
var result = DashboardUrls.
TelemetryLogsApiUrl
("https://localhost:5000", ["service with spaces"]);