File tree Expand file tree Collapse file tree 2 files changed +16
-3
lines changed
Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 11# newer versions go on top
22- version : " 2.5.4"
33 changes :
4- - description : Adding support for Kibana status metricset
4+ - description : Adding missing fields in the Kibana status metricset
55 type : enhancement
66 link : https://github.com/elastic/integrations/pull/10944
77- version : " 2.5.3"
Original file line number Diff line number Diff line change @@ -794,7 +794,7 @@ This status endpoint is available in 6.0 by default and can be enabled in Kibana
794794| kibana.status.status.overall.state | Kibana overall state. | keyword |
795795| kibana.status.status.overall.level | Kibana overall level (v8 format). | keyword |
796796| kibana.status.status.overall.summary | Kibana overall state in a human-readable format. | text |
797- | kibana.status.status.core.elasticsearch.level | Kibana overall state . | keyword |
797+ | kibana.status.status.core.elasticsearch.level | Kibana Elasticsearch client's status . | keyword |
798798| kibana.status.status.core.elasticsearch.summary | Kibana Elasticsearch client's status in a human-readable format. | text |
799799| kibana.status.status.core.savedObjects.level | Kibana Saved Objects client's status. | keyword |
800800| kibana.status.status.core.savedObjects.summary | Kibana Saved Objects client's status in a human-readable format. | text |
@@ -870,7 +870,20 @@ An example event for `status` looks as following:
870870 },
871871 "name" : " kibana" ,
872872 "status" : {
873- "overall" : {}
873+ "overall" : {
874+ "level" : " available" ,
875+ "summary" : " All services and plugins are available"
876+ },
877+ "core" : {
878+ "elasticsearch" : {
879+ "level" : " available" ,
880+ "summary" : " Elasticsearch is available"
881+ },
882+ "savedObjects" : {
883+ "level" : " available" ,
884+ "summary" : " SavedObjects service has completed migrations and is available"
885+ }
886+ }
874887 }
875888 }
876889 },
You can’t perform that action at this time.
0 commit comments