[Orca-checkins] r330 - trunk/orca/data_gatherers/procallator
Blair Zajac
blair at orcaware.com
Mon May 31 16:38:36 PDT 2004
Author: blair
Date: Mon May 31 16:37:00 2004
New Revision: 330
Modified:
trunk/orca/data_gatherers/procallator/procallator.cfg.in
Log:
* data_gatherers/procallator/procallator.cfg.in:
For the Disk Reads/Writes Per Second and the Disk Transfer Rate
plots, for the second data line, instead of using (.*), use the $1
from the match on the first line. Bug noted by Michael Podhorodecki
<Michael.Podhorodecki at sensis.com.au>.
Modified: trunk/orca/data_gatherers/procallator/procallator.cfg.in
==============================================================================
--- trunk/orca/data_gatherers/procallator/procallator.cfg.in (original)
+++ trunk/orca/data_gatherers/procallator/procallator.cfg.in Mon May 31 16:37:00 2004
@@ -507,7 +507,7 @@
title %g Disk Reads/Writes Per Second
source procallator
data disk_rd_(.*)/s
-data disk_wr_(.*)/s
+data disk_wr_$1/s
line_type area
line_type line1
legend $1 Reads/s
@@ -522,7 +522,7 @@
title %g Disk Transfer Rate
source procallator
data disk_rB_(.*)/s
-data disk_wB_(.*)/s
+data disk_wB_$1/s
line_type area
line_type line1
legend $1 Read transfer rate
More information about the Orca-checkins
mailing list