5 writes to GrpcEndpointUrl
Aspire.Dashboard (1)
Configuration\PostConfigureDashboardOptions.cs (1)
32options.Otlp.GrpcEndpointUrl = otlpGrpcUrl;
Aspire.Dashboard.Tests (4)
DashboardOptionsTests.cs (3)
25GrpcEndpointUrl = "http://localhost:4317" 213options.Otlp.GrpcEndpointUrl = null; 228options.Otlp.GrpcEndpointUrl = "invalid";
OtlpApiKeyAuthenticationHandlerTests.cs (1)
81GrpcEndpointUrl = "http://localhost",
4 references to GrpcEndpointUrl
Aspire.Dashboard (4)
Configuration\DashboardOptions.cs (4)
108if (string.IsNullOrEmpty(GrpcEndpointUrl) && string.IsNullOrEmpty(HttpEndpointUrl)) 114if (!string.IsNullOrEmpty(GrpcEndpointUrl) && !Uri.TryCreate(GrpcEndpointUrl, UriKind.Absolute, out _parsedGrpcEndpointUrl)) 116errorMessage = $"Failed to parse OTLP gRPC endpoint URL '{GrpcEndpointUrl}'.";