From: minima Date: Sun, 29 Sep 2002 23:35:24 +0000 (+0000) Subject: change legend on data to bytes X-Git-Tag: PRE-1-52~169 X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=commitdiff_plain;h=495754374538208a483b10e947ed181bfa3f2d8e;p=spider.git change legend on data to bytes --- diff --git a/cmd/mrtg.pl b/cmd/mrtg.pl index 1bcb5dd9..b8a28b76 100644 --- a/cmd/mrtg.pl +++ b/cmd/mrtg.pl @@ -48,14 +48,14 @@ unless ($want{agw}) { $mc->cfgprint('msg', [], 64000, "Data in and out of $main::mycall", - 'Bits / Sec', 'Bytes In', 'Bytes Out') unless $want{dataonly}; + 'Bytes / Sec', 'Bytes In', 'Bytes Out') unless $want{dataonly}; $mc->data('msg', $din, $dout, "Data in and out of $main::mycall") unless $want{cfgonly}; # do AGW stats if they apply if ($want{agw}) { $mc->cfgprint('agw', [], 64000, "AGW Data in and out of $main::mycall", - 'Bits / Sec', 'Bytes In', 'Bytes Out') unless $want{dataonly}; + 'Bytes / Sec', 'Bytes In', 'Bytes Out') unless $want{dataonly}; $mc->data('agw', $AGWMsg::total_in, $AGWMsg::total_out, "AGW Data in and out of $main::mycall") unless $want{cfgonly}; }