--- projects/cms/source/server/build/etc/system.conf 2001/03/07 01:23:31 1.25 +++ projects/cms/source/server/build/etc/system.conf 2001/03/14 23:25:18 1.36 @@ -6,7 +6,7 @@ # root of configuration # # $Author: tdb $ -# $Id: system.conf,v 1.25 2001/03/07 01:23:31 tdb Exp $ +# $Id: system.conf,v 1.36 2001/03/14 23:25:18 tdb Exp $ # ############################################################ #### Configuration Files & Groups @@ -58,7 +58,7 @@ Filter.UDPListenPort=4589 Filter.TCPListenPort=4589 # Plugin Information -Filter.PluginsPackage=uk.ac.ukc.iscream.filter.plugins +Filter.PluginsPackage=uk.org.iscream.filter.plugins Filter.Plugins=TypeChecker;EnforceEssentialData # The name for the root filter @@ -94,7 +94,7 @@ ClientInterface.listenPort=4510 ############################################################ # The default filter for a new host -Host.filter=filter1; +Host.filter=computingFilter; # The default update times for a new host Host.UDPUpdateTime=10 @@ -102,8 +102,8 @@ Host.TCPUpdateTime=60 Host.AveragerUpdateTime=5 # The services checks to run on a host -Host.serviceChecksPackage=uk.ac.ukc.iscream.filter.plugins -Host.serviceChecks=HTTP;SMTP +Host.serviceChecksPackage=uk.org.iscream.filter.plugins +Host.serviceChecks=HTTP;SMTP;POP3;SSH;FTP;IMAP;Telnet @@ -112,8 +112,8 @@ Host.serviceChecks=HTTP;SMTP ############################################################ # the monitors to run -Monitor.PluginsPackage=uk.ac.ukc.iscream.client.monitors -Monitor.Plugins=CPU;Memory;Swap;Heartbeat; +Monitor.PluginsPackage=uk.org.iscream.client.monitors +Monitor.Plugins=CPU;Disk;Memory;Swap;Services;Heartbeat;WebFeeder; ## CPU monitor configuration @@ -164,6 +164,43 @@ Monitor.Swap.alertTimeout.CAUTION=1800 Monitor.Swap.alertTimeout.CRITICAL=3600 +## Disk monitor configuration +# threshold values +# +# note: if the UPPER threshold is broken, +# the alertTimeout values are halved. +# This is to escalate the alert quicker. +Monitor.Disk.threshold.LOWER=80 +Monitor.Disk.threshold.UPPER=90 + +# timings of the alerts (in seconds) +Monitor.Disk.alertTimeout.NOTICE=60 +Monitor.Disk.alertTimeout.WARNING=900 +Monitor.Disk.alertTimeout.CAUTION=1800 +Monitor.Disk.alertTimeout.CRITICAL=3600 + + +## Services monitor configuration +# threshold values +# +# THE SERVICES MONITOR USES A HACK +# WHEREBY IT USES THE SERVICE STATUS +# AS THE THRESHOLD LEVEL. THIS SHOULD +# BE LOOKED AT! +# +# note: if the UPPER threshold is broken, +# the alertTimeout values are halved. +# This is to escalate the alert quicker. +#Monitor.Services.threshold.LOWER=120 +#Monitor.Services.threshold.LOWER=300 + +# timings of the alerts (in seconds) +Monitor.Services.alertTimeout.NOTICE=60 +Monitor.Services.alertTimeout.WARNING=900 +Monitor.Services.alertTimeout.CAUTION=1800 +Monitor.Services.alertTimeout.CRITICAL=3600 + + ## Heartbeat monitor configuration # threshold values # @@ -210,8 +247,8 @@ Monitor.Heartbeat.reachFINALcount=5 # # alerters to run -Alerter.PluginsPackage=uk.ac.ukc.iscream.client.alerters -Alerter.Plugins=EMail;IRC; +Alerter.PluginsPackage=uk.org.iscream.client.alerters +Alerter.Plugins=EMail;IRC;WebFeeder; # EMail alerter configuration Alerter.EMail.level = CAUTION @@ -243,6 +280,26 @@ Alerter.IRC.timeSinceLastAlertCommand = time since las Alerter.IRC.versionCommand = version Alerter.IRC.helpCommand = help Alerter.IRC.rejectMessage = sorry, I don't understand your request + +############################################################ +#### WebFeeder Configuration +############################################################ + +# Define these (one or both_ to turn on the WebFeeder's, +# comment it to turn them off +WebFeeder.latestActive = true +WebFeeder.alertActive = true + +# Root Path +WebFeeder.rootPath = /usr/local/proj/co600_10/webroot + +# Latest Data +WebFeeder.latestSubDir = latest +WebFeeder.latestFileName = latest_data + +# Alert Data +WebFeeder.alertSubDir = alert +WebFeeder.alertFileName = alert_data ############################################################