OmniLink API
Health

Readiness (Postgres + Redis)

Executa `SELECT 1` no banco e `PING` no Redis (`celery_broker_url`). Se qualquer check falhar, retorna 503 com `detail.status=unhealthy`.

GET
/health/ready

Executa SELECT 1 no banco e PING no Redis (celery_broker_url). Se qualquer check falhar, retorna 503 com detail.status=unhealthy.

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/health/ready"
{  "status": "ready",  "checks": {    "database": "ok",    "redis": "ok"  }}