48 |
|
use vars qw{ |
49 |
|
$imgdir $rrddir |
50 |
|
$maxrrdage $maximgage $deleterrds $deleteimgs |
51 |
< |
$hex_slash $hex_underscore $hex_space $hex_colon $hex_bslash |
51 |
> |
$hex_slash $hex_underscore $hex_space $hex_colon $hex_bslash $hex_rbracket |
52 |
> |
$hex_lbracket $hex_plus |
53 |
|
$rrdstep $retry_wait |
54 |
|
$verbose $quiet |
55 |
|
}; |
258 |
|
push @data, "AREA:$1-$2:rbytes:rbytes#00FF00:OK:read bytes "; |
259 |
|
push @data, "LINE2:$1-$2:wbytes:wbytes#0000FF:OK:write bytes"; |
260 |
|
push @rawdata, "--base=1024"; |
261 |
< |
# some name tidting |
261 |
> |
# some name tidying |
262 |
|
my($type) = $1; |
263 |
|
my($name) = $2; |
264 |
|
my($nicename) = $2; |
275 |
|
push @data, "AREA:$1-$2:rx:rx#00FF00:OK:received bytes "; |
276 |
|
push @data, "LINE2:$1-$2:tx:tx#0000FF:OK:transfered bytes"; |
277 |
|
push @rawdata, "--base=1024"; |
278 |
< |
# some name tidting |
278 |
> |
# some name tidying |
279 |
|
my($type) = $1; |
280 |
|
my($name) = $2; |
281 |
|
my($nicename) = $2; |
284 |
|
$nicename =~ s/$hex_bslash/\\/g; |
285 |
|
$nicename =~ s/$hex_space/ /g; |
286 |
|
$nicename =~ s/$hex_colon/:/g; |
287 |
+ |
$nicename =~ s/$hex_rbracket/(/g; |
288 |
+ |
$nicename =~ s/$hex_lbracket/)/g; |
289 |
+ |
$nicename =~ s/$hex_plus/+/g; |
290 |
|
&makegraph($machine, "$type-$name", "Network IO for $machine on $nicename", "bytes per second", \@data, \@rawdata); |
291 |
|
} |
292 |
|
if($rrd =~ /^(mailq)-(\S+)\.rrd$/) { |