org.logicalcobwebs.proxool.admin
接口 StatisticsIF


public interface StatisticsIF

Provides statistical performance information for a period ot time.

从以下版本开始:
Proxool 0.7
版本:
$Revision: 1.2 $, $Date: 2003/03/03 11:11:59 $
作者:
bill, $Author: billhorsman $ (current maintainer)

方法摘要
 double getAverageActiveCount()
          The average number of active connections,
 double getAverageActiveTime()
          The average time that each connection spent active.
 long getPeriod()
          The length of time this sample represents,
 long getRefusedCount()
          The number of connections refused during this sample.
 double getRefusedPerSecond()
          The rate at which we have refused connections
 long getServedCount()
          The number of connections served during this sample.
 double getServedPerSecond()
          The rate at which we have served connections
 Date getStartDate()
          When this sample started.
 Date getStopDate()
          When this sample stopped
 

方法详细信息

getPeriod

long getPeriod()
The length of time this sample represents,

返回:
period (milliseconds)

getAverageActiveTime

double getAverageActiveTime()
The average time that each connection spent active.

返回:
averageActiveTime (milliseconds)

getAverageActiveCount

double getAverageActiveCount()
The average number of active connections,

返回:
averageActiveCount

getServedCount

long getServedCount()
The number of connections served during this sample.

返回:
servedCount

getRefusedCount

long getRefusedCount()
The number of connections refused during this sample.

返回:
refusedCount

getStartDate

Date getStartDate()
When this sample started.

返回:
startDate
另请参见:
getStopDate(), getPeriod()

getStopDate

Date getStopDate()
When this sample stopped

返回:
stopDate
另请参见:
getStartDate(), getPeriod()

getServedPerSecond

double getServedPerSecond()
The rate at which we have served connections

返回:
servedPerSecond

getRefusedPerSecond

double getRefusedPerSecond()
The rate at which we have refused connections

返回:
refusedPerSecond


Copyright © 2014. All rights reserved.