public class

MonitorNotification

extends Notification
java.lang.Object
   ↳ java.util.EventObject
     ↳ javax.management.Notification
       ↳ javax.management.monitor.MonitorNotification

Class Overview

Provides definitions of the notifications sent by monitor MBeans.

The notification source and a set of parameters concerning the monitor MBean's state need to be specified when creating a new object of this class. The list of notifications fired by the monitor MBeans is the following:

  • Common to all kind of monitors:
    • The observed object is not registered in the MBean server.
    • The observed attribute is not contained in the observed object.
    • The type of the observed attribute is not correct.
    • Any exception (except the cases described above) occurs when trying to get the value of the observed attribute.
  • Common to the counter and the gauge monitors:
    • The threshold high or threshold low are not of the same type as the gauge (gauge monitors).
    • The threshold or the offset or the modulus are not of the same type as the counter (counter monitors).
  • Counter monitors only:
    • The observed attribute has reached the threshold value.
  • Gauge monitors only:
    • The observed attribute has exceeded the threshold high value.
    • The observed attribute has exceeded the threshold low value.
  • String monitors only:
    • The observed attribute has matched the "string to compare" value.
    • The observed attribute has differed from the "string to compare" value.

Summary

Constants
String OBSERVED_ATTRIBUTE_ERROR Notification type denoting that the observed attribute is not contained in the observed object.
String OBSERVED_ATTRIBUTE_TYPE_ERROR Notification type denoting that the type of the observed attribute is not correct.
String OBSERVED_OBJECT_ERROR Notification type denoting that the observed object is not registered in the MBean server.
String RUNTIME_ERROR Notification type denoting that a non-predefined error type has occurred when trying to get the value of the observed attribute.
String STRING_TO_COMPARE_VALUE_DIFFERED Notification type denoting that the observed attribute has differed from the "string to compare" value.
String STRING_TO_COMPARE_VALUE_MATCHED Notification type denoting that the observed attribute has matched the "string to compare" value.
String THRESHOLD_ERROR Notification type denoting that the type of the thresholds, offset or modulus is not correct.
String THRESHOLD_HIGH_VALUE_EXCEEDED Notification type denoting that the observed attribute has exceeded the threshold high value.
String THRESHOLD_LOW_VALUE_EXCEEDED Notification type denoting that the observed attribute has exceeded the threshold low value.
String THRESHOLD_VALUE_EXCEEDED Notification type denoting that the observed attribute has reached the threshold value.
[Expand]
Inherited Fields
From class javax.management.Notification
From class java.util.EventObject
Public Methods
Object getDerivedGauge()
Gets the derived gauge of this monitor notification.
String getObservedAttribute()
Gets the observed attribute of this monitor notification.
ObjectName getObservedObject()
Gets the observed object of this monitor notification.
Object getTrigger()
Gets the threshold/string (depending on the monitor type) that triggered off this monitor notification.
[Expand]
Inherited Methods
From class javax.management.Notification
From class java.util.EventObject
From class java.lang.Object

Constants

public static final String OBSERVED_ATTRIBUTE_ERROR

Notification type denoting that the observed attribute is not contained in the observed object. This notification is fired by all kinds of monitors.
The value of this notification type is jmx.monitor.error.attribute.

Constant Value: "jmx.monitor.error.attribute"

public static final String OBSERVED_ATTRIBUTE_TYPE_ERROR

Notification type denoting that the type of the observed attribute is not correct. This notification is fired by all kinds of monitors.
The value of this notification type is jmx.monitor.error.type.

Constant Value: "jmx.monitor.error.type"

public static final String OBSERVED_OBJECT_ERROR

Notification type denoting that the observed object is not registered in the MBean server. This notification is fired by all kinds of monitors.
The value of this notification type is jmx.monitor.error.mbean.

Constant Value: "jmx.monitor.error.mbean"

public static final String RUNTIME_ERROR

Notification type denoting that a non-predefined error type has occurred when trying to get the value of the observed attribute. This notification is fired by all kinds of monitors.
The value of this notification type is jmx.monitor.error.runtime.

Constant Value: "jmx.monitor.error.runtime"

public static final String STRING_TO_COMPARE_VALUE_DIFFERED

Notification type denoting that the observed attribute has differed from the "string to compare" value. This notification is only fired by string monitors.
The value of this notification type is jmx.monitor.string.differs.

Constant Value: "jmx.monitor.string.differs"

public static final String STRING_TO_COMPARE_VALUE_MATCHED

Notification type denoting that the observed attribute has matched the "string to compare" value. This notification is only fired by string monitors.
The value of this notification type is jmx.monitor.string.matches.

Constant Value: "jmx.monitor.string.matches"

public static final String THRESHOLD_ERROR

Notification type denoting that the type of the thresholds, offset or modulus is not correct. This notification is fired by counter and gauge monitors.
The value of this notification type is jmx.monitor.error.threshold.

Constant Value: "jmx.monitor.error.threshold"

public static final String THRESHOLD_HIGH_VALUE_EXCEEDED

Notification type denoting that the observed attribute has exceeded the threshold high value. This notification is only fired by gauge monitors.
The value of this notification type is jmx.monitor.gauge.high.

Constant Value: "jmx.monitor.gauge.high"

public static final String THRESHOLD_LOW_VALUE_EXCEEDED

Notification type denoting that the observed attribute has exceeded the threshold low value. This notification is only fired by gauge monitors.
The value of this notification type is jmx.monitor.gauge.low.

Constant Value: "jmx.monitor.gauge.low"

public static final String THRESHOLD_VALUE_EXCEEDED

Notification type denoting that the observed attribute has reached the threshold value. This notification is only fired by counter monitors.
The value of this notification type is jmx.monitor.counter.threshold.

Constant Value: "jmx.monitor.counter.threshold"

Public Methods

public Object getDerivedGauge ()

Gets the derived gauge of this monitor notification.

Returns
  • The derived gauge.

public String getObservedAttribute ()

Gets the observed attribute of this monitor notification.

Returns
  • The observed attribute.

public ObjectName getObservedObject ()

Gets the observed object of this monitor notification.

Returns
  • The observed object.

public Object getTrigger ()

Gets the threshold/string (depending on the monitor type) that triggered off this monitor notification.

Returns
  • The trigger.