X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FConfig%2FNix.git;a=blobdiff_plain;f=modules%2Fprivate%2Fmonitoring%2Fplugins%2Fcheck_mysql_replication;fp=modules%2Fprivate%2Fmonitoring%2Fplugins%2Fcheck_mysql_replication;h=1ee5de1470c71da3c2eaa3fc4054a5b776f05e07;hp=4027f63f0ec57f45fd5df19caacf7b57b9496e74;hb=ef909e2435194af725f4338a13e4732328ef7361;hpb=85ad771e2635a544461f0a340f8b8c7126688678 diff --git a/modules/private/monitoring/plugins/check_mysql_replication b/modules/private/monitoring/plugins/check_mysql_replication index 4027f63..1ee5de1 100755 --- a/modules/private/monitoring/plugins/check_mysql_replication +++ b/modules/private/monitoring/plugins/check_mysql_replication @@ -10,7 +10,10 @@ config_file=$2 info=$(mysql --defaults-file=${config_file} -S $socket -e "show slave status" --vertical) exit_code=$? -lag=$(echo "$info" | grep Seconds_Behind_Master | cut -d':' -f2 | sed -e "s/\s//g") +lag=$(echo "$info" | grep "\bSeconds_Behind_Master\b" | cut -d':' -f2 | sed -e "s/\s//g") + +IO_running=$(echo "$info" | grep "\bSlave_IO_Running\b" | cut -d':' -f2 | sed -e "s/\s//g") +SQL_running=$(echo "$info" | grep "\bSlave_SQL_Running\b" | cut -d':' -f2 | sed -e "s/\s//g") if [[ $exit_code -ne 0 ]]; then echo "UNKNOWN - Impossible to run mysql command" @@ -18,6 +21,9 @@ if [[ $exit_code -ne 0 ]]; then elif [[ -z "$lag" ]]; then echo "UNKNOWN - No replication found for mysql" exit $STATE_UNKNOWN +elif [[ "$IO_running" != "Yes" || "$SQL_running" != "Yes" ]]; then + echo "UNKNOWN - Replication is not running" + exit $STATE_UNKNOWN else output="Replication lag for mysql is ${lag}s" LC_ALL=C lag=$(printf "%.*f" 0 $lag)