From: Florian Forster Date: Sun, 28 Jan 2007 11:22:47 +0000 (+0100) Subject: cpu plugin: Fix a bug in the data-set description. X-Git-Tag: collectd-4.0.0-rc4~126^2~12^2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=33c4883397f2aa95eae65c852673f010ad76ce14;p=collectd.git cpu plugin: Fix a bug in the data-set description. --- diff --git a/src/cpu.c b/src/cpu.c index d9453aa3..42b6add0 100644 --- a/src/cpu.c +++ b/src/cpu.c @@ -191,7 +191,7 @@ static void submit (int cpu_num, unsigned long long user, values[4].counter = wait; vl.values = values; - vl.values_len = 2; + vl.values_len = 5; vl.time = time (NULL); strcpy (vl.host, hostname); strcpy (vl.plugin, "cpu");