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