1 write to OtlpHttpEndpointUrl
Aspire.Hosting (1)
Dashboard\DashboardOptions.cs (1)
33
options.
OtlpHttpEndpointUrl
= configuration.GetString(KnownConfigNames.DashboardOtlpHttpEndpointUrl, KnownConfigNames.Legacy.DashboardOtlpHttpEndpointUrl);
4 references to OtlpHttpEndpointUrl
Aspire.Hosting (4)
Dashboard\DashboardEventHandlers.cs (3)
372
var otlpHttpEndpointUrl = options.
OtlpHttpEndpointUrl
;
495
Debug.Assert(options.OtlpGrpcEndpointUrl is not null || options.
OtlpHttpEndpointUrl
is not null, "OtlpGrpcEndpointUrl and OtlpHttpEndpointUrl should not both be null");
509
if (options.
OtlpHttpEndpointUrl
!= null)
Dashboard\DashboardOptions.cs (1)
57
if (string.IsNullOrEmpty(options.OtlpGrpcEndpointUrl) && string.IsNullOrEmpty(options.
OtlpHttpEndpointUrl
))