Get agent status summary

GET /api/fleet/agent_status

Get agent status summary

Headers

  • The version of the API to use

    Value is 2023-10-31. Default value is 2023-10-31.

Query parameters

Responses

GET /api/fleet/agent_status
curl \
 -X GET https://localhost:5601/api/fleet/agent_status \
 -H "elastic-api-version: 2023-10-31"
Response examples (200)
{
  "results": {
    "active": 42.0,
    "all": 42.0,
    "error": 42.0,
    "events": 42.0,
    "inactive": 42.0,
    "offline": 42.0,
    "online": 42.0,
    "other": 42.0,
    "unenrolled": 42.0,
    "updating": 42.0
  }
}
Response examples (400)
{
  "error": "string",
  "message": "string",
  "statusCode": 42.0
}