[collectd-changes] collectd, the system statistics collection daemon: Changes to 'collectd-4.10'
Florian Forster
octo at verplant.org
Mon Aug 29 21:39:35 CEST 2011
src/processes.c | 91 +++++++++++++++++++++++++++++++------------------------
1 files changed, 51 insertions(+), 40 deletions(-)
New commits:
commit ee8d2556d47139e04e8ace20b2fb383bec545a7b
Author: Sebastian Harl <sh at tokkee.org>
Date: Wed Aug 24 18:26:12 2011 +0200
processes plugin: Fixed handling of ProcessMatch regexes containing spaces.
Previously, something like 'ProcessMatch name "My Regex"' would have been
interpreted as three values. This was caused by using the old, non-complex
config interface which joins all config values using a space and passing the
resulting string to the plugin. The processes plugin used to use strsplit() to
re-gain a list of all values, obviously ignoring any quoting that might exist.
This has been fixed by using the complex config interface, which passes all
values as an array of strings and thus honoring the quoting handled by
liboconfig.
More information about the collectd-changes
mailing list