Health Probes
Use .NET health probe endpoints to monitor whether your Umbraco application is alive and ready to serve requests.
Overview
Endpoints
Endpoint
Behavior
Configuring health probes
/umbraco/api/health/readylivenessProbe:
httpGet:
path: /umbraco/api/health/live
port: 8080
initialDelaySeconds: 5
periodSeconds: 10
readinessProbe:
httpGet:
path: /umbraco/api/health/ready
port: 8080
initialDelaySeconds: 5
periodSeconds: 10services:
umbraco:
image: my-umbraco-app
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/umbraco/api/health/ready"]
interval: 10s
timeout: 5s
retries: 3
start_period: 30sRelated
Last updated
Was this helpful?