[Orca-checkins] rev 203 - trunk/orca/data_gatherers/orcallator
sean at seanoneill.info
sean at seanoneill.info
Sun Feb 23 19:00:41 PST 2003
Author: sean at seanoneill.info
Date: 2003-02-23 19:00:31 -0800 (Sun, 23 Feb 2003)
New Revision: 203
Modified:
trunk/orca/data_gatherers/orcallator/orcallator.cfg.in
trunk/orca/data_gatherers/orcallator/orcallator.se
Log:
Modifications made from posting to orca-user list on Oct 25, 2000
with Subject "Re: Interest in more disk based statistics" from John ???.
Add disk service time data collection to Orca.
Modified:
trunk/orca/data_gatherers/orcallator/orcallator.cfg.in
trunk/orca/data_gatherers/orcallator/orcallator.se
Log:
* data_gatherers/orcallator/orcallator.cfg.in:
Updated to graph collected service time information for attached disks.
* data_gatherers/orcallator/orcallator.se:
Updated to collect disk service time information. orcallator.se was
already collecting the disk service time information. This mod is simply
making orcallator.se store the service time data along with the other data
collected.
Modified: trunk/orca/data_gatherers/orcallator/orcallator.cfg.in
==============================================================================
--- trunk/orca/data_gatherers/orcallator/orcallator.cfg.in (original)
+++ trunk/orca/data_gatherers/orcallator/orcallator.cfg.in 2003-02-23 19:00:38.000000000 -0800
@@ -702,6 +702,17 @@
}
plot {
+title %g Disk Average Service Time
+source orcallator
+data disk_svct_((?:c\d+t\d+d\d+)|(?:c\d+d\d+)|(?:[ms]d\d+)|(?:c\d+t([A-Z0-9]{32})d\d+))
+line_type line2
+legend $1
+y_legend milliseconds
+data_min 0
+plot_min 0
+}
+
+plot {
title %g Disk Space Percent Usage
source orcallator
data mntP_(.*)
Modified: trunk/orca/data_gatherers/orcallator/orcallator.se
==============================================================================
--- trunk/orca/data_gatherers/orcallator/orcallator.se (original)
+++ trunk/orca/data_gatherers/orcallator/orcallator.se 2003-02-23 19:00:39.000000000 -0800
@@ -8,6 +8,12 @@
//
// Portions copied from percollator.se written by Adrian Cockroft.
//
+// Version 1.40: Feb 23, 2003 John ???
+// Posted to orca-user list on Oct 25, 2000
+// with Subject "Re: Interest in more disk based
+// statistics"
+// Add disk service time data collection.
+//
// Version 1.39: Feb 18, 2003 Burkhardt Schopp
// B.Schopp at gmx.de
// Modified struct RawDisk long_name object to
@@ -1854,6 +1860,9 @@
put_output(sprintf("disk_runp_%s", RAW_disk[i].long_name),
sprintf("%16.5f", RAW_disk[i].run_percent));
+ put_output(sprintf("disk_svct_%s", RAW_disk[i].long_name),
+ sprintf("%16.5f", RAW_disk[i].service));
+
// Comments from Damon Atkins <Damon.Atkins at nabaus.com.au>. Check
// [wr]lentime to see if an EMC is using a fake disk for control.
// EMC disks have a fake disk which commands are run over to
@@ -1887,6 +1896,9 @@
put_output(sprintf("disk_runp_%s", GLOBAL_disk[i].info.long_name),
sprintf("%16.5f", GLOBAL_disk[i].run_percent));
+ put_output(sprintf("disk_svct_%s", GLOBAL_disk[i].info.long_name),
+ sprintf("%16.5f", GLOBAL_disk[i].service));
+
// Comments from Damon Atkins <Damon.Atkins at nabaus.com.au>. Check
// [wr]lentime to see if an EMC is using a fake disk for control.
// EMC disks have a fake disk which commands are run over to
More information about the Orca-checkins
mailing list