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