Enhydra 5.1 API

org.enhydra.servlet.servletManager
Class ServletStatistics

java.lang.Object
  |
  +--org.enhydra.servlet.servletManager.ServletStatistics

public class ServletStatistics
extends java.lang.Object

This class holds the historical request-per-minute data for an application.

Author:
Andy John
See Also:
ServletManager

Field Summary
 long[] RPMTimes
          An array of times.
 double[] RPMValues
          The array of values.
 
Constructor Summary
protected ServletStatistics()
          Protected contructor.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

RPMValues

public double[] RPMValues
The array of values. Each value is the number of requests per minute that the servet recieved.


RPMTimes

public long[] RPMTimes
An array of times. Each element records the time when the corresponding element of RPMValues was measured. The values are milliseconds, as returned by system.currentTimeMillis().

Constructor Detail

ServletStatistics

protected ServletStatistics()
Protected contructor. Only a ServletManager should create instances of this class.

See Also:
ServletManager

Enhydra 5.1 API