GaiterGuard provides two health check endpoints for monitoring service availability and database connectivity.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Shashank-H/gaiter-gaurd/llms.txt
Use this file to discover all available pages before exploring further.
Liveness check
Returns a basic health status without performing any external checks. Use this endpoint for liveness probes in container orchestration.Response
Always returns
"ok" if the service is runningExample
Response
This endpoint does not check database connectivity. It only confirms the HTTP server is running and accepting requests.
Readiness check
Performs a database connectivity check to verify the service is ready to handle requests. Use this endpoint for readiness probes in container orchestration.Response
Returns
"ready" when all dependencies are availableConnection status:
"connected" or error messageExample
Success (200)
Failure (503)
Kubernetes configuration
Use these endpoints in your Kubernetes deployment:Docker Compose healthcheck
Both endpoints are unauthenticated and can be called without an
Agent-Key or Authorization header.