Package org.eclipse.jetty.io
Class ConnectionStatistics.Stats
- java.lang.Object
-
- org.eclipse.jetty.io.ConnectionStatistics.Stats
-
- All Implemented Interfaces:
Dumpable
- Enclosing class:
- ConnectionStatistics
@Deprecated(since="2021-05-27") public static class ConnectionStatistics.Stats extends java.lang.Object implements Dumpable
Deprecated.
-
-
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)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voiddecrementCount()Deprecated.voiddump(java.lang.Appendable out, java.lang.String indent)Deprecated.Dump this object (and children) into an Appendable using the provided indent after any new lines.longgetConnectionDurationMax()Deprecated.doublegetConnectionDurationMean()Deprecated.doublegetConnectionDurationStdDev()Deprecated.longgetConnections()Deprecated.longgetConnectionsMax()Deprecated.longgetConnectionsTotal()Deprecated.java.lang.StringgetName()Deprecated.longgetReceivedBytes()Deprecated.longgetReceivedBytesRate()Deprecated.longgetReceivedMessages()Deprecated.longgetReceivedMessagesRate()Deprecated.longgetSentBytes()Deprecated.longgetSentBytesRate()Deprecated.longgetSentMessages()Deprecated.longgetSentMessagesRate()Deprecated.voidincrementCount()Deprecated.voidrecordBytesIn(long bytesIn)Deprecated.voidrecordBytesOut(long bytesOut)Deprecated.voidrecordDuration(long duration)Deprecated.voidrecordMessagesIn(long messagesIn)Deprecated.voidrecordMessagesOut(long messagesOut)Deprecated.voidreset()Deprecated.java.lang.StringtoString()Deprecated.
-
-
-
Method Detail
-
reset
public void reset()
Deprecated.
-
getName
public java.lang.String getName()
Deprecated.
-
getReceivedBytes
public long getReceivedBytes()
Deprecated.
-
getReceivedBytesRate
public long getReceivedBytesRate()
Deprecated.
-
getSentBytes
public long getSentBytes()
Deprecated.
-
getSentBytesRate
public long getSentBytesRate()
Deprecated.
-
getConnectionDurationMax
public long getConnectionDurationMax()
Deprecated.
-
getConnectionDurationMean
public double getConnectionDurationMean()
Deprecated.
-
getConnectionDurationStdDev
public double getConnectionDurationStdDev()
Deprecated.
-
getConnectionsTotal
public long getConnectionsTotal()
Deprecated.
-
getConnections
public long getConnections()
Deprecated.
-
getConnectionsMax
public long getConnectionsMax()
Deprecated.
-
getReceivedMessages
public long getReceivedMessages()
Deprecated.
-
getReceivedMessagesRate
public long getReceivedMessagesRate()
Deprecated.
-
getSentMessages
public long getSentMessages()
Deprecated.
-
getSentMessagesRate
public long getSentMessagesRate()
Deprecated.
-
incrementCount
public void incrementCount()
Deprecated.
-
decrementCount
public void decrementCount()
Deprecated.
-
recordDuration
public void recordDuration(long duration)
Deprecated.
-
recordBytesIn
public void recordBytesIn(long bytesIn)
Deprecated.
-
recordBytesOut
public void recordBytesOut(long bytesOut)
Deprecated.
-
recordMessagesIn
public void recordMessagesIn(long messagesIn)
Deprecated.
-
recordMessagesOut
public void recordMessagesOut(long messagesOut)
Deprecated.
-
dump
public void dump(java.lang.Appendable out, java.lang.String indent) throws java.io.IOExceptionDeprecated.Description 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()
Deprecated.- Overrides:
toStringin classjava.lang.Object
-
-