Package oracle.kv.mgmt.jmx
Interface AdminMXBean
-
public interface AdminMXBeanThis MBean represents an Admin's operational parameters.- Since:
- 2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetAdminId()Returns the AdminId number of an Admin instance.java.lang.StringgetEnvMetric()Returns a JSON string containing a bundle of JE environment-related metrics.longgetEventExpiryAge()Returns how long to keep critical event records.intgetLogFileCount()Returns number of log files that are kept.intgetLogFileLimit()Returns the maximum size of log files.longgetPollPeriodMillis()Returns The polling period for collecting metrics.java.lang.StringgetServiceStatus()Returns the reported service status of the Admin.booleanisMaster()Tells whether this Admin is the master among Admin instances.
-
-
-
Method Detail
-
getAdminId
int getAdminId()
Returns the AdminId number of an Admin instance.
-
getServiceStatus
java.lang.String getServiceStatus()
Returns the reported service status of the Admin.
-
getLogFileLimit
int getLogFileLimit()
Returns the maximum size of log files.
-
getLogFileCount
int getLogFileCount()
Returns number of log files that are kept.
-
getPollPeriodMillis
long getPollPeriodMillis()
Returns The polling period for collecting metrics.
-
getEventExpiryAge
long getEventExpiryAge()
Returns how long to keep critical event records.
-
isMaster
boolean isMaster()
Tells whether this Admin is the master among Admin instances.
-
getEnvMetric
java.lang.String getEnvMetric()
Returns a JSON string containing a bundle of JE environment-related metrics. These metrics are also reported by the notification oracle.kv.admin.envmetric.
-
-