SAS IT Resource Management is the new name for IT Service Vision. You may see references in our older documentation to its former name.
The hotfixes issued during the 2.7 release cycle are cumulative. That is, hotfix 27IS04 contains all the changes that were contained within hotfix 27IS03.
Contents:
(27IS04) Updated Support for Tile Charts
(27IS04) Updates to MXG-based dictionaries using MXG 25.08
(27IS03) Updates to MXG-based dictionaries using MXG 24.02
(27IS03) Support for SMF NDMCT De-accumulation
(27IS03) Updates to sar Data Support on Linux
(27IS03) Updates to SiteScope Data Support for Daylight Savings Time adjustments
(27IS03) Updates to NTSMF Data Support
(27IS03) Updates to allow support for BMC Patrol Data in IT Service Level Management
(27IS03) Support for duplicate ID values in BMC Patrol Data
(27IS02) Updates to MXG-based dictionaries using MXG 22.03
(27IS02) Support for HP OpenView Performance Agent X.03.84.02 on AIX
(27IS02) Support for SiteScope data on MVS
(27IS02) Support for web logs produced by BEA Weblogic
(27IS02) Support for DCOLLECT, EREP, IMF, TMS, TPF and VM collectors on UNIX and PC
Previous Updates to SAS IT Resource Management Collector Support
SAS IT Resource Management Server Setup Guide - Parts of the SAS IT Resource Management Server Setup Guide have been integrated into the Online Help available from within the SAS IT Resource Management application window. For a list of these topics click here. The original SAS IT Resource Management Server Setup Guide has been preserved but is now shipped in compressed form. On Windows, it is a zip file called setupdoc.zip and it resides in the itsvdocs folder in the !sasroot\cpe tree. On UNIX, it is a tar file called setupdoc.tar and it also resides in the itsvdocs subdirectory in the !sasroot/cpe tree. Before you can access this document, it should be uncompressed into the itsvdocs\sa folder on Windows or the itsvdocs/sa subdirectory on UNIX. Once uncompressed, the following link will take you there:
Note. The version of the Tile Chart that shipped with hotfix 82IS08 contained jars that showed incosistent behaviour among certain Windows operating systems. This version fixes all known problems and is a complete replacement of the original version. The documentation below is taken from the 82IS08 hotfix, and amended where necessary to include new features that have also been added. Please note that some of the %CPTILEMP macro parameters have changed from being positional parameters to keyword parameters. Also, one parameter, LAYOUT, is no longer supported.
A Tile Chart is also technically known as a Rectangular Tree Map. It is designed to view a large quantity of hierarchical based data in a limited space. Each unique category combination is represented by a rectangular tile with size and color determined by response variables. These tiles are placed in a hierarchical arrangement.
The tree-based nature of the Tile Chart makes it especially useful in an interactive environment. Because of the large amount of data displayed, detailed labeling is not useful, so data tips are very important to see specific values. Drilling down or zooming is also useful to be able to see small sections of the original chart in more detail.
The TileChart Applet is initialized via HTML applet parameters, and is rendered through the use of an XML file. Within SAS IT Resource management, a macro called CPTILEMP is used to generate both the HTML and XML files. This macro uses a SAS dataset as input, although within ITRM, it will typically use an ITRM table.
Tile Charts can also be made part of a Web Gallery, by executing the CPTILEMP macro from within the ITRM CPSRCRPT report macro. See the examples beneath.
There are two distinct items that comprise support for TileChart Applets, the CPTILEMP macro and the jars that make up the applet itself.
When the hotfix is installed, the CPTILEMP macro will be automatically installed into the correct location for it to be invoked from any SAS IT Resource Management session. The jars are installed as a self-extracting zip file on windows, called TileChartApplet.exe, and can be found in the cpe\sasmisc folder under the SAS install tree. Executing this file will unload the required jars into the same folder.
Once the jars are unloaded, they should be copied to a suitable location for use by the output files that will be created by the ITRM report macros (including CPTILEMP). One of the parameters to the CPTILEMP macro, JAVADIR=, is used to specify the chosen location. See details below.
The following table lists the parameters supported by the new CPTILEMP macro. The column denoting whether parameters are positional or keyword follows SAS Macro language standards. That is, if the parameter is positional, its order of appearance in the CPTILEMP invocation is important. And all keyword parameters must be listed after all positional parameters.
The following represents some examples of using the new CPTILEMP macro.
This example uses the CPTILEMP macro directly against an ITRM table, DAY.XRMFINT. It creates the xml and html files in the c:\temp directory. It uses three hierarchical variables, DATE, SHIFT and HOUR, a size response variable of CPUTM__S (sum of CPU time) and a color response variable of PCCPUBY (mean percent CPU busy). Other variables available within the applet will be CPUTM (mean CPU time) and PAGRT (mean paging rate). As each tile is hovered over, the values of SYSPLEX and MACHINE will also appear. There are four colors in the color list associated with four values from 0 to 1. This will mean that the color gradient is skewed, such that colors will graduate from 0000bb to 00bbbb for the first 50% of observations, based on PCCPUBY. The colors will then graduate from 00bbbb to bbbb00 for the next 40% of observations. And finally, the top 10% of observations will be the darkest red color, thus highlighting when the machine was busiest. The labels of the ID variables will be white, with no shadows. When you RMB click on a tile, the popup menu will display an extra label reading "Link to report of machine=xxxx and date=ddddddd". The values for machine and date will be substituted for the values of those variables from the tile on which the RMB was selected.
%cptilemp( day.xrmfint,
c:\temp,
rmfcpu.xml,
rmfcpu.htm,
idvars=date shift hour,
sizevar=cputm__s,
colorvar=pccpuby,
othervars=cputm pagrt,
auxvars=sysplex machine,
weblink=machine date,
linkvals=%str(http://www.sas.com/q?machine={&1}date={&2}),
linklabs=%str(Details for machine={&1} and date={&2}),
style=analysis,
title1=Mainframe CPU Utilization,
title2=tile size represents total cpu time,
colorlist = 0000bb 00bbbb bbbb00 dd0000,
colorvals = 0 .5 .9 1,
labelcolor=ffffff,
javadir=file:///c:\tilechartapplet\jars);
This example uses the new CPTILEMP macro in combination with the CPSRCRPT report macro to place a Tile Chart into a web gallery. The CPTILEMP invocation is stored in a catalog entry called SASUSER.TILECHART.SARDAILY.SOURCE and the third positional parameter to the CPSRCRPT macro is used to specify that location.
The CPTILEMP macro uses data from a dataset whose name is represented by a macro variable called &DATASET. This macro variable will represent the correctly-named SAS dataset when executed within the CPSRCRPT macro. CPSRCRPT manipulates the input ITRM table and produces a temporary dataset, whose name is stored in &DATASET.
The output directory name is represented by a macro variable called &HTMLDIR. This macro variable represents the same-named macro parameter that is used in CPSRCRPT. In other words, the directory specified in the HTMLDIR= parameter of CPSRCRPT can be used here unchanged.
The xml and html files are named based on the contents of another macro variable called &OUTNAME. This macro variable represents the same-named macro parameter that is used in CPSRCRPT. In other words, the name specified in the OUTNAME= parameter of CPSRCRPT can be used here unchanged.
It uses three hierarchical variables, MACHINE, DATE and HOUR, a size response variable of FREEMEM (mean free memory) and a color response variable of CPUBUSY (mean percent CPU busy). The colors are as specified in the first example, along with the labels.
LEGENDSYM is specified as TRUE, meaning that the legend should be symmetrical about the LEGENDBASE value of 50. In this scenario, because the color response variable is a percentage, it makes sense to have the legend centered on 50%.
%cptilemp( &dataset,
&htmldir,
&outname..xml,
&outname..htm,
idvar=machine date hour,
sizevar=freemem,
colorvar=cpubusy,
style=analysis,
title1=UNIX CPU Utilization,
title2=from sar data,
colorlist = 0000bb 00bbbb bbbb00 dd0000,
colorvals = 0 .5 .9 1,
labelcolor=ffffff,
legendsym=TRUE,
legendbase=50,
javadir=..\..\tilechartapplet\jars
);
The CPSRCRPT macro follows:
%cpsrcrpt( sar,
temp,
sasuser.tilechart.sardaily.source,
redlvl=day,
outmode=web,
outloc=work.applet3,
outdesc=Daily CPU Utilization,
outname=sardaily,
outtype=ascii,
htmldir=c:\itrm\gallery\sarcpu,
webstyle=dynamic,
labels=(freemem="Memory available"
pccpuby="Percent CPU Busy"
date="Date"
hour="Hour"
shift="Shift")
);
The combination of the first positional parameter and the REDLEVL keyword parameter tells CPSRCRPT to get the data for this report from the ITRM table, DAY.SAR.
The second positional parameter is used to define the name of a dataset used to store transient data.
The third positional parameter is used to specify the location of the catalog source entry that contains the SAS report code to be executed; in this case, the CPTILEMP invocation.
The keyword parameters that all start with "OUT" specify that the output is to be stored in a web gallery with a name of SARDAILY and a description of "Daily CPU Utilization". The report metadata is written to WORK.APPLET3 and the type of the output is ASCII, since the output created by the CPTILEMP macro is text files.
HTMLDIR specifies the directory path for the location of the xml and html files.
WEBSTYLE specifies the type of gallery to produce.
LABELS is used to override the labels used for this report. If not specified, the labels are retrieved from the data dictionary defintions for the table.
WARNING: Before applying any data dictionary maintenance, please read the
following warnings:
- The following variable has changed from being character to numeric.
Table Variable MXG Variable
XTY8221 SM82SXT SMF82SXT
If this table already exists in your PDB and you wish to apply
dictionary maintenance to the table, you will need to delete the
variable first. This can be done either by using the interactive
interface or, preferably, by running the %CPDDUTL macro specifying a
PDS member which contains the following statements:
SET TABLE NAME=XTY8221;
DELETE VARIABLE NAME=SM82SXT;
BUILD VIEWS NAME=XTY8221;
Applying subsequent maintenance to the table will create a new
variable to replace it.
FAILURE TO DO THESE TASKS WILL RESULT IN AN ERROR CONDITION WHILST APPLYING
MAINTENANCE.
The SAS IT Resource Management data dictionary has been updated using MXG
25.08. If you are running an older version of MXG, the dictionary may
contain variables that are not available in your version of MXG. Later
versions of MXG are compatible. If new variables or tables have been added
in a later version, we will add them to our supplied data dictionary in a
maintenance release. If you need to add them prior to that time, you can
use CREATE VARIABLE or CREATE TABLE statements using the batch dictionary
update utility, %CPDDUTL.
To apply maintenance to your PDB dictionary, run the data dictionary
utility macro, %CPDDUTL, in a batch job. See below for a list of some
possible combinations of control statements for %CPDDUTL. See the macro
reference documentation or the online help index for more details regarding
this macro. Please also note that SCOPE=ALL is now an obsolete parameter
setting for the MAINTAIN function.
- To obtain a report of new variables that could be added to your
dictionary, specify:
MAINTAIN TABLE NAME=_ALL_
REPORT
SCOPE=NEWVARS
NOUPDATE;
- To obtain a report of all changes to existing variables before you
update your dictionary, specify:
MAINTAIN TABLE NAME=_ALL_
REPORT
SCOPE=EXISTING
NOUPDATE;
- To update your dictionary such that only new variables are added (no
existing variables are modified), specify:
MAINTAIN TABLE NAME=_ALL_
REPORT
SCOPE=NEWVARS
UPDATE;
- To update your dictionary such that existing variables are modified,
specify:
MAINTAIN TABLE NAME=_ALL_
REPORT
SCOPE=EXISTING
UPDATE;
The last two examples also produce a report of what is being changed. If
you want to suppress this, specify NOREPORT in place of REPORT.
If you want to apply maintenance or obtain a report on only one table,
specify its name as the NAME= parameter value in place of _ALL_. Note that
you cannot specify multiple tables.
Support for MXG 25.08 also implies support for the following
enhancements to existing tables:
Support for RMF Capacity Groups.
Support for z/OS 1.9.
Support for IMF Version 4.3.
Support for TYPE89 APAR OA20314.
Support for unknown TYPE80 TOKDANAMs.
Support for CICS/TS 3.2.
Support for TYPE80 CRL PUBLISH and SET UID (events 52, 79).
Support for DB2 PK37354 Subtype 4 in DB2 1.9.
Support for SMF 119 for z/OS 1.8.
Support for Tape Mount Monitor ML-40.
Support for IMS Version 10.
Support for TPF thru PUT19.
Support for Beta 93 Version 3.6.1
Support for HyperPAV APAR OA12865.
Support for NTSMF Beta Version 3.0.0.8.
Support for NetSpy Version 11.
Support for SMF 99 Resource Group.
Support for ThruPut Manager Version 6.
Support for NTSMF Version 3.0.0.7.
Support for SMF 82 subtype 22.
Support for z/OS 1.8.
Support for NTSMF 3.0.0.
Support for NDM/Connect-Direct Release 4.3/4.5.
1) The following tables have been deleted from the supplied data
dictionary:
Table Table Type Description
NASPNTA INTERVAL WIN NT - apps v1.1.4322
NASPNTV INTERVAL WIN NT - v1.1.4322
This is because these metrics were combined into other, new tables
NASPN and NASPNAP, detailed below.
2) The following tables have been added to the supplied data dictionary:
Table Table Type Description
NARMTAP INTERVAL WIN NT - armtecap
NARMTPR INTERVAL WIN NT - armtecpr
NASPN INTERVAL WIN NT - aspnet
NASPNAP INTERVAL WIN NT - aspnetap
NASPNSS INTERVAL WIN NT - state service
NCCMSGQ INTERVAL WIN NT - message queue
NCITRIX INTERVAL WIN NT - citrix metaframe pres server
NDATABI INTERVAL WIN NT - database instances
NDTSBUF INTERVAL WIN NT - usage
NDTSPER INTERVAL WIN NT - library
NETCLDT INTERVAL WIN NT - clr data
NETCLEX INTERVAL WIN NT - clr exceptions
NETCLIN INTERVAL WIN NT - clr interop
NETCLJI INTERVAL WIN NT - clr jit
NETCLLK INTERVAL WIN NT - clr locksandthreads
NETCLLO INTERVAL WIN NT - clr loading
NETCLME INTERVAL WIN NT - clr memory
NETCLRE INTERVAL WIN NT - clr remoting
NETCLSE INTERVAL WIN NT - clr security
NIPV6 INTERVAL WIN NT - ipv6: nt ipv6
NPSCHPI INTERVAL WIN NT - pipe
NSAALER INTERVAL WIN NT - alerts
NSASTAT INTERVAL WIN NT - statistics
NSJOB INTERVAL WIN NT - jobs
NSJOBTP INTERVAL WIN NT - jobsteps
NSQCUTO INTERVAL WIN NT - cursor manager total
NSQCUTY INTERVAL WIN NT - cursor manager by type
NSQLBFN INTERVAL WIN NT - buffernode
NSQLBRD INTERVAL WIN NT - broker/dbmtransport
NSQLBRK INTERVAL WIN NT - brokeractivation
NSQLBRS INTERVAL WIN NT - brokerstatistics
NSQLCAT INTERVAL WIN NT - catalogmetadata
NSQLCLR INTERVAL WIN NT - clr
NSQLEXE INTERVAL WIN NT - execstatistics
NSQLPLN INTERVAL WIN NT - plancache
NSQLSPI INTERVAL WIN NT - ssispipeline
NSQLSQL INTERVAL WIN NT - sqlerrors
NSQLTRA INTERVAL WIN NT - transactions
NSQLWAI INTERVAL WIN NT - waitstatistics
NTCPV6 INTERVAL WIN NT - tcpv6
NUDPV6 INTERVAL WIN NT - udpv6
VIODHPC EVENT VM - hyperpav pool create/delete
VIODHPP EVENT VM - hyperpav pool activity
VIODLPT EVENT VM - lss pav transition
VMTRHPP EVENT VM - hyperpav pool definition
VPRCAPC EVENT VM - crypto performance counters
VPRCAPM EVENT VM - crypto performance measurement
VPRCDIA EVENT VM - diagnose counts per proc
VPRCINS EVENT VM - instruction counts per proc
VSCLSCA EVENT VM - set cpuaffinity changes
VSTOSCS EVENT VM - scsi storage pool sample
VSTOSXG EVENT VM - system execution space global
VSTOSXP EVENT VM - system execution space per procesor
VSYTLCK EVENT VM - formal spin lock data
VSYTSPT EVENT VM - scheduler activity per proc
VSYTSXP EVENT VM - system execution space per procesor
VVNDLSD EVENT VM - virtual network guest link down
VVNDLSU EVENT VM - virtual network guest link up
VVNDSES EVENT VM - virtual nic session activity
XASM7GC INTERVAL Group capacity - cec total
XASM7GL INTERVAL Group capacity - lpar detail
XCIDBDS INTERVAL CICS loader stats lib dsnames
XCIDHD INTERVAL CICS doctemplate resource stats
XCIISR INTERVAL CICS isc ip connections
XCILDB INTERVAL CICS loader stats for library
XDBTAT4 EVENT DB2 interval statistics: subtype 4
XSARU20 EVENT CA VIEW - User log on
XSARU21 EVENT CA VIEW - User log off
XSARU30 EVENT CA VIEW - Report was viewed
XSARU31 EVENT CA VIEW - Report was reprinted
XSARU32 EVENT CA VIEW - Report was loaded to database
XSARU33 EVENT CA VIEW - Report was deleted
XSARU34 EVENT CA VIEW - Report was deleted from disk
XTPFKC EVENT TPF - kcn activity record
XTPFSB EVENT TPF - nsd activity record
XTY8052 EVENT RACF event 52 set uid
XTY8063 EVENT RACF event 63 unix setgroups
XTY8079 EVENT RACF event 79 crl publish
XTY8222 EVENT CRYPTO trusted block create call
XTY8223 EVENT CRYPTO token data set update
XTY9214 EVENT OMVS file system delete/rename
XTY99RG EVENT OS/390 type 99 resource group entry
3) The following tables have had variable changes (variables added,
deleted, or modified) in the supplied data dictionary:
Table Table Type Description
NBLKBER INTERVAL WIN NT - blackberry server
NDATABA INTERVAL WIN NT database
NDTSCPU INTERVAL WIN NT - dts cpu
NMEMORY INTERVAL WIN NT memory
NMSQAES INTERVAL WIN NT - mssql access methods
NMSQCMG INTERVAL WIN NT - mssql cache manager
NMSQGST INTERVAL WIN NT - mssql general statistics
NMSQLCH INTERVAL WIN NT - mssql latches
NMSQLKS INTERVAL WIN NT - mssql locks
NMSQSTS INTERVAL WIN NT - mssql sql statistics
NNETWIN INTERVAL WIN NT network interface
NSQEPLR INTERVAL WIN NT sqlreplr
NSQEPME INTERVAL WIN NT sqlrepme
NSQEPSN INTERVAL WIN NT sqlrepsn
NSQLACC INTERVAL WIN NT sqlacces
NSQLCAC INTERVAL WIN NT sqlcacmg
NSQLGEN INTERVAL WIN NT sqlgenst
NSQLLAT INTERVAL WIN NT sqllatch
NSQLLOK INTERVAL WIN NT sqllock
NSQLSTA INTERVAL WIN NT sqlstats
NSQRPAG INTERVAL WIN NT sqlrepag
NSQRPDI INTERVAL WIN NT sqlrepdi
NSYSTEM INTERVAL WIN NT system
NTCNFIG EVENT WIN NT SMF configuration
NTHRED INTERVAL WIN NT thread
NTINTRV INTERVAL WIN NT interval data
VAPLCMS INTERVAL VM - cms multitasking
VAPLEDT INTERVAL VM Application Data Event Record
VAPLSDT INTERVAL VM Application Data Sample Record
VAPLSLM INTERVAL VM - linux memory
VAPLSLN INTERVAL VM - linux networking
VAPLSLP INTERVAL VM - linux processor summary
VAPLSL0 INTERVAL VM - linux processor detail
VAPLSRV INTERVAL VM Application Data (MXG)
VAPLTCA INTERVAL VM - TCP/IP cpu
VAPLTCB INTERVAL VM - TCP/IP ccb
VAPLTCC INTERVAL VM - TCP/IP tree size
VAPLTCD INTERVAL VM - TCP/IP home
VAPLTCE INTERVAL VM - TCP/IP ipv6 home
VAPLTCY INTERVAL VM - TCP/IP acb process/device
VAPLTC0 INTERVAL VM - TCP/IP MIB
VAPLTC1 EVENT VM - TCP/IP tcb open
VAPLTC2 EVENT VM - TCP/IP tcb close
VAPLTC3 INTERVAL VM - TCP/IP pool limit
VAPLTC4 INTERVAL VM - TCP/IP pool size
VAPLTC5 INTERVAL VM - TCP/IP lcb link
VAPLTC6 EVENT VM - TCP/IP ucb open
VAPLTC7 INTERVAL VM - TCP/IP ucb close
VAPLTC8 INTERVAL VM - TCP/IP link definition
VAPLTC9 INTERVAL VM - TCP/IP acb
VAPLVMR EVENT VM - vmrm workloads
VBYUSR INTERVAL VM User Data (MXG)
VIODALS INTERVAL VM Automated Tape Library Statistics
VIODATD INTERVAL VM Attach Device
VIODATS INTERVAL VM Attach Shared Device
VIODCAD INTERVAL VM Cache Activity Data
VIODDCH INTERVAL VM/ESA - Delete CHPID
VIODDDV INTERVAL VM/ESA - Delete device
VIODDEV INTERVAL VM Device Activity
VIODDSB INTERVAL VM Disable Terminal
VIODDTD INTERVAL VM Detach Device
VIODENB INTERVAL VM Enable Terminal
VIODMDV INTERVAL VM/ESA - Modify device
VIODMOF INTERVAL VM/ESA - Set subchan measure off
VIODMON INTERVAL VM/ESA - Set subchan measure on
VIODQDA INTERVAL VM - activate qdio device
VIODQDD INTERVAL VM - qdio deactivate
VIODQDS INTERVAL VM - qdio activity
VIODSOF INTERVAL VM/ESA - Vary off subchannel
VIODSON INTERVAL VM/ESA - Vary on subchannel
VIODSTC INTERVAL VM/ESA - State change
VIODSZI INTERVAL VM - scsi device activity
VIODTOF INTERVAL VM/ESA - Set throttle off
VIODTON INTERVAL VM/ESA - Set throttle rate
VIODVOF EVENT VM Vary Off Device
VIODVON INTERVAL VM Vary On Device
VIODVSF INTERVAL VM - virtual switch failover
VIODVSR INTERVAL VM - virtual switch recovery
VIODVSW INTERVAL VM - virtual switch activity
VMINTRV INTERVAL VM Interval Data (consolidated by MXG)
VMTRCCC EVENT VM - cpu capability change
VMTRDDR EVENT VM Domain Detail
VMTRDEV EVENT VM Device Configuration Data
VMTRECM EVENT VM Event Alteration Command
VMTREND INTERVAL VM Interval End
VMTREOF EVENT VM End of Frame Indicator
VMTREPR EVENT VM Event Profile
VMTRMEM EVENT VM Memory Configuration Data
VMTRPAG EVENT VM Paging Configuration Data
VMTRPRP EVENT VM Processor Configuration
VMTRQDC EVENT VM - qdio device config
VMTRSCH EVENT VM Scheduler Settings
VMTRSCM EVENT VM Sample Alteration Command
VMTRSOS EVENT VM Event Record Start of Suspend
VMTRSPR EVENT VM Sample Profile
VMTRSUS EVENT VM Suspension Record
VMTRSYS EVENT VM System Configuration Data
VMTRUSR EVENT VM Logged on User
VMTRXSG EVENT VM Expanded Storage Data
VPRCCFF INTERVAL VM Remove Access to Crypto Facility
VPRCCFN INTERVAL VM Add Access to Crypto Facility
VPRCIOP INTERVAL VM - iop utilization
VPRCPRP INTERVAL VM Processor Data (Per Processor)
VPRCVFF INTERVAL VM Vary Off Vector Facility
VPRCVFN INTERVAL VM Vary On Vector Facility
VPRCVOF INTERVAL VM Vary Off Processor
VPRCVON INTERVAL VM Vary On Processor
VSCLADL INTERVAL VM Add User To Dispatch List
VSCLAEL INTERVAL VM Add User To Eligible List
VSCLDDL INTERVAL VM Drop User From Dispatch List
VSCLIOP INTERVAL VM - i/o priority changes
VSCLRDB INTERVAL VM Begin Read
VSCLRDC INTERVAL VM Read Complete
VSCLSHR INTERVAL VM Set SHARE Changes
VSCLSQD INTERVAL VM Set QUICKDSP Changes
VSCLSRM INTERVAL VM Set SRM Changes
VSCLSTP INTERVAL VM System Timer Pop
VSCLWRR INTERVAL VM Write Response
VSEKSEK INTERVAL VM Seek Data
VSTOASC INTERVAL VM Address Space Created
VSTOASD INTERVAL VM Address Space Deleted
VSTOASI INTERVAL VM Address Space Information Record
VSTOASP INTERVAL VM Auxiliary Storage Management
VSTOASS INTERVAL VM Auxiliary Shared Storage Management
VSTOATC INTERVAL VM Page/Spool Area of a CP Volume
VSTOBPG INTERVAL VM Block Paging Data
VSTORSG INTERVAL VM Real Storage Management (Global)
VSTORSP INTERVAL VM Real Storage Activity (Per Processor)
VSTOSHD INTERVAL VM NSS/DCSS/SSP removed from storage
VSTOSHL INTERVAL VM NSS/DCSS/SSP Loaded into Storage.
VSTOSHP INTERVAL VM NSS/DCSS Successfully Purged
VSTOSHR INTERVAL VM Shared Storage Management
VSTOSHS INTERVAL VM NSS/DCSS Saved
VSTOVDK INTERVAL VM VDisk Information Record
VSTOXSG INTERVAL VM Expanded Storage Data
VSTOXSU INTERVAL VM Expanded Storage Data (Per User)
VSYTASG INTERVAL VM Auxiliary Storage (Global)
VSYTCOM INTERVAL VM Processor Communication Activities
VSYTCPC INTERVAL VM Physical Channel Path Contention Data
VSYTCPM INTERVAL VM Channel Path Measurement Data
VSYTCUG INTERVAL VM Logical CPU Utilization Data (Global)
VSYTCUM INTERVAL VM Physical CPU Utilization Data 4 LPAR
VSYTCUP INTERVAL VM CPU Util. Data (Logical Partition)
VSYTEPM INTERVAL VM/ESA - Extended channel measure
VSYTPRP INTERVAL VM Processor Data (Per Processor)
VSYTRSG INTERVAL VM Real Storage Data (Global)
VSYTRSP INTERVAL VM Real Storage Data (Per Processor)
VSYTSCG INTERVAL VM Scheduler Activity (Global)
VSYTSCP INTERVAL VM Scheduler Activity (Per Processor)
VSYTSHS INTERVAL VM Shared Storage Data
VSYTSYG INTERVAL VM/ESA - System data global
VSYTSYP INTERVAL VM System Data (Per Processor)
VSYTUSR INTERVAL VM User Data
VSYTUWT INTERVAL VM User Wait States
VSYTXSG INTERVAL VM Expanded Storage Data (Global)
VSYTXSP INTERVAL VM Expanded Storage Data (Per Processor)
VUSEATE INTERVAL VM User Activity Data at Transaction End
VUSEDFC INTERVAL VM DEFINE CPU
VUSEDTC INTERVAL VM DETACH CPU
VUSEITE INTERVAL VM User Interaction at Transaction End
VUSELOF INTERVAL VM User Logoff Data
VUSELON INTERVAL VM User Logon
VUSERDC INTERVAL VM DEFINE CPU n AS
VUSETRE INTERVAL VM User Transaction End
XASMCEC INTERVAL LPAR CEC level LPAR details
XASMCEL INTERVAL Summarized CEC detail
XASMTAP EVENT MXG tape monitor summary analysis
XASM70L INTERVAL LPAR summarized detail
XASM70P INTERVAL LPAR RMF interval data
XBETA0 EVENT BETA 93 input of lists
XCICINT INTERVAL CICS interval statistics
XCIDS INTERVAL CICS dispatcher statistics
XCIDSR INTERVAL CICS dispatcher tcb resource
XCIDST INTERVAL CICS dispatcher tcb global
XCILDR INTERVAL CICS program loader statistics specific
XCIM INTERVAL CICS monitoring statistics
XCIMDSA INTERVAL CICS storage manager DSA
XCIPIR INTERVAL CICS pipeline resource stats
XCITRAN EVENT CICS transactions
XDBACCT EVENT DB2 accounting
XDBCCTP EVENT DB2 accounting-packages/dbrm
XDBGBPS INTERVAL DB2 statistics global buffer pool
XDBSTA0 INTERVAL DB2 interval statistics (subtype 0)
XDBSTA1 INTERVAL DB2 interval statistics (subtype 1)
XDBTATS INTERVAL DB2 interval statistics: summary
XDB2A INTERVAL DB2 accounting - summarised to hour
XDCBKUP EVENT DCOLLECT backup
XDCCLUS EVENT DCOLLECT VSAM data set information
XDCDSET EVENT DCOLLECT active data set information
XDSNREC EVENT TMS (CA-1) dataset name record
XHSFSRT EVENT HSM fsr tape volsers for detail records
XHSM INTERVAL HSM fsr statistics - hourly summary
XIMFTRN EVENT IMF - IMS transactions
XIMPROG EVENT IMF - IMS program deschedule
XJOBS EVENT Completed jobs
XMIVCF INTERVAL MIM virtual control file
XMQACCT EVENT MQM accounting statistics
XMQACTQ EVENT MQM task queue accounting
XMQQUEU EVENT MQM queue detail
XNDMCT EVENT NDM copy termination
XNDMFI EVENT NDM subtype fi
XNDMNM EVENT NDM subtype nm
XORACLE EVENT Oracle event record
XPROREC EVENT Pro/sms recovery
XPROSMS EVENT Pro/sms message
XQACONF EVENT AS400 - system configuration data
XQADISK INTERVAL AS400 - disk storage data
XQAJOBL INTERVAL AS400 - job data
XQAJOBM INTERVAL AS400 - job data
XQAPOLB INTERVAL AS400 - main storage data
XQASYSL INTERVAL AS400 - system performance data
XQASYST INTERVAL AS400 - system performance data
XRMFINT INTERVAL Combined RMF interval data
XSMFINT INTERVAL SMF interval accounting
XSPNJOB EVENT Incomplete (spun) jobs
XSTEPS EVENT Completed jobs steps
XSTVS13 EVENT STC VSM 13 vtcs vtv mount
XSTVS15 EVENT STC VSM 15 vtcs delete vtv
XTAPES EVENT Tape error statistics by volume
XTPFDH EVENT TPF - ss/ssu mnemonic table
XTPFFF EVENT TPF - sons and vfa intercept records
XTPFINT INTERVAL TPF - interval statistics
XTPFSP INTERVAL TPF - system pool (gfs) data
XTPFSX INTERVAL TPF - system intrvl start/stop/continue
XTYMDF INTERVAL Amdahl MDFtrack
XTYTPMX EVENT Thruput manager job analyzer - extended
XTY1415 EVENT Non-VSAM data set activity
XTY16 EVENT Sort merge statistics
XTY21 EVENT Tape error statistics by volume
XTY23 INTERVAL SMF interval statistics (status)
XTY30_V EVENT Job/TSO interval accounting
XTY30_4 EVENT Job/TSO step/program termination
XTY30_5 EVENT Job/TSO termination
XTY30_6 EVENT System address space data
XTY57J2 EVENT JES2 network transmission
XTY6367 EVENT VSAM catalog entry DEFINE/DELETE
XTY70 INTERVAL RMF CPU activity and address space stats
XTY70PR INTERVAL RMF PR/SM statistics
XTY70X2 INTERVAL RMF pci crypto accelerator pcica
XTY70Y2 INTERVAL RMF crypto coproc facility ccf
XTY7002 INTERVAL RMF pci crypto coprocessor pcicc
XTY71 INTERVAL RMF paging and swapping activity
XTY72 INTERVAL RMF workload activity
XTY72DL INTERVAL RMF goal mode delay states
XTY72GO INTERVAL RMF goal mode period resources
XTY72MN INTERVAL RMF monitor III data
XTY7204 INTERVAL RMF subtype 04
XTY74 INTERVAL RMF device activity
XTY74CF INTERVAL RMF coupling facility - activity
XTY74ME INTERVAL RMF mon III XCF member message statistic
XTY74PA INTERVAL RMF mon III XCF path message statistics
XTY74ST INTERVAL RMF coupling facility - structure reqs
XTY77 INTERVAL RMF system enqueue data
XTY78CU INTERVAL RMF LCU queuing statistics
XTY78PA INTERVAL RMF virtual storage private area stats
XTY791 INTERVAL RMF mon II address space state data
XTY792 INTERVAL RMF mon II address space resource data
XTY799 INTERVAL RMF mon II device activity data
XTY80A EVENT RACF catchall if no racftype segment
XTY80TS EVENT Top secret 103-255
XTY8000 EVENT RACF event 00 undocumented
XTY8001 EVENT RACF event 01 JOB init or TSO logon
XTY8002 EVENT RACF event 02 resource access
XTY8003 EVENT RACF event 03 end of volume
XTY8004 EVENT RACF event 04 rename data set
XTY8005 EVENT RACF event 05 scratch data set or tape
XTY8006 EVENT RACF event 06 delete vol1 of multi-vol
XTY8007 EVENT RACF event 07 define data set of tape
XTY8008 EVENT RACF event 08 addsd command
XTY8009 EVENT RACF event 09 addgroup command
XTY8010 EVENT RACF event 10 adduser command
XTY8011 EVENT RACF event 11 adduser command
XTY8012 EVENT RACF event 12 altgroup command
XTY8013 EVENT RACF event 13 altuser command
XTY8014 EVENT RACF event 14 connect command
XTY8015 EVENT RACF event 15 deldsd command
XTY8016 EVENT RACF event 16 delgroup command
XTY8017 EVENT RACF event 17 deluser command
XTY8018 EVENT RACF event 18 deluser command
XTY8019 EVENT RACF event 19 permit command
XTY8020 EVENT RACF event 20 ralter command
XTY8021 EVENT RACF event 21 rdefine command
XTY8022 EVENT RACF event 22 rdelete command
XTY8023 EVENT RACF event 23 remove command
XTY8024 EVENT RACF event 24 setropts
XTY8025 EVENT RACF event 25 rvary command
XTY8026 EVENT RACF event 26 appclu session establish
XTY8027 EVENT RACF event 27 general audit
XTY8028 EVENT RACF event 28 directory search
XTY8029 EVENT RACF event 29 check access to dir
XTY8030 EVENT RACF event 30 check access to file
XTY8032 EVENT RACF event 32 change directory
XTY8033 EVENT RACF event 33 change file mode
XTY8034 EVENT RACF event 34 file ownerahip
XTY8038 EVENT RACF event 38 init of process
XTY8039 EVENT RACF event 39 term of process
XTY8042 EVENT RACF event 42 make directory
XTY8043 EVENT RACF event 43 make node
XTY8044 EVENT RACF event 44 mount file system
XTY8045 EVENT RACF event 45 open new file
XTY8048 EVENT RACF event 48 remove directory
XTY8050 EVENT RACF event 50 set effective uid
XTY8054 EVENT RACF event 54 unlink
XTY8055 EVENT RACF event 55 unmount file system
XTY8057 EVENT RACF event 57 check privilege
XTY8061 EVENT RACF event 61 ipcget
XTY8062 EVENT RACF event 62 ipcctl
XTY8064 EVENT RACF event 64 chkown2
XTY8066 EVENT RACF event 66 racdcert
XTY8201 EVENT CRYPTO initialization
XTY8221 EVENT CRYPTO icsf sysplex group change
XTY85RQ EVENT OAM lcs read/write/requests
XTY85TP EVENT OAM lcs tape read/write
XTY88 EVENT System logger data
XTY89 INTERVAL Measured usage interval
XTY892 INTERVAL Measured usage state interval
XT11901 EVENT IBM TCPIP tcp connection initiation
XT11902 EVENT IBM TCPIP tcp connection termination
XT11903 EVENT IBM TCPIP ftp client transfer completion
XT11905 INTERVAL IBM TCPIP tcp/ip statistics
XT11921 EVENT IBM TCPIP tn3270 server sna session term
XT11970 EVENT IBM TCPIP ftp server transfer completion
XT11972 EVENT IBM TCPIP ftp server login failure
XUOW EVENT CICS/DB2 combined resource summary
1) The following variable has been added to table NBLKBER:
Variable Description Interpretation
BLBINST Instance name for antigen scan STRING
2) The following 2 variables have been added to table NDATABA:
Variable Description Interpretation
LOGCKDP Log generation checkpoint depth COUNT
SBPRDRT Streaming backup pages read persec COUNT
3) The following 3 variables have been added to table NDTSCPU:
Variable Description Interpretation
DTPNCOA Active cores COUNT
DTPNCOS Supported cores COUNT
PFSENVR Performance sentry version that wrote STRING
4) The following 2 variables have been added to table NMEMORY:
Variable Description Interpretation
PCAVLBY Pct available bytes PERCENT100
VTRATIO V to r ratio PERCENT
5) The following 21 variables have been added to table NMSQAES:
Variable Description Interpretation
AULBART Au cleanup batches/sec RATE
AULUPRT Au cleanups/sec RATE
BYOCRCN By-reference lob create count COUNT
BYOUSCN By-reference lob use count COUNT
DEDRAUS Deferred dropped aus COUNT
DERROST Deferred dropped rowsets COUNT
DROCLRT Dropped rowset cleanups/sec RATE
DROSKRT Dropped rowsets skipped/sec RATE
FAEPACO Failed leaf page cookie COUNT
FALBART Failed au cleanup batches/sec RATE
FARPACO Failed tree page cookie COUNT
LOEAHCN Count lob readahead COUNT
LOHCRCN Lobhandle create count COUNT
LOHDECN Lobhandle destroy count COUNT
LORCRCN Lobss provider create count COUNT
LORDECN Lobss provider destroy count COUNT
LORTRCN Lobss provider truncation count COUNT
PUFROCN Count push off row COUNT
PUNROCN Count pull in row COUNT
USEPACO Used leaf page cookie COUNT
USRPACO Used tree page cookie COUNT
6) The following variable has had its interpretation type changed
in table NMSQCMG:
CCHUSRT changed from COUNT to RATE
The following variable has had its format changed in table
NMSQCMG:
CCHUSRT changed from BEST12. to BEST12.2
7) The following 18 variables have been added to table NMSQGST:
Variable Description Interpretation
ACMPTBL Active temp tables COUNT
EVODLDR Event notifications delayed drop COUNT
HTPAURQ Http authenticated requests COUNT
LOLCONN Logical connections COUNT
MASDEAD Mars deadlocks COUNT
NAOMYRT Non-atomic yield rate RATE
PRCBLKD Processes blocked COUNT
SOPMEIN Soap method invocations COUNT
SOPMTRQ Soap empty requests COUNT
SOPSEIR Soap session initiate requests COUNT
SOPSETR Soap session terminate requests COUNT
SOPSQRQ Soap sql requests COUNT
SOPWSRQ Soap wsdl requests COUNT
SQRPRLW Sql trace io provider lock waits COUNT
TMACRDT Temp tables creation rate RATE
TMADEST Temp tables for destruction COUNT
TRNSACT Transactions COUNT
TRVBIQU Trace event notification queue COUNT
8) The following 4 variables have been added to table NMSQLCH:
Variable Description Interpretation
SURDERT Superlatch demotions per sec RATE
SURLACN Number of superlatches INT
SURPRRT Superlatch promotions per sec RATE
TTALWTM Total latch wait time (ms) TIME
The following variable has been deleted from table NMSQLCH:
TTATWTM Total latch wait time (ms) TIME
9) The following variable has been added to table NMSQLKS:
Variable Description Interpretation
LOTIMEO Lock timeouts COUNT
10) The following 2 variables have been added to table NMSQSTS:
Variable Description Interpretation
FRPRMRT Forced parameterizations per sec RATE
SQATTRT Sql attention rate RATE
11) The following variable has been added to table NNETWIN:
Variable Description Interpretation
PTNETBY Pct network utilization PERCENT100
12) The following variable has been added to table NSQEPLR:
Variable Description Interpretation
SQLNAME Sqrl instance name STRING
13) The following variable has been added to table NSQEPME:
Variable Description Interpretation
SQMNAME Sqrm instance name STRING
14) The following variable has been added to table NSQEPSN:
Variable Description Interpretation
SQSNAME Sqrs instance name STRING
15) The following 21 variables have been added to table NSQLACC:
Variable Description Interpretation
AULBART Au cleanup batches/sec RATE
AULUPRT Au cleanups/sec RATE
BYOCRCN By-reference lob create count COUNT
BYOUSCN By-reference lob use count COUNT
DEDRAUS Deferred dropped aus COUNT
DERROST Deferred dropped rowsets COUNT
DROCLRT Dropped rowset cleanups/sec RATE
DROSKRT Dropped rowsets skipped/sec RATE
FAEPACO Failed leaf page cookie COUNT
FALBART Failed au cleanup batches/sec RATE
FARPACO Failed tree page cookie COUNT
LOEAHCN Count lob readahead COUNT
LOHCRCN Lobhandle create count COUNT
LOHDECN Lobhandle destroy count COUNT
LORCRCN Lobss provider create count COUNT
LORDECN Lobss provider destroy count COUNT
LORTRCN Lobss provider truncation count COUNT
PUFROCN Count push off row COUNT
PUNROCN Count pull in row COUNT
USEPACO Used leaf page cookie COUNT
USRPACO Used tree page cookie COUNT
16) The following variable has had its interpretation type changed
in table NSQLCAC:
CCHUSRT changed from COUNT to RATE
The following variable has had its format changed in table
NSQLCAC:
CCHUSRT changed from BEST12. to BEST12.2
17) The following 18 variables have been added to table NSQLGEN:
Variable Description Interpretation
ACMPTBL Active temp tables COUNT
EVODLDR Event notifications delayed drop COUNT
HTPAURQ Http authenticated requests COUNT
LOLCONN Logical connections COUNT
MASDEAD Mars deadlocks COUNT
NAOMYRT Non-atomic yield rate RATE
PRCBLKD Processes blocked COUNT
SOPMEIN Soap method invocations COUNT
SOPMTRQ Soap empty requests COUNT
SOPSEIR Soap session initiate requests COUNT
SOPSETR Soap session terminate requests COUNT
SOPSQRQ Soap sql requests COUNT
SOPWSRQ Soap wsdl requests COUNT
SQRPRLW Sql trace io provider lock waits COUNT
TMACRDT Temp tables creation rate RATE
TMADEST Temp tables for destruction COUNT
TRNSACT Transactions COUNT
TRVBIQU Trace event notification queue COUNT
18) The following 4 variables have been added to table NSQLLAT:
Variable Description Interpretation
SURDERT Superlatch demotions per sec RATE
SURLACN Number of superlatches INT
SURPRRT Superlatch promotions per sec RATE
TTALWTM Total latch wait time (ms) TIME
The following variable has been deleted from table NSQLLAT:
TTATWTM Total latch wait time (ms) TIME
19) The following variable has been added to table NSQLLOK:
Variable Description Interpretation
LOTIMEO Lock timeouts COUNT
20) The following 2 variables have been added to table NSQLSTA:
Variable Description Interpretation
FRPRMRT Forced parameterizations per sec RATE
SQATTRT Sql attention rate RATE
21) The following variable has been added to table NSQRPAG:
Variable Description Interpretation
SQANAME Sqra instance name STRING
22) The following variable has been added to table NSQRPDI:
Variable Description Interpretation
SQDNAME Sqrd instance name STRING
23) The following variable has been added to table NSYSTEM:
Variable Description Interpretation
RDTHPER Ready threads per processor RATE
24) The following 2 variables have been added to table NTCNFIG:
Variable Description Interpretation
ORANIZN Organization STRING
SURYINT Summary program interval STRING
25) The following variable has been deleted from table NTHRED:
Variable Description Interpretation
RECNR n value of record in input file INT
26) The following 3 variables have been added to table NTINTRV:
Variable Description Interpretation
PCAVLBY Pct available bytes PERCENT100
RDTHPER Ready threads per processor RATE
VTRATIO V to r ratio PERCENT
27) The following variable has been added to table VAPLCMS:
Variable Description Interpretation
MACHINE System identifier STRING
28) The following variable has been added to table VAPLEDT:
Variable Description Interpretation
MACHINE System identifier STRING
29) The following variable has been added to table VAPLSDT:
Variable Description Interpretation
MACHINE System identifier STRING
30) The following variable has been added to table VAPLSLM:
Variable Description Interpretation
MACHINE System identifier STRING
31) The following variable has been added to table VAPLSLN:
Variable Description Interpretation
MACHINE System identifier STRING
32) The following variable has been added to table VAPLSLP:
Variable Description Interpretation
MACHINE System identifier STRING
33) The following variable has been added to table VAPLSL0:
Variable Description Interpretation
MACHINE System identifier STRING
34) The following variable has been added to table VAPLSRV:
Variable Description Interpretation
MACHINE System identifier STRING
35) The following variable has been added to table VAPLTCA:
Variable Description Interpretation
MACHINE System identifier STRING
36) The following variable has been added to table VAPLTCB:
Variable Description Interpretation
MACHINE System identifier STRING
37) The following variable has been added to table VAPLTCC:
Variable Description Interpretation
MACHINE System identifier STRING
38) The following variable has been added to table VAPLTCD:
Variable Description Interpretation
MACHINE System identifier STRING
39) The following variable has been added to table VAPLTCE:
Variable Description Interpretation
MACHINE System identifier STRING
40) The following variable has been added to table VAPLTCY:
Variable Description Interpretation
MACHINE System identifier STRING
41) The following variable has been added to table VAPLTC0:
Variable Description Interpretation
MACHINE System identifier STRING
42) The following variable has been added to table VAPLTC1:
Variable Description Interpretation
MACHINE System identifier STRING
43) The following variable has been added to table VAPLTC2:
Variable Description Interpretation
MACHINE System identifier STRING
44) The following variable has been added to table VAPLTC3:
Variable Description Interpretation
MACHINE System identifier STRING
45) The following variable has been added to table VAPLTC4:
Variable Description Interpretation
MACHINE System identifier STRING
46) The following variable has been added to table VAPLTC5:
Variable Description Interpretation
MACHINE System identifier STRING
47) The following variable has been added to table VAPLTC6:
Variable Description Interpretation
MACHINE System identifier STRING
48) The following variable has been added to table VAPLTC7:
Variable Description Interpretation
MACHINE System identifier STRING
49) The following variable has been added to table VAPLTC8:
Variable Description Interpretation
MACHINE System identifier STRING
50) The following variable has been added to table VAPLTC9:
Variable Description Interpretation
MACHINE System identifier STRING
51) The following variable has been added to table VAPLVMR:
Variable Description Interpretation
MACHINE System identifier STRING
52) The following 16 variables have been added to table VBYUSR:
Variable Description Interpretation
MACHINE System identifier STRING
VMCFGEM Vmdcfgem bitstring HEXFLAGS
VMCRPGM Referenced pgmbks at reorder COUNT
VMCTPVA Private pages above 2gb COUNT
VMCTSHA Shared resident pages above 2gb COUNT
VMCTSHB Shared resident pages below 2gb COUNT
VMDPUST Vmdpust bitstring HEXFLAGS
VMDTTMP Ttime for user on pri processor TIME
VMDTTMS Ttime for user on sec processor TIME
VMDVTMP Vtime for user on pri processor TIME
VMDVTMS Vtime for user on sec processor TIME
VMPBKCT Pgmbks currently on pgmbk list COUNT
VMPUTYP Cpu type STRING
VMTMORD Last time pgmbk list reordered TIME
VMUFOCT Times when ufo list spin COUNT
VMUFOTM Elapsed ufo spin time on lock TIME
53) The following variable has been added to table VIODALS:
Variable Description Interpretation
MACHINE System identifier STRING
54) The following variable has been added to table VIODATD:
Variable Description Interpretation
MACHINE System identifier STRING
55) The following variable has been added to table VIODATS:
Variable Description Interpretation
MACHINE System identifier STRING
56) The following variable has been added to table VIODCAD:
Variable Description Interpretation
MACHINE System identifier STRING
57) The following variable has been added to table VIODDCH:
Variable Description Interpretation
MACHINE System identifier STRING
58) The following variable has been added to table VIODDDV:
Variable Description Interpretation
MACHINE System identifier STRING
59) The following 17 variables have been added to table VIODDEV:
Variable Description Interpretation
CAFLAG1 Flags byte HEXFLAGS
MACHINE System identifier STRING
PACNTIM Alias connect duration TIME
PACOUNT Cum sample count on alias COUNT
PACQTIM Control unit queue duration TIME
PADATIM Device active only duration TIME
PADBTIM Cum alias devbusy duration TIME
PADDTIM Alias disconnect duration TIME
PAFPTIM Alias pending duration TIME
PAINELG Alias steal ineligible COUNT
PAIRTIM Cum cmr duration TIME
PAVSSCH Cum ssch+rsch exec on alias COUNT
PAVUSES Alias took work from base COUNT
PRFPATH Preferred path mask HEXFLAGS
RDVHPPL Hyperpav pool number INT
RDVPVFG Pav flag base/alias HEXFLAGS
VDCIOP1 Sie assist flags HEXFLAGS
60) The following variable has been added to table VIODDSB:
Variable Description Interpretation
MACHINE System identifier STRING
61) The following variable has been added to table VIODDTD:
Variable Description Interpretation
MACHINE System identifier STRING
62) The following variable has been added to table VIODENB:
Variable Description Interpretation
MACHINE System identifier STRING
63) The following variable has been added to table VIODMDV:
Variable Description Interpretation
MACHINE System identifier STRING
64) The following variable has been added to table VIODMOF:
Variable Description Interpretation
MACHINE System identifier STRING
65) The following variable has been added to table VIODMON:
Variable Description Interpretation
MACHINE System identifier STRING
66) The following variable has been added to table VIODQDA:
Variable Description Interpretation
MACHINE System identifier STRING
67) The following variable has been added to table VIODQDD:
Variable Description Interpretation
MACHINE System identifier STRING
68) The following variable has been added to table VIODQDS:
Variable Description Interpretation
MACHINE System identifier STRING
69) The following variable has been added to table VIODSOF:
Variable Description Interpretation
MACHINE System identifier STRING
70) The following variable has been added to table VIODSON:
Variable Description Interpretation
MACHINE System identifier STRING
71) The following variable has been added to table VIODSTC:
Variable Description Interpretation
MACHINE System identifier STRING
72) The following variable has been added to table VIODSZI:
Variable Description Interpretation
MACHINE System identifier STRING
73) The following variable has been added to table VIODTOF:
Variable Description Interpretation
MACHINE System identifier STRING
74) The following variable has been added to table VIODTON:
Variable Description Interpretation
MACHINE System identifier STRING
75) The following variable has been added to table VIODVOF:
Variable Description Interpretation
MACHINE System identifier STRING
76) The following variable has been added to table VIODVON:
Variable Description Interpretation
MACHINE System identifier STRING
77) The following variable has been added to table VIODVSF:
Variable Description Interpretation
MACHINE System identifier STRING
78) The following variable has been added to table VIODVSR:
Variable Description Interpretation
MACHINE System identifier STRING
79) The following variable has been added to table VIODVSW:
Variable Description Interpretation
MACHINE System identifier STRING
80) The following 44 variables have been added to table VMINTRV:
Variable Description Interpretation
CACFIFL Vmdbks dsp list console wait ifl COUNT
CACFZAP Vmdbks dsp list console wait zap COUNT
CACFZIP Vmdbks dsp list console wait zip COUNT
CACRIFL Vmdbks dsp list on ifl COUNT
CACRZAP Vmdbks dsp list on zap COUNT
CACRZIP Vmdbks dsp list on zip COUNT
CACWIFL Vmdbks dsp list cpu wait ifl COUNT
CACWZAP Vmdbks dsp list cpu wait zap COUNT
CACWZIP Vmdbks dsp list cpu wait zip COUNT
CALCFCP Vmdbks dsp list console wait cp COUNT
CALCRCP Vmdbks dsp list on cp COUNT
CALCWCP Vmdbks dsp list cpu wait cp COUNT
CALLIFL Vmdbks dsp list limit list ifl share COUNT
CALLLCP Vmdbks dsp list limit list prevent COUNT
CALLZAP Vmdbks dsp list limit list zap share COUNT
CALLZIP Vmdbks dsp list limit list zip share COUNT
CALSWCP Vmdbks dsp list sim wait cp COUNT
CASWIFL Vmdbks dsp list sim wait ifl COUNT
CASWZAP Vmdbks dsp list sim wait zap COUNT
CASWZIP Vmdbks dsp list sim wait zip COUNT
DELTATM Delta time between records TIME
MACHINE System identifier STRING
RSAFRDB Doublewords real free below 2gb COUNT
RSAFRDW Doublewords real free above 2gb COUNT
RSAFRIB Doublewords in use real free below 2gb COUNT
RSAFRIU Doublewords in use real free above 2gb COUNT
RSCALCT Frames on cleared available list COUNT
RSCPLKG Frames locked above 2gb COUNT
RSFSA2G Doublewords assigned above 2gb COUNT
RSFSB2G Doublewords assigned below 2gb COUNT
RSFSYUA Doublewords in use above 2gb COUNT
RSFSYUB Doublewords in use below 2gb COUNT
RSLGFRM Useable frames g2 2gb COUNT
RSRFRSG Frames alloc real free above 2gb COUNT
RSRFRST Frames alloc real free below 2gb COUNT
RSSNGAV All single frames gt 2gb available COUNT
RSSNG2G All single frames lt 2gb available COUNT
RSSXACT Sxs pages on queue above 2gb COUNT
RSSXBCT Sxs pages on queue below 2gb COUNT
RSSXCLA Locked system alias pages COUNT
RSSXCPL Locked system exec space pages COUNT
RS2GAVL All frames on 2gb available list COUNT
RS2GAV2 Can represent up to 16t COUNT
SRCPUWT Bit mask of cpus in wait state HEXFLAGS
The following variable has had its external name changed in
table VMINTRV:
DURATION changed from DELTATM to DURATM
The following variable has been deleted from table VMINTRV:
DURATM Interval duration TIME
81) The following variable has been added to table VMTRCCC:
Variable Description Interpretation
MACHINE System identifier STRING
82) The following variable has been added to table VMTRDDR:
Variable Description Interpretation
MACHINE System identifier STRING
83) The following variable has been added to table VMTRDEV:
Variable Description Interpretation
MACHINE System identifier STRING
84) The following variable has been added to table VMTRECM:
Variable Description Interpretation
MACHINE System identifier STRING
85) The following variable has been added to table VMTREND:
Variable Description Interpretation
MACHINE System identifier STRING
86) The following variable has been added to table VMTREOF:
Variable Description Interpretation
MACHINE System identifier STRING
87) The following variable has been added to table VMTREPR:
Variable Description Interpretation
MACHINE System identifier STRING
88) The following variable has been added to table VMTRMEM:
Variable Description Interpretation
MACHINE System identifier STRING
89) The following variable has been added to table VMTRPAG:
Variable Description Interpretation
MACHINE System identifier STRING
90) The following 2 variables have been added to table VMTRPRP:
Variable Description Interpretation
MACHINE System identifier STRING
PFCPUTY Host cpu usage type STRING
91) The following variable has been added to table VMTRQDC:
Variable Description Interpretation
MACHINE System identifier STRING
92) The following variable has been added to table VMTRSCH:
Variable Description Interpretation
MACHINE System identifier STRING
93) The following variable has been added to table VMTRSCM:
Variable Description Interpretation
MACHINE System identifier STRING
94) The following variable has been added to table VMTRSOS:
Variable Description Interpretation
MACHINE System identifier STRING
95) The following variable has been added to table VMTRSPR:
Variable Description Interpretation
MACHINE System identifier STRING
96) The following variable has been added to table VMTRSUS:
Variable Description Interpretation
MACHINE System identifier STRING
97) The following variable has been added to table VMTRSYS:
Variable Description Interpretation
MACHINE System identifier STRING
The following 2 variables have been deleted from table VMTRSYS:
SYSTEM System identifier STRING
SYSTERM Tod clock at termination DATETIME
98) The following variable has been added to table VMTRUSR:
Variable Description Interpretation
MACHINE System identifier STRING
99) The following variable has been added to table VMTRXSG:
Variable Description Interpretation
MACHINE System identifier STRING
100) The following variable has been added to table VPRCCFF:
Variable Description Interpretation
MACHINE System identifier STRING
101) The following variable has been added to table VPRCCFN:
Variable Description Interpretation
MACHINE System identifier STRING
102) The following variable has been added to table VPRCIOP:
Variable Description Interpretation
MACHINE System identifier STRING
103) The following 3 variables have been added to table VPRCPRP:
Variable Description Interpretation
MACHINE System identifier STRING
PFCPUTY Host cpu usage type STRING
PLSTLCT Array of stolen vmdbks HEXFLAGS
104) The following variable has been added to table VPRCVFF:
Variable Description Interpretation
MACHINE System identifier STRING
105) The following variable has been added to table VPRCVFN:
Variable Description Interpretation
MACHINE System identifier STRING
106) The following variable has been added to table VPRCVOF:
Variable Description Interpretation
MACHINE System identifier STRING
107) The following 2 variables have been added to table VPRCVON:
Variable Description Interpretation
MACHINE System identifier STRING
PFCPUTY Host cpu usage type STRING
108) The following 2 variables have been added to table VSCLADL:
Variable Description Interpretation
MACHINE System identifier STRING
VMMXSHR Users maximum share MAXIMUM
The following variable has been deleted from table VSCLADL:
VMDMXSH Users maximum share MAXIMUM
109) The following variable has been added to table VSCLAEL:
Variable Description Interpretation
MACHINE System identifier STRING
110) The following variable has been added to table VSCLDDL:
Variable Description Interpretation
MACHINE System identifier STRING
111) The following variable has been added to table VSCLIOP:
Variable Description Interpretation
MACHINE System identifier STRING
112) The following variable has been added to table VSCLRDB:
Variable Description Interpretation
MACHINE System identifier STRING
113) The following variable has been added to table VSCLRDC:
Variable Description Interpretation
MACHINE System identifier STRING
114) The following variable has been added to table VSCLSHR:
Variable Description Interpretation
MACHINE System identifier STRING
115) The following variable has been added to table VSCLSQD:
Variable Description Interpretation
MACHINE System identifier STRING
116) The following variable has been added to table VSCLSRM:
Variable Description Interpretation
MACHINE System identifier STRING
117) The following variable has been added to table VSCLSTP:
Variable Description Interpretation
MACHINE System identifier STRING
118) The following variable has been added to table VSCLWRR:
Variable Description Interpretation
MACHINE System identifier STRING
119) The following variable has been added to table VSEKSEK:
Variable Description Interpretation
MACHINE System identifier STRING
120) The following variable has been added to table VSTOASC:
Variable Description Interpretation
MACHINE System identifier STRING
121) The following variable has been added to table VSTOASD:
Variable Description Interpretation
MACHINE System identifier STRING
122) The following variable has been added to table VSTOASI:
Variable Description Interpretation
MACHINE System identifier STRING
The following 6 variables have had their interpretation type changed
in table VSTOASI:
ASCSMIG changed from COUNT to RATE
ASCSPGR changed from COUNT to RATE
ASCSPGW changed from COUNT to RATE
ASCSPST changed from COUNT to RATE
ASCSXRD changed from COUNT to RATE
ASCSXWT changed from COUNT to RATE
123) The following variable has been added to table VSTOASP:
Variable Description Interpretation
MACHINE System identifier STRING
The following 2 variables have had their interpretation type changed
in table VSTOASP:
ASMSSCH changed from COUNT to RATE
EXCURQC changed from GAUGE to COUNT
The following 2 variables have had their format changed in table
VSTOASP:
ASMSSCH changed from BEST12. to BEST12.2
EXCURQC changed from BEST12.2 to BEST12.
124) The following variable has been added to table VSTOASS:
Variable Description Interpretation
MACHINE System identifier STRING
The following variable has had its interpretation type changed
in table VSTOASS:
EXCURQC changed from GAUGE to COUNT
The following variable has had its format changed in table
VSTOASS:
EXCURQC changed from BEST12.2 to BEST12.
125) The following variable has been added to table VSTOATC:
Variable Description Interpretation
MACHINE System identifier STRING
126) The following variable has been added to table VSTOBPG:
Variable Description Interpretation
MACHINE System identifier STRING
127) The following variable has been added to table VSTORSG:
Variable Description Interpretation
MACHINE System identifier STRING
128) The following 30 variables have been added to table VSTORSP:
Variable Description Interpretation
MACHINE System identifier STRING
PFCPUTY Host cpu usage type STRING
PLALNCG Frames obtained from above 2gb COUNT
PLASFCG Single frame above 2g from above COUNT
PLASFCL Single frame below 2g from above COUNT
PLBGCNT Background replenish clears run COUNT
PLBGCTM Duration spent foreground replenish COUNT
PLFGCNT Time foreground replenish run TIME
PLFOBEM Times when fob list empty COUNT
PLFRETA Free storage returns above 2gb COUNT
PLFRETB Free storage returns below 2gb COUNT
PLFSCTA Free storage obtains above 2gb COUNT
PLFSCTB Free storage obtains below 2gb COUNT
PLFSPGA Free storage requests any COUNT
PLFSPGB Free storage requests below 2gb COUNT
PLFSPRA Free storage pages above 2gb COUNT
PLFSPRB Free storage pages below 2gb COUNT
PLFSSGA Free storage regular above 2gb COUNT
PLFSSGB Free storage regular below 2gb COUNT
PLFSSRA Regular subpool free above 2gb COUNT
PLFSSRB Regular subpool free below 2gb COUNT
PLLTDPE Long term dormant emerg&passes COUNT
PLPCPAG Collab mm pot volatile stolen COUNT
PLPUPAG Collab mm pot volatile unchanged COUNT
PLRETFG Frames returned to above 2gb avail COUNT
PLSESSA Essa instruction count COUNT
PLUPAGE Collab mm pages stolen COUNT
PLUPREC Collab mm unused released COUNT
PLVATCL Guest to host logical adrtrans COUNT
PLVPAGE Collab mm volatile stolen COUNT
129) The following variable has been added to table VSTOSHD:
Variable Description Interpretation
MACHINE System identifier STRING
The following 5 variables have had their interpretation type changed
in table VSTOSHD:
ASCSPGR changed from COUNT to RATE
ASCSPGW changed from COUNT to RATE
ASCSPST changed from COUNT to RATE
ASCSXRD changed from COUNT to RATE
ASCSXWT changed from COUNT to RATE
130) The following variable has been added to table VSTOSHL:
Variable Description Interpretation
MACHINE System identifier STRING
131) The following variable has been added to table VSTOSHP:
Variable Description Interpretation
MACHINE System identifier STRING
132) The following variable has been added to table VSTOSHR:
Variable Description Interpretation
MACHINE System identifier STRING
The following 4 variables have had their interpretation type changed
in table VSTOSHR:
ASCSPGR changed from COUNT to RATE
ASCSPGW changed from COUNT to RATE
ASCSXRD changed from COUNT to RATE
ASCSXWT changed from COUNT to RATE
133) The following variable has been added to table VSTOSHS:
Variable Description Interpretation
MACHINE System identifier STRING
134) The following variable has been added to table VSTOVDK:
Variable Description Interpretation
MACHINE System identifier STRING
135) The following variable has been added to table VSTOXSG:
Variable Description Interpretation
MACHINE System identifier STRING
136) The following variable has been added to table VSTOXSU:
Variable Description Interpretation
MACHINE System identifier STRING
137) The following variable has been added to table VSYTASG:
Variable Description Interpretation
MACHINE System identifier STRING
138) The following 3 variables have been added to table VSYTCOM:
Variable Description Interpretation
MACHINE System identifier STRING
PFCPUTY Host cpu usage type STRING
PLIUCVT Total iucv invocations COUNT
139) The following variable has been added to table VSYTCPC:
Variable Description Interpretation
MACHINE System identifier STRING
140) The following variable has been added to table VSYTCPM:
Variable Description Interpretation
MACHINE System identifier STRING
141) The following variable has been added to table VSYTCUG:
Variable Description Interpretation
MACHINE System identifier STRING
142) The following 2 variables have been added to table VSYTCUM:
Variable Description Interpretation
LCPTYPE Physical processor type STRING
MACHINE System identifier STRING
143) The following 2 variables have been added to table VSYTCUP:
Variable Description Interpretation
LCCPTYP Cpu type in character STRING
MACHINE System identifier STRING
144) The following variable has been added to table VSYTEPM:
Variable Description Interpretation
MACHINE System identifier STRING
145) The following 2 variables have been added to table VSYTPRP:
Variable Description Interpretation
MACHINE System identifier STRING
PFCPUTY Host cpu usage type STRING
146) The following 22 variables have been added to table VSYTRSG:
Variable Description Interpretation
MACHINE System identifier STRING
RSAFRDB Doublewords real free below 2gb COUNT
RSAFRDW Doublewords real free above 2gb COUNT
RSAFRIB Doublewords in use real free below 2gb COUNT
RSAFRIU Doublewords in use real free above 2gb COUNT
RSCALCT Frames on cleared available list COUNT
RSCPLKG Frames locked above 2gb COUNT
RSFSA2G Doublewords assigned above 2gb COUNT
RSFSB2G Doublewords assigned below 2gb COUNT
RSFSYUA Doublewords in use above 2gb COUNT
RSFSYUB Doublewords in use below 2gb COUNT
RSLGFRM Useable frames g2 2gb COUNT
RSRFRSG Frames alloc real free above 2gb COUNT
RSRFRST Frames alloc real free below 2gb COUNT
RSSNGAV All single frames gt 2gb available COUNT
RSSNG2G All single frames lt 2gb available COUNT
RSSXACT Sxs pages on queue above 2gb COUNT
RSSXBCT Sxs pages on queue below 2gb COUNT
RSSXCLA Locked system alias pages COUNT
RSSXCPL Locked system exec space pages COUNT
RS2GAVL All frames on 2gb available list COUNT
RS2GAV2 Can represent up to 16t COUNT
147) The following 2 variables have been added to table VSYTRSP:
Variable Description Interpretation
MACHINE System identifier STRING
PFCPUTY Host cpu usage type STRING
148) The following 2 variables have been added to table VSYTSCG:
Variable Description Interpretation
MACHINE System identifier STRING
SRCPUWT Bit mask of cpus in wait state HEXFLAGS
149) The following variable has been added to table VSYTSCP:
Variable Description Interpretation
MACHINE System identifier STRING
150) The following variable has been added to table VSYTSHS:
Variable Description Interpretation
MACHINE System identifier STRING
151) The following variable has been added to table VSYTSYG:
Variable Description Interpretation
MACHINE System identifier STRING
152) The following 6 variables have been added to table VSYTSYP:
Variable Description Interpretation
MACHINE System identifier STRING
PFCPUTY Host cpu usage type STRING
PLPAGPS Ssch requests for paging spooling COUNT
PLPRVSC Svc interrupts reflected to the vm COUNT
PLSTKPE Elapsed time slice drops TIME
PLTMRCE Guest entries moved to enabled COUNT
153) The following variable has been added to table VSYTUSR:
Variable Description Interpretation
MACHINE System identifier STRING
154) The following 21 variables have been added to table VSYTUWT:
Variable Description Interpretation
CACFIFL Vmdbks dsp list console wait ifl COUNT
CACFZAP Vmdbks dsp list console wait zap COUNT
CACFZIP Vmdbks dsp list console wait zip COUNT
CACRIFL Vmdbks dsp list on ifl COUNT
CACRZAP Vmdbks dsp list on zap COUNT
CACRZIP Vmdbks dsp list on zip COUNT
CACWIFL Vmdbks dsp list cpu wait ifl COUNT
CACWZAP Vmdbks dsp list cpu wait zap COUNT
CACWZIP Vmdbks dsp list cpu wait zip COUNT
CALCFCP Vmdbks dsp list console wait cp COUNT
CALCRCP Vmdbks dsp list on cp COUNT
CALCWCP Vmdbks dsp list cpu wait cp COUNT
CALLIFL Vmdbks dsp list limit list ifl share COUNT
CALLLCP Vmdbks dsp list limit list prevent COUNT
CALLZAP Vmdbks dsp list limit list zap share COUNT
CALLZIP Vmdbks dsp list limit list zip share COUNT
CALSWCP Vmdbks dsp list sim wait cp COUNT
CASWIFL Vmdbks dsp list sim wait ifl COUNT
CASWZAP Vmdbks dsp list sim wait zap COUNT
CASWZIP Vmdbks dsp list sim wait zip COUNT
MACHINE System identifier STRING
155) The following variable has been added to table VSYTXSG:
Variable Description Interpretation
MACHINE System identifier STRING
156) The following 2 variables have been added to table VSYTXSP:
Variable Description Interpretation
MACHINE System identifier STRING
PFCPUTY Host cpu usage type STRING
157) The following 11 variables have been added to table VUSEATE:
Variable Description Interpretation
MACHINE System identifier STRING
VMCFGEM Vmdcfgem bitstring HEXFLAGS
VMCTPVA Private pages above 2gb COUNT
VMCTSHA Shared resident pages above 2gb COUNT
VMCTSHB Shared resident pages below 2gb COUNT
VMDPUST Vmdpust bitstring HEXFLAGS
VMDTTMP Ttime for user on pri processor TIME
VMDTTMS Ttime for user on sec processor TIME
VMDVTMP Vtime for user on pri processor TIME
VMDVTMS Vtime for user on sec processor TIME
VMPUTYP Cpu type STRING
158) The following 5 variables have been added to table VUSEDFC:
Variable Description Interpretation
MACHINE System identifier STRING
OLPUTYP Former cpu type STRING
VMCFGEM Vmdcfgem bitstring HEXFLAGS
VMDPUST Vmdpust bitstring HEXFLAGS
VMPUTYP Cpu type STRING
159) The following 2 variables have been added to table VUSEDTC:
Variable Description Interpretation
MACHINE System identifier STRING
VMPUTYP Cpu type STRING
160) The following 4 variables have been added to table VUSEITE:
Variable Description Interpretation
MACHINE System identifier STRING
VMCFGEM Vmdcfgem bitstring HEXFLAGS
VMDPUST Vmdpust bitstring HEXFLAGS
VMPUTYP Cpu type STRING
161) The following 9 variables have been added to table VUSELOF:
Variable Description Interpretation
MACHINE System identifier STRING
VMCTPVA Private pages above 2gb COUNT
VMCTSHA Shared resident pages above 2gb COUNT
VMCTSHB Shared resident pages below 2gb COUNT
VMDTTMP Ttime for user on pri processor TIME
VMDTTMS Ttime for user on sec processor TIME
VMDVTMP Vtime for user on pri processor TIME
VMDVTMS Vtime for user on sec processor TIME
VMPUTYP Cpu type STRING
162) The following variable has been added to table VUSELON:
Variable Description Interpretation
MACHINE System identifier STRING
163) The following 5 variables have been added to table VUSERDC:
Variable Description Interpretation
MACHINE System identifier STRING
NEPUTYP New cpu type STRING
VMCFGEM Vmdcfgem bitstring HEXFLAGS
VMDPUST Vmdpust bitstring HEXFLAGS
VMPUTYP Cpu type STRING
164) The following 4 variables have been added to table VUSETRE:
Variable Description Interpretation
MACHINE System identifier STRING
VMCFGEM Vmdcfgem bitstring HEXFLAGS
VMDPUST Vmdpust bitstring HEXFLAGS
VMPUTYP Cpu type STRING
165) The following 12 variables have been added to table XASMCEC:
Variable Description Interpretation
CPCMODE Cpc model identifier STRING
CPTYPE Cpu model number HEXFLAGS
GMTOFFT Gmt offset at end of interval TIME
IFAUPTM Ifa processor online time TIME
IFAWSTT Ifa processor wst wait time TIME
LPARCHG Configuration modified STRING
PCIFABY Pct when all ifa engines are busy PERCENT100
PCZIPBY Pct when all zip engines are busy PERCENT100
SM70GIE Projected interval end time DATETIME
SM70LAC Lpar 4-hr average smf70lac AVERAGE
ZIPUPTM Zip processor online time TIME
ZIPWSTT Zip processor wst wait time TIME
The following variable has been deleted from table XASMCEC:
STARTIM Cec constructed startime interval start DATETIME
166) The following 9 variables have been added to table XASMCEL:
Variable Description Interpretation
GMTOFFT Gmt offset at end of interval TIME
NRICFCP Number of icf cpus INT
NRIFACP Number of ifa cpus INT
NRIFLCP Number of ifl cpus INT
NRZIPCP Number of zip cpus INT
SM70GIE Cec constructed smf70gie interval end DATETIME
TOTSHAR Total initial weight all lpars this cec GAUGE
TOTSHRC Total current weight all lpars this cec GAUGE
ZTIME Zee datetime zee obs was created DATETIME
The following variable has been deleted from table XASMCEL:
STARTIM Cec constructed startime interval start DATETIME
167) The following 6 variables have been added to table XASMTAP:
Variable Description Interpretation
BEGTMNT Begin time tape mount event DATETIME
BYESU Total uncompress bytes read and written COUNT
ENDTMNT End time tape mount event DATETIME
SMF21DB Compressed device bytes read COUNT
SMF2101 Compressed device bytes written COUNT
TOTMNTT Total duration tape was mounted TIME
168) The following 9 variables have been added to table XASM70L:
Variable Description Interpretation
GMTOFFT Gmt offset at end of interval TIME
NRIFACP Number of ifa cpus in this box INT
NRZIPCP Number of zip cpus in this box INT
SM70GIE Projected interval end time now local DATETIME
SM70GMU Maximum license units of group MAXIMUM
SM70GNM Capacity group name STRING
TOTSHAR Total initial share weight GAUGE
TOTSHRC Total current share weight GAUGE
ZTIME Zee datetime zee obs was created DATETIME
The following variable has been deleted from table XASM70L:
STARTIM Startime DATETIME
169) The following 11 variables have been added to table XASM70P:
Variable Description Interpretation
CPPHYTM Physical cpu time phy engines TIME
GMTOFFT Gmt offset at end of interval TIME
ICFPHYT Physical cpu time icf engines TIME
IFAPHYT Physical cpu time ifa engines TIME
IFAUPTM Ifa processor online time TIME
IFAWSTT Ifa processors wst time TIME
IFLPHYT Physical cpu time ifl engines TIME
SM70GIE Projected interval end time DATETIME
ZIPPHYT Physical cpu time zip engines TIME
ZIPUPTM Zip processor online time TIME
ZIPWSTT Zip processors wst time TIME
The following variable has been deleted from table XASM70P:
STARTIM Minimum interval start datetime DATETIME
170) The following 3 variables have been added to table XBETA0:
Variable Description Interpretation
BETAARP Archive retention period INT
BETACTY Cleanup type STRING
BETARCM Archive media type STRING
171) The following 2 variables have been added to table XCICINT:
Variable Description Interpretation
MNGSMFC Sysevent errors COUNT
MNGSMFN Sysevent records COUNT
The following 2 variables have been deleted from table XCICINT:
MNGSYSE Sysevent errors COUNT
MNGSYSR Sysevent records COUNT
172) The following 2 variables have been added to table XCIDS:
Variable Description Interpretation
DSEJST Total tcb cpu time all tcbs TIME
DSSRBT Total srb cpu time all srbs TIME
173) The following 2 variables have been added to table XCIDSR:
Variable Description Interpretation
DSRCIUH Cics in use storage above 16m GAUGE
DSRCIUL Cics in use storage below 16m GAUGE
The following 2 variables have had their interpretation type changed
in table XCIDSR:
DSRSTGH changed from COUNT to GAUGE
DSRSTGL changed from COUNT to GAUGE
174) The following 4 variables have been added to table XCIDST:
Variable Description Interpretation
DSTCIUH Cics inuse storage above 16m GAUGE
DSTCIUL Cics inuse storage below 16m GAUGE
DSTNIUH Non-cics inuse storage above 16m GAUGE
DSTNIUL Non-cics inuse storage below 16m GAUGE
The following 4 variables have had their interpretation type changed
in table XCIDST:
DSTSTGH changed from COUNT to GAUGE
DSTSTGL changed from COUNT to GAUGE
DSTSTNH changed from COUNT to GAUGE
DSTSTNL changed from COUNT to GAUGE
175) The following 2 variables have been added to table XCILDR:
Variable Description Interpretation
LDRLBDN Program library dsname STRING
LDRLBNM Program library name STRING
176) The following 12 variables have been added to table XCIM:
Variable Description Interpretation
MNGAVCR Average compressed record length AVERAGE
MNGAVUR Average uncompressed record length AVERAGE
MNGFRL File resource limit MAXIMUM
MNGMRCM Data compression active? STRING
MNGSMFC Smf records compressed COUNT
MNGSMFN Smf records not compressed COUNT
MNGTRL Tsqueue resource limit MAXIMUM
MNGWLCC Wlm cpu critical? STRING
MNGWLGI Wlm goal importance INT
MNGWLGT Wlm goal type? INT
MNGWLGV Wlm velocity goal value INT
MNGWLSK Wlm storage critical? STRING
The following 2 variables have been deleted from table XCIM:
MNSYSEE Sysevent errors COUNT
MNSYSER Sysevent records COUNT
177) The following 9 variables have been added to table XCIMDSA:
Variable Description Interpretation
SMADCUR Current address spacees adressable GAUGE
SMADHWM Hwm address spacees addressable MAXIMUM
SMCUSLM Cushion releases COUNT
SMCUSRL Allocate in cushion releases COUNT
SMGDCUR Current gdsa active GAUGE
SMGDHWM Hwm gdsa active MAXIMUM
SMGETST Getstorsize request size GAUGE
SMMEMLM Memlimit size MAXIMUM
SMMEMLR Source of memlimit? INT
178) The following variable has been added to table XCIPIR:
Variable Description Interpretation
PRSHELF Pipeline shell directory STRING
The following variable has been deleted from table XCIPIR:
PRSHELL Pipeline shell directory STRING
179) The following 23 variables have been added to table XCITRAN:
Variable Description Interpretation
CLIPPOR Port number of client INT
DHDELCT Document handler delete requests COUNT
ISALLOC Allocate session requests ip only COUNT
ISIOWTC Wait for control at end ip count TIME
ISIOWTT Wait for control at end ip duration COUNT
ISIPCNN Ipic connection name that attached STRING
OAPPLID Originating cics region of cwxn STRING
OCLIPAD Originating client ip address STRING
OCLIPOR Originating client port number INT
OFCTYNM Originating transaction facility name STRING
ONETWKI Originating transaction network id STRING
OPORTNU Originating task port number INT
OSTART Originating task start datetime DATETIME
OTCPSVC Originating task tcpipservice STRING
OTRAN Originating task transaction name STRING
OTRANFL Originating transaction flags HEXFLAGS
OTRANNU Originating task transaction number INT
OUSERCO Originating task user correlator HEXFLAGS
OUSERID Originating task userid-2 or userid-1 STRING
PGCSTHW Container storage hwm bytes allocated MAXIMUM
WMQGETC Wait for mq service of getwait count COUNT
WMQGETT Wait for mq service of getwait duration TIME
WMQREQC Mq requests issued COUNT
The following 11 variables have had their interpretation type changed
in table XCITRAN:
CPRLSTM changed from COUNT to TIME
DBALLTM changed from COUNT to TIME
PSACTTM changed from COUNT to TIME
PSSCHTM changed from COUNT to TIME
WTEIOTM changed from COUNT to TIME
WTHIOTM changed from COUNT to TIME
WTMIOTM changed from COUNT to TIME
WTNIOTM changed from COUNT to TIME
WTOIOTM changed from COUNT to TIME
WTTIOTM changed from COUNT to TIME
WTWIOTM changed from COUNT to TIME
The following 11 variables have had their format changed in table
XCITRAN:
CPRLSTM changed from _NONE_ to TIME12.2
DBALLTM changed from _NONE_ to TIME12.2
PSACTTM changed from _NONE_ to TIME12.2
PSSCHTM changed from _NONE_ to TIME12.2
WTEIOTM changed from _NONE_ to TIME12.2
WTHIOTM changed from _NONE_ to TIME12.2
WTMIOTM changed from _NONE_ to TIME12.2
WTNIOTM changed from _NONE_ to TIME12.2
WTOIOTM changed from _NONE_ to TIME12.2
WTTIOTM changed from _NONE_ to TIME12.2
WTWIOTM changed from _NONE_ to TIME12.2
The following 6 variables have been deleted from table XCITRAN:
MQGETWC Mqgetwcn count COUNT
MQGETWT Mqgetwtm duration COUNT
MQONTCB Mqontcbu count COUNT
MQREQS Mqreqs count COUNT
MQREQUS Mqrequs count COUNT
MQWTCBU Mqwtcbus count COUNT
180) The following 6 variables have been added to table XDBACCT:
Variable Description Interpretation
DB2UNIC Unicode text is in all %u fields? STRING
QWCZIEL Cpu time zip eligible on cp engine TIME
QWCZIS1 Cpu time executing on ziip TIME
QWCZIS2 Cpu time in db2 executing on ziip TIME
QWCZITR Cpu time in triggers executing on ziip TIME
QWUCPU Tcb or srb cpu time of dispatched eu TIME
181) The following 4 variables have been added to table XDBCCTP:
Variable Description Interpretation
DB2UNIC Unicode text is in all %u fields? STRING
QPCZITM Cpu time this package or dbrm on zip TIME
QWCWLME Service class name STRING
THREADT Type of thread STRING
182) The following 5 variables have been added to table XDBGBPS:
Variable Description Interpretation
QBGLCM Rfcom requests for multiple pages COUNT
QBGLCR Rfco requests for single page COUNT
QBGLMW Warm requests for multiple pages COUNT
QBGLWP Pages written by warm COUNT
QBGLWS War requests for single pages COUNT
183) The following 4 variables have been added to table XDBSTA0:
Variable Description Interpretation
QW1ZSRB Cpu srb on ziip preemptable master asid TIME
QW2ZSRB Cpu srb on ziip preemptable dbm1 asid TIME
QW3ZSRB Cpu srb on ziip preemptable irlm asid TIME
QW4ZSRB Cpu srb on ziip preemptable ddf asid TIME
184) The following 4 variables have been added to table XDBSTA1:
Variable Description Interpretation
QISECFA Fails due to stmt pool full COUNT
QISECFR Free pages in stmt free chain COUNT
QISECPG Pages in stmt pool COUNT
QISEDYN Pages used in statement pool COUNT
The following 6 variables have had their interpretation type changed
in table XDBSTA1:
QLLOWEM changed from COUNT to MAXIMUM
QLLOWIM changed from COUNT to MAXIMUM
QLLOW1M changed from COUNT to MAXIMUM
QLSTGEM changed from COUNT to MAXIMUM
QLSTGIM changed from COUNT to MAXIMUM
QLSTG1M changed from COUNT to MAXIMUM
185) The following 8 variables have been added to table XDBTATS:
Variable Description Interpretation
QISECFA Fails due to stmt pool full COUNT
QISECFR Free pages in stmt free chain COUNT
QISECPG Pages in stmt pool COUNT
QISEDYN Pages used in statement pool COUNT
QW1ZSRB Cpu srb on ziip preemptable master asid TIME
QW2ZSRB Cpu srb on ziip preemptable dbm1 asid TIME
QW3ZSRB Cpu srb on ziip preemptable irlm asid TIME
QW4ZSRB Cpu srb on ziip preemptable ddf asid TIME
The following 6 variables have had their interpretation type changed
in table XDBTATS:
QLLOWEM changed from COUNT to MAXIMUM
QLLOWIM changed from COUNT to MAXIMUM
QLLOW1M changed from COUNT to MAXIMUM
QLSTGEM changed from COUNT to MAXIMUM
QLSTGIM changed from COUNT to MAXIMUM
QLSTG1M changed from COUNT to MAXIMUM
186) The following 5 variables have been added to table XDB2A:
Variable Description Interpretation
DBPARTY Parallel or sequential task type STRING
QWCZIEL Cpu time zip eligible on cp engine TIME
QWCZIS1 Cpu time executing on ziip TIME
QWCZIS2 Cpu time in db2 executing on ziip TIME
QWCZITR Cpu time in triggers executing on ziip TIME
187) The following variable has had its format changed in table
XDCBKUP:
UBRECRD changed from _NONE_ to $MGDCORF.
188) The following 2 variables have been added to table XDCCLUS:
Variable Description Interpretation
DCVDPTY Physical control unit STRING
DCVDVTY Device type STRING
189) The following 2 variables have been added to table XDCDSET:
Variable Description Interpretation
DCVDPTY Physical control unit STRING
DCVDVTY Device type STRING
190) The following variable has had its interpretation type changed
in table XDSNREC:
DSUCODE changed from STRING to HEXFLAGS
The following variable has had its format changed in table
XDSNREC:
DSUCODE changed from _NONE_ to $HEX2.
191) The following variable has been added to table XHSFSRT:
Variable Description Interpretation
FSRFALT Written in duplex mode? STRING
192) The following variable has been added to table XHSM:
Variable Description Interpretation
HSMPLEX Hsm complex STRING
193) The following 73 variables have been added to table XIMFTRN:
Variable Description Interpretation
SQLCALS Total db2 sql calls COUNT
TRARVTH Tran arrival time hhmmssth TIME
TRARVTJ Tran arrival time miju portion TIME
TREAPPL Appl elapsed time TIME
TREAPPU Trneappu COUNT
TREDB2 Db2 elapsed time TIME
TREDB2U Trnedb2u COUNT
TREDLDB Dli/db elapsed time TIME
TREDLTM Dli/tm elapsed time TIME
TREF2 Triwaits settings HEXFLAGS
TRELDLI Dli last call elap TIME
TREMQS Mqs elapsed time TIME
TREMQSU Trnemqsu COUNT
TREOESS Ess elapsed time TIME
TREOESU Trneoesu COUNT
TREOPCL Op/cl elapsed time TIME
TRESYNC Sync elapsed time TIME
TRETFLG Etime flags HEXFLAGS
TRETIME Stck at tran start DATETIME
TREWLMC Ewlm correlator HEXFLAGS
TRE1STD Schd to 1st dli TIME
TRMODET Trnmothr detail HEXFLAGS
TRMSCTH Orig sys arr time hhmmssth TIME
TRMSCTJ Orig sys arr time miju portion TIME
TRMSCUT Org arrival trnxutca value TIME
TRNUOWP Network uow id primary HEXFLAGS
TROTCLF Otma client flag