From: Sebastian Harl Date: Tue, 7 Sep 2010 19:45:44 +0000 (+0200) Subject: filter_chain: Use a complaint to report plugin_write()'s ENOENT error. X-Git-Tag: collectd-4.9.5~7 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=20d8463f72bdf545e0ae063cb3d786b27502c619 filter_chain: Use a complaint to report plugin_write()'s ENOENT error. In most cases this is a permanent error, so using the complain mechanism avoids spamming the logs. --- diff --git a/src/filter_chain.c b/src/filter_chain.c index 4b164dc3..ed2df61c 100644 --- a/src/filter_chain.c +++ b/src/filter_chain.c @@ -22,6 +22,7 @@ #include "collectd.h" #include "configfile.h" #include "plugin.h" +#include "utils_complain.h" #include "common.h" #include "filter_chain.h" @@ -692,10 +693,15 @@ static int fc_bit_write_invoke (const data_set_t *ds, /* {{{ */ if ((plugin_list == NULL) || (plugin_list[0] == NULL)) { + static c_complain_t enoent_complaint = C_COMPLAIN_INIT_STATIC; + status = plugin_write (/* plugin = */ NULL, ds, vl); if (status == ENOENT) { - INFO ("Filter subsystem: Built-in target `write': Dispatching value to " + /* in most cases this is a permanent error, so use the complain + * mechanism rather than spamming the logs */ + c_complain (LOG_INFO, &enoent_complaint, + "Filter subsystem: Built-in target `write': Dispatching value to " "all write plugins failed with status %i (ENOENT). " "Most likely this means you didn't load any write plugins.", status); @@ -705,6 +711,13 @@ static int fc_bit_write_invoke (const data_set_t *ds, /* {{{ */ INFO ("Filter subsystem: Built-in target `write': Dispatching value to " "all write plugins failed with status %i.", status); } + else + { + assert (status == 0); + c_release (LOG_INFO, &enoent_complaint, "Filter subsystem: " + "Built-in target `write': Some write plugin is back to normal " + "operation. `write' succeeded."); + } } else {