Created
February 12, 2015 11:01
-
-
Save deepybee/72a068e59aaeff9db4fa to your computer and use it in GitHub Desktop.
Elasticsearch Cluster Health API output; curl -X GET localhost:9200/_cluster/health?pretty
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cluster_name" : "foo", | |
"status" : "green", | |
"timed_out" : false, | |
"number_of_nodes" : 4, | |
"number_of_data_nodes" : 4, | |
"active_primary_shards" : 545, | |
"active_shards" : 2005, | |
"relocating_shards" : 0, | |
"initializing_shards" : 0, | |
"unassigned_shards" : 0 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment