ElasticsearchClustersSummaryedit

Summarized information about Elasticsearch clusters.

Propertiesedit

healthy (boolean, required)
Whether all clusters are healthy
healthy_count (integer as int32, required)
Number of healthy clusters
unhealthy_clusters_summaries (array[ElasticsearchClusterSummary], required)
Summarized information on unhealthy clusters
unhealthy_count (integer as int32, required)
Number of unhealthy clusters

Exampleedit

{
   "healthy" : true,
   "healthy_count" : 0,
   "unhealthy_clusters_summaries" : [
      {
         "blocks_healthy" : true,
         "cluster_id" : "string",
         "healthy" : true,
         "hidden" : true,
         "instances_healthy" : true,
         "master_healthy" : true,
         "plan_healthy" : true,
         "shards_healthy" : true,
         "snapshot_healthy" : true
      }
   ],
   "unhealthy_count" : 0
}