4 writes to OtlpGrpcEndpointUrl
Aspire.Hosting (1)
Dashboard\DashboardOptions.cs (1)
33options.OtlpGrpcEndpointUrl = configuration.GetString(KnownConfigNames.DashboardOtlpGrpcEndpointUrl, KnownConfigNames.Legacy.DashboardOtlpGrpcEndpointUrl);
Aspire.Hosting.Tests (3)
Dashboard\DashboardLifecycleHookTests.cs (3)
130OtlpGrpcEndpointUrl = "http://localhost:4317" 178OtlpGrpcEndpointUrl = "http://localhost:4317", 220OtlpGrpcEndpointUrl = "http://localhost:4317",
3 references to OtlpGrpcEndpointUrl
Aspire.Hosting (3)
Dashboard\DashboardEventHandlers.cs (2)
376var otlpGrpcEndpointUrl = options.OtlpGrpcEndpointUrl; 522Debug.Assert(options.OtlpGrpcEndpointUrl is not null || options.OtlpHttpEndpointUrl is not null, "OtlpGrpcEndpointUrl and OtlpHttpEndpointUrl should not both be null");
Dashboard\DashboardOptions.cs (1)
59if (string.IsNullOrEmpty(options.OtlpGrpcEndpointUrl) && string.IsNullOrEmpty(options.OtlpHttpEndpointUrl))