53 |
|
# Any hosts not specified by now have the default |
54 |
|
# config as given in this file. |
55 |
|
|
56 |
– |
# Another component of the system is the mySQL |
57 |
– |
# database part of the server call the DBInterface. |
58 |
– |
# This has it's own config so the passwords for the |
59 |
– |
# mySQL database can be kept seperate. |
60 |
– |
#config.mySQL=mySQL.conf |
56 |
|
|
62 |
– |
|
57 |
|
############################################################ |
58 |
|
#### Misc system-wide configuration |
59 |
|
############################################################ |
67 |
|
# The internal Queue's can be monitored. This specifies |
68 |
|
# the interval, in seconds, at which their state should |
69 |
|
# be monitored. |
70 |
< |
Queue.MonitorInterval=15 |
70 |
> |
Queue.MonitorInterval=300 |
71 |
|
# The maximum size a Queue can be before items are |
72 |
|
# dropped when new ones arrive. |
73 |
|
Queue.SizeLimit=1000 |
108 |
|
#### Filter configuration |
109 |
|
############################################################ |
110 |
|
|
111 |
< |
# A Filter accepts data from hosts on both a TCP port |
112 |
< |
# and a UDP port. They are specified here. |
111 |
> |
# A Filter accepts data from hosts on a UDP port. It is |
112 |
> |
# specified here. |
113 |
|
Filter.UDPListenPort=4589 |
120 |
– |
Filter.TCPListenPort=4589 |
114 |
|
|
115 |
|
# Filters contain plugins for checking the data passing |
116 |
|
# through them. This plugins do the job of "filtering". |
118 |
|
# contained in. |
119 |
|
Filter.PluginsPackage=uk.org.iscream.cms.server.filter.plugins |
120 |
|
# And the names of the plugins to be loaded. |
121 |
< |
Filter.Plugins=TypeChecker;EnforceEssentialData;SourceChecker;KeyChecker |
121 |
> |
Filter.Plugins=TypeChecker;EnforceEssentialData;SourceChecker |
122 |
|
|
130 |
– |
# The special filter known as the "Root Filter" needs |
131 |
– |
# a name within the system. |
132 |
– |
RootFilter.name=root |
133 |
– |
|
123 |
|
# Every Filter, except the root, needs a parent to |
124 |
|
# send their data to. This is usually the root filter, |
125 |
|
# although in more complex setups it might be another |
126 |
|
# filter - giving a tree structure. |
127 |
|
Filter.parentFilter=root |
128 |
|
|
129 |
< |
# A Filter can accept data through UDP, TCP, or from |
129 |
> |
# A Filter can accept data through UDP, or from |
130 |
|
# an upstream Filter (CORBA). These methods can be |
131 |
|
# individually turned of on a filter. The default |
132 |
|
# is to have them all on. |
133 |
|
# (comment or set to 0 to disable) |
145 |
– |
Filter.ActivateTCPReader=1 |
134 |
|
Filter.ActivateUDPReader=1 |
135 |
|
Filter.ActivateCORBAReader=1 |
136 |
|
|
137 |
|
# We can also specify Access Control Lists for the |
138 |
< |
# TCP and UDP inputs of the Filters. One might want |
139 |
< |
# something restrictive like this: |
138 |
> |
# UDP input of the Filters. One might want something |
139 |
> |
# restrictive like this: |
140 |
|
# |
153 |
– |
# Filter.TCPACL=DEFAULT:DENY;*.example.com:ALLOW |
141 |
|
# Filter.UDPACL=DEFAULT:DENY;*.example.com:ALLOW |
155 |
– |
Filter.TCPACL=DEFAULT:ALLOW |
142 |
|
Filter.UDPACL=DEFAULT:ALLOW |
143 |
|
|
144 |
|
# A Filter plugin called the SourceChecker verifies |
149 |
|
# Filter.SourceCheckerPluginACL=DEFAULT:DENY;*.example.com:ALLOW |
150 |
|
Filter.SourceCheckerPluginACL=DEFAULT:ALLOW |
151 |
|
|
166 |
– |
# Enforce that hosts use the key based authentication. |
167 |
– |
# (comment or set to 0 to disable) |
168 |
– |
Filter.EnforceHostAuth=1 |
152 |
|
|
170 |
– |
# Length of keys to use in authentication. |
171 |
– |
Filter.KeyLength=15 |
172 |
– |
|
173 |
– |
|
153 |
|
############################################################ |
154 |
< |
#### Root filter interfaces configuration |
154 |
> |
#### Root filter configuration |
155 |
|
############################################################ |
156 |
|
|
157 |
< |
# The Root FIlter can send data to various upstream |
158 |
< |
# data processors. There are two of these at present |
159 |
< |
# in the server - the DBInterface and the ClientInterface. |
181 |
< |
# Their component names are given here as defined below. |
182 |
< |
# (the DBInterface is switched off - commented - by default) |
183 |
< |
#RootFilter.dbInterfaceName=database |
184 |
< |
RootFilter.realtimeInterfaceName=realtimeclients |
157 |
> |
# The special filter known as the "Root Filter" needs |
158 |
> |
# a name within the system. |
159 |
> |
RootFilter.name=root |
160 |
|
|
161 |
|
|
162 |
|
############################################################ |
166 |
|
# The client interface listens for connections from clients |
167 |
|
# on a TCP port. It is specified here. |
168 |
|
ClientInterface.listenPort=4510 |
194 |
– |
# The component name for the Client Interface. This should |
195 |
– |
# match the name specified to the Root Filter above. |
196 |
– |
ClientInterface.name=realtimeclients |
169 |
|
|
170 |
+ |
# The client interface needs to connect to another one to |
171 |
+ |
# receive data. There is a special client interface in the |
172 |
+ |
# root filter which is the top of the tree. |
173 |
+ |
ClientInterface.parent=root |
174 |
+ |
|
175 |
|
# The Client Interface has two channels, control and data. |
176 |
|
# Each of these can have an ACL for allowing connections. |
177 |
|
# As per previous examples in this configuration file they |
182 |
|
|
183 |
|
|
184 |
|
############################################################ |
185 |
< |
#### Database interface configuration |
185 |
> |
#### LocalClient Configuration |
186 |
|
############################################################ |
187 |
|
|
188 |
< |
# The name for the Database Interface. This should match |
189 |
< |
# the name given to the Root Filter. |
213 |
< |
DBInterface.name=database |
188 |
> |
# The parent for the Local Client |
189 |
> |
Client.parent=clientinterface1 |
190 |
|
|
191 |
|
|
192 |
|
############################################################ |
197 |
|
# for all hosts to be 'filter1'. This can be a list. |
198 |
|
Host.filter=filter1; |
199 |
|
|
200 |
< |
# Hosts send data every UDPUpdateTime, in seconds, and then |
201 |
< |
# perform a heartbeat every TCPUpdateTime, in seconds. |
226 |
< |
Host.UDPUpdateTime=10 |
227 |
< |
Host.TCPUpdateTime=60 |
200 |
> |
# Hosts send data every UDPUpdateTime, in seconds. |
201 |
> |
Host.UDPUpdateTime=60 |
202 |
|
|
203 |
+ |
# How long a hosts config is valid for (a TTL effectively) |
204 |
+ |
# after this time, in seconds, has passed a host should |
205 |
+ |
# consider it's configuration invalid and check for a new |
206 |
+ |
# configuration as soon as it can. |
207 |
+ |
Host.ConfigTTL=3600 |
208 |
+ |
|
209 |
|
# We can run service checks on a host. The java package |
210 |
|
# which contains them is specified here. |
211 |
|
Host.serviceChecksPackage=uk.org.iscream.cms.server.filter.plugins |
220 |
|
Monitor.PluginsPackage=uk.org.iscream.cms.server.client.monitors |
221 |
|
# And which ones should be loaded. |
222 |
|
Monitor.Plugins=CPU;Load;Process;Disk;Memory;Swap;Services;\ |
223 |
< |
Heartbeat;Queue;UserCount;WebFeeder; |
223 |
> |
Heartbeat;Queue;UserCount;WebFeeder;DiskIO;\ |
224 |
> |
NetIO;Paging; |
225 |
|
|
226 |
|
# Alerts timeout after a given time in seconds and go up |
227 |
|
# to the next level. These can be overridden for monitors |
231 |
|
Monitor.alertTimeout.CAUTION=1800 |
232 |
|
Monitor.alertTimeout.CRITICAL=3600 |
233 |
|
|
234 |
+ |
# Is monitoring enabled? (comment or set to 0 to disable) |
235 |
+ |
Monitor.enable=1 |
236 |
+ |
|
237 |
|
## Threshold values |
238 |
|
# |
239 |
|
# Here we specify the threshold for each monitor. When |
245 |
|
# CPU monitor threshold values |
246 |
|
Monitor.CPU.threshold.LOWER=90 |
247 |
|
Monitor.CPU.threshold.UPPER=95 |
248 |
+ |
# enable this monitor (comment or set to 0 to disable) |
249 |
+ |
Monitor.CPU.enable=1 |
250 |
|
|
251 |
|
# Load monitor threshold values |
252 |
|
Monitor.Load.threshold.LOWER=10.0 |
253 |
|
Monitor.Load.threshold.UPPER=20.0 |
254 |
+ |
# enable this monitor (comment or set to 0 to disable) |
255 |
+ |
Monitor.Load.enable=1 |
256 |
|
|
257 |
+ |
# Paging monitor threshold values |
258 |
+ |
Monitor.Paging.threshold.LOWER=1000 |
259 |
+ |
Monitor.Paging.threshold.UPPER=5000 |
260 |
+ |
# enable this monitor (comment or set to 0 to disable) |
261 |
+ |
Monitor.Paging.enable=1 |
262 |
+ |
|
263 |
|
# Process Count threshold values |
264 |
|
Monitor.Process.threshold.LOWER=500 |
265 |
|
Monitor.Process.threshold.UPPER=1000 |
266 |
+ |
# enable this monitor (comment or set to 0 to disable) |
267 |
+ |
Monitor.Process.enable=1 |
268 |
|
|
269 |
|
# Memory monitor threshold values |
270 |
|
Monitor.Memory.threshold.LOWER=80 |
272 |
|
# Whether to include 'cache' in the 'free' value |
273 |
|
# (1 is true, anything else is false) |
274 |
|
Monitor.Memory.useCacheAsFree=1 |
275 |
+ |
# enable this monitor (comment or set to 0 to disable) |
276 |
+ |
Monitor.Memory.enable=1 |
277 |
|
|
278 |
|
# Swap monitor threshold values |
279 |
|
Monitor.Swap.threshold.LOWER=80 |
280 |
|
Monitor.Swap.threshold.UPPER=90 |
281 |
+ |
# enable this monitor (comment or set to 0 to disable) |
282 |
+ |
Monitor.Swap.enable=1 |
283 |
|
|
284 |
|
# UserCount monitor threshold values |
285 |
|
Monitor.UserCount.threshold.LOWER=100 |
286 |
|
Monitor.UserCount.threshold.UPPER=200 |
287 |
+ |
# enable this monitor (comment or set to 0 to disable) |
288 |
+ |
Monitor.UserCount.enable=1 |
289 |
|
|
290 |
|
# Disk monitor threshold values |
291 |
|
Monitor.Disk.threshold.LOWER=90 |
292 |
|
Monitor.Disk.threshold.UPPER=95 |
293 |
+ |
Monitor.DiskInode.threshold.LOWER=90 |
294 |
+ |
Monitor.DiskInode.threshold.UPPER=95 |
295 |
|
# Thresholds given are PERCENTAGE or VALUE |
296 |
|
# where PERCENTAGE is a percentage of disk in use |
297 |
|
# and VALUE is an absolute value of space free |
298 |
|
Monitor.Disk.thresholdMeasure=PERCENTAGE |
299 |
+ |
Monitor.DiskInode.thresholdMeasure=PERCENTAGE |
300 |
+ |
# enable this monitor (comment or set to 0 to disable) |
301 |
+ |
Monitor.Disk.enable=1 |
302 |
+ |
Monitor.DiskInode.enable=1 |
303 |
|
|
304 |
+ |
# DiskIO monitor threshold values (in bytes) |
305 |
+ |
Monitor.DiskIO.rbytes.threshold.LOWER=10000000 |
306 |
+ |
Monitor.DiskIO.rbytes.threshold.UPPER=50000000 |
307 |
+ |
Monitor.DiskIO.wbytes.threshold.LOWER=10000000 |
308 |
+ |
Monitor.DiskIO.wbytes.threshold.UPPER=50000000 |
309 |
+ |
# enable this monitor (comment or set to 0 to disable) |
310 |
+ |
Monitor.DiskIO.enable=1 |
311 |
+ |
|
312 |
+ |
# NetIO monitor threshold values (in bytes) |
313 |
+ |
Monitor.NetIO.rxbytes.threshold.LOWER=10000000 |
314 |
+ |
Monitor.NetIO.rxbytes.threshold.UPPER=50000000 |
315 |
+ |
Monitor.NetIO.txbytes.threshold.LOWER=10000000 |
316 |
+ |
Monitor.NetIO.txbytes.threshold.UPPER=50000000 |
317 |
+ |
# enable this monitor (comment or set to 0 to disable) |
318 |
+ |
Monitor.NetIO.enable=1 |
319 |
+ |
|
320 |
|
# Queue monitor threshold values |
321 |
|
Monitor.Queue.threshold.LOWER=50 |
322 |
|
Monitor.Queue.threshold.UPPER=80 |
324 |
|
# where PERCENTAGE is a percentage of the queue in use |
325 |
|
# and VALUE is an absolute value of free space |
326 |
|
Monitor.Queue.thresholdMeasure=PERCENTAGE |
327 |
+ |
# enable this monitor (comment or set to 0 to disable) |
328 |
+ |
Monitor.Queue.enable=1 |
329 |
|
|
330 |
|
# Services monitor threshold values |
331 |
|
# |
352 |
|
# this ensures we notice hosts that aren't running, not |
353 |
|
# just those that have gone down recently. |
354 |
|
#Monitor.Heartbeat.initialHosts=importantserver.example.com;myserver.example.com |
355 |
+ |
# enable this monitor (comment or set to 0 to disable) |
356 |
+ |
Monitor.Heartbeat.enable=1 |
357 |
|
|
358 |
|
|
359 |
|
############################################################ |