Skip to content

Instantly share code, notes, and snippets.

@mkocikowski
Last active November 10, 2015 21:10
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 mkocikowski/576cc5b78b846c690c23 to your computer and use it in GitHub Desktop.
Save mkocikowski/576cc5b78b846c690c23 to your computer and use it in GitHub Desktop.
Check elasticsearch cluster status
curl -XGET 'http://localhost:9200/_cluster/health?pretty=true' -s \
| grep 'status' \
| test 'green' == `awk -F '"' '{ print $4 }'` ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment