Health
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
500
Event bus is unhealthy or health check failed
application/json
get
GET /v1/health/eventbus HTTP/1.1
Host:
Accept: */*
{
"healthy": true,
"hosts": [
"text"
]
}
Was this helpful?