]> git.etc.gen.nz Git - spong.git/commitdiff
Added "proc" to the list of filesystems to ignore
authorMichael Brown <michaelb@opentext.com>
Sun, 24 Jun 2001 16:13:37 +0000 (16:13 +0000)
committerMichael Brown <michaelb@opentext.com>
Sun, 24 Jun 2001 16:13:37 +0000 (16:13 +0000)
Added MEMWARN and MEMCRIT variables for the 'memory' spong-client check

config/spong.conf.in

index f21159a96032d0cdc3e64a497524a44476a8b382..6f7186e8d3fb332ee7c00cc9f6490e0e58f1338b 100644 (file)
@@ -1,7 +1,7 @@
 # ---------------------------------------------------------------------------
 # 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
 
@@ -126,11 +126,12 @@ $RECHECKSLEEP = 15;        # Sleep time in seconds for down services recheck
 # ---------------------------------------------------------------------------
 
 $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...
@@ -138,8 +139,11 @@ $DFCRIT{"/usr"} = 98;
 $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");