IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
ElasticsearchInfo
editElasticsearchInfo
editInformation about the Elasticsearch cluster.
Properties
edit-
blocking_issues
(ElasticsearchClusterBlockingIssues
, required) - Issues that prevent the Elasticsearch cluster or index from correctly operating.
-
healthy
(boolean
, required) - Whether the Elasticsearch cluster is healthy (check the sub-objects for more details if not)
-
master_info
(ElasticsearchMasterInfo
, required) - Information about the master nodes in the Elasticsearch cluster.
-
shard_info
(ElasticsearchShardsInfo
, required) - Information about the shards and replicas that comprise the Elasticsearch indices.
Example
edit{ "blocking_issues" : { "cluster_level" : [ { "description" : "string", "instances" : [ "string" ] } ], "healthy" : true, "index_level" : [ { "description" : "string", "instances" : [ "string" ] } ] }, "healthy" : true, "master_info" : { "healthy" : true, "instances_with_no_master" : [ "string" ], "masters" : [ { "instances" : [ "string" ], "master_instance_name" : "string", "master_node_id" : "string" } ] }, "shard_info" : { "available_shards" : [ { "instance_name" : "string", "shard_count" : 0 } ], "healthy" : true, "unavailable_replicas" : [ { "instance_name" : "string", "replica_count" : 0 } ], "unavailable_shards" : [ { "instance_name" : "string", "shard_count" : 0 } ] } }