com.ibm.websphere.pmi.stat

Interface WSORBStats


  1. public interface WSORBStats
WebSphere ORB Stats interface. ORB stats are structured as follows in the PMI tree:

<server>
|
|__ORB
  |
  |__Interceptors+
    |
    |__interceptor 1
    |__interceptor 2

+ indicates logical group

StatDescriptor is used to locate and access particular Stats in the PMI tree.
Example:

  1. 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
  1. static interface
WSORBStats.InterceptorStats
WebSphere ORB interceptor stats interface

Field Summary

Modifier and Type Field and Description
  1. static
  2. int
ConcurrentRequestCount
The number of requests that are concurrently processed by the Object Request Broker (RangeStatistic).
  1. static
  2. 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.
  1. static
  2. java.lang.String
NAME
Stats name of the ORB group in PMI tree.
  1. static
  2. int
RequestCount
Total number of requests sent to the Object Request Broker (CountStatistic).

Field Detail

NAME

  1. static final java.lang.String NAME
Stats name of the ORB group in PMI tree.

<server>
|
|__ORB

See Also:

LookupTime

  1. 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

  1. static final int RequestCount
Total number of requests sent to the Object Request Broker (CountStatistic).
See Also:

ConcurrentRequestCount

  1. static final int ConcurrentRequestCount
The number of requests that are concurrently processed by the Object Request Broker (RangeStatistic).
See Also: