4 writes to OtlpGrpcEndpointUrl
Aspire.Hosting (1)
Dashboard\DashboardOptions.cs (1)
33
options.
OtlpGrpcEndpointUrl
= configuration.GetString(KnownConfigNames.DashboardOtlpGrpcEndpointUrl, KnownConfigNames.Legacy.DashboardOtlpGrpcEndpointUrl);
Aspire.Hosting.Tests (3)
Dashboard\DashboardLifecycleHookTests.cs (3)
130
OtlpGrpcEndpointUrl
= "http://localhost:4317"
178
OtlpGrpcEndpointUrl
= "http://localhost:4317",
220
OtlpGrpcEndpointUrl
= "http://localhost:4317",
3 references to OtlpGrpcEndpointUrl
Aspire.Hosting (3)
Dashboard\DashboardEventHandlers.cs (2)
376
var otlpGrpcEndpointUrl = options.
OtlpGrpcEndpointUrl
;
522
Debug.Assert(options.
OtlpGrpcEndpointUrl
is not null || options.OtlpHttpEndpointUrl is not null, "OtlpGrpcEndpointUrl and OtlpHttpEndpointUrl should not both be null");
Dashboard\DashboardOptions.cs (1)
59
if (string.IsNullOrEmpty(options.
OtlpGrpcEndpointUrl
) && string.IsNullOrEmpty(options.OtlpHttpEndpointUrl))