X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Fentropy.c;h=94a291ece1a7edde7783ec3a353da38976a43bc3;hp=e312a0b47810c89f5099d3a2b50ba1fd0a21bf77;hb=54619dc85fd308b21ed09a0271e5c7383c7921b9;hpb=2079ee1517e34de372f58e7e2267ad5c71a8a41f diff --git a/src/entropy.c b/src/entropy.c index e312a0b4..94a291ec 100644 --- a/src/entropy.c +++ b/src/entropy.c @@ -26,8 +26,8 @@ #include "collectd.h" -#include "common.h" #include "plugin.h" +#include "utils/common/common.h" #if !KERNEL_LINUX #error "No applicable input method." @@ -35,15 +35,11 @@ #define ENTROPY_FILE "/proc/sys/kernel/random/entropy_avail" -static void entropy_submit(double entropy) { - value_t values[1]; +static void entropy_submit(value_t value) { value_list_t vl = VALUE_LIST_INIT; - values[0].gauge = entropy; - - vl.values = values; + vl.values = &value; vl.values_len = 1; - sstrncpy(vl.host, hostname_g, sizeof(vl.host)); sstrncpy(vl.plugin, "entropy", sizeof(vl.plugin)); sstrncpy(vl.type, "entropy", sizeof(vl.type)); @@ -51,26 +47,14 @@ static void entropy_submit(double entropy) { } static int entropy_read(void) { - double entropy; - FILE *fh; - char buffer[64]; - - fh = fopen(ENTROPY_FILE, "r"); - if (fh == NULL) - return (-1); - - if (fgets(buffer, sizeof(buffer), fh) == NULL) { - fclose(fh); - return (-1); + value_t v; + if (parse_value_file(ENTROPY_FILE, &v, DS_TYPE_GAUGE) != 0) { + ERROR("entropy plugin: Reading \"" ENTROPY_FILE "\" failed."); + return -1; } - fclose(fh); - - entropy = atof(buffer); - - if (entropy > 0.0) - entropy_submit(entropy); - return (0); + entropy_submit(v); + return 0; } void module_register(void) {