ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/build/etc/system.conf
(Generate patch)

Comparing projects/cms/source/server/build/etc/system.conf (file contents):
Revision 1.20 by tdb, Mon Mar 5 02:00:37 2001 UTC vs.
Revision 1.64 by tdb, Wed Mar 20 16:32:37 2002 UTC

# Line 14 | Line 14
14  
15   # for computing machines
16   group.computing=Host.129.12.4.*;
17 + 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 + group.compsoc=Host.compsoc1.ukc.ac.uk
22 +
23   config.computing=computing.conf
24 + config.rocks=rocks.conf
25 + config.compsoc1=rocks.conf
26  
27   # for library machines
28   group.library=Host.129.12.58.*;
# Line 37 | Line 45 | ConfigurationProxy.updateTime=60
45  
46   # The time interval at which the Queue's should be monitored
47   Queue.MonitorInterval=15
48 + # The upper limit for a Queue
49 + Queue.SizeLimit=1000
50 + # The removal algorithm
51 + Queue.RemoveAlgorithm=FIRST
52  
53  
42
54   ############################################################
55   #### FilterManager configuration
56   ############################################################
# Line 47 | Line 58 | Queue.MonitorInterval=15
58   # The default port to listen for new host connections
59   FilterManager.listenPort=4567
60  
61 + # Access control list
62 + FilterManager.ACL=DEFAULT:DENY;*.ukc.ac.uk:ALLOW;129.12.*:ALLOW
63  
64  
65 +
66   ############################################################
67   #### Filter configuration
68   ############################################################
# Line 58 | Line 72 | Filter.UDPListenPort=4589
72   Filter.TCPListenPort=4589
73  
74   # Plugin Information
75 < Filter.PluginsPackage=uk.ac.ukc.iscream.filter.plugins
76 < Filter.Plugins=TypeChecker;EnforceEssentialData
75 > Filter.PluginsPackage=uk.org.iscream.cms.server.filter.plugins
76 > Filter.Plugins=TypeChecker;EnforceEssentialData;SourceChecker
77  
78   # The name for the root filter
79   RootFilter.name=root
# Line 67 | Line 81 | RootFilter.name=root
81   # The default parent filter (should almost always be the same as Filter.rootFilter)
82   Filter.parentFilter=root
83  
84 + # The input methods to activate
85 + # (comment or set to 0 to disable)
86 + Filter.ActivateTCPReader=1
87 + Filter.ActivateUDPReader=1
88 + Filter.ActivateCORBAReader=1
89  
90 + # Access control list for the TCP and UDP inputs
91 + Filter.TCPACL=DEFAULT:DENY;*.ukc.ac.uk:ALLOW;129.12.*:ALLOW
92 + Filter.UDPACL=DEFAULT:DENY;*.ukc.ac.uk:ALLOW;129.12.*:ALLOW
93  
94 + # Access control list for the SourceChecker plugin
95 + #   - packets not permitted by this ACL will be filtered
96 + Filter.SourceCheckerPluginACL=DEFAULT:DENY;*.ukc.ac.uk:ALLOW;129.12.*:ALLOW
97 +
98 +
99 +
100   ############################################################
101   #### Root filter interfaces configuration
102   ############################################################
# Line 86 | Line 114 | RootFilter.dbInterfaceName=database
114  
115   # The port for the client interface to listen on
116   ClientInterface.listenPort=4510
117 + # The name for the client interface
118 + ClientInterface.name=realtimeclients
119  
120 + # Access Control List for TCP Clients
121 + ClientInterface.TCPControlChannelACL=DEFAULT:DENY;*.ukc.ac.uk:ALLOW;129.12.*:ALLOW
122 + ClientInterface.TCPDataChannelACL=DEFAULT:DENY;*.ukc.ac.uk:ALLOW;129.12.*:ALLOW
123  
124  
125 +
126   ############################################################
127 + #### Database interface configuration
128 + ############################################################
129 +
130 + # The name for the Database interface
131 + DBInterface.name=database
132 +
133 +
134 +
135 + ############################################################
136   #### Host Configuration
137   ############################################################
138  
139   # The default filter for a new host
140 < Host.filter=filter1
140 > Host.filter=computingFilter;
141  
142   # The default update times for a new host
143   Host.UDPUpdateTime=10
144   Host.TCPUpdateTime=60
102 Host.AveragerUpdateTime=5
145  
146   # The services checks to run on a host
147 < Host.serviceChecksPackage=uk.ac.ukc.iscream.filter.plugins
106 < Host.serviceChecks=HTTP;SMTP
147 > Host.serviceChecksPackage=uk.org.iscream.cms.server.filter.plugins
148  
149  
150  
# Line 111 | Line 152 | Host.serviceChecks=HTTP;SMTP
152   #### Monitor Configuration
153   ############################################################
154  
155 < # the monitors to run
156 < Monitor.PluginsPackage=uk.ac.ukc.iscream.client.monitors
157 < Monitor.Plugins=CPU;
155 > ## The monitors to run
156 > Monitor.PluginsPackage=uk.org.iscream.cms.server.client.monitors
157 > Monitor.Plugins=CPU;Load;Process;Disk;Memory;Swap;Services;\
158 >                Heartbeat;Queue;UserCount;WebFeeder;
159  
160 < # CPU monitor configuration
161 < # threshold values
160 > ## Default alert timeouts
161 > # these can be override on a per-monitor basis
162 > # timings of the alerts (in seconds)
163 > Monitor.alertTimeout.NOTICE=60
164 > Monitor.alertTimeout.WARNING=900
165 > Monitor.alertTimeout.CAUTION=1800
166 > Monitor.alertTimeout.CRITICAL=3600
167 >
168 > ## Threshold values
169   #
170   # note: if the UPPER threshold is broken,
171   # the alertTimeout values are halved.
172   # This is to escalate the alert quicker.
173 + #
174 +
175 + # CPU monitor threshold values
176   Monitor.CPU.threshold.LOWER=90
177   Monitor.CPU.threshold.UPPER=99
178  
127 # timings of the alerts (in seconds)
128 Monitor.CPU.alertTimeout.NOTICE=60
129 Monitor.CPU.alertTimeout.WARNING=900
130 Monitor.CPU.alertTimeout.CAUTION=1800
131 Monitor.CPU.alertTimeout.CRITICAL=3600
179  
180 + # Load monitor threshold values
181 + Monitor.Load.threshold.LOWER=10.0
182 + Monitor.Load.threshold.UPPER=20.0
183  
184  
185 + # Process Count threshold values
186 + Monitor.Process.threshold.LOWER=1000
187 + Monitor.Process.threshold.UPPER=1500
188 +
189 +
190 + # Memory monitor threshold values
191 + Monitor.Memory.threshold.LOWER=80
192 + Monitor.Memory.threshold.UPPER=90
193 +
194 +
195 + # Swap monitor threshold values
196 + Monitor.Swap.threshold.LOWER=80
197 + Monitor.Swap.threshold.UPPER=90
198 +
199 +
200 + # UserCount monitor threshold values
201 + Monitor.UserCount.threshold.LOWER=100
202 + Monitor.UserCount.threshold.UPPER=200
203 +
204 +
205 + # Disk monitor threshold values
206 + Monitor.Disk.threshold.LOWER=90
207 + Monitor.Disk.threshold.UPPER=95
208 + # Thresholds given are PERCENTAGE or VALUE
209 + # where PERCENTAGE is a percentage of disk in use
210 + # and VALUE is an absolute value of space free
211 + Monitor.Disk.thresholdMeasure=PERCENTAGE
212 +
213 +
214 + # Queue monitor threshold values
215 + Monitor.Queue.threshold.LOWER=50
216 + Monitor.Queue.threshold.UPPER=80
217 + # Thresholds given are PERCENTAGE or VALUE
218 + # where PERCENTAGE is a percentage of disk in use
219 + # and VALUE is an absolute value of space free
220 + Monitor.Queue.thresholdMeasure=PERCENTAGE
221 +
222 +
223 + # Services monitor threshold values
224 + #
225 + # THE SERVICES MONITOR USES A HACK
226 + # WHEREBY IT USES THE SERVICE STATUS
227 + # AS THE THRESHOLD LEVEL.  THIS SHOULD
228 + # BE LOOKED AT!
229 + #
230 + # how many times we should be at the highest level before
231 + # we go to a FINAL alert
232 + Monitor.Services.reachFINALcount=5
233 +
234 +
235 + # Heartbeat threshold values
236 + # these are values in seconds from when the heartbeat
237 + # was *expected* to arrive (ie. last + hearbeat period)
238 + Monitor.Heartbeat.threshold.LOWER=180
239 + Monitor.Heartbeat.threshold.UPPER=300
240 + # this is how often we will run a "check" of heartbeats
241 + Monitor.Heartbeat.checkPeriod=50
242 + # how many times we should be at the highest level before
243 + # we go to a FINAL alert
244 + Monitor.Heartbeat.reachFINALcount=5
245 + # list of hosts we expect to have at startup
246 + # this ensures we notice hosts that aren't running, not
247 + # just those that have gone down recently.
248 + Monitor.Heartbeat.initialHosts=raptor.ukc.ac.uk;myrtle.ukc.ac.uk;kestrel.ukc.ac.uk
249 +
250 +
251 +
252   ############################################################
253   #### Alerter Configuration
254   ############################################################
255 + # The following var's are understood by ALL alerters for messages
256 + #
257 + # %level%               - the alert level (eg, WARNING)
258 + # %threshold%           - the threshold broken (eg, LOWER)
259 + # %source%              - the source of the alert (eg, raptor.ukc.ac.uk)
260 + # %value%               - the value reached (eg, 95)
261 + # %thresholdValue%      - the value of the threshold broken (eg, 90)
262 + # %attributeName%       - the attribute that has caused the alert (eg, CPU User)
263 + # %timeTillNextAlert%   - the time the next alert will be sent out
264 + # %timeSinceFirstAlert% - the time elapsed since the first alert for this problem
265 + # %timeOfFirstAlert%    - the time the first alert was sent
266 + #
267  
268   # alerters to run
269 < Alerter.PluginsPackage=uk.ac.ukc.iscream.client.alerters
270 < Alerter.Plugins=EMail;IRC;
269 > Alerter.PluginsPackage=uk.org.iscream.cms.server.client.alerters
270 > Alerter.Plugins=EMail;IRC;WebFeeder;Logging;
271  
272 +
273   # EMail alerter configuration
274 < Alerter.EMail.level = CAUTION
275 < Alerter.EMail.defaultDestList = dev@i-scream.org.uk
274 > Alerter.EMail.level = WARNING
275 > Alerter.EMail.destList = dev@i-scream.org.uk
276   Alerter.EMail.sender = dev@i-scream.org.uk
277   Alerter.EMail.smtpServer = mercury.ukc.ac.uk
278   Alerter.EMail.subject = i-scream alert: %level% alert on %source% for %attributeName%
279 < 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\nThe next alert (should one occur) will be sent in %timeTillNextAlert%.
279 > 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%.
280  
281 +
282   # IRC alerter configuration
283   Alerter.IRC.level = OK
284   Alerter.IRC.IRCServer = killigrew.ukc.ac.uk
285   Alerter.IRC.IRCPort = 6667
286   Alerter.IRC.nickList = iscreamBot;_iscreamBot;i-screamBot
287   Alerter.IRC.user = i-scream
288 < Alerter.IRC.comment = i-scream alerting bot
288 > Alerter.IRC.comment = i-scream alerting bot (based on PircBot)
289 > Alerter.IRC.finger = i-scream alerting bot (based on PircBot)
290   Alerter.IRC.channel = #i-scream
291   Alerter.IRC.message = %level%: %attributeName% on %source% has passed %threshold%(%thresholdValue%) threshold with %value% - time till next alert (should one occur), %timeTillNextAlert%
292   Alerter.IRC.reconnectDelay = 30
# Line 171 | Line 303 | Alerter.IRC.versionCommand = version
303   Alerter.IRC.helpCommand = help
304   Alerter.IRC.rejectMessage = sorry, I don't understand your request
305  
306 +
307 + # Logging alerter configuration
308 + Alerter.Logging.level = WARNING
309 + Alerter.Logging.message = %level%: %attributeName% on %source% has passed %threshold%(%thresholdValue%) threshold with %value%
310 +
311 +
312 +
313   ############################################################
314 + #### WebFeeder Configuration
315 + ############################################################
316  
317 + # Define these (one or both_ to turn on the WebFeeder's,
318 + # comment it to turn them off
319 + WebFeeder.latestActive = true
320 + WebFeeder.alertActive = true
321 +
322 + # Only pass on alerts past this level
323 + Alerter.WebFeeder.level = OK
324 +
325 + # Check period in seconds (for cleaning stale/old alerts)
326 + WebFeeder.checkPeriod = 120
327 +
328 + # Delete alerts older than this, in seconds.
329 + # Files are only check every WebFeeder.checkPeriod seconds.
330 + WebFeeder.alertDeleteOlderThan = 300
331 +
332 + # Root Path
333 + WebFeeder.rootPath = /usr/local/proj/co600_10/webroot
334 +
335 + # Latest Data
336 + WebFeeder.latestSubDir = latest
337 + WebFeeder.latestFileName = latest_data
338 +
339 + # Alert Data
340 + WebFeeder.alertSubDir = alert
341 + WebFeeder.alertFileName = alert_data
342 +
343 +
344 + ############################################################

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines