X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/7b9ec4b60ee39614d1d083d7220e76b07d2b275f..51c7169f70c83e5e857a2ee5560deda2c571c215:/cookbooks/munin/files/default/plugins/replication_delay diff --git a/cookbooks/munin/files/default/plugins/replication_delay b/cookbooks/munin/files/default/plugins/replication_delay index e88ae97a1..f1761e84d 100755 --- a/cookbooks/munin/files/default/plugins/replication_delay +++ b/cookbooks/munin/files/default/plugins/replication_delay @@ -17,12 +17,15 @@ if [ "$1" = "config" ]; then echo 'age.label DB import age' echo 'age.type GAUGE' echo 'age.cdef age,60,/' + echo 'age.warning :600' + echo 'age.critical :3600' exit 0 fi - -tstamp=`sed -e '/^timestamp=/!d' -e 's/.*=//' -e 's/Z//' -e 's/T/Z/' -e 's/\\\\//' -e 's/\\\\//' -e q /home/jburgess/replicate/state.txt` + +state=${state:-/home/jburgess/replicate/state.txt} +tstamp=`sed -e '/^timestamp=/!d' -e 's/.*=//' -e 's/Z//' -e 's/T/Z/' -e 's/\\\\//' -e 's/\\\\//' -e q ${state}` tstampsec=`date --date=$tstamp +%s` nowsec=`date +%s` -echo "age.value " `expr $nowsec - $tstampsec` \ No newline at end of file +echo "age.value " `expr $nowsec - $tstampsec`