Health Check Extended
Returns the connectivity status of the Agent services as well as users connectivity.
Available on Agent 2.57.0 and above.
Available on Agent 2.57.0 and above.
Returns the connectivity status of the Agent services (pod, key manager and datafeed) as well as users connectivity (agentservice and ceservice).
The global status will be set to DOWN
if at least one of the sub-status is also DOWN
.
Responses
200
Agent is healthy, all components are `UP`.
application/json
503
Agent is unhealthy, some components are `DOWN`.
application/json
get
GET /agent/v3/health/extended HTTP/1.1
Host: youragentURL.symphony.com
Accept: */*
{
"services": {
"ANY_ADDITIONAL_PROPERTY": {
"authType": "RSA",
"message": "text",
"status": "UP",
"version": "text"
}
},
"status": "UP",
"users": {
"ANY_ADDITIONAL_PROPERTY": {
"authType": "RSA",
"message": "text",
"status": "UP",
"version": "text"
}
},
"version": "text"
}
Last updated
Was this helpful?