5 writes to GrpcEndpointUrl
Aspire.Dashboard (1)
Configuration\PostConfigureDashboardOptions.cs (1)
33
options.Otlp.
GrpcEndpointUrl
= otlpGrpcUrl;
Aspire.Dashboard.Tests (4)
DashboardOptionsTests.cs (3)
25
GrpcEndpointUrl
= "http://localhost:4317"
213
options.Otlp.
GrpcEndpointUrl
= null;
228
options.Otlp.
GrpcEndpointUrl
= "invalid";
OtlpApiKeyAuthenticationHandlerTests.cs (1)
82
GrpcEndpointUrl
= "http://localhost",
4 references to GrpcEndpointUrl
Aspire.Dashboard (4)
Configuration\DashboardOptions.cs (4)
109
if (string.IsNullOrEmpty(
GrpcEndpointUrl
) && string.IsNullOrEmpty(HttpEndpointUrl))
115
if (!string.IsNullOrEmpty(
GrpcEndpointUrl
) && !OptionsHelpers.TryParseBindingAddress(
GrpcEndpointUrl
, out _parsedGrpcEndpointAddress))
117
errorMessage = $"Failed to parse OTLP gRPC endpoint URL '{
GrpcEndpointUrl
}'.";