Get the alerting framework health
Deprecated
Deprecated in 7.13.0. Use the get alerting framework health API instead.
GET
/api/alerts/alerts/_health
curl \
--request GET 'https://localhost:5601/api/alerts/alerts/_health' \
--header "Authorization: $API_KEY"
Response examples (200)
{
"alertingFrameworkHealth": {
"decryptionHealth": {
"status": "ok",
"timestamp": "2023-01-13T01:28:00.280Z"
},
"executionHealth": {
"status": "ok",
"timestamp": "2023-01-13T01:28:00.280Z"
},
"readHealth": {
"status": "ok",
"timestamp": "2023-01-13T01:28:00.280Z"
}
},
"hasPermanentEncryptionKey": true,
"isSufficientlySecure": true
}
Response examples (401)
{
"error": "Unauthorized",
"message": "string",
"statusCode": 401
}