From: Florian Forster Date: Mon, 17 Dec 2007 22:06:29 +0000 (+0100) Subject: collectd.conf(5): Wrote some more about the threshold configuration.. X-Git-Tag: collectd-4.3.0beta0~59 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=85480160b80555b4cb40fa51b63451571c348045;p=collectd.git collectd.conf(5): Wrote some more about the threshold configuration.. ..in its current state. --- diff --git a/src/collectd.conf.pod b/src/collectd.conf.pod index e8f4af78..44338c6f 100644 --- a/src/collectd.conf.pod +++ b/src/collectd.conf.pod @@ -1034,12 +1034,29 @@ The B homepage can be found at L. Starting with version C<4.3.0> collectd has support for B. By that we mean that the values are not only stored or sent somewhere, but that they -are judged and, if a problem is recognized, acted upon. +are judged and, if a problem is recognized, acted upon. The only action +collectd takes itself is to generate and dispatch a "notification". Plugins can +register to receive notifications and perform appropriate further actions. Since systems and what you expect them to do differ a lot, you can configure B for your values freely. This gives you a lot of flexibility but also a lot of responsibility. +Every time a value is out of range a notification is dispatched. This means +that the idle percentage of your CPU needs to be less then the configured +threshold only once for a notification to be generated. There's no such thing +as a moving average or similar - at least not now. + +Also, all values that match a threshold are considered to be relevant or +"interesting". As a consequence collectd will issue a notification if they are +not received for twice the last timeout of the values. If, for example, some +hosts sends it's CPU statistics to the server every 60 seconds, a notification +will be dispatched after about 120 seconds. It may take a little longer because +the timeout is checked only once each B on the server. + +Here is a configuration example to get you started. Read below for more +information. + Min 0.00 @@ -1079,14 +1096,26 @@ C and C blocks, C may only contain C blocks and C may not contain other blocks. If multiple blocks apply to the same value the most specific block is used. -The other statements specify the threshold to configure. Currently the -following statements are recognized: +The other statements specify the threshold to configure. They B be +included in a C block. Currently the following statements are recognized: =over 4 +=item B I + +Sets the upper bound of acceptable values. If unset defaults to positive +infinity. + =item B I -... +Sets the lower bound of acceptable values. If unset defaults to negative +infinity. + +=item B B|B + +If set to B the range of acceptable values is inverted, i.Ee. +values between B and B are not okay. Defaults, of course, to +B. =back