Jetron TicketFluid
System

Health check

GET
/health

Readiness probe. Postgres and Redis are hard dependencies. The service reports 503 if either is unreachable. Meilisearch, RabbitMQ, Neo4j and MongoDB are reported for observability but do not affect the status code.

Response Body

application/json

application/json

curl -X GET "https://example.com/health"
{  "status": true,  "data": {    "status": true,    "message": "string",    "data": {      "postgres": true,      "redis": true,      "meilisearch": true,      "rabbitmq": true,      "neo4j": true,      "mongodb": true    }  }}