1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-22 02:51:03 +00:00

Fix process labels.

This commit is contained in:
Chris Wilson 2012-11-01 09:55:47 +00:00
parent ddbc1c4b4a
commit c00710c083
2 changed files with 2 additions and 2 deletions

View file

@ -89,7 +89,7 @@ END
sub draw() { return $stack++ ? "STACK" : "AREA" }
print map
{
"$_.label $total_cpu_by_process{$_}\n" .
"$_.label $_\n" .
"$_.min 0\n" .
"$_.type DERIVE\n" .
"$_.draw " . draw() . "\n"

View file

@ -88,7 +88,7 @@ END
sub draw() { return $stack++ ? "STACK" : "AREA" }
print map
{
"$_.label $total_by_process{$_}\n" .
"$_.label $_\n" .
"$_.min 0\n" .
"$_.type DERIVE\n" .
"$_.draw " . draw() . "\n"