IBM WebSphere Application ServerTM
Release 7

com.ibm.websphere.pmi.stat
Interface WSWebServiceStats


public interface WSWebServiceStats

WebSphere Web service Stats interface. Web service stats are structured as follows in the PMI tree:

<server>
|
|__Web services+
  |
  |__<webService_application_1>
    |
    |__Services+
      |
      |__<service_1>
      |__<service_2>

+ indicates logical group

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

  1. StatDescriptor that represents the Web service logical group: new StatDescriptor (new String[] {WSWebServiceStats.NAME});
  2. StatDescriptor that represents the service <server_A> in Web service application <webService_application_1>: new StatDescriptor (new String[] {WSWebServiceStats.NAME, "webService_application_1", WSWebServiceStats.ServiceStats.NAME, "service_1"});


Nested Class Summary
static interface WSWebServiceStats.ServiceStats
          Web service stats
 
Field Summary
static int LoadedWebServiceCount
          Total number of Web services loaded by Application Server (CountStatistic).
static java.lang.String NAME
          Stats name of the top level Web services logical group in PMI tree.
 

Field Detail

NAME

static final java.lang.String NAME
Stats name of the top level Web services logical group in PMI tree.

<server>
|
|__Web services+

See Also:
Constant Field Values

LoadedWebServiceCount

static final int LoadedWebServiceCount
Total number of Web services loaded by Application Server (CountStatistic).

See Also:
Constant Field Values

IBM WebSphere Application ServerTM
Release 7