com.ibm.websphere.pmi.stat
Interface WSWebAppStats
-
public interface WSWebAppStatsWebSphere Web Application stats interface. Web application stats are structured as follows in the PMI tree:
<server>
|
|__Web Applications+
|
|__<web_application_1>
|
|__Servlets+
|
|__<servlet_1>
|__<jsp_1>
+ indicates logical group
StatDescriptoris used to locate and access particular Stats in the PMI tree.
Example:- StatDescriptor that represents the Web applications logical group:
new StatDescriptor (new String[] {WSWebAppStats.NAME}); - StatDescriptor that represents the web application <web_application_1>:
new StatDescriptor (new String[] {WSWebAppStats.NAME, "web_application_1"});
- StatDescriptor that represents the Web applications logical group:
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface and Description static interfaceWSWebAppStats.ServletStatsWebSphere Servlet stats interface
-
Field Summary
Fields Modifier and Type Field and Description static intLoadedServletCountNumber of servlets that were loaded (CountStatistic).static java.lang.StringNAMEStats name of the top level Web applications logical group in PMI tree.static intReloadCountNumber of servlets that were reloaded (CountStatistic).
-
-
-
Field Detail
-
NAME
static final java.lang.String NAME
Stats name of the top level Web applications logical group in PMI tree.<server>
|
|__Web Applications+- See Also:
- Constant Field Values
-
LoadedServletCount
static final int LoadedServletCount
Number of servlets that were loaded (CountStatistic).- See Also:
- Constant Field Values
-
ReloadCount
static final int ReloadCount
Number of servlets that were reloaded (CountStatistic).- See Also:
- Constant Field Values
-
-