Health

Check event bus health

get

This endpoint checks the health of the event bus by verifying that the number of healthy hosts meets the required threshold. Returns both the health status and a list of currently healthy hosts.

Responses
200

Event bus is healthy with list of healthy hosts

application/json
get
GET /v1/health/eventbus HTTP/1.1
Host: 
Accept: */*
{
  "healthy": true,
  "hosts": [
    "text"
  ]
}

Was this helpful?