3 writes to OtlpGrpcEndpointUrl
Aspire.Hosting (1)
Dashboard\DashboardOptions.cs (1)
30
options.
OtlpGrpcEndpointUrl
= configuration.GetString(KnownConfigNames.DashboardOtlpGrpcEndpointUrl, KnownConfigNames.Legacy.DashboardOtlpGrpcEndpointUrl);
Aspire.Hosting.Tests (2)
Dashboard\DashboardLifecycleHookTests.cs (2)
130
OtlpGrpcEndpointUrl
= "http://localhost:4317"
166
OtlpGrpcEndpointUrl
= "http://localhost:4317",
3 references to OtlpGrpcEndpointUrl
Aspire.Hosting (3)
Dashboard\DashboardLifecycleHook.cs (2)
156
var otlpGrpcEndpointUrl = options.
OtlpGrpcEndpointUrl
;
249
Debug.Assert(options.
OtlpGrpcEndpointUrl
is not null || options.OtlpHttpEndpointUrl is not null, "OtlpGrpcEndpointUrl and OtlpHttpEndpointUrl should not both be null");
Dashboard\DashboardOptions.cs (1)
53
if (string.IsNullOrEmpty(options.
OtlpGrpcEndpointUrl
) && string.IsNullOrEmpty(options.OtlpHttpEndpointUrl))