34 references to ProbeType
Aspire.Hosting (5)
ApplicationModel\ProbeAnnotation.cs (1)
39public required ProbeType Type { get; init; }
ResourceBuilderExtensions.cs (4)
5009public static IResourceBuilder<T> WithHttpProbe<T>(this IResourceBuilder<T> builder, ProbeType type, string? path = null, int? initialDelaySeconds = null, int? periodSeconds = null, int? timeoutSeconds = null, int? failureThreshold = null, int? successThreshold = null, string? endpointName = null) 5022/// ATS export stub for <see cref="WithHttpProbe{T}(IResourceBuilder{T}, ProbeType, string?, int?, int?, int?, int?, int?, string?)"/> 5028internal static IResourceBuilder<T> WithHttpProbeExport<T>(this IResourceBuilder<T> builder, ProbeType probeType, string? path = null, int? initialDelaySeconds = null, int? periodSeconds = null, int? timeoutSeconds = null, int? failureThreshold = null, int? successThreshold = null, string? endpointName = null) 5069public static IResourceBuilder<T> WithHttpProbe<T>(this IResourceBuilder<T> builder, ProbeType type, Func<EndpointReference>? endpointSelector, string? path = null, int? initialDelaySeconds = null, int? periodSeconds = null, int? timeoutSeconds = null, int? failureThreshold = null, int? successThreshold = null)
Aspire.Hosting.Azure.AppContainers (2)
BaseContainerAppContext.cs (2)
570ProbeType.Startup => ContainerAppProbeType.Startup, 571ProbeType.Readiness => ContainerAppProbeType.Readiness,
Aspire.Hosting.Azure.AppService (1)
AzureAppServiceWebsiteContext.cs (1)
647.OrderBy(probeAnnotation => probeAnnotation.Type == ProbeType.Liveness ? 0 : 1)
Aspire.Hosting.Azure.FrontDoor (1)
AzureFrontDoorExtensions.cs (1)
237.OrderBy(p => p.Type == ProbeType.Liveness ? 0 : 1)
Aspire.Hosting.Azure.Tests (11)
AzureAppServiceTests.cs (2)
779.WithHttpProbe(ProbeType.Readiness, "/ready", initialDelaySeconds: 60) // This will be ignored 780.WithHttpProbe(ProbeType.Liveness, "/health");
AzureContainerAppsTests.cs (8)
2561.WithHttpProbe(ProbeType.Readiness, "/ready") 2562.WithHttpProbe(ProbeType.Liveness, "/health"); 2567.WithHttpProbe(ProbeType.Readiness, "/ready", initialDelaySeconds: 60) 2568.WithHttpProbe(ProbeType.Liveness, "/health"); 2603.WithHttpProbe(ProbeType.Liveness, "/health"); 2608.WithHttpProbe(ProbeType.Liveness, "/health"); 2643.WithHttpProbe(ProbeType.Liveness, "/health"); 2648.WithHttpProbe(ProbeType.Liveness, "/health");
AzureFrontDoorTests.cs (1)
172.WithHttpProbe(ProbeType.Liveness, "/health");
Aspire.Hosting.Kubernetes (4)
Extensions\ResourceExtensions.cs (3)
446case ProbeType.Startup: 450case ProbeType.Readiness: 454case ProbeType.Liveness:
KubernetesResource.cs (1)
59internal List<(ProbeType Type, ProbeV1 Probe)> Probes { get; } = [];
Aspire.Hosting.Kubernetes.Tests (5)
KubernetesPublisherTests.cs (5)
320.WithHttpProbe(ProbeType.Readiness, "/ready") 321.WithHttpProbe(ProbeType.Liveness, "/health"); 326.WithHttpProbe(ProbeType.Readiness,"/ready", initialDelaySeconds: 60) 327.WithHttpProbe(ProbeType.Liveness, "/health"); 875.WithHttpProbe(ProbeType.Readiness, "/ready");
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);