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/libvirt.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'plugin/libvirt.php') diff --git a/plugin/libvirt.php b/plugin/libvirt.php index 971b5a7..004eb26 100644 --- a/plugin/libvirt.php +++ b/plugin/libvirt.php @@ -30,8 +30,7 @@ switch($obj->args['type']) { 'write' => '00b000', ); $obj->rrd_title = sprintf('Disk Traffic (%s)', $obj->args['tinstance']); - $obj->rrd_vertical = sprintf('%s per second', ucfirst($CONFIG['datasize'])); - $obj->scale = $CONFIG['datasize'] == 'bits' ? 8 : 1; + $obj->rrd_vertical = 'Bytes per second'; $obj->rrd_format = '%5.1lf%s'; break; case 'disk_ops': @@ -85,8 +84,8 @@ switch($obj->args['type']) { 'tx' => '00b000', ); $obj->rrd_title = sprintf('Interface Traffic (%s)', $obj->args['tinstance']); - $obj->rrd_vertical = sprintf('%s per second', ucfirst($CONFIG['datasize'])); - $obj->scale = $CONFIG['datasize'] == 'bits' ? 8 : 1; + $obj->rrd_vertical = sprintf('%s per second', ucfirst($CONFIG['network_datasize'])); + $obj->scale = $CONFIG['network_datasize'] == 'bits' ? 8 : 1; break; case 'if_packets': $obj->data_sources = array('rx', 'tx'); -- cgit v1.1