From 074589c36937a468587abe37bc4ce0fbddf80b20 Mon Sep 17 00:00:00 2001 From: Pim van den Berg Date: Wed, 5 Sep 2012 16:07:44 +0200 Subject: apply datasize (bytes/bits) only to network related data As discussed in https://github.com/pommi/CGP/pull/1. --- plugin/memory.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'plugin/memory.php') diff --git a/plugin/memory.php b/plugin/memory.php index afccc55..14779e2 100644 --- a/plugin/memory.php +++ b/plugin/memory.php @@ -33,8 +33,7 @@ $obj->width = $width; $obj->heigth = $heigth; $obj->rrd_title = 'Physical memory utilization'; -$obj->rrd_vertical = ucfirst($CONFIG['datasize']); -$obj->scale = $CONFIG['datasize'] == 'bits' ? 8 : 1; +$obj->rrd_vertical = 'Bytes'; $obj->rrd_format = '%5.1lf%s'; collectd_flush($obj->identifiers); -- cgit v1.1