From: Florian Forster Date: Wed, 4 Feb 2009 16:48:09 +0000 (+0100) Subject: collectd.conf(5): Documented the `{Pre,Post}CacheChain' options. X-Git-Tag: collectd-4.6.0~69 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=77abf54bb4c98760f467782523f2b89c11177943;p=collectd.git collectd.conf(5): Documented the `{Pre,Post}CacheChain' options. --- diff --git a/src/collectd.conf.pod b/src/collectd.conf.pod index 519185af..2bb9b1cb 100644 --- a/src/collectd.conf.pod +++ b/src/collectd.conf.pod @@ -126,6 +126,14 @@ The sample config file that is installed with Cinstall> includes a line which sets this option, though, so that default installations will have this setting enabled. +=item B I + +=item B I + +Configure the name of the "pre-cache chain" and the "post-cache chain". Please +see L below on information on chains and how these +setting change the daemon's behavior. + =back =head1 PLUGIN OPTIONS @@ -2802,6 +2810,7 @@ The following shows the resulting structure: The configuration reflects this structure directly: + PostCacheChain "main" @@ -2819,13 +2828,76 @@ The configuration reflects this structure directly: The above configuration example will ignore all values where the plugin field is "mysql", the type is "mysql_command" and the type instance begins with -"show_". All other values will be sent to the "rrdtool" write plugin via the -default target of the chain. +"show_". All other values will be sent to the C write plugin via the +default target of the chain. Since this chain is run after the value has been +added to the cache, the MySQL C command statistics will be available +via the C plugin. =head2 List of configuration options =over 4 +=item B I + +=item B I + +Configure the name of the "pre-cache chain" and the "post-cache chain". The +argument is the name of a I that should be executed before and/or after +the values have been added to the cache. + +To understand the implications, it's important you know what is going on inside +I. The following diagram shows how values are passed from the +read-plugins to the write-plugins: + + +---------------+ + ! Read-Plugin ! + +-------+-------+ + ! + + - - - - V - - - - + + : +---------------+ : + : ! Pre-Cache ! : + : ! Chain ! : + : +-------+-------+ : + : ! : + : V : + : +-------+-------+ : +---------------+ + : ! Cache !--->! Write-Plugins ! + : ! insert ! : +---+---+-------+ + : +-------+-------+ : ! ! + : ! ,------------' ! + : V V : V + : +-------+---+---+ : +-------+-------+ + : ! Post-Cache +--->! Write-Plugins ! + : ! Chain ! : +---------------+ + : +---------------+ : + : : + : dispatch values : + + - - - - - - - - - + + +After the values are passed from the read-plugins to the dispatch functions, +the pre-cache chain is run first. The values are added to the internal cache +afterwards. The post-cache chain is run after the values have been added to the +cache. So why is it such a huge deal if chains are run before or after the +values have been added to this cache? + +Targets that change the identifier of a value list should be executed before +the values are added to the cache, so that the name in the cache matches the +name that is used in the write-plugins. The C plugin, too, uses this +cache to receive a list of all available values. If you change the identifier +after the value list has been added to the cache, this may easily lead to +confusion, but it's not forbidden of course. + +The cache is also used to convert counter values to rates. These rates are, for +example, used by the C match (see below). If you use the rate stored in +the cache B the new value is added, you will use the old, B +rate. Write plugins may use this rate, too, see the C plugin, for example. +The C plugin uses these rates too, to implement the C +command. + +Last but not last, the B target makes a difference: If the pre-cache +chain returns the stop condition, the value will not be added to the cache and +the post-cache chain will not be run. + =item B I Adds a new chain with a certain name. This name can be used to refer to a