73 |
|
# The internal Queue's can be monitored. This specifies |
74 |
|
# the interval, in seconds, at which their state should |
75 |
|
# be monitored. |
76 |
< |
Queue.MonitorInterval=15 |
76 |
> |
Queue.MonitorInterval=300 |
77 |
|
# The maximum size a Queue can be before items are |
78 |
|
# dropped when new ones arrive. |
79 |
|
Queue.SizeLimit=1000 |
211 |
|
Host.filter=filter1; |
212 |
|
|
213 |
|
# Hosts send data every UDPUpdateTime, in seconds. |
214 |
< |
Host.UDPUpdateTime=10 |
214 |
> |
Host.UDPUpdateTime=60 |
215 |
|
|
216 |
+ |
# How long a hosts config is valid for (a TTL effectively) |
217 |
+ |
# after this time, in seconds, has passed a host should |
218 |
+ |
# consider it's configuration invalid and check for a new |
219 |
+ |
# configuration as soon as it can. |
220 |
+ |
Host.ConfigTTL=3600 |
221 |
+ |
|
222 |
|
# We can run service checks on a host. The java package |
223 |
|
# which contains them is specified here. |
224 |
|
Host.serviceChecksPackage=uk.org.iscream.cms.server.filter.plugins |
233 |
|
Monitor.PluginsPackage=uk.org.iscream.cms.server.client.monitors |
234 |
|
# And which ones should be loaded. |
235 |
|
Monitor.Plugins=CPU;Load;Process;Disk;Memory;Swap;Services;\ |
236 |
< |
Heartbeat;Queue;UserCount;WebFeeder; |
236 |
> |
Heartbeat;Queue;UserCount;WebFeeder;DiskIO;\ |
237 |
> |
NetIO;Paging; |
238 |
|
|
239 |
|
# Alerts timeout after a given time in seconds and go up |
240 |
|
# to the next level. These can be overridden for monitors |
260 |
|
Monitor.Load.threshold.LOWER=10.0 |
261 |
|
Monitor.Load.threshold.UPPER=20.0 |
262 |
|
|
263 |
+ |
# Paging monitor threshold values |
264 |
+ |
Monitor.Paging.threshold.LOWER=1000 |
265 |
+ |
Monitor.Paging.threshold.UPPER=5000 |
266 |
+ |
|
267 |
|
# Process Count threshold values |
268 |
|
Monitor.Process.threshold.LOWER=500 |
269 |
|
Monitor.Process.threshold.UPPER=1000 |
286 |
|
# Disk monitor threshold values |
287 |
|
Monitor.Disk.threshold.LOWER=90 |
288 |
|
Monitor.Disk.threshold.UPPER=95 |
289 |
+ |
Monitor.DiskInode.threshold.LOWER=90 |
290 |
+ |
Monitor.DiskInode.threshold.UPPER=95 |
291 |
|
# Thresholds given are PERCENTAGE or VALUE |
292 |
|
# where PERCENTAGE is a percentage of disk in use |
293 |
|
# and VALUE is an absolute value of space free |
294 |
|
Monitor.Disk.thresholdMeasure=PERCENTAGE |
295 |
+ |
Monitor.DiskInode.thresholdMeasure=PERCENTAGE |
296 |
+ |
|
297 |
+ |
# DiskIO monitor threshold values (in bytes) |
298 |
+ |
Monitor.DiskIO.rbytes.threshold.LOWER=10000000 |
299 |
+ |
Monitor.DiskIO.rbytes.threshold.UPPER=50000000 |
300 |
+ |
Monitor.DiskIO.wbytes.threshold.LOWER=10000000 |
301 |
+ |
Monitor.DiskIO.wbytes.threshold.UPPER=50000000 |
302 |
+ |
|
303 |
+ |
# NetIO monitor threshold values (in bytes) |
304 |
+ |
Monitor.NetIO.rxbytes.threshold.LOWER=10000000 |
305 |
+ |
Monitor.NetIO.rxbytes.threshold.UPPER=50000000 |
306 |
+ |
Monitor.NetIO.txbytes.threshold.LOWER=10000000 |
307 |
+ |
Monitor.NetIO.txbytes.threshold.UPPER=50000000 |
308 |
|
|
309 |
|
# Queue monitor threshold values |
310 |
|
Monitor.Queue.threshold.LOWER=50 |