Previous Topic: 00208: TCAM/VTAM Outage Detected

Next Topic: 00250: Hourly TSO User Resource Overload

00209: Hourly TSO Throughput Limit Objective Exceeded


FILE              TSO System Activity File
SAS FILE NAME     DAYS.TSOTSO01
SOURCE LOCATION   sharedprefix.MICS.SOURCE(DYTSOEXC)

SEVERITY          Critical      (SEVERITY='C')
MANAGEMENT AREA   Performance   (MGMTAREA='PERFORMANCE')

PURPOSE      Identifies the hours during which the TSO
             command throughput exceeded the installation
             defined limit.

RATIONALE    An installation may set a limit based on the CPU
             power and configuration.  This limit represents
             the maximum hourly throughput which can be
             maintained while the installation still meets
             its service objectives.

DEFINITION   This exception is detected when the hourly TSO
             command count exceeds the installation defined
             value.

EXCEPTION    The SAS statements identifying the exception
STATEMENTS   situation and describing the condition are
             stored in the source member named in SOURCE
             LOCATION and are described below:

************************************************************;
*
**  00209
**  HOURLY TSO THROUGHPUT LIMIT OBJECTIVE EXCEEDED
*;
IF TSOTCOM > command-count
 THEN DO;
  EXCCODE='00209'; SEVERITY='C'; MGMTAREA='PERFORMANCE';
  EXCDESC1='TSO THROUGHPUT LIMIT OBJECTIVE EXCEEDED';
  EXCDESC2='COMMAND COUNT=' || PUT(TSOTCOM,8.);
  LINK HIT;
END;


THRESHOLD           Modify the value used for command count,
MODIFICATION        according to the following conventions:

    command-count   The total number of commands executed
                    within one hour is specified.  A
                    threshold of 12000 commands would appear
                    as:

                       TSOTCOM > 12000