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