HP 3000 Manuals

EXTRACT [ HP Performance Collection Software User's Manual (for MPE Systems) ] MPE/iX 5.0 Documentation


HP Performance Collection Software User's Manual (for MPE Systems)

EXTRACT 

EXTRACT

The EXTRACT command starts data extraction.  If not previously specified,
the LOGFILE and OUTPUT commands will assume the following defaults when
the EXTRACT command is executed:

LOGFILE  LOGGLOB.SCOPE.SYS

OUTPUT   RXLOG,NEW

The settings or defaults for all other parameters are used.  For details
on their actions, see APPLICATION, DISC, GLOBAL, PROCESS, SHIFT, START,
and STOP.

Sample EXTRACT Task 1 

In this task, you extract data from raw log files using EXTRACT's default
settings:

   1.  Extract data from the raw log files (LOGGLOB.SCOPE.SYS).

   2.  Extract the last 30 full days of global detail data from the log
       file.

     :PURGE RXLOG
     :RUN EXTRACT
     EXTRACT
     EXIT

Sample EXTRACT Task 2 

In this task, you copy data from one extracted log file (RXJAN) to
another (RXSUM), and summarize global detail data into hourly summary
data.  Assume that :RUN EXTRACT has been completed.

     LOGFILE RXJAN
     OUTPUT  RXSUM
     GLOBAL  SUMMARY
     EXTRACT

Sample EXTRACT Task 3 

In this task, you append data from raw log files to the existing RXSUM
extracted log file.  Original extraction specifications from the RXSUM
file are maintained.  Extracting data is stopped on February 28, 1990.

     LOGFILE LOGGLOB.SCOPE.SYS
     OUTPUT RXSUM,APPEND
     STOP 2/28/90
     EXTRACT

Sample EXTRACT Task 4 

In this task, you create a new extracted log file called RXJAN90.

Purge any existing file with this name.  Extract all data, detail, and
summaries from the raw log files from January 1, 1990 to January 31,
1990.

     LOGFILE LOGGLOB.SCOPE.SYS
     OUTPUT RXJAN90,PURGE
     START 1/1/90
     STOP  1/31/90
     GLOBAL BOTH
     APPLICATION BOTH
     PROCESS BOTH
     DISC DETAIL
     EXTRACT

Sample EXTRACT Task 5 

In this task, you extract data from the raw log files for January 1, 1901
to December 31, 1999.

Extract only global and application summary data from 8:00 AM to 5:00 PM,
excluding Saturday and Sunday.  The LOGFILE command defaults to
LOGGLOB.SCOPE.SYS, so it is not provided.

     OUTPUT ALLDATA,PURGE
     START 1/1/1
     STOP 12/31/99
     SHIFT 8:00 AM - 5:00 PM NOWEEKENDS
     GLOBAL SUMMARY
     APPLICATION SUMMARY
     EXTRACT



MPE/iX 5.0 Documentation