[Orca-checkins] r296 - in trunk/orca/data_gatherers: aix hp

Blair Zajac blair at orcaware.com
Tue Apr 6 21:40:24 PDT 2004


Author: blair
Date: Tue Apr  6 21:39:51 2004
New Revision: 296

Modified:
   trunk/orca/data_gatherers/aix/orca-aix-stat.pl.in
   trunk/orca/data_gatherers/aix/orca-aixtsm-stat.pl.in
   trunk/orca/data_gatherers/hp/orca-hp-stat.pl.in
Log:
* data_gatherers/aix/orca-aix-stat.pl.in,
* data_gatherers/aix/orca-aixtsm-stat.pl.in,
* data_gatherers/hp/orca-hp-stat.pl.in:
  Spelling fixes.


Modified: trunk/orca/data_gatherers/aix/orca-aix-stat.pl.in
==============================================================================
--- trunk/orca/data_gatherers/aix/orca-aix-stat.pl.in	(original)
+++ trunk/orca/data_gatherers/aix/orca-aix-stat.pl.in	Tue Apr  6 21:39:51 2004
@@ -3,15 +3,15 @@
 # Version 1.7
 
 # Description:
-# Collect general perfromance statistics formatted for
-# interpretaion by Orca.
+# Collect general performance statistics formatted for
+# interpretation by Orca.
 
 # Usage: 
 # The following variables may be set:
 # 
-# OUT_ROOT root directory for datafiles (eg /opt/log/performance)
+# OUT_ROOT root directory for data files (eg /opt/log/performance)
 # INTERVAL the number of seconds between checks (eg 300 = 5 min)
-# DURATION numer of hours to run (eg 1 = 1 hr)
+# DURATION number of hours to run (eg 1 = 1 hr)
 # 
 # This script runs various standard system utilities to collect
 # system performance statistics and writes them out to datafile named
@@ -21,7 +21,7 @@
 # every INTERVAL number of seconds. After DURATION, the script
 # closes and compresses it's datafile via /usr/bin/compress and then
 # exits. If DURATION=24 and INTERVAL=300 (recommended) then the
-# following cron entry would collect continuos stats for a system:
+# following cron entry would collect continuous stats for a system:
 # 
 # 0 0 * * * /<PATH_TO_SCRIPT>/orca-aix-stat.pl
 # 
@@ -33,7 +33,7 @@
 # Added #open connections, pagestotl.
 # 2001-07-06 - JDK - added command-line args & data checks
 # 2001-07-09 - JDK - added signal handler, column checks, & umask
-# 2001-07-10 - JDK - now autodetects interfaces via netstat -i
+# 2001-07-10 - JDK - now auto detects interfaces via netstat -i
 # v1.5
 #
 # $HeadURL$
@@ -104,7 +104,7 @@
 
 ## BEGIN set defaults
 
-$OUT_ROOT ||= '/home/orca/orcallator';    # root directory for datafiles
+$OUT_ROOT ||= '/home/orca/orcallator';    # root directory for data files
 $INTERVAL ||= 300;                       # seconds between checks
 $DURATION ||= 24;                        # number of hours to run
 
@@ -124,7 +124,7 @@
 $start_time = time();
 $timestamp  = 0;
 
-## Autodetect network interfaces
+## Auto detect network interfaces
 #open IN, "ifconfig -a|";
 open IN, "netstat -ni|";
 while (<IN>) {
@@ -165,7 +165,7 @@
 $SIG{QUIT} = \&exit_nicely;
 $SIG{TERM} = \&exit_nicely;
 
-# Set gloabals used for printing (or not) headers.
+# Set globals used for printing (or not) headers.
 $need_header     = 1;
 $prev_header_cnt = 0;
 $prev_info_cnt   = 0;

Modified: trunk/orca/data_gatherers/aix/orca-aixtsm-stat.pl.in
==============================================================================
--- trunk/orca/data_gatherers/aix/orca-aixtsm-stat.pl.in	(original)
+++ trunk/orca/data_gatherers/aix/orca-aixtsm-stat.pl.in	Tue Apr  6 21:39:51 2004
@@ -3,15 +3,15 @@
 # Version 1.7
 
 # Description:
-# Collect general perfromance statistics formatted for
-# interpretaion by Orca.
+# Collect general performance statistics formatted for
+# interpretation by Orca.
 
 # Usage: 
 # The following variables may be set:
 # 
-# OUT_ROOT root directory for datafiles (eg /opt/log/performance)
+# OUT_ROOT root directory for data files (eg /opt/log/performance)
 # INTERVAL the number of seconds between checks (eg 300 = 5 min)
-# DURATION numer of hours to run (eg 1 = 1 hr)
+# DURATION number of hours to run (eg 1 = 1 hr)
 # 
 # This script runs various standard system utilities to collect
 # system performance statistics and writes them out to datafile named
@@ -21,7 +21,7 @@
 # every INTERVAL number of seconds. After DURATION, the script
 # closes and compresses it's datafile via /usr/bin/compress and then
 # exits. If DURATION=24 and INTERVAL=300 (recommended) then the
-# following cron entry would collect continuos stats for a system:
+# following cron entry would collect continuous stats for a system:
 # 
 # 0 0 * * * /<PATH_TO_SCRIPT>/orca-aix-stat.pl
 # 
@@ -33,7 +33,7 @@
 # Added #open connections, pagestotl.
 # 2001-07-06 - JDK - added command-line args & data checks
 # 2001-07-09 - JDK - added signal handler, column checks, & umask
-# 2001-07-10 - JDK - now autodetects interfaces via netstat -i
+# 2001-07-10 - JDK - now auto detects interfaces via netstat -i
 # v1.5
 #
 # $HeadURL$
@@ -104,7 +104,7 @@
 
 ## BEGIN set defaults
 
-$OUT_ROOT ||= '/home/orca/orcallator';    # root directory for datafiles
+$OUT_ROOT ||= '/home/orca/orcallator';    # root directory for data files
 $INTERVAL ||= 300;                       # seconds between checks
 $DURATION ||= 24;                        # number of hours to run
 
@@ -124,7 +124,7 @@
 $start_time = time();
 $timestamp  = 0;
 
-## Autodetect network interfaces
+## Auto detect network interfaces
 #open IN, "ifconfig -a|";
 open IN, "netstat -ni|";
 while (<IN>) {
@@ -165,7 +165,7 @@
 $SIG{QUIT} = \&exit_nicely;
 $SIG{TERM} = \&exit_nicely;
 
-# Set gloabals used for printing (or not) headers.
+# Set globals used for printing (or not) headers.
 $need_header     = 1;
 $prev_header_cnt = 0;
 $prev_info_cnt   = 0;

Modified: trunk/orca/data_gatherers/hp/orca-hp-stat.pl.in
==============================================================================
--- trunk/orca/data_gatherers/hp/orca-hp-stat.pl.in	(original)
+++ trunk/orca/data_gatherers/hp/orca-hp-stat.pl.in	Tue Apr  6 21:39:51 2004
@@ -3,15 +3,15 @@
 # Version 1.5
 
 # Description:
-# Collect general perfromance statistics formatted for
-# interpretaion by Orca.
+# Collect general performance statistics formatted for
+# interpretation by Orca.
 
 # Usage: 
 # The following variables may be set:
 # 
-# OUT_ROOT root directory for datafiles (eg /opt/log/performance)
+# OUT_ROOT root directory for data files (eg /opt/log/performance)
 # INTERVAL the number of seconds between checks (eg 300 = 5 min)
-# DURATION numer of hours to run (eg 1 = 1 hr)
+# DURATION number of hours to run (eg 1 = 1 hr)
 # 
 # This script runs various standard system utilities to collect
 # system performance statistics and writes them out to datafile named
@@ -21,7 +21,7 @@
 # every INTERVAL number of seconds. After DURATION, the script
 # closes and compresses it's datafile via /usr/bin/compress and then
 # exits. If DURATION=24 and INTERVAL=300 (recommended) then the
-# following cron entry would collect continuos stats for a system:
+# following cron entry would collect continuous stats for a system:
 # 
 # 0 0 * * * /<PATH_TO_SCRIPT>/orca-hp-stat.pl
 # 
@@ -32,7 +32,7 @@
 # Added #open connections, pagestotl.
 # 2001-07-06 - JDK - added command-line args & data checks
 # 2001-07-09 - JDK - added signal handler, column checks, & umask
-# 2001-07-10 - JDK - now autodetects interfaces via netstat -i
+# 2001-07-10 - JDK - now auto detects interfaces via netstat -i
 # v1.5
 #
 # $HeadURL$
@@ -43,14 +43,14 @@
 # Note: Execution speed is more important than cleanliness here.
 #
 #
-# There are some script which are used for gettting data and there are 
+# There are some script which are used for getting data and there are 
 # 
 # phymem -- for getting physical memory
 # Copy this script in the path /usr/local/bin
 #
 ##################BEGIN OF FILE##################
-#/* Programma to determine statistics about the physical and virtual
-#  memory of a HP workstation, independant of HP-UX version.
+#/* Program to determine statistics about the physical and virtual
+#  memory of a HP workstation, independent of HP-UX version.
 #Shows some of the fields on std out.
 #
 #Program:     phymem
@@ -139,7 +139,7 @@
 
 ## BEGIN set defaults
 
-$OUT_ROOT ||= '/home/orca/orcallator';    # root directory for datafiles
+$OUT_ROOT ||= '/home/orca/orcallator';    # root directory for dateless
 $INTERVAL ||= 300;                       # seconds between checks
 $DURATION ||= 24;                        # number of hours to run
 
@@ -200,7 +200,7 @@
 $SIG{QUIT} = \&exit_nicely;
 $SIG{TERM} = \&exit_nicely;
 
-# Set gloabals used for printing (or not) headers.
+# Set globals used for printing (or not) headers.
 $need_header     = 1;
 $prev_header_cnt = 0;
 $prev_info_cnt   = 0;



More information about the Orca-checkins mailing list