IBM WebSphere Application ServerTM
Release 7

com.ibm.websphere.pmi.stat
Interface WSORBStats


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
static interface WSORBStats.InterceptorStats
          WebSphere ORB interceptor stats interface
 
Field Summary
static int ConcurrentRequestCount
          The number of requests that are concurrently processed by the Object Request Broker (RangeStatistic).
static 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.
static java.lang.String NAME
          Stats name of the ORB group in PMI tree.
static int RequestCount
          Total number of requests sent to the Object Request Broker (CountStatistic).
 

Field Detail

NAME

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

<server>
|
|__ORB

See Also:
Constant Field Values

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:
Constant Field Values

RequestCount

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

See Also:
Constant Field Values

ConcurrentRequestCount

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

See Also:
Constant Field Values

IBM WebSphere Application ServerTM
Release 7