- Kibana Guide: other versions:
- What is Kibana?
- What’s new in 7.12
- Kibana concepts
- Quick start
- Set up
- Install Kibana
- Configure Kibana
- Alerting and action settings
- APM settings
- Banners settings
- Development tools settings
- Graph settings
- Fleet settings
- i18n settings
- Logs settings
- Metrics settings
- Machine learning settings
- Monitoring settings
- Reporting settings
- Secure settings
- Search sessions settings
- Security settings
- Spaces settings
- Task Manager settings
- Telemetry settings
- Start and stop Kibana
- Access Kibana
- Securing access to Kibana
- Add data
- Upgrade Kibana
- Embed Kibana content in a web page
- Configure monitoring
- Configure security
- Production considerations
- Discover
- Dashboard
- Canvas
- Maps
- Machine learning
- Graph
- Observability
- APM
- Elastic Security
- Dev Tools
- Stack Monitoring
- Stack Management
- Fleet
- Reporting
- Alerting and Actions
- REST API
- Kibana plugins
- Accessibility
- Release notes
- Developer guide
Get Alerting framework health API
editGet Alerting framework health API
editRetrieve the health status of the Alerting framework.
Request
editGET <kibana host>:<port>/api/alerts/_health
GET <kibana host>:<port>/s/<space_id>/api/alerts/_health
Path parameters
edit-
space_id
-
(Optional, string) An identifier for the space. If
space_id
is not provided in the URL, the default space is used.
Response code
edit-
200
- Indicates a successful call.
Example
editRetrieve the health status of the Alerting framework:
$ curl -X GET api/alerts/_health
The API returns the following:
{ "isSufficientlySecure":true, "hasPermanentEncryptionKey":true, "alertingFrameworkHeath":{ "decryptionHealth":{ "status":"ok", "timestamp":"2021-02-10T23:35:04.949Z" }, "executionHealth":{ "status":"ok", "timestamp":"2021-02-10T23:35:04.949Z" }, "readHealth":{ "status":"ok", "timestamp":"2021-02-10T23:35:04.949Z" } } }
The health API response contains the following properties:
|
Returns |
|
Return the state |
|
This state property has three substates that identify the health of the alerting framework API: |
alertingFrameworkHeath
consists of the following properties:
|
Returns the timestamp and status of the alert decryption: |
|
Returns the timestamp and status of the alert execution: |
|
Returns the timestamp and status of the alert reading events: |
On this page