Package org.eclipse.jetty.io
Class ConnectionStatistics.Stats
- java.lang.Object
-
- org.eclipse.jetty.io.ConnectionStatistics.Stats
-
- All Implemented Interfaces:
Dumpable
- Enclosing class:
- ConnectionStatistics
public static class ConnectionStatistics.Stats extends java.lang.Object implements Dumpable
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.component.Dumpable
Dumpable.DumpableContainer
-
-
Constructor Summary
Constructors Constructor Description Stats(java.lang.String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddecrementCount()voiddump(java.lang.Appendable out, java.lang.String indent)Dump this object (and children) into an Appendable using the provided indent after any new lines.longgetConnectionDurationMax()doublegetConnectionDurationMean()doublegetConnectionDurationStdDev()longgetConnections()longgetConnectionsMax()longgetConnectionsTotal()java.lang.StringgetName()longgetReceivedBytes()longgetReceivedBytesRate()longgetReceivedMessages()longgetReceivedMessagesRate()longgetSentBytes()longgetSentBytesRate()longgetSentMessages()longgetSentMessagesRate()voidincrementCount()voidrecordBytesIn(long bytesIn)voidrecordBytesOut(long bytesOut)voidrecordDuration(long duration)voidrecordMessagesIn(long messagesIn)voidrecordMessagesOut(long messagesOut)voidreset()java.lang.StringtoString()
-
-
-
Method Detail
-
reset
public void reset()
-
getName
public java.lang.String getName()
-
getReceivedBytes
public long getReceivedBytes()
-
getReceivedBytesRate
public long getReceivedBytesRate()
-
getSentBytes
public long getSentBytes()
-
getSentBytesRate
public long getSentBytesRate()
-
getConnectionDurationMax
public long getConnectionDurationMax()
-
getConnectionDurationMean
public double getConnectionDurationMean()
-
getConnectionDurationStdDev
public double getConnectionDurationStdDev()
-
getConnectionsTotal
public long getConnectionsTotal()
-
getConnections
public long getConnections()
-
getConnectionsMax
public long getConnectionsMax()
-
getReceivedMessages
public long getReceivedMessages()
-
getReceivedMessagesRate
public long getReceivedMessagesRate()
-
getSentMessages
public long getSentMessages()
-
getSentMessagesRate
public long getSentMessagesRate()
-
incrementCount
public void incrementCount()
-
decrementCount
public void decrementCount()
-
recordDuration
public void recordDuration(long duration)
-
recordBytesIn
public void recordBytesIn(long bytesIn)
-
recordBytesOut
public void recordBytesOut(long bytesOut)
-
recordMessagesIn
public void recordMessagesIn(long messagesIn)
-
recordMessagesOut
public void recordMessagesOut(long messagesOut)
-
dump
public void dump(java.lang.Appendable out, java.lang.String indent) throws java.io.IOExceptionDescription copied from interface:DumpableDump this object (and children) into an Appendable using the provided indent after any new lines. The indent should not be applied to the first object dumped.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-