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.42 by tdb, Mon Mar 19 20:57:41 2001 UTC vs.
Revision 1.64 by tdb, Wed Mar 20 16:32:37 2002 UTC

# Line 58 | Line 58 | Queue.RemoveAlgorithm=FIRST
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 69 | Line 72 | Filter.UDPListenPort=4589
72   Filter.TCPListenPort=4589
73  
74   # Plugin Information
75 < Filter.PluginsPackage=uk.org.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 78 | 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 97 | 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  
# Line 110 | Line 142 | Host.filter=computingFilter;
142   # The default update times for a new host
143   Host.UDPUpdateTime=10
144   Host.TCPUpdateTime=60
113 Host.AveragerUpdateTime=5
145  
146   # The services checks to run on a host
147 < Host.serviceChecksPackage=uk.org.iscream.filter.plugins
147 > Host.serviceChecksPackage=uk.org.iscream.cms.server.filter.plugins
148  
149  
150  
# Line 121 | Line 152 | Host.serviceChecksPackage=uk.org.iscream.filter.plugin
152   #### Monitor Configuration
153   ############################################################
154  
155 < # the monitors to run
156 < Monitor.PluginsPackage=uk.org.iscream.client.monitors
157 < Monitor.Plugins=CPU;Disk;Memory;Swap;Services;Heartbeat;WebFeeder;
158 < #Monitor.Plugins=CPU;WebFeeder;
128 < #Monitor.Plugins=
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 + ## 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 < ## CPU monitor configuration
132 < # threshold values
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  
140 # timings of the alerts (in seconds)
141 Monitor.CPU.alertTimeout.NOTICE=60
142 Monitor.CPU.alertTimeout.WARNING=900
143 Monitor.CPU.alertTimeout.CAUTION=1800
144 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 < ## Memory monitor configuration
185 < # threshold values
186 < #
187 < # note: if the UPPER threshold is broken,
188 < # the alertTimeout values are halved.
189 < # This is to escalate the alert quicker.
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  
156 # timings of the alerts (in seconds)
157 Monitor.Memory.alertTimeout.NOTICE=60
158 Monitor.Memory.alertTimeout.WARNING=900
159 Monitor.Memory.alertTimeout.CAUTION=1800
160 Monitor.Memory.alertTimeout.CRITICAL=3600
194  
195 <
163 < ## Swap monitor configuration
164 < # threshold values
165 < #
166 < # note: if the UPPER threshold is broken,
167 < # the alertTimeout values are halved.
168 < # This is to escalate the alert quicker.
195 > # Swap monitor threshold values
196   Monitor.Swap.threshold.LOWER=80
197   Monitor.Swap.threshold.UPPER=90
198  
172 # timings of the alerts (in seconds)
173 Monitor.Swap.alertTimeout.NOTICE=60
174 Monitor.Swap.alertTimeout.WARNING=900
175 Monitor.Swap.alertTimeout.CAUTION=1800
176 Monitor.Swap.alertTimeout.CRITICAL=3600
199  
200 + # UserCount monitor threshold values
201 + Monitor.UserCount.threshold.LOWER=100
202 + Monitor.UserCount.threshold.UPPER=200
203  
204 < ## Disk monitor configuration
205 < # threshold values
181 < #
182 < # note: if the UPPER threshold is broken,
183 < # the alertTimeout values are halved.
184 < # This is to escalate the alert quicker.
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  
188 # timings of the alerts (in seconds)
189 Monitor.Disk.alertTimeout.NOTICE=60
190 Monitor.Disk.alertTimeout.WARNING=900
191 Monitor.Disk.alertTimeout.CAUTION=1800
192 Monitor.Disk.alertTimeout.CRITICAL=3600
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 < ## Services monitor configuration
223 < # threshold values
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 < # note: if the UPPER threshold is broken,
231 < # the alertTimeout values are halved.
205 < # This is to escalate the alert quicker.
206 < #Monitor.Services.threshold.LOWER=120
207 < #Monitor.Services.threshold.LOWER=300
208 <
209 < # timings of the alerts (in seconds)
210 < Monitor.Services.alertTimeout.NOTICE=60
211 < Monitor.Services.alertTimeout.WARNING=900
212 < Monitor.Services.alertTimeout.CAUTION=1800
213 < Monitor.Services.alertTimeout.CRITICAL=3600
214 <
215 < # Make sure we shut up eventually
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 monitor configuration
220 < # threshold values
221 < #
222 < # note: if the UPPER threshold is broken,
223 < # the alertTimeout values are halved.
224 < # This is to escalate the alert quicker.
225 < Monitor.Heartbeat.checkPeriod=50
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=120
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  
231 # timings of the alerts (in seconds)
232 Monitor.Heartbeat.alertTimeout.NOTICE=60
233 Monitor.Heartbeat.alertTimeout.WARNING=900
234 Monitor.Heartbeat.alertTimeout.CAUTION=1800
235 Monitor.Heartbeat.alertTimeout.CRITICAL=3600
250  
237 # this means it will reach a FINAL level,
238 # and thus the host will be removed from the monitor list,
239 # if the highest level alert is reached and occours this
240 # number of times.
241 #
242 # int this setup, that means 5 CRITICAL alerts would occour
243 # on a Heartbeat before reaching FINAL.
244 # If this value is wrong or not present, FINAL is never reached
245 #
246 Monitor.Heartbeat.reachFINALcount=5
251  
252   ############################################################
253   #### Alerter Configuration
# Line 262 | Line 266 | Monitor.Heartbeat.reachFINALcount=5
266   #
267  
268   # alerters to run
269 < Alerter.PluginsPackage=uk.org.iscream.client.alerters
270 < #Alerter.Plugins=EMail;IRC;WebFeeder;
267 < Alerter.Plugins=IRC;WebFeeder;
268 < #Alerter.Plugins=WebFeeder;
269 < #Alerter.Plugins=
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 = WARNING
275   Alerter.EMail.destList = dev@i-scream.org.uk
# Line 283 | Line 285 | 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 300 | 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   ############################################################
# Line 309 | Line 319 | Alerter.IRC.rejectMessage = sorry, I don't understand
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  
# Line 327 | Line 340 | WebFeeder.latestFileName = latest_data
340   WebFeeder.alertSubDir = alert
341   WebFeeder.alertFileName = alert_data
342  
330 ############################################################
343  
344 + ############################################################

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines