API Referencegeneral
Liveness Probe
Kubernetes liveness probe endpoint. Returns 200 if the service process is running. Does not check dependencies. Returns: Simple alive status.
Response Body
application/json
curl -X head "http://localhost:8000/api/v1/health/live"{
"property1": "string",
"property2": "string"
}Liveness Probe
Kubernetes liveness probe endpoint. Returns 200 if the service process is running. Does not check dependencies. Returns: Simple alive status.
Readiness Probe
Kubernetes readiness probe endpoint. Checks all registered dependencies and returns appropriate status code. - 200: All dependencies healthy - 207: Some dependencies degraded - 503: One or more dependencies unhealthy Args: request: FastAPI request object to access app state. response: FastAPI response object to set status code. Returns: Health status with dependency information.

