com.ibm.websphere.pmi.stat

Interface WSWebAppStats


  1. public interface WSWebAppStats
WebSphere 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

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

  1. StatDescriptor that represents the Web applications logical group: new StatDescriptor (new String[] {WSWebAppStats.NAME});
  2. 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
  1. static interface
WSWebAppStats.ServletStats
WebSphere Servlet stats interface

Field Summary

Modifier and Type Field and Description
  1. static
  2. int
LoadedServletCount
Number of servlets that were loaded (CountStatistic).
  1. static
  2. java.lang.String
NAME
Stats name of the top level Web applications logical group in PMI tree.
  1. static
  2. int
ReloadCount
Number of servlets that were reloaded (CountStatistic).

Field Detail

NAME

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

<server>
|
|__Web Applications+

See Also:

LoadedServletCount

  1. static final int LoadedServletCount
Number of servlets that were loaded (CountStatistic).
See Also:

ReloadCount

  1. static final int ReloadCount
Number of servlets that were reloaded (CountStatistic).
See Also: