Interface PWCConnectionQueueStats
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CountStatisticgetCountOverflows()Gets the number of times the queue has been too full to accommodate a connectionCountStatisticgetCountQueued()Gets the number of connections currently in the queueCountStatisticgetCountQueued15MinuteAverage()Gets the average number of connections queued in the last 15 minutesCountStatisticgetCountQueued1MinuteAverage()Gets the average number of connections queued in the last 1 minuteCountStatisticgetCountQueued5MinuteAverage()Gets the average number of connections queued in the last 5 minutesCountStatisticgetCountTotalConnections()Gets the total number of connections that have been accepted.CountStatisticgetCountTotalQueued()Gets the total number of connections that have been queued.StringStatisticgetId()Gets the ID of the connection queueCountStatisticgetMaxQueued()Gets the maximum size of the connection queueCountStatisticgetPeakQueued()Gets the largest number of connections that were in the queue simultaneously.CountStatisticgetTicksTotalQueued()Gets the total number of ticks that connections have spent in the queue.-
Methods inherited from interface org.glassfish.j2ee.statistics.Stats
getStatistic, getStatisticNames, getStatistics
-
-
-
-
Method Detail
-
getId
StringStatistic getId()
Gets the ID of the connection queue- Returns:
- The ID of the connection queue
-
getCountTotalConnections
CountStatistic getCountTotalConnections()
Gets the total number of connections that have been accepted.- Returns:
- Total number of connections that have been accepted.
-
getCountQueued
CountStatistic getCountQueued()
Gets the number of connections currently in the queue- Returns:
- Number of connections currently in the queue
-
getPeakQueued
CountStatistic getPeakQueued()
Gets the largest number of connections that were in the queue simultaneously.- Returns:
- Largest number of connections that were in the queue simultaneously
-
getMaxQueued
CountStatistic getMaxQueued()
Gets the maximum size of the connection queue- Returns:
- Maximum size of the connection queue
-
getCountOverflows
CountStatistic getCountOverflows()
Gets the number of times the queue has been too full to accommodate a connection- Returns:
- Number of times the queue has been too full to accommodate a connection
-
getCountTotalQueued
CountStatistic getCountTotalQueued()
Gets the total number of connections that have been queued. A given connection may be queued multiple times, socounttotalqueuedmay be greater than or equal tocounttotalconnections.- Returns:
- Total number of connections that have been queued
-
getTicksTotalQueued
CountStatistic getTicksTotalQueued()
Gets the total number of ticks that connections have spent in the queue. A tick is a system-dependent unit of time.- Returns:
- Total number of ticks that connections have spent in the queue
-
getCountQueued1MinuteAverage
CountStatistic getCountQueued1MinuteAverage()
Gets the average number of connections queued in the last 1 minute- Returns:
- Average number of connections queued in the last 1 minute
-
getCountQueued5MinuteAverage
CountStatistic getCountQueued5MinuteAverage()
Gets the average number of connections queued in the last 5 minutes- Returns:
- Average number of connections queued in the last 5 minutes
-
getCountQueued15MinuteAverage
CountStatistic getCountQueued15MinuteAverage()
Gets the average number of connections queued in the last 15 minutes- Returns:
- Average number of connections queued in the last 15 minutes
-
-