Report content

All the graphs produced by CICS PA have a similar structure. Data from the CMF performance class records is collected and time-stamped based on the Stop Time from the CICS® CMF performance class records. When the entire input data is processed, the graphing facility of CICS PA is used to print the data. Each line on a graph represents activity for transactions that stopped between the time marked on the current line and the time marked on the previous line.

The default is to print one line for each 5-minute period. The INTERVAL operand can be used to accumulate data spanning from 1 second to 24 hours. The data is presented as a single line on a graph. For example:

CICSPA GRAPH(RESPONSE,INTERVAL(00:00:03))

This example generates the Transaction Response Time graph with each line containing data for each 3-second interval.

To limit the range of the y-axis, use SELECT(PERFORMANCE statements. For example, if the input file contains a week's worth of data, the command:
CICSPA SELECT(PERFORMANCE(INCLUDE(
              START(FROM(2010/02/13,08:00),
              STOP(TO(2010/02/13,18:00))))),
       GRAPH(RESPONSE)

generates the Response Time graph, with the y-axis of the graph beginning at 8:00 in the morning and ending at 6:00 in the evening on February 13, 2010.

The default range for the x-axis of the graph is from zero to the highest value reported. Operands RANGE1 and RANGE2 can be used to set the high-value range of the x-axis of the left and right graphs, respectively. For example, if the service level for response time is defined as a maximum of four seconds, the command:
CICSPA GRAPH(RESPONSE,RANGE1(4),RANGE2(4))

generates the Transaction Response Time graph using the entire acceptable service level as the range of the x-axis. If a line's data exceeds the x-axis range for a graph, the line is printed with an arrow (->) at the end.

The CMF performance class records might be reported in intervals which differ from the intervals in which the data was written. The data is written either:

For example, if there are long-running transactions such as transactions which span entire monitor intervals, the data from these records for these transactions is reflected in the graph of the interval in which the transaction finishes. This data might be different from the intervals in which the data is collected.

For more information on interpreting performance class data, see the CICS Performance Guide.


Information Information

Feedback


Timestamp icon Last updated: Thursday, 7 November 2013


http://pic.dhe.ibm.com/infocenter/cicsts/v5r1/topic//report-reference/cparr167.htm