diff options
author | Dan Goodliffe <dan.goodliffe@octal.co.uk> | 2023-02-14 10:42:59 +0000 |
---|---|---|
committer | Dan Goodliffe <dan.goodliffe@octal.co.uk> | 2023-02-14 10:42:59 +0000 |
commit | 319bba0353510cbbb5a33924c211c23efa8ce6b4 (patch) | |
tree | b063afac169e0c782f60c0acbbd3536a74500507 | |
parent | Use shddtemp temp wrapper to get access to disk temps (diff) | |
download | config-319bba0353510cbbb5a33924c211c23efa8ce6b4.tar.bz2 config-319bba0353510cbbb5a33924c211c23efa8ce6b4.tar.xz config-319bba0353510cbbb5a33924c211c23efa8ce6b4.zip |
Reduce warning/critical space check level
-rw-r--r-- | nagios/objects/cluster.cfg | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nagios/objects/cluster.cfg b/nagios/objects/cluster.cfg index a81fbe0..06551c9 100644 --- a/nagios/objects/cluster.cfg +++ b/nagios/objects/cluster.cfg @@ -398,21 +398,21 @@ define service { use remote-service host_name virtualip service_description Git Volume - check_command check_disk!20%!10%!/var/git/ + check_command check_disk!10%!5%!/var/git/ action_url /nagiosgraph/cgi-bin/show.cgi?host=$HOSTNAME$&service=$SERVICEDESC$&db=/var/git%2Cdata&geom=800x180 } define service { use remote-service host_name virtualip service_description Home Volume - check_command check_disk!20%!10%!/home/ + check_command check_disk!10%!5%!/home/ action_url /nagiosgraph/cgi-bin/show.cgi?host=$HOSTNAME$&service=$SERVICEDESC$&db=/home%2Cdata&geom=800x180 } define service { use remote-service host_name virtualip service_description WWW Volume - check_command check_disk!20%!10%!/var/www/shared/ + check_command check_disk!10%!5%!/var/www/shared/ action_url /nagiosgraph/cgi-bin/show.cgi?host=$HOSTNAME$&service=$SERVICEDESC$&db=/var/www/shared%2Cdata&geom=800x180 } |