21 references to WithHttpProbe
Aspire.Hosting (2)
ResourceBuilderExtensions.cs (2)
3364/// ATS export stub for <see cref="WithHttpProbe{T}(IResourceBuilder{T}, ProbeType, string?, int?, int?, int?, int?, int?, string?)"/> 3372return builder.WithHttpProbe(probeType, path, initialDelaySeconds, periodSeconds, timeoutSeconds, failureThreshold, successThreshold, endpointName);
Aspire.Hosting.Azure.Tests (10)
AzureAppServiceTests.cs (2)
458.WithHttpProbe(ProbeType.Readiness, "/ready", initialDelaySeconds: 60) // This will be ignored 459.WithHttpProbe(ProbeType.Liveness, "/health");
AzureContainerAppsTests.cs (8)
1980.WithHttpProbe(ProbeType.Readiness, "/ready") 1981.WithHttpProbe(ProbeType.Liveness, "/health"); 1986.WithHttpProbe(ProbeType.Readiness, "/ready", initialDelaySeconds: 60) 1987.WithHttpProbe(ProbeType.Liveness, "/health"); 2022.WithHttpProbe(ProbeType.Liveness, "/health"); 2027.WithHttpProbe(ProbeType.Liveness, "/health"); 2062.WithHttpProbe(ProbeType.Liveness, "/health"); 2067.WithHttpProbe(ProbeType.Liveness, "/health");
Aspire.Hosting.Kubernetes.Tests (4)
KubernetesPublisherTests.cs (4)
242.WithHttpProbe(ProbeType.Readiness, "/ready") 243.WithHttpProbe(ProbeType.Liveness, "/health"); 248.WithHttpProbe(ProbeType.Readiness,"/ready", initialDelaySeconds: 60) 249.WithHttpProbe(ProbeType.Liveness, "/health");
Aspire.Hosting.Tests (5)
ResourceWithProbeTests.cs (5)
17resource.WithHttpProbe(ProbeType.Startup, "/health"); 30resource.WithHttpProbe(ProbeType.Readiness, "/health"); 31resource.WithHttpProbe(ProbeType.Readiness, "/ready"); 50resource.WithHttpProbe(ProbeType.Liveness, "/health", endpointName: endpointName); 51resource.WithHttpProbe(ProbeType.Readiness, "/ready", endpointName: endpointName);