Package io.airlift.http.client.jetty
Class ConnectionStats
- java.lang.Object
-
- io.airlift.http.client.jetty.ConnectionStats
-
public class ConnectionStats extends Object
-
-
Constructor Summary
Constructors Constructor Description ConnectionStats(org.eclipse.jetty.io.ConnectionStatistics connectionStats)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetConnectionDurationStdDev()longgetMaxConnectionDuration()longgetMaxOpenConnections()doublegetMeanConnectionDuration()longgetOpenConnectionCount()longgetReceivedBytes()longgetReceivedMessageCount()longgetSentBytes()longgetSentMessageCount()longgetTotalConnectionCount()
-
-
-
Method Detail
-
getReceivedBytes
public long getReceivedBytes()
-
getSentBytes
public long getSentBytes()
-
getMaxConnectionDuration
public long getMaxConnectionDuration()
-
getMeanConnectionDuration
public double getMeanConnectionDuration()
-
getConnectionDurationStdDev
public double getConnectionDurationStdDev()
-
getTotalConnectionCount
public long getTotalConnectionCount()
-
getOpenConnectionCount
public long getOpenConnectionCount()
-
getMaxOpenConnections
public long getMaxOpenConnections()
-
getReceivedMessageCount
public long getReceivedMessageCount()
-
getSentMessageCount
public long getSentMessageCount()
-
-