Interface ServicesStatisticsMXBean
- All Known Implementing Classes:
ServicesStatistics
public interface ServicesStatisticsMXBean
JMX Bean interface exposing service statistics.
-
Method Summary
Modifier and TypeMethodDescriptionintGets the total number of services in error stateintGets the number of services in error state of this JMX nodeString[]Gets a list of all services in error stateString[]Gets a list of all services in error state of this JMX nodeintGets the total number of normal servicesintGets the number of normal services of this JMX nodeString[]Gets a list of all normal servicesString[]Gets a list of all normal services of this JMX nodeintGets the total number of servicesintGets the number of services of this JMX nodeString[]Gets a list of all servicesString[]Gets a list of all services of this JMX nodeintGets the total number of services in warning stateintGets the number of services in warning state of this JMX nodeString[]Gets a list of all services in warning stateString[]Gets a list of all services in warning state of this JMX node
-
Method Details
-
getServices
String[] getServices()Gets a list of all services- Returns:
- an array including all services
-
getNormalServices
String[] getNormalServices()Gets a list of all normal services- Returns:
- an array including all normal services
-
getWarningServices
String[] getWarningServices()Gets a list of all services in warning state- Returns:
- an array including all services in warning state
-
getErrorServices
String[] getErrorServices()Gets a list of all services in error state- Returns:
- an array including all services in error state
-
getServicesByNode
String[] getServicesByNode()Gets a list of all services of this JMX node- Returns:
- an array including all services of this JMX node
-
getNormalServicesByNode
String[] getNormalServicesByNode()Gets a list of all normal services of this JMX node- Returns:
- an array including all normal services of this JMX node
-
getWarningServicesByNode
String[] getWarningServicesByNode()Gets a list of all services in warning state of this JMX node- Returns:
- an array including all services in warning state of this JMX node
-
getErrorServicesByNode
String[] getErrorServicesByNode()Gets a list of all services in error state of this JMX node- Returns:
- an array including all services in error state of this JMX node
-
getServiceCount
int getServiceCount()Gets the total number of services- Returns:
- the number of services
-
getNormalServiceCount
int getNormalServiceCount()Gets the total number of normal services- Returns:
- the number of normal services
-
getWarningServiceCount
int getWarningServiceCount()Gets the total number of services in warning state- Returns:
- the number of services in warning state
-
getErrorServiceCount
int getErrorServiceCount()Gets the total number of services in error state- Returns:
- the number of services in error state
-
getServiceCountByNode
int getServiceCountByNode()Gets the number of services of this JMX node- Returns:
- the number of services of this JMX node
-
getNormalServiceCountByNode
int getNormalServiceCountByNode()Gets the number of normal services of this JMX node- Returns:
- the number of normal services of this JMX node
-
getWarningServiceCountByNode
int getWarningServiceCountByNode()Gets the number of services in warning state of this JMX node- Returns:
- the number of services in warning state
-
getErrorServiceCountByNode
int getErrorServiceCountByNode()Gets the number of services in error state of this JMX node- Returns:
- the number of services in error state
-