IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.

ElasticsearchClusterBlockingIssues

edit

This endpoint is deprecated and scheduled to be removed in the next major version. Use cluster_blocking_issues instead

Issues that prevent the Elasticsearch cluster or index from operating correctly.

Properties

edit
cluster_level (array[ElasticsearchClusterBlockingIssueElement], required)
A list of issues that affect availability of entire cluster
healthy (boolean, required)
Whether the cluster has issues (false) or not (true)
index_level (array[ElasticsearchClusterBlockingIssueElement], required)
A list of issues that affect availability of the cluster's indices

Example

edit
{
   "cluster_level" : [
      {
         "description" : "string",
         "instances" : [
            "string"
         ]
      }
   ],
   "healthy" : true,
   "index_level" : [
      {
         "description" : "string",
         "instances" : [
            "string"
         ]
      }
   ]
}