Previous Topic: 00150: Interval TSO User Resource Overload

Next Topic: 00200: Hourly TSO System Resource Overload

00151: Excessive TSO User Interval Command Rate


FILE              TSO User Activity File
SAS FILE NAME     DETAIL.TSOTSU01
SOURCE LOCATION   sharedprefix.MICS.SOURCE(DYTSOEXC)

SEVERITY          Warning       (SEVERITY='W')
MANAGEMENT AREA   Workload      (MGMTAREA='WORKLOAD')

PURPOSE      Identifies users whose interval command
             execution rate could indicate a looping CLIST.

RATIONALE    It is possible for a TSO user to loop within a
             CLIST without doing productive work.  When this
             happens, the user may believe there is a
             response problem.  Other users may find a
             response degradation because of the workload
             imposed by the looping CLIST.

DEFINITION   This exception is detected when an individual
             user's command execution rate exceeds the
             installation defined limits.

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:

************************************************************;
*
**  00151
**  EXCESSIVE TSO USER INTERVAL COMMAND RATE
*;
IF TSUTCOM > command-count
 THEN DO;
  EXCCODE='00151'; SEVERITY='W'; MGMTAREA='WORKLOAD';
  EXCDESC1='EXCESSIVE TSO USER INTERVAL COMMAND RATE';
  EXCDESC2='COMMAND COUNT=' || PUT(TSUTCOM,8.);
  LINK HIT;
END;

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

    command-count  The number of commands executed by a user
                   within one interval is specified.  A
                   threshold of 30 commands would appear as:

                      TSUTCOM > 30