NAF: Small fixes to PNP template

Signed-off-by: Sven Velt <sven@velt.de>
This commit is contained in:
Sven Velt 2011-03-16 12:53:15 +01:00
parent f232450fec
commit 1b4ac41953

View file

@ -167,10 +167,10 @@ while( count($this->DS) > 0 ) {
$def[$graphs] .= rrd::def ("ior", $io1['RRDFILE'], $io1['DS'], "AVERAGE"); $def[$graphs] .= rrd::def ("ior", $io1['RRDFILE'], $io1['DS'], "AVERAGE");
$def[$graphs] .= rrd::def ("iow", $io2['RRDFILE'], $io2['DS'], "AVERAGE"); $def[$graphs] .= rrd::def ("iow", $io2['RRDFILE'], $io2['DS'], "AVERAGE");
$def[$graphs] .= rrd::area ("ior", "#00FF00", "FIXME In/Read\: "); $def[$graphs] .= rrd::area ("ior", "#00FF00", $desc_r . "\: ");
$def[$graphs] .= rrd::gprint ("ior", array("LAST","MAX","AVERAGE"), "%7.2lf %SB/s"); $def[$graphs] .= rrd::gprint ("ior", array("LAST","MAX","AVERAGE"), "%7.2lf %SB/s");
$def[$graphs] .= rrd::line2 ("iow", "#0000FF", "FIXME Out/Write\: "); $def[$graphs] .= rrd::line2 ("iow", "#0000FF", $desc_w . "\: ");
$def[$graphs] .= rrd::gprint ("iow", array("LAST","MAX","AVERAGE"), "%7.2lf %SB/s"); $def[$graphs] .= rrd::gprint ("iow", array("LAST","MAX","AVERAGE"), "%7.2lf %SB/s");