public final class Smf110Record extends SmfRecord
Typical steps to process CICS Smf110Records are:
SmfRecordReader
class
SmfRecord
to see whether it is one you are interested in
Smf110Record.from(record)
Records compressed with CSRCESRV will be automatically expanded when the Smf110Record is constructed.
Accessing data from CICS monitoring performance records is slightly different to other SMF records because the data needs to be accessed via a Dictionary.
Dictionary records are handled automatically, however you cannot access the data
from a record before a related dictionary record has been seen.
You can check whether a dictionary record is available using
Smf110Record.haveDictionary()
or simply concatenate all required dictionary records ahead of the data records
in the input data.
Specific fields are defined by name and type using entries from
com.blackhillsoftware.smf.cics.monitoring
.
Then Performance records are read from the SMF record, and specific fields accessed
using getField(...)
methods or variations.
try (SmfRecordReader reader =
SmfRecordReader
.fromDD("INPUT")
.include(110, Smf110Record.SMFMNSTY)) // include only type 110 subtype 1 records
{
for (SmfRecord record : reader) // read each record
{
Smf100Record r110 = Smf110Record.from(record);
if (r110.haveDictionary())
{
for (PerformanceRecord perfdata :
r110.performanceRecords()) // process 0 or more PerformanceRecord sections
{
String txName = perfdata.getField(Field.TRAN);
ZonedDateTime start = perfdata.getField(Field.START);
ZonedDateTime stop = perfdata.getField(Field.STOP);
double dispatch = perfdata.getFieldTimerSeconds(Field.USRDISPT);
//... process data
}
}
}
}
// reader is automatically closed at end of try with resources block.
CICS records typically contain multiple data sections.
Sections of a specific type are returned in a List<E>
of that type.
If there are no sections
of the type in the record an empty List is returned.
This allows you to iterate over the sections without explicitly checking whether the sections
exist in the record - an empty list will iterate 0 times.
try (SmfRecordReader reader =
SmfRecordReader
.fromDD("INPUT")
.include(110, Smf110Record.SMFSTSTY)) // include only type 110 subtype 2 records
{
for (SmfRecord record : reader) // read each record
{
Smf100Record r110 = Smf110Record.from(record);
for (FileControlStatistics fc :
r110.fileControlStatistics()) // process 0 or more FileControlStatistics sections
{
//... process FileControlStatistics sections here
}
}
}
// reader is automatically closed at end of try with resources block.
Modifier and Type | Field and Description |
---|---|
static int |
SMFCFSTY
Constant: 0x04 = 4
|
static int |
SMFESA
Constant: 0xC0 = 192
|
static int |
SMFJCSTY
Constant: 0x00 = 0
|
static int |
SMFMNSTY
Constant: 0x01 = 1
|
static int |
SMFNCSTY
Constant: 0x05 = 5
|
static int |
SMFSTSTY
Constant: 0x02 = 2
|
static int |
SMFXQSTY
Constant: 0x03 = 3
|
Constructor and Description |
---|
Smf110Record(byte[] data)
Constructs an Smf110Record from the specified byte array.
|
Smf110Record(SmfRecord record)
Constructs a new Smf110Record from an existing SMF record.
|
Modifier and Type | Method and Description |
---|---|
List<AsynchronousServiceGlobalStatistics> |
asynchronousServiceGlobalStatistics()
Get a List containing Asynchronous Service Global Statistics from the record
|
List<AtomserviceStatistics> |
atomserviceStatistics()
Get a List containing Web 2.0 Domain Atomservice Statistics from the record
|
List<CapturespecResourceStatistics> |
capturespecResourceStatistics()
Get a List containing Capturespec Resource Statistics from the record
|
List<CfListStructureStatistics> |
cfListStructureStatistics()
Get a List containing CF List Structure Statistics from the record
|
List<CfRequestStatistics> |
cfRequestStatistics()
Get a List containing CF Data Table Request Statistics from the record
|
List<CfServerStorageStatistics> |
cfServerStorageStatistics()
Get a List containing CF Server Storage Statistics from the record
|
List<CfTableStatistics> |
cfTableStatistics()
Get a List containing CF Table Statistics from the record
|
List<Db2GlobalStatistics> |
db2GlobalStatistics()
Get a List containing CICS/DB2 Global statistics from the record
|
List<Db2ResourceStatistics> |
db2ResourceStatistics()
Get a List containing DB2 Resource Statistics from the record
|
List<DbctlUnsolicitedStatistics> |
dbctlUnsolicitedStatistics()
Get a List containing Dbctl Unsolicited Statistics Sections from the record
|
Dictionary |
dictionary()
Get a Dictionary containing Dictionary Entries from the record.
|
List<DictionaryEntry> |
dictionaryEntries()
Get a List containing Monitoring Dictionary Entries from the record
|
List<DispatcherGlobalStatistics> |
dispatcherGlobalStatistics()
Get a List containing Dispatcher Global Statistics from the record
|
List<DispatcherMvsTcbGlobalStatistics> |
dispatcherMvsTcbGlobalStatistics()
Get a List containing Dispatcher MVSTCB Global Statistics from the record
|
List<DispatcherMvsTcbResourceStatistics> |
dispatcherMvsTcbResourceStatistics()
Get a List containing Dispatcher MVSTCB Resource Statistics from the record
|
List<DoctemplateResourceStatistics> |
doctemplateResourceStatistics()
Get a List containing Doctemplate Resource Statistics from the record
|
List<EnqueueManagerGlobalStatistics> |
enqueueManagerGlobalStatistics()
Get a List containing Enqueue Manager Global Statistics from the record
|
List<EnqueuePoolStatistics> |
enqueuePoolStatistics()
Get a List containing Enqueue Pool Statistics Sections from the record
|
List<EventbindingGlobalStatistics> |
eventbindingGlobalStatistics()
Get a List containing Eventbinding Global Statistics from the record
|
List<EventBindingResourceStatistics> |
eventBindingResourceStatistics()
Get a List containing EventBinding Resource Statistics from the record
|
List<EventProcessGlobalStatistics> |
eventProcessGlobalStatistics()
Get a List containing EventProcess Global Statistics from the record
|
List<EventProcessResourceStatistics> |
eventProcessResourceStatistics()
Get a List containing Eventprocess Resource Statistics from the record
|
List<ExceptionData> |
exceptionData()
Get a List containing Exception Data Entries from the record
|
List<FepiConnectionStatistics> |
fepiConnectionStatistics()
Get a List containing FEPI Connection Statistics Sections from the record
|
List<FepiPoolStatistics> |
fepiPoolStatistics()
Get a List containing FEPI Pool Statistics Sections from the record
|
List<FepiTargetStatistics> |
fepiTargetStatistics()
Get a List containing FEPI Target Statistics Sections from the record
|
List<Integer> |
fieldConnectors()
Get a List containing Monitoring Field Connectors from the record
|
List<FileControlStatistics> |
fileControlStatistics()
Get a List containing File Control Statistics from the record
|
static Smf110Record |
from(byte[] data)
Constructs an Smf110Record from the specified byte array.
|
static Smf110Record |
from(SmfRecord record)
Constructs a new Smf110Record from an existing SmfRecord.
|
static long |
getCompressedByteCount() |
protected byte[] |
getDataArray() |
static long |
getDecompressedByteCount() |
boolean |
haveDictionary()
Return true if a dictionary is available for this record, i.e.
|
List<IdentityRecord> |
identityRecords()
Get a List containing Identity Records from the record
|
List<IpconnStatistics> |
ipconnStatistics()
Get a List containing IPCONN Statistics from the record
|
List<IscIrcModeStatistics> |
iscIrcModeStatistics()
Get a List containing ISC/IRC Mode Statistics from the record
|
List<IscIrcSystemStatistics> |
iscIrcSystemStatistics()
Get a List containing ISC/IRC System Statistics from the record
|
List<IscIrcSystemStatistics> |
iscIrcSystemTotals()
Get a List containing ISC/IRC System Statistics (Totals) from the record
|
List<IscLuitSntStatistics> |
iscLuitSntStatistics()
Get a List containing ISC LUIT & SNT Management Statistics from the record
|
JcProductSection |
jcProductSection()
Get the JC SMF product section.
|
List<JvmServerStatistics> |
jvmServerStatistics()
Get a List containing JVM Server Statistics from the record
|
List<LoaderGlobalDsaStatistics> |
loaderGlobalDsaStatistics()
Get a List containing Loader Global DSA Statistics Sections from the record
|
List<LoaderGlobalStatistics> |
loaderGlobalStatistics()
Get a List containing Loader Global Statistics Sections from the record
|
List<LoaderPrivateLibraryStatistics> |
loaderPrivateLibraryStatistics()
Get a List containing Loader Private Library Statistics Sections from the record
|
List<LoaderPrivateProgramStatistics> |
loaderPrivateProgramStatistics()
Get a List containing Loader Private Program Statistics Sections from the record
|
List<LoaderPublicLibraryStatistics> |
loaderPublicLibraryStatistics()
Get a List containing Loader Public Library Statistics Sections from the record
|
List<LoaderPublicProgramStatistics> |
loaderPublicProgramStatistics()
Get a List containing Loader Public Program Statistics Sections from the record
|
List<LogManagerGlobalStatistics> |
logManagerGlobalStatistics()
Get a List containing Log Manager Global Statistics from the record
|
List<LogManagerJournalStatistics> |
logManagerJournalStatistics()
Get a List containing Log Manager Journal Statistics from the record
|
List<LogManagerLogstreamStatistics> |
logManagerLogstreamStatistics()
Get a List containing Log Manager Logstream Statistics from the record
|
List<LsrPoolFileStatistics> |
lsrPoolFileStatistics()
Get a List containing LSR Pool File Statistics Sections from the record
|
List<LsrPoolFileStatistics> |
lsrPoolFileTotals()
Get a List containing LSR Pool File Statistics (Totals) Sections from the record
|
List<LsrPoolFileStatistics> |
LsrPoolFileTotals()
Deprecated.
name beginning with uppercase is inconsistent with other methods use
lsrPoolFileTotals() |
List<LsrPoolStatistics> |
lsrPoolStatistics()
Get a List containing LSR Pool Statistics Sections from the record
|
MnProductSection |
mnProductSection()
Get the MN SMF product section.
|
List<MonitoringGlobalStatistics> |
monitoringGlobalStatistics()
Get a List containing Monitoring Global Statistics from the record
|
List<MonitoringTransactionStatistics> |
monitoringTransactionStatistics()
Get a List containing Monitoring Transaction Statistics from the record
|
List<MqConnectionGlobalStatistics> |
mqConnectionGlobalStatistics()
Get a List containing MQ Connection Global Statistics from the record
|
List<MqMonitorStatistics> |
mqMonitorStatistics()
Get a List containing MQ Monitor Statistics from the record
|
List<NcListStructureStatistics> |
ncListStructureStatistics()
Get a List containing Named Counter List Structure Statistics from the record
|
List<NcStorageStatistics> |
ncStorageStatistics()
Get a List containing Named Counter Storage Statistics from the record
|
List<NodeJsAppStatistics> |
nodeJsAppStatistics()
Get a List containing Node.js App Statistics from the record
|
List<PerformanceRecord> |
performanceRecords()
Get a List containing Monitoring performance records from the record
|
List<PipelineStatistics> |
pipelineStatistics()
Get a List containing Pipeline Statistics from the record
|
List<PipelineWebserviceStatistics> |
pipelineWebserviceStatistics()
Get a List containing Pipeline Webservice Statistics from the record
|
List<PolicyStatistics> |
policyStatistics()
Get a List containing Policy Statistics from the record
|
List<PrivateJvmProgramStatistics> |
privateJvmProgramStatistics()
Get a List containing Private JVM Program Statistics from the record
|
List<PrivateProgramdefStatistics> |
privateProgramdefStatistics()
Get a List containing Private Programdef Statistics from the record
|
List<ProgramManagerGlobalStatistics> |
programManagerGlobalStatistics()
Get a List containing Program Manager Global Statistics Sections from the record
|
List<PublicJvmProgramStatistics> |
publicJvmProgramStatistics()
Get a List containing Public JVM Program Statistics from the record
|
List<PublicProgramdefStatistics> |
publicProgramdefStatistics()
Get a List containing Public Programdef Statistics from the record
|
List<RecoveryManagerGlobalStatistics> |
recoveryManagerGlobalStatistics()
Get a List containing Recovery Manager Global Statistics from the record
|
List<ResLifeBundleStatistics> |
resLifeBundleStatistics()
Get a List containing ResLife Statistics for Bundles from the record
|
List<SecurityDomainGlobalStatistics> |
securityDomainGlobalStatistics()
Get a List containing Security Domain Global Statistics Sections from the record
|
int |
smfaps()
SMFAPS value.
|
int |
smfasl()
SMFASL value.
|
int |
smfasn()
SMFASN value.
|
int |
smfass()
SMFASS value.
|
boolean |
smfcfsty()
|
LocalDate |
smfdte()
SMFDTE as a LocalDate.
|
int |
smfdteRawValue()
SMFDTE raw value.
|
boolean |
smfesa()
|
int |
smfflg()
SMFFLG value.
|
boolean |
smfjcsty()
|
int |
smflen()
SMFLEN value.
|
int |
smflps()
SMFLPS value.
|
boolean |
smfmnsty()
|
boolean |
smfncsty()
|
int |
smfnps()
SMFNPS value.
|
int |
smfrty()
SMFRTY value.
|
int |
smfseg()
SMFSEG value.
|
String |
smfsid()
SMFSID value.
|
String |
smfssi()
SMFSSI value.
|
boolean |
smfststy()
|
int |
smfsty()
SMFSTY value.
|
LocalTime |
smftme()
SMFTME as a LocalTime.
|
long |
smftmeRawValue()
SMFTME raw value
|
int |
smftrn()
SMFTRN value.
|
boolean |
smfxqsty()
|
List<SocketsGlobalStatistics> |
socketsGlobalStatistics()
Get a List containing Sockets Global Statistics from the record
|
List<SocketsServiceStatistics> |
socketsServiceStatistics()
Get a List containing TCP/IP Service (Sockets) Service Statistics from the record
|
List<StatisticsDataSection> |
statisticsDataSections()
Get a List containing Statistics Data Sections from the record.
|
List<StatisticsStatistics> |
statisticsStatistics()
Get a List containing Statistics Domain Statistics Sections from the record
|
List<StorageDomainSubpoolStatistics> |
storageDomainSubpoolStatistics()
Get a List containing Storage Domain Subpool Statistics Sections from the record
|
List<StorageManagerDsaStatistics> |
storageManagerDsaStatistics()
Get a List containing Storage Manager Dsa Statistics Sections from the record
|
List<StorageManagerGlobalStatistics> |
storageManagerGlobalStatistics()
Get a List containing Storage Manager Global Statistics Sections from the record
|
List<StorageTaskSubpoolStatistics> |
storageTaskSubpoolStatistics()
Get a List containing Storage Task Subpool Statistics Sections from the record
|
List<StorageTaskSubpoolStatisticsEntry> |
storageTaskSubpoolStatisticsEntries()
Get a List containing Storage Task Subpool Statistics Entries from the record
|
StProductSection |
stProductSection()
Get the ST SMF product section.
|
List<SystemDumpcodeStatistics> |
systemDumpcodeStatistics()
Get a List containing System Dump Code Statistics from the record
|
List<SystemDumpGlobalStatistics> |
systemDumpGlobalStatistics()
Get a List containing System Dump Global Statistics from the record
|
List<TableManagerGlobalStatistics> |
tableManagerGlobalStatistics()
Get a List containing Table Manager Global Statistics from the record
|
List<TableManagerTableStatistics> |
tableManagerTableStatistics()
Get a List containing Table Manager Table Statistics Sections from the record
|
List<TemporaryStorageStatistics> |
temporaryStorageStatistics()
Get a List containing Temporary Storage Statistics Sections from the record
|
List<TerminalAutoinstallStatistics> |
terminalAutoinstallStatistics()
Get a List containing Terminal Autoinstall Statistics Sections from the record
|
List<TerminalStatistics> |
terminalBtamLineStatistics()
Get a List containing BTAM Line Statistics Sections from the record (TerminalStatistics
sections where A06ID = A06IDL)
|
List<TerminalStatistics> |
terminalResidStatistics()
Get a List containing Terminal RESID Statistics Sections from the record (TerminalStatistics
sections where A06ID = A06IDR)
|
List<TransactionDumpcodeStatistics> |
transactionDumpcodeStatistics()
Get a List containing Transaction Dump Code Statistics from the record
|
List<TransactionDumpGlobalStatistics> |
transactionDumpGlobalStatistics()
Get a List containing Transaction Dump Global Statistics from the record
|
List<TransactionManagerGlobalStatistics> |
transactionManagerGlobalStatistics()
Get a List containing Transaction Manager Global Statistics Sections from the record
|
List<TransactionManagerTclassStatistics> |
transactionManagerTclassStatistics()
Get a List containing Transaction Manager Transaction Class Statistics Sections from the record
|
List<TransactionManagerTransactionStatistics> |
transactionManagerTransactionStatistics()
Get a List containing Transaction Manager Transaction Statistics Sections from the record
|
List<TransactionResourceRecord> |
transactionResourceRecords()
Get a List containing Transaction Resource Records from the record
|
List<TransientDataGlobalStatistics> |
transientDataGlobalStatistics()
Get a List containing Transient Data Global Statistics Sections from the record
|
List<TransientDataQueueStatistics> |
transientDataQueueStatistics()
Get a List containing Transient Data Queue Statistics Sections from the record
|
List<UserDomainGlobalStatistics> |
userDomainGlobalStatistics()
Get a List containing User Domain Global Statistics from the record
|
List<VtamGlobalStatistics> |
vtamGlobalStatistics()
Get a List containing VTAM Global Statistics Sections from the record
|
List<WebUrimapGlobalStatistics> |
webUrimapGlobalStatistics()
Get a List containing Web Domain (Urimap) Global Statistics from the record
|
List<WebUrimapResourceStatistics> |
webUrimapResourceStatistics()
Get a List containing Web Domain (Urimap) Resource Statistics from the record
|
List<XmlTransformStatistics> |
xmlTransformStatistics()
Get a List containing ML Domain XML Transform Statistics from the record
|
List<XqListStructureStatistics> |
xqListStructureStatistics()
Get a List containing XQ List Structure Statistics from the record
|
List<XqQueueBufferPoolStatistics> |
xqQueueBufferPoolStatistics()
Get a List containing XQ Queue BufferPool Statistics from the record
|
List<XqServerStorageStatistics> |
xqServerStorageStatistics()
Get a List containing XQ Server Storage Statistics from the record
|
equals, extendedHeader, extendedHeader, hashCode, hasSubtypes, hasSubtypes, recordLength, recordLength, recordType, recordType, sanityCheck, smfDate, smfDate, smfDateTime, smfDateTime, smfhdr1Flag, smfhdr1Iefu86, smfhdr1Len, smfhdr1Len, smfhdr1Stcke, smfhdr1StckeRawValue, smfhdr1Tzo, smfhdr1TzoRawValue, smfhdr1Version, smfhdr1Version, smfTime, smfTime, subSystem, subSystem, subType, subType, system, system, toString
createSection, dump, dump, dump, dump, getBytes, getBytes, getTriplet
public static final int SMFESA
public static final int SMFJCSTY
public static final int SMFMNSTY
public static final int SMFSTSTY
public static final int SMFXQSTY
public static final int SMFCFSTY
public static final int SMFNCSTY
public Smf110Record(byte[] data)
data
- a byte array containing the SMF record datapublic Smf110Record(SmfRecord record)
record
- an existing SMF recordpublic static Smf110Record from(SmfRecord record)
record
- an existing SmfRecordpublic static Smf110Record from(byte[] data)
data
- a byte array containing the SMF record dataprotected byte[] getDataArray()
getDataArray
in class SmfData
public JcProductSection jcProductSection()
UnsupportedOperationException
- if this is not a JC record (subtype = 0)public MnProductSection mnProductSection()
UnsupportedOperationException
- if this is not a MN record (subtype = 1)public StProductSection stProductSection()
UnsupportedOperationException
- if this is not a ST, XQ, CF or NC record (subtype = 2, 3, 4 or 5)public List<StatisticsDataSection> statisticsDataSections()
public List<TransactionManagerGlobalStatistics> transactionManagerGlobalStatistics()
public List<TransactionManagerTransactionStatistics> transactionManagerTransactionStatistics()
public List<TransactionManagerTclassStatistics> transactionManagerTclassStatistics()
public List<StorageDomainSubpoolStatistics> storageDomainSubpoolStatistics()
public List<FepiPoolStatistics> fepiPoolStatistics()
public List<FepiConnectionStatistics> fepiConnectionStatistics()
public List<FepiTargetStatistics> fepiTargetStatistics()
public List<StorageTaskSubpoolStatistics> storageTaskSubpoolStatistics()
Use storageTaskSubpoolStatisticsEntries()
to get a List containing all the
StorageTaskSubpoolStatisticsEntry sections directly.
public List<StorageTaskSubpoolStatisticsEntry> storageTaskSubpoolStatisticsEntries()
public List<VtamGlobalStatistics> vtamGlobalStatistics()
public List<ProgramManagerGlobalStatistics> programManagerGlobalStatistics()
public List<TerminalAutoinstallStatistics> terminalAutoinstallStatistics()
public List<LoaderPublicProgramStatistics> loaderPublicProgramStatistics()
public List<DbctlUnsolicitedStatistics> dbctlUnsolicitedStatistics()
public List<StorageManagerGlobalStatistics> storageManagerGlobalStatistics()
public List<StorageManagerDsaStatistics> storageManagerDsaStatistics()
public List<LoaderGlobalStatistics> loaderGlobalStatistics()
public List<LoaderGlobalDsaStatistics> loaderGlobalDsaStatistics()
public List<LoaderPublicLibraryStatistics> loaderPublicLibraryStatistics()
public List<LoaderPrivateLibraryStatistics> loaderPrivateLibraryStatistics()
public List<TerminalStatistics> terminalResidStatistics()
public List<TerminalStatistics> terminalBtamLineStatistics()
public List<LoaderPrivateProgramStatistics> loaderPrivateProgramStatistics()
public List<LsrPoolStatistics> lsrPoolStatistics()
public List<LsrPoolFileStatistics> lsrPoolFileStatistics()
public List<LsrPoolFileStatistics> lsrPoolFileTotals()
@Deprecated public List<LsrPoolFileStatistics> LsrPoolFileTotals()
lsrPoolFileTotals()
public List<TransientDataQueueStatistics> transientDataQueueStatistics()
public List<TransientDataGlobalStatistics> transientDataGlobalStatistics()
public List<SecurityDomainGlobalStatistics> securityDomainGlobalStatistics()
public List<TemporaryStorageStatistics> temporaryStorageStatistics()
public List<IscIrcSystemStatistics> iscIrcSystemStatistics()
public List<IscIrcSystemStatistics> iscIrcSystemTotals()
public List<IscLuitSntStatistics> iscLuitSntStatistics()
public List<UserDomainGlobalStatistics> userDomainGlobalStatistics()
public List<DispatcherGlobalStatistics> dispatcherGlobalStatistics()
public List<TableManagerGlobalStatistics> tableManagerGlobalStatistics()
public List<TableManagerTableStatistics> tableManagerTableStatistics()
public List<DispatcherMvsTcbGlobalStatistics> dispatcherMvsTcbGlobalStatistics()
public List<DispatcherMvsTcbResourceStatistics> dispatcherMvsTcbResourceStatistics()
public List<StatisticsStatistics> statisticsStatistics()
public List<FileControlStatistics> fileControlStatistics()
public List<MqConnectionGlobalStatistics> mqConnectionGlobalStatistics()
public List<IscIrcModeStatistics> iscIrcModeStatistics()
public List<MonitoringGlobalStatistics> monitoringGlobalStatistics()
public List<MonitoringTransactionStatistics> monitoringTransactionStatistics()
public List<TransactionDumpcodeStatistics> transactionDumpcodeStatistics()
public List<TransactionDumpGlobalStatistics> transactionDumpGlobalStatistics()
public List<SystemDumpcodeStatistics> systemDumpcodeStatistics()
public List<SystemDumpGlobalStatistics> systemDumpGlobalStatistics()
public List<LogManagerGlobalStatistics> logManagerGlobalStatistics()
public List<LogManagerJournalStatistics> logManagerJournalStatistics()
public List<LogManagerLogstreamStatistics> logManagerLogstreamStatistics()
public List<EnqueueManagerGlobalStatistics> enqueueManagerGlobalStatistics()
public List<EnqueuePoolStatistics> enqueuePoolStatistics()
public List<RecoveryManagerGlobalStatistics> recoveryManagerGlobalStatistics()
public List<ResLifeBundleStatistics> resLifeBundleStatistics()
public List<WebUrimapGlobalStatistics> webUrimapGlobalStatistics()
public List<Db2GlobalStatistics> db2GlobalStatistics()
public List<Db2ResourceStatistics> db2ResourceStatistics()
public List<WebUrimapResourceStatistics> webUrimapResourceStatistics()
public List<PipelineStatistics> pipelineStatistics()
public List<PipelineWebserviceStatistics> pipelineWebserviceStatistics()
public List<SocketsGlobalStatistics> socketsGlobalStatistics()
public List<SocketsServiceStatistics> socketsServiceStatistics()
public List<IpconnStatistics> ipconnStatistics()
public List<AtomserviceStatistics> atomserviceStatistics()
public List<DoctemplateResourceStatistics> doctemplateResourceStatistics()
public List<XmlTransformStatistics> xmlTransformStatistics()
public List<JvmServerStatistics> jvmServerStatistics()
public List<PublicJvmProgramStatistics> publicJvmProgramStatistics()
public List<PublicProgramdefStatistics> publicProgramdefStatistics()
public List<EventbindingGlobalStatistics> eventbindingGlobalStatistics()
public List<EventBindingResourceStatistics> eventBindingResourceStatistics()
public List<EventProcessGlobalStatistics> eventProcessGlobalStatistics()
public List<CapturespecResourceStatistics> capturespecResourceStatistics()
public List<EventProcessResourceStatistics> eventProcessResourceStatistics()
public List<PolicyStatistics> policyStatistics()
public List<PrivateJvmProgramStatistics> privateJvmProgramStatistics()
public List<PrivateProgramdefStatistics> privateProgramdefStatistics()
public List<MqMonitorStatistics> mqMonitorStatistics()
public List<AsynchronousServiceGlobalStatistics> asynchronousServiceGlobalStatistics()
public List<NodeJsAppStatistics> nodeJsAppStatistics()
public List<XqListStructureStatistics> xqListStructureStatistics()
public List<XqQueueBufferPoolStatistics> xqQueueBufferPoolStatistics()
public List<XqServerStorageStatistics> xqServerStorageStatistics()
public List<CfListStructureStatistics> cfListStructureStatistics()
public List<CfTableStatistics> cfTableStatistics()
public List<CfRequestStatistics> cfRequestStatistics()
public List<CfServerStorageStatistics> cfServerStorageStatistics()
public List<NcListStructureStatistics> ncListStructureStatistics()
public List<NcStorageStatistics> ncStorageStatistics()
public List<DictionaryEntry> dictionaryEntries()
public Dictionary dictionary()
In other cases it returns null.
public boolean haveDictionary()
public List<Integer> fieldConnectors()
public List<PerformanceRecord> performanceRecords()
public List<ExceptionData> exceptionData()
public List<TransactionResourceRecord> transactionResourceRecords()
public List<IdentityRecord> identityRecords()
public int smflen()
public int smfseg()
public int smfflg()
public boolean smfesa()
smfflg()
equals SMFESA
SMFESA = 0xC0
public int smfrty()
public LocalTime smftme()
LocalTime
public long smftmeRawValue()
public LocalDate smfdte()
LocalDate
public int smfdteRawValue()
public String smfsid()
public String smfssi()
public int smfsty()
public boolean smfjcsty()
smfsty()
equals SMFJCSTY
SMFJCSTY = 0x00
public boolean smfmnsty()
smfsty()
equals SMFMNSTY
SMFMNSTY = 0x01
public boolean smfststy()
smfsty()
equals SMFSTSTY
SMFSTSTY = 0x02
public boolean smfxqsty()
smfsty()
equals SMFXQSTY
SMFXQSTY = 0x03
public boolean smfcfsty()
smfsty()
equals SMFCFSTY
SMFCFSTY = 0x04
public boolean smfncsty()
smfsty()
equals SMFNCSTY
SMFNCSTY = 0x05
public int smftrn()
public int smfaps()
public int smflps()
public int smfnps()
public int smfass()
public int smfasl()
public int smfasn()
public static long getCompressedByteCount()
public static long getDecompressedByteCount()
Copyright © 2020 Black Hill Software Pty Ltd. All rights reserved.