Since a second is not always 100 jiffies remove the upper bound of `100' for cpu...
authorocto <octo>
Thu, 22 Dec 2005 21:46:15 +0000 (21:46 +0000)
committerocto <octo>
Thu, 22 Dec 2005 21:46:15 +0000 (21:46 +0000)
src/collectd.c
src/cpu.c

index 0d9a7db..ad0b6fb 100644 (file)
@@ -469,7 +469,7 @@ int main (int argc, char **argv)
 
 #if COLLECT_DAEMON
        if (daemonize)
-               pidfile_remove(pidfile);
+               pidfile_remove (pidfile);
 #endif /* COLLECT_DAEMON */
 
        return (0);
index 62e8145..28e6233 100644 (file)
--- a/src/cpu.c
+++ b/src/cpu.c
@@ -71,11 +71,11 @@ static char *cpu_filename = "cpu-%s.rrd";
 
 static char *ds_def[] =
 {
-       "DS:user:COUNTER:25:0:100",
-       "DS:nice:COUNTER:25:0:100",
-       "DS:syst:COUNTER:25:0:100",
-       "DS:idle:COUNTER:25:0:100",
-       "DS:wait:COUNTER:25:0:100",
+       "DS:user:COUNTER:25:0:U",
+       "DS:nice:COUNTER:25:0:U",
+       "DS:syst:COUNTER:25:0:U",
+       "DS:idle:COUNTER:25:0:U",
+       "DS:wait:COUNTER:25:0:U",
        NULL
 };
 static int ds_num = 5;