# ---------------------------------------------------------------------------
# Generic SPONG settings, specifies where files are kept, etc...
# ---------------------------------------------------------------------------
-# $Id: spong.conf.in,v 1.2 2000/11/15 17:25:28 sljohnson Exp $
+# $Id: spong.conf.in,v 1.3 2001/06/24 16:13:37 supermathie Exp $
$SPONGSLEEP = 300; # Sleep time between check cycles. Depreciated
# ---------------------------------------------------------------------------
$CHECKS = 'disk cpu processes logs'; # The client checks to run
+# Not supported in all configs: 'memory'
$MAILQWARN = 80;
$MAILQCRIT = 100;
-@DFIGNORE = ( "cd\d", "cdrom", ":" ); # List of raw fs's to ignore (regex)
+@DFIGNORE = ( "cd\d", "cdrom", ":", "proc" ); # List of raw fs's to ignore (regex)
$DFWARN{"ALL"} = 90; # Size to warn (yellow) on
$DFCRIT{"ALL"} = 95; # Size to panic (red) on
$DFWARN{"/usr"} = 95; # Some specifics...
$DFWARN{"page"} = 50;
$DFCRIT{"page"} = 80;
-$CPUCRIT = 5.0; # Panic at load avg of 5.0
$CPUWARN = 3.0; # Warn at load avg of 3.0
+$CPUCRIT = 5.0; # Panic at load avg of 5.0
+
+$MEMWARN = 90; # Warn at 90% memory usage
+$MEMCRIT = 95; # Panic at 95% memory usage
@PROCSWARN = ("xntpd");
@PROCSCRIT = ("sendmail","httpd","mysqld","stidserver");