Skip to content

Instantly share code, notes, and snippets.

@pranavcode
Created April 1, 2019 05:28
Show Gist options
  • Save pranavcode/ff31960f44afc75be508db7daf0ad540 to your computer and use it in GitHub Desktop.
Save pranavcode/ff31960f44afc75be508db7daf0ad540 to your computer and use it in GitHub Desktop.
Velotio - HashiCorp Consul Part 2 - MongoDB Replica Set - Check Secondary instance using shell script
#!/bin/bash
mongo_secondary=$(mongo --quiet --eval 'JSON.stringify(db.isMaster())' | jq -r .secondary 2> /dev/null)
if [[ $mongo_secondary == false ]]; then
exit 1
fi
echo "Mongo secondary healthy and reachable"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment