Package org.eclipse.jetty.io
Class ConnectionStatistics.Stats
java.lang.Object
org.eclipse.jetty.io.ConnectionStatistics.Stats
- All Implemented Interfaces:
Dumpable
- Enclosing class:
- ConnectionStatistics
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.component.Dumpable
Dumpable.DumpableContainer
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
void
dump
(Appendable out, String indent) Dump this object (and children) into an Appendable using the provided indent after any new lines.long
double
double
long
long
long
getName()
long
long
long
long
long
long
long
long
void
void
recordBytesIn
(long bytesIn) void
recordBytesOut
(long bytesOut) void
recordDuration
(long duration) void
recordMessagesIn
(long messagesIn) void
recordMessagesOut
(long messagesOut) void
reset()
toString()
-
Constructor Details
-
Stats
-
-
Method Details
-
reset
public void reset() -
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
Description copied from interface:Dumpable
Dump 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:
dump
in interfaceDumpable
- Parameters:
out
- The appendable to dump toindent
- The indent to apply after any new lines.- Throws:
IOException
- if unable to write to Appendable
-
toString
-