

4. FILES › 5.2 VTS Component Files › 5.2.3 VTS Component SVT Information Area Files › 5.2.3.3 Channel Interface Performance File(SVTCIP) › 5.2.3.3.4 SVTCIP Retrieval Examples
5.2.3.3.4 SVTCIP Retrieval Examples
In the examples, a SAS macro variable is used to specify the
DDname part of the CA MICS file name. These macro variables
are a standard part of CA MICS and are available for all
files. The macro variable name has the form &diiit, where d
is the database identifier, iii is the information area
name, and t is the timespan. For the examples, a database
identifier of P is used. The identifier is installation
dependent, so you should find out what the identifiers are at
your installation.
1. Generate a chart displaying the total channel I/O
activity on HOST and RTD channels by hour.
%LET BY = SYSID VTSSID CIPTOL HOUR;
%LET BREAK = HOUR;
PROC SORT DATA=&pSVTd..SVTCIP01 OUT=CIP;
BY &BY;
RUN;
DATA CIP2; SET CIP;
WHERE CIPCE GE 1;
%CIPSUM(SUMBY=&BY, SUMBREAK=&BREAK);
RUN;
PROC CHART DATA=CIP2;
BY SYSID VTSSID;
VBAR CIPTOL / GROUP=HOUR SUMVAR=CIPNIO DISCRETE;
TITLE 'HOST and RTD Channel I/O Activity';
RUN;
Copyright © 2014 CA.
All rights reserved.
 
|
|