IBM WebSphere Application ServerTM
Release 8

com.ibm.websphere.pmi.stat
Interface WSWebAppStats


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
static interface WSWebAppStats.ServletStats
          WebSphere Servlet stats interface
 
Field Summary
static int LoadedServletCount
          Number of servlets that were loaded (CountStatistic).
static java.lang.String NAME
          Stats name of the top level Web applications logical group in PMI tree.
static int ReloadCount
          Number 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

IBM WebSphere Application ServerTM
Release 8