org.apache.geronimo.management.geronimo.stats
Interface WebModuleStats

All Superinterfaces:
Stats
All Known Implementing Classes:
WebModuleStatsImpl

public interface WebModuleStats
extends Stats


Method Summary
 CountStatistic getActiveSessionCount()
          Gets the number of currently active sessions.
 CountStatistic getExpiredSessionCount()
          Gets the number of sessions that have expired.
 CountStatistic getProcessingTime()
           
 CountStatistic getRejectedSessionCount()
          Gets the number of sessions that were not created because the maximum number of active sessions was reached.
 TimeStatistic getSessionAliveTime()
          Gets the time (in seconds) that an expired session had been alive.
 CountStatistic getSessionCount()
          Returns the total number of sessions created by this manager
 CountStatistic getStartupTime()
           
 CountStatistic getTldScanTime()
          Scan the TLD contents of all tag library descriptor files (including those inside the jars that are 'accesible' to this webapp) and register any application event listeners found there.
 
Methods inherited from interface javax.management.j2ee.statistics.Stats
getStatistic, getStatisticNames, getStatistics
 

Method Detail

getProcessingTime

CountStatistic getProcessingTime()
Returns:
The cumulative processing times of requests by all servlets in this Context

getStartupTime

CountStatistic getStartupTime()
Returns:
The time (in milliseconds) it took to start this context.

getTldScanTime

CountStatistic getTldScanTime()
Scan the TLD contents of all tag library descriptor files (including those inside the jars that are 'accesible' to this webapp) and register any application event listeners found there.

Returns:

getSessionAliveTime

TimeStatistic getSessionAliveTime()
Gets the time (in seconds) that an expired session had been alive. (count, max, total)

Returns:
Time (count, max, total) that an expired session had been alive.

getSessionCount

CountStatistic getSessionCount()
Returns the total number of sessions created by this manager

Returns:
Total number of sessions created by this manager

getActiveSessionCount

CountStatistic getActiveSessionCount()
Gets the number of currently active sessions.

Returns:
Number of currently active sessions

getExpiredSessionCount

CountStatistic getExpiredSessionCount()
Gets the number of sessions that have expired.

Returns:
Number of sessions that have expired

getRejectedSessionCount

CountStatistic getRejectedSessionCount()
Gets the number of sessions that were not created because the maximum number of active sessions was reached.

Returns:
Number of rejected sessions


Copyright © 2003-2007 Apache Software Foundation. All Rights Reserved.