--- projects/cms/source/server/build/etc/system.conf 2001/01/19 00:08:44 1.4 +++ projects/cms/source/server/build/etc/system.conf 2001/03/03 15:29:12 1.15 @@ -6,40 +6,138 @@ # root of configuration # # $Author: tdb $ -# $Id: system.conf,v 1.4 2001/01/19 00:08:44 tdb Exp $ +# $Id: system.conf,v 1.15 2001/03/03 15:29:12 tdb Exp $ +# +############################################################ +#### Configuration Files & Groups +############################################################ -# FilterManager configuration +# for computing machines +group.computing=Host.129.12.4.*; +config.computing=computing.conf +# for library machines +group.library=Host.129.12.58.*; +config.library=library.conf + +# for SSB machines +group.ssb=Host.stue*.ukc.ac.uk; +config.ssb=ssb.conf + +# mySQL configuration +config.mySQL=mySQL.conf + + + +############################################################ +#### FilterManager configuration +############################################################ + # The default port to listen for new host connections FilterManager.listenPort=4567 + + +############################################################ +#### Filter configuration +############################################################ + # The default port for Filter's to listen on Filter.UDPListenPort=4589 Filter.TCPListenPort=4589 +# Plugin Information +Filter.PluginsPackage=uk.ac.ukc.iscream.filter.plugins +Filter.Plugins=TypeChecker;EnforceEssentialData + # The name for the root filter RootFilter.name=root + +# The default parent filter (should almost always be the same as Filter.rootFilter) +Filter.parentFilter=root + + + +############################################################ +#### Root filter interfaces configuration +############################################################ + # Comment either of these (or delete them) and # that interface won't be started RootFilter.realtimeInterfaceName=realtimeclients -#RootFilter.dbInterfaceName=database +RootFilter.dbInterfaceName=database + + +############################################################ +#### Client interface configuration +############################################################ + # The port for the client interface to listen on ClientInterface.listenPort=4510 -# The default parent filter (should almost always be the same as Filter.rootFilter) -Filter.parentFilter=root + +############################################################ +#### Host Configuration +############################################################ + # The default filter for a new host -Host.filter=filter1 +Host.filter=computingFilter # The default update times for a new host -Host.UDPUpdateTime=5 +Host.UDPUpdateTime=10 Host.TCPUpdateTime=60 +Host.AveragerUpdateTime=5 -# Plugin Information -Filter.PluginsPackage=uk.ac.ukc.iscream.filter.plugins -Filter.Plugins=EnforceEssentialData;TypeChecker +# The services checks to run on a host +Host.serviceChecksPackage=uk.ac.ukc.iscream.filter.plugins +Host.serviceChecks=HTTP;SMTP -# mySQL Details -config.mySQL=mySQL.conf + + +# The time interval at which the Queue's should be monitored +Queue.MonitorInterval=15 + + + +############################################################ +#### Monitor Configuration +############################################################ + +# the monitors to run +Monitor.PluginsPackage=uk.ac.ukc.iscream.client.monitors +Monitor.Plugins=CPU; + +# CPU monitor configuration +Monitor.CPU.level.1=90 +Monitor.CPU.level.2=95 +Monitor.CPU.level.3=100 + + + +############################################################ +#### Alerter Configuration +############################################################ + +# alerters to run +Alerter.PluginsPackage=uk.ac.ukc.iscream.client.alerters +Alerter.Plugins=EMail;IRC; + +# EMail alerter configuration +Alerter.EMail.level = 2 +Alerter.EMail.destList = dev@i-scream.org.uk +Alerter.EMail.sender = dev@i-scream.org.uk +Alerter.EMail.smtpServer = mercury.ukc.ac.uk +Alerter.EMail.subject = i-scream alert: level %level% alert on %source for %attributeName% +Alerter.EMail.message = The i-scream distributed central monitoring system has\nraised a level %level% alert for the host %source%.\n\nThe value for %attributeName% of %value% has exceeded the\nthreshold value of %thresholdValue%. + +# IRC alerter configuration +Alerter.IRC.level = 0 +Alerter.IRC.IRCServer = killigrew.ukc.ac.uk +Alerter.IRC.IRCPort = 6667 +Alerter.IRC.nick = iscreamBot +Alerter.IRC.channel = #i-scream +Alerter.IRC.message = level %level%: %attributeName% on %source% has reached %value% + +############################################################