com.ibm.websphere.pmi.stat
Interface WSORBStats
- public interface WSORBStats
<server>
|
|__ORB
|
|__Interceptors+
|
|__interceptor 1
|__interceptor 2
+ indicates logical group
StatDescriptor
is used to locate and access particular Stats in the PMI tree.
Example:
- StatDescriptor that represents the ORB Interceptors logical group:
new StatDescriptor (new String[] {WSORBStats.NAME, WSORBStats.InterceptorStats.NAME});
Nested Class Summary
Modifier and Type | Interface and Description |
---|---|
|
WSORBStats.InterceptorStats
WebSphere ORB interceptor stats interface
|
Field Summary
Modifier and Type | Field and Description |
---|---|
|
ConcurrentRequestCount
The number of requests that are concurrently processed by the Object Request Broker (RangeStatistic).
|
|
LookupTime
The amount of time in milliseconds (normally < 10 milliseconds) taken to look up an object reference before method dispatch can be completed - TimeStatistic.
|
|
NAME
Stats name of the ORB group in PMI tree.
|
|
RequestCount
Total number of requests sent to the Object Request Broker (CountStatistic).
|
Field Detail
NAME
- static final java.lang.String NAME
See Also:
LookupTime
- static final int LookupTime
The amount of time in milliseconds (normally < 10 milliseconds) taken to look up an object reference before method dispatch can be completed - TimeStatistic. An excessively long time might indicate an EJB container lookup problem.
See Also:
RequestCount
- static final int RequestCount
Total number of requests sent to the Object Request Broker (CountStatistic).
See Also:
ConcurrentRequestCount
- static final int ConcurrentRequestCount
The number of requests that are concurrently processed by the Object Request Broker (RangeStatistic).
See Also:
<server>
|
|__ORB