GET /api/entity_analytics/monitoring/privileges/health

Spaces method and path for this operation:

get /s/{space_id}/api/entity_analytics/monitoring/privileges/health

Refer to Spaces for more information.

Returns the current health status of the Privilege Monitoring Engine, including engine status, error details, and user count statistics.

Responses

  • 200 application/json

    Successful response

    Hide response attributes Show response attributes object
    • error object
      Hide error attribute Show error attribute object
      • message string
    • status string Required

      The status of the Privilege Monitoring Engine

      Values are started, error, disabled, or not_installed.

    • users object

      User statistics for privilege monitoring

      Hide users attributes Show users attributes object
      • current_count integer Required

        Current number of privileged users being monitored

      • max_allowed integer Required

        Maximum number of privileged users allowed to be monitored

GET /api/entity_analytics/monitoring/privileges/health
curl \
 --request GET 'https://localhost:5601/api/entity_analytics/monitoring/privileges/health' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "status": "started",
  "users": {
    "current_count": 42,
    "max_allowed": 1000
  }
}