public interface GaugeMonitorMBean extends MonitorMBean
| Modifier and Type | Method and Description |
|---|---|
Number |
getDerivedGauge()
Deprecated.
As of JMX 1.2, replaced by
getDerivedGauge(ObjectName)
|
Number |
getDerivedGauge(ObjectName
Gets the derived gauge for the specified MBean.
|
long |
getDerivedGaugeTimeStamp()
Deprecated.
As of JMX 1.2, replaced by
getDerivedGaugeTimeStamp(ObjectName)
|
long |
getDerivedGaugeTimeStamp(ObjectName
Gets the derived gauge timestamp for the specified MBean.
|
boolean |
getDifferenceMode()
Gets the difference mode flag value.
|
Number |
getHighThreshold()
Gets the high threshold value.
|
Number |
getLowThreshold()
Gets the low threshold value.
|
boolean |
getNotifyHigh()
Gets the high notification's on/off switch value.
|
boolean |
getNotifyLow()
Gets the low notification's on/off switch value.
|
void |
setDifferenceMode(boolean value)
Sets the difference mode flag value.
|
void |
setNotifyHigh(boolean value)
Sets the high notification's on/off switch value.
|
void |
setNotifyLow(boolean value)
Sets the low notification's on/off switch value.
|
void |
setThresholds(Number
Sets the high and the low threshold values.
|
addObservedObject, containsObservedObject, getGranularityPeriod, getObservedAttribute, getObservedObject, getObservedObjects, isActive, removeObservedObject, setGranularityPeriod, setObservedAttribute, setObservedObject, start, stop@Deprecated NumbergetDerivedGauge()
getDerivedGauge(ObjectName)
@Deprecated long getDerivedGaugeTimeStamp()
getDerivedGaugeTimeStamp(ObjectName)
NumbergetDerivedGauge(ObjectName object)
object - the MBean for which the derived gauge is to be returned
null otherwise.
long getDerivedGaugeTimeStamp(ObjectNameobject)
object - the MBean for which the derived gauge timestamp is to be returned
null otherwise.
NumbergetHighThreshold()
NumbergetLowThreshold()
void setThresholds(NumberhighValue, Number lowValue) throws IllegalArgumentException
highValue - The high threshold value.
lowValue - The low threshold value.
IllegalArgumentException - The specified high/low threshold is null or the low threshold is greater than the high threshold or the high threshold and the low threshold are not of the same type.
boolean getNotifyHigh()
true if the gauge monitor notifies when exceeding the high threshold,
false otherwise.
setNotifyHigh(boolean)
void setNotifyHigh(boolean value)
value - The high notification's on/off switch value.
getNotifyHigh()
boolean getNotifyLow()
true if the gauge monitor notifies when exceeding the low threshold,
false otherwise.
setNotifyLow(boolean)
void setNotifyLow(boolean value)
value - The low notification's on/off switch value.
getNotifyLow()
boolean getDifferenceMode()
true if the difference mode is used,
false otherwise.
setDifferenceMode(boolean)
void setDifferenceMode(boolean value)
value - The difference mode flag value.
getDifferenceMode()