Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

How to be notified when softcap is set?

481 views
Skip to first unread message

David Andrews

unread,
Mar 29, 2010, 11:23:18 AM3/29/10
to
I'm experimenting with LPAR group capping (baby steps). How am I
notified that the 4h average has exceeded the group cap and softcapping
has begun? Is there a console message or event or specific SMF record?

--
David Andrews
A. Duda and Sons, Inc.
david....@duda.com

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to list...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

Al Sherkow

unread,
Mar 29, 2010, 11:41:06 AM3/29/10
to
David --

There are no z/OS (WLM, RMF) messages when the cap is reached.

You can monitor this with RMF III from the CPC screen. I don't know about
the other monitors, but I expect they would have a similar capability.


Al Sherkow
I/S Management Strategies, Ltd.
Consulting Expertise on Capacity Planning, Performance Tuning,
WLC, LPARs, IRD and LCS Software
Seminars on IBM SW Pricing, LPARs, and IRD
Voice: +1 414 332-3062
Web: www.sherkow.com

Kelman, Tom

unread,
Mar 29, 2010, 11:54:37 AM3/29/10
to
Yes, OMEGAMON also has the ability to monitor the 4HRA when the LPAR is
soft capped.

In the SMF Type 70-1 record, the variable SMF70MSU has the defined
capacity for the LPAR and SMF70VPF is a flag where one of the bits
indicates the partition capping is enabled. However, I don't know if
that means that you've hit the cap, or just that capping is turned on.

If you run Barry Merrill's MXG code he has a couple of variables in the
TYPE70 dataset (and related datasets) that help with determining if
you've hit the cap. I'm sure other SMF analysis tools, such as MICS,
have the same.

Tom Kelman
Enterprise Capacity Planner
Commerce Bank of Kansas City
(816) 760-7632


*****************************************************************************
If you wish to communicate securely with Commerce Bank and its
affiliates, you must log into your account under Online Services at
http://www.commercebank.com or use the Commerce Bank Secure
Email Message Center at https://securemail.commercebank.com

NOTICE: This electronic mail message and any attached files are
confidential. The information is exclusively for the use of the
individual or entity intended as the recipient. If you are not
the intended recipient, any use, copying, printing, reviewing,
retention, disclosure, distribution or forwarding of the message
or any attached file is not authorized and is strictly prohibited.
If you have received this electronic mail message in error, please
advise the sender by reply electronic mail immediately and
permanently delete the original transmission, any attachments
and any copies of this message from your computer system.
*****************************************************************************

PeD

unread,
Mar 29, 2010, 3:15:38 PM3/29/10
to
maybe you can adapt this piece of code including a sleep, a recurrent
test, then an alert to be sent where you want.


Cheers

Pierre

/* REXX
*/
/* TRACE ?R
*/

CVT =
C2D(STORAGE(10,4))
RMCT = C2D(STORAGE(D2X(CVT+604),4)) /* POINT TO RMCT
*/
RCT = C2D(STORAGE(D2X(RMCT+228),4)) /* RESOURCE CONTROL TBL
*/
RCTLACS = C2D(STORAGE(D2X(RCT+196),4)) /* 4 HR MSU AVERAGE
*/
RCTIMGWU = C2D(STORAGE(D2X(RCT+28),4)) /* IMAGE DEFINED MSUS
*/
RCTCECWU = C2D(STORAGE(D2X(RCT+32),4)) /* CEC MSU CAPACITY
*/
SAY 'THE DEFINED MSU CAPACITY FOR THIS LPAR IS'
RCTIMGWU'.'
SAY 'THE 4 HOUR MSU AVERAGE USAGE IS'
RCTLACS'.'

EXIT
0

0 new messages