X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Ffhcount.c;h=a2f5aa8c9aabf87dc8623b2b9ac99a9023cb84ae;hb=10139cda6f68ae1f921d79c930dd85944afb74a3;hp=666dacc09db1b6e876cf5b11e769c37f97f05626;hpb=3d7453f6c3a13dc49e9ed6dd6d7a19202a3b087e;p=collectd.git diff --git a/src/fhcount.c b/src/fhcount.c index 666dacc0..a2f5aa8c 100644 --- a/src/fhcount.c +++ b/src/fhcount.c @@ -18,9 +18,9 @@ **/ #include "collectd.h" + #include "common.h" #include "plugin.h" -#include "configfile.h" static const char *config_keys[] = { @@ -60,13 +60,9 @@ static int fhcount_config(const char *key, const char *value) { static void fhcount_submit( const char *type, const char *type_instance, gauge_t value) { - - value_t values[1]; value_list_t vl = VALUE_LIST_INIT; - values[0].gauge = value; - - vl.values = values; + vl.values = &(value_t) { .gauge = value }; vl.values_len = 1; // Compose the metric @@ -79,7 +75,6 @@ static void fhcount_submit( plugin_dispatch_values(&vl); } - static int fhcount_read(void) { int numfields = 0; int buffer_len = 60;