[collectd-changes] collectd, the system statistics collection daemon: Changes to 'master'
Florian Forster
octo at verplant.org
Tue Oct 28 22:28:13 CET 2008
README | 10 ++
configure.in | 75 +++++++++++
src/Makefile.am | 10 ++
src/collectd.conf.in | 11 ++
src/collectd.conf.pod | 65 ++++++++++
src/filter_pcre.c | 329 +++++++++++++++++++++++++++++++++++++++++++++++++
6 files changed, 500 insertions(+), 0 deletions(-)
New commits:
commit a2e60e30e09c9c7d881fe288074e20eb0d748219
Author: Sebastian Harl <sh at tokkee.org>
Date: Tue Oct 28 22:02:38 2008 +0100
filter_pcre: Added a plugin to filter value lists based on PCRE.
The user may specify a set of Perl-compatible regular expressions to match any
component of the (host, plugin, plugin instance, type, type instance) tuple.
Any of the filter flags may be used to handle a successful match.
Sample plugin configuration:
<Plugin filter_pcre>
<RegEx>
Host "^mail\d+$"
Plugin "^tcpconns$"
TypeInstance "^SYN_"
Action NoWrite
</Plugin>
More information about the collectd-changes
mailing list