FileDocCategorySizeDatePackage
StatisticMonitorNotification.javaAPI DocGlassfish v2 API10971Fri May 04 22:32:52 BST 2007com.sun.appserv.management.event

StatisticMonitorNotification

public class StatisticMonitorNotification extends Notification
Provides definitions of the notifications sent by statistic monitor MBeans. Used for JDK version greater than 1.5.

The notification source and a set of parameters concerning the statistic monitor MBean's state need to be specified when creating a new object of this class. The list of notifications fired by the statistic 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 statistic 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 statistic monitors).
  • CounterStatistic monitors only:
    • The observed attribute has reached the threshold value.
  • GaugeStatistic monitors only:
    • The observed attribute has exceeded the threshold high value.
    • The observed attribute has exceeded the threshold low value.
  • StringStatistic monitors only:
    • The observed attribute has matched the "string to compare" value.
    • The observed attribute has differed from the "string to compare" value.
author
Sun Microsystems, Inc

Fields Summary
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 statistic monitors.
The value of this notification type is jmx.monitor.error.mbean.
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 statistic monitors.
The value of this notification type is 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 statistic monitors.
The value of this notification type is jmx.monitor.error.type.
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 statistic monitors.
The value of this notification type is jmx.monitor.error.threshold.
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 statistic monitors.
The value of this notification type is jmx.monitor.error.runtime.
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 statistic monitors.
The value of this notification type is jmx.monitor.counter.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 statistic monitors.
The value of this notification type is 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 statistic monitors.
The value of this notification type is jmx.monitor.gauge.low.
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 statistic monitors.
The value of this notification type is jmx.monitor.string.matches.
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 statistic monitors.
The value of this notification type is jmx.monitor.string.differs.
private static final long
serialVersionUID
private ObjectName
observedObject
private String
observedAttribute
private Object
derivedGauge
private Object
trigger
Constructors Summary
public StatisticMonitorNotification(String type, Object source, long sequenceNumber, long timeStamp, String msg, ObjectName obsObj, String obsAtt, Object derGauge, Object trigger)
Creates a statistic monitor notification object.

param
type The notification type.
param
source The notification producer.
param
sequenceNumber The notification sequence number within the source object.
param
timeStamp The notification emission date.
param
msg The notification message.
param
obsObj The object observed by the producer of this notification.
param
obsAtt The attribute observed by the producer of this notification.
param
derGauge The derived gauge.
param
trigger The threshold/string (depending on the monitor type) that triggered the notification.



    /*
     * ------------------------------------------
     *  CONSTRUCTORS
     * ------------------------------------------
     */
    
                                                                                      
              
                                       
        
        super(type, source, sequenceNumber, timeStamp, msg);
        this.observedObject = obsObj;
        this.observedAttribute = obsAtt;
        this.derivedGauge = derGauge;
        this.trigger = trigger;
    
Methods Summary
public java.lang.ObjectgetDerivedGauge()
Gets the derived gauge of this statistic monitor notification.

return
The derived gauge.

 
        return derivedGauge;
    
public java.lang.StringgetObservedAttribute()
Gets the observed attribute of this statistic monitor notification.

return
The observed attribute.

 
        return observedAttribute;
    
public javax.management.ObjectNamegetObservedObject()
Gets the observed object of this statistic monitor notification.

return
The observed object.

 
        return observedObject;
    
public java.lang.ObjectgetTrigger()
Gets the threshold/string (depending on the monitor type) that triggered off this statistic monitor notification.

return
The trigger.

 
        return trigger;