Report content

Start of changeStatistics Summary reports are arranged in tabular form. You can specify the fields in the report using the FIELDS operand.End of change

Start of change

Statistics Summary reports do not have a fixed layout. A statistics form is used to customize the reports, allowing you to select the desired fields and order of the fields. A statistics form comprises a set of statistics type records for the applicable CICS® TS and CICS TG versions. Each statistics type (STID) has a default set of fields which can be modified.

Statistics from different system types (that is, CICS TS and CICS TG) can be combined as long as they are associated (in other words, as long as they share a common key value). This is known as cross-domain reporting. APPLID, Image, and Interval are global keys. They can be used to select any non-key fields from all STIDs in a single report. This enables you to generate a summary report based on some combination of APPLID, Image, and Interval that includes all of the required statistics in a single report.

Note: Fields can be selected from unassociated STIDs only when the key consists exclusively of the global keys: APPLID, Image, or Interval.

Some systems can generate very large volumes of data. To restrict reporting to only data of interest, Statistics Alert definitions can be used to filter the report records. These definitions provide a very powerful form of selection criteria through their support for formulas and thresholds.

The sample report in this section displays a Statistics Summary report for program resources. It was created with the following command:

CICSPA STATISTICSSUMMARY(OUTPUT(SSUMM001),
        LINECNT(60),
        INTERVAL(03:00),
        TYPE(EOD,INT,USS,RRT),
        FIELDS( 
            APPLID(ASCEND),
            LDRTU(TOT),  
            LDRFC(TOT),  
            LDRFT(TOT),  
            LDRTN(TOT),  
            LDRRPC(TOT)))
 
 V5R3M0                                                 CICS Performance Analyzer
                                                           Statistics Summary
                                            __________________________________________________
         Printed at  7:05:57  6/11/2015     Data from 00:10:20 2015/01/12    09:37:12 2015/01/12

              Tot      Tot                 Tot      Tot      Tot
APPLID       Load  Fetches               Total      New    Times
         Requests                   Fetch Time   Copies Removed
                                                        Compress
IYCUZC07        0        0     00.00.00.000000        0        0
IYCUZC25    11979     1016     00.00.01.667072        0        0
IYCUZC26    14899     1058     00.00.01.984464        0        0
IYCUZC31    28901     1550     00.00.02.395920        1        0
IYCUZC32     5230      510     00.00.00.840624        0        0
IYCUZC41     5232      510     00.00.00.851776        0        0
IYCUZC42     5232      510     00.00.00.844000        0        0
Total       71473     5154     00.00.08.583856        1        0
End of change