com.sun.enterprise.admin.monitor.stats
Interface WebModuleStats

All Superinterfaces:
Stats

public interface WebModuleStats
extends Stats

Interface for querying web module statistics.


Method Summary
 CountStatistic getActiveSessionsCurrent()
          Gets the number of currently active sessions for the web module associated with this WebModuleStats.
 CountStatistic getActiveSessionsHigh()
          Gets the maximum number of concurrently active sessions for the web module associated with this WebModuleStats.
 CountStatistic getExpiredSessionsTotal()
          Gets the total number of expired sessions for the web module associated with this WebModuleStats.
 CountStatistic getJspCount()
          Gets the number of JSPs that have been loaded in the web module associated with this WebModuleStats.
 CountStatistic getJspErrorCount()
          Gets the number of errors that were triggered by JSP invocations.
 CountStatistic getJspReloadCount()
          Gets the number of JSPs that have been reloaded in the web module associated with this WebModuleStats .
 CountStatistic getRejectedSessionsTotal()
          Gets the total number of rejected sessions for the web module associated with this WebModuleStats.
 CountStatistic getServletProcessingTimes()
          Gets the cumulative processing times of all servlets in the web module associated with this WebModuleStats.
 StringStatistic getSessions()
          Returns comma-separated list of all sessions currently active in the web module associated with this WebModuleStats.
 CountStatistic getSessionsTotal()
          Gets the total number of sessions that have been created for the web module associated with this WebModuleStats.
 void reset()
          Resets this WebModuleStats.
 
Methods inherited from interface org.glassfish.j2ee.statistics.Stats
getStatistic, getStatisticNames, getStatistics
 

Method Detail

getJspCount

CountStatistic getJspCount()
Gets the number of JSPs that have been loaded in the web module associated with this WebModuleStats. .

Returns:
Number of JSPs that have been loaded

getJspReloadCount

CountStatistic getJspReloadCount()
Gets the number of JSPs that have been reloaded in the web module associated with this WebModuleStats .

Returns:
Number of JSPs that have been reloaded

getJspErrorCount

CountStatistic getJspErrorCount()
Gets the number of errors that were triggered by JSP invocations. .

Returns:
Number of errors triggered by JSP invocations

getSessionsTotal

CountStatistic getSessionsTotal()
Gets the total number of sessions that have been created for the web module associated with this WebModuleStats. .

Returns:
Total number of sessions created

getActiveSessionsCurrent

CountStatistic getActiveSessionsCurrent()
Gets the number of currently active sessions for the web module associated with this WebModuleStats. .

Returns:
Number of currently active sessions

getActiveSessionsHigh

CountStatistic getActiveSessionsHigh()
Gets the maximum number of concurrently active sessions for the web module associated with this WebModuleStats.

Returns:
Maximum number of concurrently active sessions

getRejectedSessionsTotal

CountStatistic getRejectedSessionsTotal()
Gets the total number of rejected sessions for the web module associated with this WebModuleStats.

This is the number of sessions that were not created because the maximum allowed number of sessions were active. .

Returns:
Total number of rejected sessions

getExpiredSessionsTotal

CountStatistic getExpiredSessionsTotal()
Gets the total number of expired sessions for the web module associated with this WebModuleStats. .

Returns:
Total number of expired sessions

getServletProcessingTimes

CountStatistic getServletProcessingTimes()
Gets the cumulative processing times of all servlets in the web module associated with this WebModuleStats.

Returns:
Cumulative processing times of all servlets in the web module associated with this WebModuleStats

getSessions

StringStatistic getSessions()
Returns comma-separated list of all sessions currently active in the web module associated with this WebModuleStats.

Returns:
Comma-separated list of all sessions currently active in the web module associated with this WebModuleStats

reset

void reset()
Resets this WebModuleStats.



Copyright © 2012. All Rights Reserved.