On Tue, 7 Jul 2009 04:27:43 -0500, Jochen Roehrig
<[email protected]> wrote:
>Hello,
>
>any idea how best to monitor/analyze VLF's implementation. Obviously there
>is no MVS DISPLAY command available. I am mostly interested in the managed
>CLASS NAME(IKJEXEC) and its hit rate.
>
>
The data is in the SMF 41 records. If you have MXG (and SAS) it's as
simple as this:
%INCLUDE SOURCLIB(TYPE41);
RUN;
PROC SORT NODUP DATA=TYPE41VF OUT=T41;
BY SYSTEM SMF41CLS SMFTIME;
PROC PRINT LABEL SPLIT='*';
VAR SMFTIME SYSTEM SMF41LRG SMF41MVT SMF41USD
SMF41ADD SMF41DEL SMF41TRM VLFHITPC;
BY SYSTEM SMF41CLS;
ID SMF41CLS;
FORMAT SMFTIME DATETIME18.;
TITLE 'VITUAL LOOKASIDE FACILITY';
TITLE2 'AS REDUCED FROM SMF TYPE41';
FOOTNOTE 'ZELDEN-(MXG41VLF)';
--
Mark Zelden
Sr. Software and Systems Architect - z/OS Team Lead
Zurich North America / Farmers Insurance Group - ZFUS G-ITO
mailto:[email protected]
z/OS Systems Programming expert at http://expertanswercenter.techtarget.com/
Mark's MVS Utilities: http://home.flash.net/~mzelden/mvsutil.html
----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [email protected] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html