org.apache.geronimo.management.geronimo.stats
Interface WebContainerStats

All Superinterfaces:
Stats
All Known Subinterfaces:
JettyWebContainerStats
All Known Implementing Classes:
JettyWebContainerStatsImpl

public interface WebContainerStats
extends Stats

Statistics exposed by a web container (for the container as a whole, not a particular servlet/JSP/URL). todo: confirm the definitions of the Jetty stats included here; verify these are valid for Tomcat as well


Method Summary
 RangeStatistic getActiveRequestCount()
          Gets the number of requests being processed concurrently (as well as the min and max since statistics gathering started).
 TimeStatistic getRequestDuration()
          Gets the the number of requests that have been processed since statistics gathering started.
 CountStatistic getResponses1xx()
          Gets the count of 1xx responses
 CountStatistic getResponses2xx()
          Gets the count of 2xx responses
 CountStatistic getResponses3xx()
          Gets the count of 3xx responses
 CountStatistic getResponses4xx()
          Gets the count of 4xx responses
 CountStatistic getResponses5xx()
          Gets the count of 5xx responses
 CountStatistic getStatsOnMs()
          Gets the time duration that stats have been active.
 
Methods inherited from interface javax.management.j2ee.statistics.Stats
getStatistic, getStatisticNames, getStatistics
 

Method Detail

getActiveRequestCount

RangeStatistic getActiveRequestCount()
Gets the number of requests being processed concurrently (as well as the min and max since statistics gathering started).


getRequestDuration

TimeStatistic getRequestDuration()
Gets the the number of requests that have been processed since statistics gathering started. Gets the length of time taken to process a request (includes figures across all requests since statistics gathering started)


getResponses1xx

CountStatistic getResponses1xx()
Gets the count of 1xx responses


getResponses2xx

CountStatistic getResponses2xx()
Gets the count of 2xx responses


getResponses3xx

CountStatistic getResponses3xx()
Gets the count of 3xx responses


getResponses4xx

CountStatistic getResponses4xx()
Gets the count of 4xx responses


getResponses5xx

CountStatistic getResponses5xx()
Gets the count of 5xx responses


getStatsOnMs

CountStatistic getStatsOnMs()
Gets the time duration that stats have been active.



Copyright © 2003-2008 The Apache Geronimo development community. All Rights Reserved.