FluxMQ
ReferenceAdmin API

Health

Kubernetes liveness, readiness, and cluster status probes

Health / liveness probe

GET
/health

Response Body

application/json

curl -X GET "http://localhost:8888/health"
{
  "status": "healthy"
}
Empty

Readiness probe

GET
/ready

Response Body

application/json

application/json

curl -X GET "http://localhost:8888/ready"
{
  "status": "ready",
  "details": "string"
}
Empty
{
  "status": "ready",
  "details": "string"
}

Cluster status (health)

GET
/cluster/status

Response Body

application/json

curl -X GET "http://localhost:8888/cluster/status"
{
  "node_id": "node-1",
  "is_leader": true,
  "cluster_mode": true,
  "node_count": 0,
  "sessions": 0,
  "details": "string"
}
Empty