Changing SYSVIEW thresholds dynamically via batch
search cancel

Changing SYSVIEW thresholds dynamically via batch

book

Article ID: 210987

calendar_today

Updated On:

Products

SYSVIEW Performance Management

Issue/Introduction

Currently we issue below commands from sysview panel on EACH LPAR to make sure sysview purge is disabled across all LPAR's before any changes are made to the exception groups.

All other steps as part of the change are done via batch job.

How can we automate CICS purge related changes without manually entering commands?

i. Invoke cmd:  CTHRESH; RIGHT CANCEL;SELECT NAME EQ LIFETIME and RESOURC1 EQ ‘=’
ii. Change CANCEL to NOCANCEL for the LIFETIME field.

 

Environment

Release : 16.0

Component : SYSVIEW

Resolution

The following batch JCL will perform the request.
 
//STEP1 EXEC PGM=GSVXBAT,PARM='SSID=ssid,SHOWINP=YES',REGION=4M
//STEPLIB DD DISP=SHR,DSN=SYSVIEW.R160.CNM4BLOD         
//*                                                            
//SYSUDUMP DD SYSOUT=*                                         
//SYSOUT DD SYSOUT=*                                           
//SYSPRINT DD SYSOUT=*                                         
//GSVCLOG DD SYSOUT=*                                          
//SYSIN DD *                                                   
COMMAND=(SET ASID CICSPROD)                                    
COMMAND=(CTHRESH NOADDLINE)                                    
COMMAND=(RIGHT CANCEL)                                         
COMMAND=(SELECT NAME EQ LIFETIME AND RESOURC1 EQ '=')          
COMMAND=(FILL CANCEL CANCEL 1-9)                               
COMMAND=(SAVE)              

Additional Information

See product doc.