X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fcollectd.conf.pod;h=28f86a82b865fcff1d0928732a2e2e08ab1c437f;hb=892fbd80737d74ee6a6ab5d05d5fbbb76e43c530;hp=0077d243503475b960e58d09e312c9257c8c8b92;hpb=05c6a5b76353729ec983d3f4521e70d951f411a4;p=collectd.git diff --git a/src/collectd.conf.pod b/src/collectd.conf.pod index 0077d243..28f86a82 100644 --- a/src/collectd.conf.pod +++ b/src/collectd.conf.pod @@ -3151,6 +3151,50 @@ Example: Plugin "^foobar$" +=item B + +Matches values that have a time which differs from the time on the server. + +This match is mainly intended for servers that receive values over the +C plugin and write them to disk using the C plugin. RRDtool +is very sensitive to the timestamp used when updating the RRD files. In +particular, the time must be ever increasing. If a misbehaving client sends one +packet with a timestamp far in the future, all further packets with a correct +time will be ignored because of that one packet. What's worse, such corrupted +RRD files are hard to fix. + +This match lets one match all values B a specified time range +(relative to the server's time), so you can use the B target (see below) +to ignore the value, for example. + +Available options: + +=over 4 + +=item B I + +Matches all values that are I of the server's time by I or more +seconds. Set to zero for no limit. Either B or B must be +non-zero. + +=item B I + +Matches all values that are I of the server's time by I or +more seconds. Set to zero for no limit. Either B or B must be +non-zero. + +=back + +Example: + + + Future 300 + Past 3600 + + +This example matches all values that are five minutes or more ahead of the +server or one hour (or more) lagging behind. + =item B Matches the actual value of data sources against given minimumE/ maximum