1 write to OtlpHttpEndpointUrl
Aspire.Hosting (1)
Dashboard\DashboardOptions.cs (1)
31
options.
OtlpHttpEndpointUrl
= configuration.GetString(KnownConfigNames.DashboardOtlpHttpEndpointUrl, KnownConfigNames.Legacy.DashboardOtlpHttpEndpointUrl);
4 references to OtlpHttpEndpointUrl
Aspire.Hosting (4)
Dashboard\DashboardLifecycleHook.cs (3)
205
Debug.Assert(options.OtlpGrpcEndpointUrl is not null || options.
OtlpHttpEndpointUrl
is not null, "OtlpGrpcEndpointUrl and OtlpHttpEndpointUrl should not both be null");
220
if (options.
OtlpHttpEndpointUrl
!= null)
222
context.EnvironmentVariables[DashboardConfigNames.DashboardOtlpHttpUrlName.EnvVarName] = options.
OtlpHttpEndpointUrl
;
Dashboard\DashboardOptions.cs (1)
53
if (string.IsNullOrEmpty(options.OtlpGrpcEndpointUrl) && string.IsNullOrEmpty(options.
OtlpHttpEndpointUrl
))