com.ibm.websphere.pmi.stat
Interface WSWebAppStats
- public interface WSWebAppStats
<server>
|
|__Web Applications+
|
|__<web_application_1>
|
|__Servlets+
|
|__<servlet_1>
|__<jsp_1>
+ indicates logical group
StatDescriptor
is 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"});
Nested Class Summary
Modifier and Type | Interface and Description |
---|---|
|
WSWebAppStats.ServletStats
WebSphere Servlet stats interface
|
Field Summary
Modifier and Type | Field and Description |
---|---|
|
LoadedServletCount
Number of servlets that were loaded (CountStatistic).
|
|
NAME
Stats name of the top level Web applications logical group in PMI tree.
|
|
ReloadCount
Number of servlets that were reloaded (CountStatistic).
|
Field Detail
NAME
- static final java.lang.String NAME
See Also:
LoadedServletCount
- static final int LoadedServletCount
Number of servlets that were loaded (CountStatistic).
See Also:
ReloadCount
- static final int ReloadCount
Number of servlets that were reloaded (CountStatistic).
See Also:
<server>
|
|__Web Applications+