RMF Postprocessor Control Card Examples
This article provides examples of Postprocessor Control Cards for use with the
MICS Hardware and SCP Analyzer
. micsrm140
This article provides examples of Postprocessor Control Cards for use with the
MICS Hardware and SCP Analyzer
. Example: Print CPU Activity Postprocessor report from DETAIL timespan using latest cycle.
//jobname JOB ... //RMFPP EXEC MICSSHRx //SYSIN DD DSN=sharedprefix.MICS.INCLLIB(RMFRPTS), // DISP=SHR //CONTROL DD * %LET TSPAN = DETAIL; %LET CYCLES = 01; %LET REPORTS = CPU; %RMFPP; /*
Example: Print Workload Activity Goal Mode Postprocessor report from DAYS timespan using latest cycle and summarizing to day. A summarization technique of DETAIL is used by default.
//jobname JOB ... //RMFPP EXEC MICSSHRx //SYSIN DD DSN=sharedprefix.MICS.INCLLIB(RMFRPTS), // DISP=SHR //CONTROL DD * %LET TSPAN = DAYS; %LET CYCLES = 01; %LET SUMBY = DAY; %LET REPORTS = WLMGL; %RMFPP; /*
Example: Print Device Activity Postprocessor report from DETAIL timespan using latest cycle and selecting 3390 device types only.
//jobname JOB ... //RMFPP EXEC MICSSHRx //SYSIN DD DSN=sharedprefix.MICS.INCLLIB(RMFRPTS), // DISP=SHR //CONTROL DD * %LET TSPAN = DETAIL; %LET CYCLES = 01; %LET REPORTS = DEVICE; %LET SELECT = %STR(IF DEVTYPE=:'3390';); %RMFPP; /*
Example: Print Channel Path Activity Postprocessor report from DAYS timespan using cycles 03,02,01. Summarize to zone. Specify a summarization technique of DETAIL so that each zone of each day is summarized separately.
//jobname JOB ... //RMFPP EXEC MICSSHRx //SYSIN DD DSN=sharedprefix.MICS.INCLLIB(RMFRPTS), // DISP=SHR //CONTROL DD * %LET TSPAN = DAYS; %LET CYCLES = 03 02 01; %LET SUMBY = ZONE; %LET SUMTYPE = DETAIL; %LET REPORTS = CHANNEL; %RMFPP; /*
Example: Print Channel Path Activity Postprocessor report from DAYS timespan using cycles 03,02,01. Summarize to zone. Specify a summarization technique of COMPOSITE so that the same zone of all days is summarized together.
//jobname JOB ... //RMFPP EXEC MICSSHRx //SYSIN DD DSN=sharedprefix.MICS.INCLLIB(RMFRPTS), // DISP=SHR //CONTROL DD * %LET TSPAN = DAYS; %LET CYCLES = 03 02 01; %LET SUMBY = ZONE; %LET SUMTYPE = COMPOSITE; %LET REPORTS = CHANNEL; %RMFPP; /*
Example: Print Paging Activity Postprocessor report from DETAIL timespan using latest cycle. Display SAS source statements, SAS MACRO expansion statements, and diagnostic messages in the SAS log.
//jobname JOB ... //RMFPP EXEC MICSSHRx //SYSIN DD DSN=sharedprefix.MICS.INCLLIB(RMFRPTS), // DISP=SHR //CONTROL DD * %LET TSPAN = DETAIL; %LET CYCLES = 01; %LET REPORTS = PAGING; %RMFPP (DBUG=ON,SOURCE=ON,MPRINT=ON); /*
Example: Print Cache Subsystem Detail report from DETAIL timespan using latest cycle for control unit '01AC' (CUADDR='01AC', CUDEVNUM=428).
//jobname JOB ... //RMFPP EXEC MICSSHRx //SYSIN DD DSN=sharedprefix.MICS.INCLLIB(RMFRPTS), // DISP=SHR //CONTROL DD * %LET TSPAN = DETAIL; %LET CYCLES = 01; %LET REPORTS = CACHEDTL ; %LET SELECT = %STR(IF CUADDR='01AC';); or %LET SELECT = %STR(IF CUDEVNUM=428;); %RMFPP; /*