|
Java EE 5 SDK | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface HTTPListenerStats
A Stats interface to represent the statistical data exposed by an HTTP Listener. This include data about the GlobalRequestProcessor and the ThreadPool. The GlobalRequestProcessor collects data about request processing from each of the RequestProcessor threads.
Method Summary | |
---|---|
CountStatistic |
getBytesReceived()
Cumulative value of the bytesReceived by each of the RequestProcessors |
CountStatistic |
getBytesSent()
Cumulative value of the bytesSent by each of the RequestProcessors |
CountStatistic |
getCount200()
|
CountStatistic |
getCount2xx()
|
CountStatistic |
getCount302()
|
CountStatistic |
getCount304()
|
CountStatistic |
getCount3xx()
|
CountStatistic |
getCount400()
|
CountStatistic |
getCount401()
|
CountStatistic |
getCount403()
|
CountStatistic |
getCount404()
|
CountStatistic |
getCount4xx()
|
CountStatistic |
getCount503()
|
CountStatistic |
getCount5xx()
|
CountStatistic |
getCountOpenConnections()
|
CountStatistic |
getCountOther()
|
CountStatistic |
getCurrentThreadCount()
The number of request processing threads currently in the thread pool |
CountStatistic |
getCurrentThreadsBusy()
The number of request processing threads currently in the thread pool, serving requests. |
CountStatistic |
getErrorCount()
Cumulative value of the errorCount of each of the RequestProcessors. |
CountStatistic |
getMaxOpenConnections()
|
CountStatistic |
getMaxSpareThreads()
The maximum number of unused request processing threads that will be allowed to exist until the thread pool starts stopping the unnecessary threads. |
CountStatistic |
getMaxThreads()
The maximum number of request processing threads that are created by the listener. |
CountStatistic |
getMaxTime()
The longest response time for a request. |
CountStatistic |
getMinSpareThreads()
The number of request processing threads that will be created when this listener is first started. |
CountStatistic |
getProcessingTime()
Cumulative value of the processing times of each of the RequestProcessors. |
CountStatistic |
getRequestCount()
Cumulative number of the requests processed so far, by the RequestProcessors. |
Methods inherited from interface javax.management.j2ee.statistics.Stats |
---|
getStatistic, getStatisticNames, getStatistics |
Method Detail |
---|
CountStatistic getBytesReceived()
CountStatistic getBytesSent()
CountStatistic getErrorCount()
CountStatistic getCount200()
CountStatistic getCount2xx()
CountStatistic getCount302()
CountStatistic getCount304()
CountStatistic getCount3xx()
CountStatistic getCount400()
CountStatistic getCount401()
CountStatistic getCount403()
CountStatistic getCount404()
CountStatistic getCount4xx()
CountStatistic getCount503()
CountStatistic getCount5xx()
CountStatistic getCountOther()
CountStatistic getCountOpenConnections()
CountStatistic getMaxOpenConnections()
CountStatistic getMaxTime()
CountStatistic getProcessingTime()
CountStatistic getRequestCount()
CountStatistic getCurrentThreadCount()
CountStatistic getCurrentThreadsBusy()
CountStatistic getMaxThreads()
CountStatistic getMaxSpareThreads()
CountStatistic getMinSpareThreads()
|
Java EE 5 SDK | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright 2006 Sun Microsystems, Inc. All rights reserved.