Interface PWCRequestStats

All Superinterfaces:
Stats

public interface PWCRequestStats extends Stats
Interface representing statistical information about the request bucket
  • Method Details

    • getMethod

      StringStatistic getMethod()
      Gets the method of the last request serviced.
      Returns:
      Method of the last request serviced
    • getUri

      StringStatistic getUri()
      Gets the URI of the last request serviced.
      Returns:
      URI of the last request serviced
    • getCountRequests

      CountStatistic getCountRequests()
      Gets the number of requests serviced.
      Returns:
      Number of requests serviced
    • getCountBytesReceived

      CountStatistic getCountBytesReceived()
      Gets the number of bytes received.
      Returns:
      Number of bytes received, or 0 if this information is not available
    • getCountBytesTransmitted

      CountStatistic getCountBytesTransmitted()
      Gets the number of bytes transmitted.
      Returns:
      Number of bytes transmitted, or 0 if this information is not available
    • getRateBytesTransmitted

      CountStatistic getRateBytesTransmitted()
      Gets the rate (in bytes per second) at which data was transmitted over some server-defined interval.
      Returns:
      Rate (in bytes per second) at which data was transmitted over some server-defined interval, or 0 if this information is not available
    • getMaxByteTransmissionRate

      CountStatistic getMaxByteTransmissionRate()
      Gets the maximum rate at which data was transmitted over some server-defined interval.
      Returns:
      Maximum rate at which data was transmitted over some server-defined interval, or 0 if this information is not available.
    • getCountOpenConnections

      CountStatistic getCountOpenConnections()
      Gets the number of open connections.
      Returns:
      Number of open connections, or 0 if this information is not available
    • getMaxOpenConnections

      CountStatistic getMaxOpenConnections()
      Gets the maximum number of open connections.
      Returns:
      Maximum number of open connections, or 0 if this information is not available
    • getCount2xx

      CountStatistic getCount2xx()
      Gets the number of 200-level responses sent.
      Returns:
      Number of 200-level responses sent
    • getCount3xx

      CountStatistic getCount3xx()
      Gets the number of 300-level responses sent.
      Returns:
      Number of 300-level responses sent
    • getCount4xx

      CountStatistic getCount4xx()
      Gets the number of 400-level responses sent.
      Returns:
      Number of 400-level responses sent
    • getCount5xx

      CountStatistic getCount5xx()
      Gets the number of 500-level responses sent.
      Returns:
      Number of 500-level responses sent
    • getCountOther

      CountStatistic getCountOther()
      Gets the number of responses sent that were not 200, 300, 400, or 500 level.
      Returns:
      Number of responses sent that were not 200, 300, 400, or 500 level
    • getCount200

      CountStatistic getCount200()
      Gets the number of responses with a 200 response code.
      Returns:
      Number of responses with a 200 response code
    • getCount302

      CountStatistic getCount302()
      Gets the number of responses with a 302 response code.
      Returns:
      Number of responses with a 302 response code
    • getCount304

      CountStatistic getCount304()
      Gets the number of responses with a 304 response code.
      Returns:
      Number of responses with a 304 response code
    • getCount400

      CountStatistic getCount400()
      Gets the number of responses with a 400 response code.
      Returns:
      Number of responses with a 400 response code
    • getCount401

      CountStatistic getCount401()
      Gets the number of responses with a 401 response code.
      Returns:
      Number of responses with a 401 response code
    • getCount403

      CountStatistic getCount403()
      Gets the number of responses with a 403 response code.
      Returns:
      Number of responses with a 403 response code
    • getCount404

      CountStatistic getCount404()
      Gets the number of responses with a 404 response code.
      Returns:
      Number of responses with a 404 response code
    • getCount503

      CountStatistic getCount503()
      Gets the number of responses with a 503 response code.
      Returns:
      Number of responses with a 503 response code