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.3 by tdb, Thu Jan 18 12:06:07 2001 UTC vs.
Revision 1.33 by ajm, Fri Mar 9 01:23:16 2001 UTC

# Line 7 | Line 7
7   #
8   # $Author$
9   # $Id$
10 + #
11 + ############################################################
12 + #### Configuration Files & Groups
13 + ############################################################
14  
15 < # FilterManager configuration
15 > # for computing machines
16 > group.computing=Host.129.12.4.*;
17 > config.computing=computing.conf
18  
19 + # for library machines
20 + group.library=Host.129.12.58.*;
21 + config.library=library.conf
22 +
23 + # for SSB machines
24 + group.ssb=Host.stue*.ukc.ac.uk;
25 + config.ssb=ssb.conf
26 +
27 + # mySQL configuration
28 + config.mySQL=mySQL.conf
29 +
30 + ############################################################
31 + #### Misc system-wide configuration
32 + ############################################################
33 +
34 + # the time (in seconds) that checks should be made for
35 + # changes in configuration
36 + ConfigurationProxy.updateTime=60
37 +
38 + # The time interval at which the Queue's should be monitored
39 + Queue.MonitorInterval=15
40 +
41 +
42 +
43 + ############################################################
44 + #### FilterManager configuration
45 + ############################################################
46 +
47   # The default port to listen for new host connections
48   FilterManager.listenPort=4567
49  
50 +
51 +
52 + ############################################################
53 + #### Filter configuration
54 + ############################################################
55 +
56   # The default port for Filter's to listen on
57   Filter.UDPListenPort=4589
58   Filter.TCPListenPort=4589
59  
60 + # Plugin Information
61 + Filter.PluginsPackage=uk.ac.ukc.iscream.filter.plugins
62 + Filter.Plugins=TypeChecker;EnforceEssentialData
63 +
64   # The name for the root filter
65   RootFilter.name=root
66 +
67 + # The default parent filter (should almost always be the same as Filter.rootFilter)
68 + Filter.parentFilter=root
69 +
70 +
71 +
72 + ############################################################
73 + #### Root filter interfaces configuration
74 + ############################################################
75 +
76   # Comment either of these (or delete them) and
77   # that interface won't be started
78   RootFilter.realtimeInterfaceName=realtimeclients
79 < #RootFilter.dbInterfaceName=database
79 > RootFilter.dbInterfaceName=database
80  
81 +
82 +
83 + ############################################################
84 + #### Client interface configuration
85 + ############################################################
86 +
87   # The port for the client interface to listen on
88   ClientInterface.listenPort=4510
89  
30 # The default parent filter (should almost always be the same as Filter.rootFilter)
31 Filter.parentFilter=root
90  
91 +
92 + ############################################################
93 + #### Host Configuration
94 + ############################################################
95 +
96   # The default filter for a new host
97 < Host.filter=filter1
97 > Host.filter=filter1;
98  
99   # The default update times for a new host
100 < Host.UDPUpdateTime=5
100 > Host.UDPUpdateTime=10
101   Host.TCPUpdateTime=60
102 + Host.AveragerUpdateTime=5
103  
104 < # Plugin Information
105 < Filter.PluginsPackage=uk.ac.ukc.iscream.filter.plugins
106 < Filter.Plugins=EnforceEssentialData
104 > # The services checks to run on a host
105 > Host.serviceChecksPackage=uk.ac.ukc.iscream.filter.plugins
106 > Host.serviceChecks=HTTP;SMTP;POP3;SSH;FTP;IMAP;Telnet
107  
108 < # mySQL Details
109 < config.mySQL=mySQL.conf
108 >
109 >
110 > ############################################################
111 > #### Monitor Configuration
112 > ############################################################
113 >
114 > # the monitors to run
115 > Monitor.PluginsPackage=uk.ac.ukc.iscream.client.monitors
116 > Monitor.Plugins=CPU;Disk;Memory;Swap;Heartbeat;WebFeeder;
117 >
118 >
119 > ## CPU monitor configuration
120 > # threshold values
121 > #
122 > # note: if the UPPER threshold is broken,
123 > # the alertTimeout values are halved.
124 > # This is to escalate the alert quicker.
125 > Monitor.CPU.threshold.LOWER=90
126 > Monitor.CPU.threshold.UPPER=99
127 >
128 > # timings of the alerts (in seconds)
129 > Monitor.CPU.alertTimeout.NOTICE=60
130 > Monitor.CPU.alertTimeout.WARNING=900
131 > Monitor.CPU.alertTimeout.CAUTION=1800
132 > Monitor.CPU.alertTimeout.CRITICAL=3600
133 >
134 >
135 > ## Memory monitor configuration
136 > # threshold values
137 > #
138 > # note: if the UPPER threshold is broken,
139 > # the alertTimeout values are halved.
140 > # This is to escalate the alert quicker.
141 > Monitor.Memory.threshold.LOWER=80
142 > Monitor.Memory.threshold.UPPER=90
143 >
144 > # timings of the alerts (in seconds)
145 > Monitor.Memory.alertTimeout.NOTICE=60
146 > Monitor.Memory.alertTimeout.WARNING=900
147 > Monitor.Memory.alertTimeout.CAUTION=1800
148 > Monitor.Memory.alertTimeout.CRITICAL=3600
149 >
150 >
151 > ## Swap monitor configuration
152 > # threshold values
153 > #
154 > # note: if the UPPER threshold is broken,
155 > # the alertTimeout values are halved.
156 > # This is to escalate the alert quicker.
157 > Monitor.Swap.threshold.LOWER=80
158 > Monitor.Swap.threshold.UPPER=90
159 >
160 > # timings of the alerts (in seconds)
161 > Monitor.Swap.alertTimeout.NOTICE=60
162 > Monitor.Swap.alertTimeout.WARNING=900
163 > Monitor.Swap.alertTimeout.CAUTION=1800
164 > Monitor.Swap.alertTimeout.CRITICAL=3600
165 >
166 >
167 > ## Disk monitor configuration
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 > Monitor.Disk.threshold.LOWER=80
174 > Monitor.Disk.threshold.UPPER=90
175 >
176 > # timings of the alerts (in seconds)
177 > Monitor.Disk.alertTimeout.NOTICE=60
178 > Monitor.Disk.alertTimeout.WARNING=900
179 > Monitor.Disk.alertTimeout.CAUTION=1800
180 > Monitor.Disk.alertTimeout.CRITICAL=3600
181 >
182 >
183 > ## Heartbeat monitor configuration
184 > # threshold values
185 > #
186 > # note: if the UPPER threshold is broken,
187 > # the alertTimeout values are halved.
188 > # This is to escalate the alert quicker.
189 > Monitor.Heartbeat.checkPeriod=50
190 > # these are values in seconds from when the heartbeat
191 > # was *expected* to arrive (ie. last + hearbeat period)
192 > Monitor.Heartbeat.threshold.LOWER=120
193 > Monitor.Heartbeat.threshold.LOWER=300
194 >
195 > # timings of the alerts (in seconds)
196 > Monitor.Heartbeat.alertTimeout.NOTICE=60
197 > Monitor.Heartbeat.alertTimeout.WARNING=900
198 > Monitor.Heartbeat.alertTimeout.CAUTION=1800
199 > Monitor.Heartbeat.alertTimeout.CRITICAL=3600
200 >
201 > # this means it will reach a FINAL level,
202 > # and thus the host will be removed from the monitor list,
203 > # if the highest level alert is reached and occours this
204 > # number of times.
205 > #
206 > # int this setup, that means 5 CRITICAL alerts would occour
207 > # on a Heartbeat before reaching FINAL.
208 > # If this value is wrong or not present, FINAL is never reached
209 > #
210 > Monitor.Heartbeat.reachFINALcount=5
211 >
212 > ############################################################
213 > #### Alerter Configuration
214 > ############################################################
215 > # The following var's are understood by ALL alerters for messages
216 > #
217 > # %level%               - the alert level (eg, WARNING)
218 > # %threshold%           - the threshold broken (eg, LOWER)
219 > # %source%              - the source of the alert (eg, raptor.ukc.ac.uk)
220 > # %value%               - the value reached (eg, 95)
221 > # %thresholdValue%      - the value of the threshold broken (eg, 90)
222 > # %attributeName%       - the attribute that has caused the alert (eg, CPU User)
223 > # %timeTillNextAlert%   - the time the next alert will be sent out
224 > # %timeSinceFirstAlert% - the time elapsed since the first alert for this problem
225 > # %timeOfFirstAlert%    - the time the first alert was sent
226 > #
227 >
228 > # alerters to run
229 > Alerter.PluginsPackage=uk.ac.ukc.iscream.client.alerters
230 > Alerter.Plugins=EMail;IRC;WebFeeder;
231 >
232 > # EMail alerter configuration
233 > Alerter.EMail.level = CAUTION
234 > Alerter.EMail.defaultDestList = dev@i-scream.org.uk
235 > Alerter.EMail.sender = dev@i-scream.org.uk
236 > Alerter.EMail.smtpServer = mercury.ukc.ac.uk
237 > Alerter.EMail.subject = i-scream alert: %level% alert on %source% for %attributeName%
238 > 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%.
239 >
240 > # IRC alerter configuration
241 > Alerter.IRC.level = OK
242 > Alerter.IRC.IRCServer = killigrew.ukc.ac.uk
243 > Alerter.IRC.IRCPort = 6667
244 > Alerter.IRC.nickList = iscreamBot;_iscreamBot;i-screamBot
245 > Alerter.IRC.user = i-scream
246 > Alerter.IRC.comment = i-scream alerting bot
247 > Alerter.IRC.channel = #i-scream
248 > Alerter.IRC.message = %level%: %attributeName% on %source% has passed %threshold%(%thresholdValue%) threshold with %value% - time till next alert (should one occur), %timeTillNextAlert%
249 > Alerter.IRC.reconnectDelay = 30
250 > Alerter.IRC.startupNotice = i-scream alerting bot activated
251 > Alerter.IRC.stopCommand = stop alerts
252 > Alerter.IRC.startCommand = start alerts
253 > Alerter.IRC.lastAlertCommand = last alert
254 > Alerter.IRC.joinCommand = join
255 > Alerter.IRC.nickChangeCommand = nick
256 > Alerter.IRC.statCommand = statistics
257 > Alerter.IRC.uptimeCommand = uptime
258 > Alerter.IRC.timeSinceLastAlertCommand = time since last alert
259 > Alerter.IRC.versionCommand = version
260 > Alerter.IRC.helpCommand = help
261 > Alerter.IRC.rejectMessage = sorry, I don't understand your request
262 >
263 > ############################################################
264 > #### WebFeeder Configuration
265 > ############################################################
266 >
267 > # Define these (one or both_ to turn on the WebFeeder's,
268 > # comment it to turn them off
269 > WebFeeder.latestActive = true
270 > WebFeeder.alertActive = true
271 >
272 > # Root Path
273 > WebFeeder.rootPath = /usr/local/proj/co600_10/webroot
274 >
275 > # Latest Data
276 > WebFeeder.latestSubDir = latest
277 > WebFeeder.latestFileName = latest_data
278 >
279 > # Alert Data
280 > WebFeeder.alertSubDir = alert
281 > WebFeeder.alertFileName = alert_data
282 >
283 > ############################################################
284 >

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines