org.systinet.wasp.admin
Class ServiceEndpointThroughputLog

java.lang.Object
  extended byorg.systinet.wasp.admin.ServiceEndpointThroughputLog
All Implemented Interfaces:
java.io.Serializable

public class ServiceEndpointThroughputLog
extends java.lang.Object
implements java.io.Serializable

Service endpoint data throughput monitor record.

Since:
4.0
See Also:
Serialized Form
Component:
Mgmt-Services

Field Summary
 int hits
          Total number of requests.
 long lastRequestInBytes
          Last input message size.
 long lastRequestOutBytes
          Last output message size.
 long lastRequestTimestamp
          Time of the last dispatch.
 long longestInBytes
          Longest input message size.
 long longestOutBytes
          Longest output message size.
 long shortestInBytes
          Shortest input message size.
 long shortestOutBytes
          Shortest output message size.
 long totalInBytes
          Total amount of input bytes.
 long totalOutBytes
          Total amount of output bytes.
 
Constructor Summary
ServiceEndpointThroughputLog()
          Default constructor.
 
Method Summary
 void reset()
          Reset record to initial state.
 java.lang.String toString()
          Returns a string representation of the object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

hits

public int hits
Total number of requests.


totalInBytes

public long totalInBytes
Total amount of input bytes.


totalOutBytes

public long totalOutBytes
Total amount of output bytes.


lastRequestTimestamp

public long lastRequestTimestamp
Time of the last dispatch.


lastRequestInBytes

public long lastRequestInBytes
Last input message size.


lastRequestOutBytes

public long lastRequestOutBytes
Last output message size.


longestInBytes

public long longestInBytes
Longest input message size.


longestOutBytes

public long longestOutBytes
Longest output message size.


shortestInBytes

public long shortestInBytes
Shortest input message size.


shortestOutBytes

public long shortestOutBytes
Shortest output message size.

Constructor Detail

ServiceEndpointThroughputLog

public ServiceEndpointThroughputLog()
Default constructor.

Method Detail

reset

public void reset()
Reset record to initial state.


toString

public java.lang.String toString()
Returns a string representation of the object.

Returns:
a string representation of the object.