ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/build/etc/system.conf
Revision: 1.51
Committed: Fri Mar 23 02:31:54 2001 UTC (23 years, 6 months ago) by tdb
Branch: MAIN
Changes since 1.50: +3 -2 lines
Log Message:
Added UserCount monitor to the list.

File Contents

# User Rev Content
1 tdb 1.2 # This is the default system configuration file
2     # used by all components of the i-scream system
3     #
4     # ALL configuration that uses the centralised
5     # configuration system has this file as its
6     # root of configuration
7     #
8 tdb 1.36 # $Author: tdb1 $
9 tdb 1.51 # $Id: system.conf,v 1.50 2001/03/23 01:17:08 tdb1 Exp $
10 ajm 1.14 #
11     ############################################################
12     #### Configuration Files & Groups
13     ############################################################
14    
15     # for computing machines
16 tdb 1.15 group.computing=Host.129.12.4.*;
17 tdb 1.41 group.rocks=Host.agate.ukc.ac.uk;Host.arkose.ukc.ac.uk;Host.basalt.ukc.ac.uk;Host.chalk.ukc.ac.uk;\
18     Host.chert.ukc.ac.uk;Host.granite.ukc.ac.uk;Host.jade.ukc.ac.uk;Host.jasper.ukc.ac.uk;\
19     Host.magnetite.ukc.ac.uk;Host.obsidian.ukc.ac.uk;Host.pumice.ukc.ac.uk;\
20     Host.pyrite.ukc.ac.uk;Host.slate.ukc.ac.uk;Host.topaz.ukc.ac.uk;
21 tdb 1.42 group.compsoc=Host.compsoc1.ukc.ac.uk
22 tdb 1.41
23 tdb 1.15 config.computing=computing.conf
24 tdb 1.41 config.rocks=rocks.conf
25 tdb 1.42 config.compsoc1=rocks.conf
26 ajm 1.14
27     # for library machines
28 tdb 1.15 group.library=Host.129.12.58.*;
29 ajm 1.14 config.library=library.conf
30    
31 tdb 1.15 # for SSB machines
32     group.ssb=Host.stue*.ukc.ac.uk;
33     config.ssb=ssb.conf
34    
35 ajm 1.14 # mySQL configuration
36     config.mySQL=mySQL.conf
37    
38 ajm 1.16 ############################################################
39     #### Misc system-wide configuration
40     ############################################################
41    
42     # the time (in seconds) that checks should be made for
43     # changes in configuration
44     ConfigurationProxy.updateTime=60
45    
46     # The time interval at which the Queue's should be monitored
47     Queue.MonitorInterval=15
48 tdb 1.40 # The upper limit for a Queue
49     Queue.SizeLimit=1000
50     # The removal algorithm
51     Queue.RemoveAlgorithm=FIRST
52 tdb 1.2
53 ajm 1.14
54     ############################################################
55     #### FilterManager configuration
56     ############################################################
57 tdb 1.2
58     # The default port to listen for new host connections
59     FilterManager.listenPort=4567
60    
61 ajm 1.14
62    
63     ############################################################
64     #### Filter configuration
65     ############################################################
66    
67 tdb 1.2 # The default port for Filter's to listen on
68     Filter.UDPListenPort=4589
69     Filter.TCPListenPort=4589
70    
71 ajm 1.14 # Plugin Information
72 tdb 1.36 Filter.PluginsPackage=uk.org.iscream.filter.plugins
73 ajm 1.14 Filter.Plugins=TypeChecker;EnforceEssentialData
74    
75 tdb 1.2 # The name for the root filter
76     RootFilter.name=root
77 ajm 1.14
78     # The default parent filter (should almost always be the same as Filter.rootFilter)
79     Filter.parentFilter=root
80    
81    
82    
83     ############################################################
84     #### Root filter interfaces configuration
85     ############################################################
86    
87 tdb 1.2 # Comment either of these (or delete them) and
88     # that interface won't be started
89     RootFilter.realtimeInterfaceName=realtimeclients
90 tdb 1.6 RootFilter.dbInterfaceName=database
91 tdb 1.2
92 ajm 1.14
93    
94     ############################################################
95     #### Client interface configuration
96     ############################################################
97    
98 tdb 1.2 # The port for the client interface to listen on
99     ClientInterface.listenPort=4510
100    
101 ajm 1.14
102    
103     ############################################################
104     #### Host Configuration
105     ############################################################
106 tdb 1.2
107     # The default filter for a new host
108 tdb 1.36 Host.filter=computingFilter;
109 tdb 1.13
110 tdb 1.2 # The default update times for a new host
111 tdb 1.7 Host.UDPUpdateTime=10
112 tdb 1.2 Host.TCPUpdateTime=60
113 tdb 1.15 Host.AveragerUpdateTime=5
114 tdb 1.2
115 ajm 1.8 # The services checks to run on a host
116 tdb 1.36 Host.serviceChecksPackage=uk.org.iscream.filter.plugins
117 tdb 1.2
118 ajm 1.14
119 tdb 1.12
120 ajm 1.14 ############################################################
121     #### Monitor Configuration
122     ############################################################
123    
124 tdb 1.47 ## The monitors to run
125 tdb 1.36 Monitor.PluginsPackage=uk.org.iscream.client.monitors
126 tdb 1.51 Monitor.Plugins=CPU;Load;Process;Disk;Memory;Swap;Services;\
127     Heartbeat;Queue;UserCount;WebFeeder;
128 tdb 1.24
129 tdb 1.47 ## Default alert timeouts
130     # these can be override on a per-monitor basis
131     # timings of the alerts (in seconds)
132     Monitor.alertTimeout.NOTICE=60
133     Monitor.alertTimeout.WARNING=900
134     Monitor.alertTimeout.CAUTION=1800
135     Monitor.alertTimeout.CRITICAL=3600
136 ajm 1.14
137 tdb 1.47 ## Threshold values
138 ajm 1.16 #
139     # note: if the UPPER threshold is broken,
140     # the alertTimeout values are halved.
141     # This is to escalate the alert quicker.
142 tdb 1.47 #
143    
144     # CPU monitor threshold values
145 ajm 1.16 Monitor.CPU.threshold.LOWER=90
146     Monitor.CPU.threshold.UPPER=99
147    
148 tdb 1.44
149 tdb 1.47 # Load monitor threshold values
150 tdb 1.44 Monitor.Load.threshold.LOWER=10.0
151     Monitor.Load.threshold.UPPER=20.0
152    
153    
154 tdb 1.47 # Process Count threshold values
155 tdb 1.44 Monitor.Process.threshold.LOWER=1000
156     Monitor.Process.threshold.UPPER=1500
157    
158 tdb 1.24
159 tdb 1.47 # Memory monitor threshold values
160 tdb 1.24 Monitor.Memory.threshold.LOWER=80
161     Monitor.Memory.threshold.UPPER=90
162    
163    
164 tdb 1.47 # Swap monitor threshold values
165 tdb 1.24 Monitor.Swap.threshold.LOWER=80
166     Monitor.Swap.threshold.UPPER=90
167 tdb 1.50
168    
169     # UserCount monitor threshold values
170     Monitor.UserCount.threshold.LOWER=100
171     Monitor.UserCount.threshold.UPPER=200
172 tdb 1.24
173 ajm 1.33
174 tdb 1.47 # Disk monitor threshold values
175 tdb 1.42 Monitor.Disk.threshold.LOWER=90
176     Monitor.Disk.threshold.UPPER=95
177 tdb 1.47 # Thresholds given are PERCENTAGE or VALUE
178     # where PERCENTAGE is a percentage of disk in use
179     # and VALUE is an absolute value of space free
180 tdb 1.46 Monitor.Disk.thresholdMeasure=PERCENTAGE
181 ajm 1.33
182 tdb 1.46
183 tdb 1.47 # Disk monitor threshold values
184 tdb 1.49 Monitor.Queue.threshold.LOWER=50
185     Monitor.Queue.threshold.UPPER=80
186 tdb 1.47 # Thresholds given are PERCENTAGE or VALUE
187     # where PERCENTAGE is a percentage of disk in use
188     # and VALUE is an absolute value of space free
189 tdb 1.46 Monitor.Queue.thresholdMeasure=PERCENTAGE
190    
191 ajm 1.34
192 tdb 1.47 # Services monitor threshold values
193 ajm 1.34 #
194     # THE SERVICES MONITOR USES A HACK
195     # WHEREBY IT USES THE SERVICE STATUS
196     # AS THE THRESHOLD LEVEL. THIS SHOULD
197     # BE LOOKED AT!
198     #
199 tdb 1.47 # how many times we should be at the highest level before
200     # we go to a FINAL alert
201 tdb 1.38 Monitor.Services.reachFINALcount=5
202    
203 ajm 1.14
204 tdb 1.47 # Heartbeat threshold values
205 tdb 1.25 # these are values in seconds from when the heartbeat
206     # was *expected* to arrive (ie. last + hearbeat period)
207 tdb 1.48 Monitor.Heartbeat.threshold.LOWER=180
208 tdb 1.38 Monitor.Heartbeat.threshold.UPPER=300
209 tdb 1.47 # this is how often we will run a "check" of heartbeats
210 tdb 1.48 Monitor.Heartbeat.checkPeriod=50
211 tdb 1.47 # how many times we should be at the highest level before
212     # we go to a FINAL alert
213     Monitor.Heartbeat.reachFINALcount=5
214    
215 ajm 1.14
216 ajm 1.23
217 ajm 1.14 ############################################################
218     #### Alerter Configuration
219     ############################################################
220 ajm 1.23 # The following var's are understood by ALL alerters for messages
221     #
222     # %level% - the alert level (eg, WARNING)
223     # %threshold% - the threshold broken (eg, LOWER)
224     # %source% - the source of the alert (eg, raptor.ukc.ac.uk)
225     # %value% - the value reached (eg, 95)
226     # %thresholdValue% - the value of the threshold broken (eg, 90)
227     # %attributeName% - the attribute that has caused the alert (eg, CPU User)
228     # %timeTillNextAlert% - the time the next alert will be sent out
229     # %timeSinceFirstAlert% - the time elapsed since the first alert for this problem
230     # %timeOfFirstAlert% - the time the first alert was sent
231     #
232 ajm 1.14
233     # alerters to run
234 tdb 1.36 Alerter.PluginsPackage=uk.org.iscream.client.alerters
235 tdb 1.47 Alerter.Plugins=EMail;IRC;WebFeeder;
236    
237 ajm 1.14
238     # EMail alerter configuration
239 tdb 1.38 Alerter.EMail.level = WARNING
240     Alerter.EMail.destList = dev@i-scream.org.uk
241 ajm 1.14 Alerter.EMail.sender = dev@i-scream.org.uk
242     Alerter.EMail.smtpServer = mercury.ukc.ac.uk
243 ajm 1.16 Alerter.EMail.subject = i-scream alert: %level% alert on %source% for %attributeName%
244 tdb 1.38 Alerter.EMail.message = The i-scream distributed central monitoring system has\nraised a %level% alert for the host %source%.\n\nThe value for %attributeName% of %value% has exceeded the\n%threshold% threshold value of %thresholdValue%.\n\nThis alert was originally raised at %timeOfFirstAlert%,\nwhich was %timeSinceFirstAlert% ago.\n\nThe next alert (should one occur) will be sent in %timeTillNextAlert%.
245    
246 ajm 1.14
247     # IRC alerter configuration
248 ajm 1.16 Alerter.IRC.level = OK
249 ajm 1.14 Alerter.IRC.IRCServer = killigrew.ukc.ac.uk
250     Alerter.IRC.IRCPort = 6667
251 tdb 1.19 Alerter.IRC.nickList = iscreamBot;_iscreamBot;i-screamBot
252 tdb 1.17 Alerter.IRC.user = i-scream
253     Alerter.IRC.comment = i-scream alerting bot
254 ajm 1.14 Alerter.IRC.channel = #i-scream
255 ajm 1.16 Alerter.IRC.message = %level%: %attributeName% on %source% has passed %threshold%(%thresholdValue%) threshold with %value% - time till next alert (should one occur), %timeTillNextAlert%
256 tdb 1.17 Alerter.IRC.reconnectDelay = 30
257     Alerter.IRC.startupNotice = i-scream alerting bot activated
258     Alerter.IRC.stopCommand = stop alerts
259     Alerter.IRC.startCommand = start alerts
260     Alerter.IRC.lastAlertCommand = last alert
261     Alerter.IRC.joinCommand = join
262 tdb 1.18 Alerter.IRC.nickChangeCommand = nick
263     Alerter.IRC.statCommand = statistics
264     Alerter.IRC.uptimeCommand = uptime
265     Alerter.IRC.timeSinceLastAlertCommand = time since last alert
266 tdb 1.19 Alerter.IRC.versionCommand = version
267 tdb 1.17 Alerter.IRC.helpCommand = help
268     Alerter.IRC.rejectMessage = sorry, I don't understand your request
269 tdb 1.29
270 tdb 1.47
271    
272 tdb 1.29 ############################################################
273     #### WebFeeder Configuration
274     ############################################################
275    
276 tdb 1.32 # Define these (one or both_ to turn on the WebFeeder's,
277     # comment it to turn them off
278     WebFeeder.latestActive = true
279     WebFeeder.alertActive = true
280 tdb 1.43
281     # Only pass on alerts past this level
282     WebFeeder.alertLevel = OK
283 tdb 1.37
284     # Check period in seconds (for cleaning stale/old alerts)
285 tdb 1.42 WebFeeder.checkPeriod = 120
286 tdb 1.37
287     # Delete alerts older than this, in seconds.
288     # Files are only check every WebFeeder.checkPeriod seconds.
289 tdb 1.42 WebFeeder.alertDeleteOlderThan = 300
290 tdb 1.32
291 tdb 1.29 # Root Path
292     WebFeeder.rootPath = /usr/local/proj/co600_10/webroot
293    
294     # Latest Data
295     WebFeeder.latestSubDir = latest
296 tdb 1.31 WebFeeder.latestFileName = latest_data
297 tdb 1.32
298     # Alert Data
299     WebFeeder.alertSubDir = alert
300     WebFeeder.alertFileName = alert_data
301 ajm 1.16
302 tdb 1.47
303 tdb 1.17 ############################################################