change legend on data to bytes
authorminima <minima>
Sun, 29 Sep 2002 23:35:24 +0000 (23:35 +0000)
committerminima <minima>
Sun, 29 Sep 2002 23:35:24 +0000 (23:35 +0000)
cmd/mrtg.pl

index 1bcb5dd928257b38e18737f1ca4e4b110a2c0d2f..b8a28b76953b9f6acf341d5249fddd043d92af75 100644 (file)
@@ -48,14 +48,14 @@ unless ($want{agw}) {
 
 $mc->cfgprint('msg', [], 64000, 
                 "Data <font color=#00cc00>in</font> and <font color=#0000ff>out</font> 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 <font color=#00cc00>in</font> and <font color=#0000ff>out</font> 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};
 }