1 write to OtlpGrpcEndpointUrl
Aspire.Hosting (1)
Dashboard\DashboardOptions.cs (1)
30
options.
OtlpGrpcEndpointUrl
= configuration.GetString(KnownConfigNames.DashboardOtlpGrpcEndpointUrl, KnownConfigNames.Legacy.DashboardOtlpGrpcEndpointUrl);
4 references to OtlpGrpcEndpointUrl
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");
216
if (options.
OtlpGrpcEndpointUrl
!= null)
218
context.EnvironmentVariables[DashboardConfigNames.DashboardOtlpGrpcUrlName.EnvVarName] = options.
OtlpGrpcEndpointUrl
;
Dashboard\DashboardOptions.cs (1)
53
if (string.IsNullOrEmpty(options.
OtlpGrpcEndpointUrl
) && string.IsNullOrEmpty(options.OtlpHttpEndpointUrl))