[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [hobbit] iostat
- To: hobbit (at) hswn.dk
- Subject: Re: [hobbit] iostat
- From: Stef Coene <stef.coene (at) docum.org>
- Date: Thu, 6 Nov 2008 16:51:06 +0100
- References: <A3D12FAD74FC8B46991703F40C182BAB013EDDDB (at) permls102.wde.woodside.com.au> <Pine.LNX.4.64.0811052315520.19620 (at) pal32.desy.de> <Pine.LNX.4.64.0811060058020.10295 (at) pal32.desy.de>
- User-agent: KMail/1.9.10
On Thursday 06 November 2008, Martin Flemming wrote:
> .. little Corecction ...
>
> .. the script linux-iostat.pl get now with the change below the data
> and make the right output with debug-option, but i've got only graphs for
> e.g hdd or md ... not for i2o/hda1 etc ...
That's because there is a "/" in it. You can do s/\//_/g in linux-iostat.pl
to change the / to _.
Or you can strip "i2o/" with s/i2o\///g.
You can do this just before the final command is created (the line where
$ENV{BB} is used):
$rrd_return =~ s/i2o\///g ;
Stef