Skip to content

Instantly share code, notes, and snippets.

@wesdeboer
Created February 10, 2012 18:54
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save wesdeboer/1791632 to your computer and use it in GitHub Desktop.
Save wesdeboer/1791632 to your computer and use it in GitHub Desktop.
Detect if a mysql slave is still running and touch slave_running, monit then watches the timestamp on the file
check file slave_running with path /opt/slave_running
if timestamp > 3 minutes then alert
#!/bin/bash
MYSQL=`mysql --defaults-file=/etc/mysql/debian.cnf -e "SHOW SLAVE STATUS \G"`
IO=`echo "$MYSQL" | grep 'Slave_IO_Running:' | awk '{print $2}'`
SQL=`echo "$MYSQL" | grep 'Slave_SQL_Running:' | awk '{print $2}'`
if [ "Yes" == "$IO" ] && [ "Yes" == "$SQL" ]; then
touch /opt/slave_running
fi
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment