6 writes to GrpcEndpointUrl
Aspire.Dashboard (1)
Configuration\PostConfigureDashboardOptions.cs (1)
57options.Otlp.GrpcEndpointUrl = otlpGrpcUrl;
Aspire.Dashboard.Components.Tests (1)
Layout\MainLayoutTests.cs (1)
1087o.Otlp.GrpcEndpointUrl = "http://localhost:4317";
Aspire.Dashboard.Tests (4)
DashboardOptionsTests.cs (3)
34GrpcEndpointUrl = "http://localhost:4317" 268options.Otlp.GrpcEndpointUrl = null; 281options.Otlp.GrpcEndpointUrl = "invalid";
OtlpApiKeyAuthenticationHandlerTests.cs (1)
82GrpcEndpointUrl = "http://localhost",
4 references to GrpcEndpointUrl
Aspire.Dashboard (4)
Configuration\DashboardOptions.cs (3)
131if (!string.IsNullOrEmpty(GrpcEndpointUrl) && !OptionsHelpers.TryParseBindingAddress(GrpcEndpointUrl, out _parsedGrpcEndpointAddress)) 133errorMessage = $"Failed to parse OTLP gRPC endpoint URL '{GrpcEndpointUrl}'.";
Configuration\ValidateDashboardOptions.cs (1)
78var hasOtlpEndpoint = !string.IsNullOrEmpty(options.Otlp.GrpcEndpointUrl) || !string.IsNullOrEmpty(options.Otlp.HttpEndpointUrl);