On the Mainframe Application Tuner Monitor Definition panel is an option to export a monitoring file. This option creates an export file of a monitor data set suitable for electronic transmission. This command can be used when sending a monitor data set to Broadcom Technical Support for analysis.
The export data set has a DCB of RECFM=FBS,LRECL=80,BLKSIZE=27920. The monitor data set has to be tersed with the AMATERSE PACK utility before uploading it with transfer Type Binary to the Broadcom Secure FTP sever.
The DCB for a tersed data set is RECFM=FB,LRECL=1024,BLKSIZE=6144.
Release: Mainframe Application Tuner 12.0
The example JCL below can be used to IMPORT an EXPORTED monitor data set.
//TUNFEIP1 EXEC PGM=TUNFEIP
//STEPLIB DD DISP=SHR,DSN=HLQ.CEESPLD
//SYSPRINT DD SYSOUT=*
//EXPIN DD DISP=SHR,DSN=MATUNE.EXPORT.DATA.SET
//EXPOUT DD DSN=MATUNE.IMPORT.DATA.SET,
// DCB=(RECFM=VB,LRECL=4096,BLKSIZE=27998),
// SPACE=(CYL,(10,1),RLSE),
// DISP=(NEW,CATLG,DELETE)
//SYSIN DD *
IMPORT INDD(EXPIN) -
OUTDD(EXPOUT)