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" 172OtlpGrpcEndpointUrl = "http://localhost:4317",
3 references to OtlpGrpcEndpointUrl
Aspire.Hosting (3)
Dashboard\DashboardEventHandlers.cs (2)
370var otlpGrpcEndpointUrl = options.OtlpGrpcEndpointUrl; 484Debug.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))