Health Check Extended

Returns the connectivity status of the Agent services as well as users connectivity.

Available on Agent 2.57.0 and above.

Checks health status of services and users

get

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
curl -L \
  --url 'youragentURL.symphony.com/agent/v3/health/extended'
{
  "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"
}

📘 Result Fields

This API returns the connectivity status of the Agent services as well as users connectivity. The global status will be set to DOWN if at least one of the sub-status is also DOWN. Agent services: pod, key manager and datafeed. User connectivity: agentservice and ceservice

Last updated

Was this helpful?