projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
adb9c93
)
Since a second is not always 100 jiffies remove the upper bound of `100' for cpu...
author
octo
<octo>
Thu, 22 Dec 2005 21:46:15 +0000
(21:46 +0000)
committer
octo
<octo>
Thu, 22 Dec 2005 21:46:15 +0000
(21:46 +0000)
src/collectd.c
patch
|
blob
|
history
src/cpu.c
patch
|
blob
|
history
diff --git
a/src/collectd.c
b/src/collectd.c
index
0d9a7db
..
ad0b6fb
100644
(file)
--- a/
src/collectd.c
+++ b/
src/collectd.c
@@
-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);
diff --git
a/src/cpu.c
b/src/cpu.c
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;