Interface StatisticsAdminMBean
-
- All Known Implementing Classes:
StatisticsAdmin
public interface StatisticsAdminMBeanMBean interface of the StatisticsAdmin MBean
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doublegetAvgOperationResponseTime(String serviceName, String operationName)doublegetAvgServiceResponseTime(String serviceName)doublegetAvgSystemResponseTime()longgetMaxOperationResponseTime(String serviceName, String operationName)longgetMaxServiceResponseTime(String serviceName)longgetMaxSystemResponseTime()longgetMinOperationResponseTime(String serviceName, String operationName)longgetMinServiceResponseTime(String serviceName)longgetMinSystemResponseTime()intgetOperationFaultCount(String serviceName, String operationName)intgetOperationRequestCount(String serviceName, String operationName)intgetOperationResponseCount(String serviceName, String operationName)intgetServiceFaultCount(String serviceName)intgetServiceRequestCount(String serviceName)Obtain the number of requests that were received by the serviceintgetServiceResponseCount(String serviceName)intgetSystemFaultCount()intgetSystemRequestCount()Get the total requests received by the system which hosts this serviceintgetSystemResponseCount()
-
-
-
Method Detail
-
getSystemRequestCount
int getSystemRequestCount() throws ExceptionGet the total requests received by the system which hosts this service- Returns:
- the total requests received by the system which hosts this service
- Throws:
Exception- If request count cannot be found
-
getAvgSystemResponseTime
double getAvgSystemResponseTime()
-
getMaxSystemResponseTime
long getMaxSystemResponseTime()
-
getMinSystemResponseTime
long getMinSystemResponseTime()
-
getServiceRequestCount
int getServiceRequestCount(String serviceName) throws Exception
Obtain the number of requests that were received by the service- Parameters:
serviceName-- Returns:
- The number of requests that were received by the service
- Throws:
Exception
-
getServiceFaultCount
int getServiceFaultCount(String serviceName) throws Exception
- Throws:
Exception
-
getServiceResponseCount
int getServiceResponseCount(String serviceName) throws Exception
- Throws:
Exception
-
getMaxServiceResponseTime
long getMaxServiceResponseTime(String serviceName) throws Exception
- Throws:
Exception
-
getMinServiceResponseTime
long getMinServiceResponseTime(String serviceName) throws Exception
- Throws:
Exception
-
getAvgServiceResponseTime
double getAvgServiceResponseTime(String serviceName) throws Exception
- Throws:
Exception
-
getOperationRequestCount
int getOperationRequestCount(String serviceName, String operationName) throws Exception
- Throws:
Exception
-
getOperationFaultCount
int getOperationFaultCount(String serviceName, String operationName) throws Exception
- Throws:
Exception
-
getOperationResponseCount
int getOperationResponseCount(String serviceName, String operationName) throws Exception
- Throws:
Exception
-
getMaxOperationResponseTime
long getMaxOperationResponseTime(String serviceName, String operationName) throws Exception
- Throws:
Exception
-
getMinOperationResponseTime
long getMinOperationResponseTime(String serviceName, String operationName) throws Exception
- Throws:
Exception
-
-