Class OperationStatistics
- java.lang.Object
-
- org.wso2.carbon.statistics.services.util.OperationStatistics
-
public class OperationStatistics extends Object
-
-
Constructor Summary
Constructors Constructor Description OperationStatistics()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getAvgResponseTime()
int
getCurrentInvocationFaultCount()
int
getCurrentInvocationRequestCount()
int
getCurrentInvocationResponseCount()
double
getCurrentInvocationResponseTime()
long
getMaxResponseTime()
long
getMinResponseTime()
int
getTotalFaultCount()
int
getTotalRequestCount()
int
getTotalResponseCount()
void
setAvgResponseTime(double avgResponseTime)
void
setCurrentInvocationFaultCount(int currentInvocationFaultCount)
void
setCurrentInvocationRequestCount(int currentInvocationRequestCount)
void
setCurrentInvocationResponseCount(int currentInvocationResponseCount)
void
setCurrentInvocationResponseTime(double currentInvocationResponseTime)
void
setMaxResponseTime(long maxResponseTime)
void
setMinResponseTime(long minResponseTime)
void
setTotalFaultCount(int totalFaultCount)
void
setTotalRequestCount(int totalRequestCount)
void
setTotalResponseCount(int totalResponseCount)
-
-
-
Method Detail
-
getCurrentInvocationRequestCount
public int getCurrentInvocationRequestCount()
-
setCurrentInvocationRequestCount
public void setCurrentInvocationRequestCount(int currentInvocationRequestCount)
-
getCurrentInvocationResponseCount
public int getCurrentInvocationResponseCount()
-
setCurrentInvocationResponseCount
public void setCurrentInvocationResponseCount(int currentInvocationResponseCount)
-
getCurrentInvocationFaultCount
public int getCurrentInvocationFaultCount()
-
setCurrentInvocationFaultCount
public void setCurrentInvocationFaultCount(int currentInvocationFaultCount)
-
getCurrentInvocationResponseTime
public double getCurrentInvocationResponseTime()
-
setCurrentInvocationResponseTime
public void setCurrentInvocationResponseTime(double currentInvocationResponseTime)
-
getAvgResponseTime
public double getAvgResponseTime()
-
setAvgResponseTime
public void setAvgResponseTime(double avgResponseTime)
-
getMinResponseTime
public long getMinResponseTime()
-
setMinResponseTime
public void setMinResponseTime(long minResponseTime)
-
getMaxResponseTime
public long getMaxResponseTime()
-
setMaxResponseTime
public void setMaxResponseTime(long maxResponseTime)
-
getTotalRequestCount
public int getTotalRequestCount()
-
setTotalRequestCount
public void setTotalRequestCount(int totalRequestCount)
-
getTotalResponseCount
public int getTotalResponseCount()
-
setTotalResponseCount
public void setTotalResponseCount(int totalResponseCount)
-
getTotalFaultCount
public int getTotalFaultCount()
-
setTotalFaultCount
public void setTotalFaultCount(int totalFaultCount)
-
-