summaryrefslogtreecommitdiffstats
path: root/src/proc_sys_kernel_random_entropy_avail.c
blob: a08f494cd6461c730c68f20d19e508d24a6f8037 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include "common.h"

int do_proc_sys_kernel_random_entropy_avail(int update_every, unsigned long long dt) {
	static procfile *ff = NULL;

	if(dt) {} ;

	if(!ff) {
		char filename[FILENAME_MAX + 1];
		snprintfz(filename, FILENAME_MAX, "%s%s", global_host_prefix, "/proc/sys/kernel/random/entropy_avail");
		ff = procfile_open(config_get("plugin:proc:/proc/sys/kernel/random/entropy_avail", "filename to monitor", filename), "", PROCFILE_FLAG_DEFAULT);
	}
	if(!ff) return 1;

	ff = procfile_readall(ff);
	if(!ff) return 0; // we return 0, so that we will retry to open it next time

	unsigned long long entropy = strtoull(procfile_lineword(ff, 0, 0), NULL, 10);

	RRDSET *st = rrdset_find_bytype("system", "entropy");
	if(!st) {
		st = rrdset_create("system", "entropy", NULL, "entropy", NULL, "Available Entropy", "entropy", 1000, update_every, RRDSET_TYPE_LINE);
		rrddim_add(st, "entropy", NULL, 1, 1, RRDDIM_ABSOLUTE);
	}
	else rrdset_next(st);

	rrddim_set(st, "entropy", entropy);
	rrdset_done(st);

	return 0;
}