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 Object implements Dumpable
Deprecated.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.component.Dumpable
Dumpable.DumpableContainer
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voiddecrementCount()Deprecated.voiddump(Appendable out, 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.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.StringtoString()Deprecated.
-
-
-
Constructor Detail
-
Stats
public Stats(String name)
Deprecated.
-
-
Method Detail
-
reset
public void reset()
Deprecated.
-
getName
public 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(Appendable out, String indent) throws IOException
Deprecated.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.- Specified by:
dumpin interfaceDumpable- Parameters:
out- The appendable to dump toindent- The indent to apply after any new lines.- Throws:
IOException- if unable to write to Appendable
-
-