

5. FILES › 5.2 UNIX Global Performance File (AUMGPR) › 5.2.4 AUMGPR Retrieval Examples
5.2.4 AUMGPR Retrieval Examples
Plot the use of CPU by system and users.
DATA GPR;
SET DAYS.AUMGPR01;
DATE = DATEPART(ENDTS);
IF 8 < HOUR < 18;
%GPRDERV;
LABEL GPRPCUSR = '%CPU Time Charged to Users'
GPRPCSYS = '%CPU Time System Overhead'
GPRPCCPU = '%Total CPU Busy';
FORMAT DATE MMDDYY8.;
RUN;
PROC TIMEPLOT DATA=GPR;
BY SYSID DATE;
ID HOUR;
PLOT GPRPCCPU='T' GPRPCUSR='U' GPRPCSYS='S'
/ OVERLAY HILOC POS=0 AXIS=0 TO 100;
TITLE "CPU Consumption by System and Users";
RUN;
Copyright © 2014 CA.
All rights reserved.
 
|
|