Skip to content

Instantly share code, notes, and snippets.

@deepybee
Created February 12, 2015 11:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deepybee/72a068e59aaeff9db4fa to your computer and use it in GitHub Desktop.
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
{
"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