Created
April 1, 2019 05:28
-
-
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
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
#!/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