com.ibm.websphere.pmi.stat
Interface WSWebServiceStats
-
public interface WSWebServiceStatsWebSphere 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
StatDescriptoris used to locate and access particular Stats in the PMI tree.
Example:- StatDescriptor that represents the Web service logical group:
new StatDescriptor (new String[] {WSWebServiceStats.NAME}); - 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"});
- StatDescriptor that represents the Web service logical group:
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface and Description static interfaceWSWebServiceStats.ServiceStatsWeb service stats
-
Field Summary
Fields Modifier and Type Field and Description static intLoadedWebServiceCountTotal number of Web services loaded by Application Server (CountStatistic).static java.lang.StringNAMEStats 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
-
-