2 Replies Latest reply on Feb 9, 2004 7:09 AM by gmccreath

    Severity of JMX MonitorNotification

    gmccreath

      All,

      I notice that the MonitorNotification class provides no ability to indicate a severity of a notification. Nor does the standard JMX Monitoring allow for it in any way.

      A bit strange if you ask me, granted that often the purpose of receiving a monitor notification is to tell you of something that someone needs to know about ...

      Or is there something I've missed ....

      Greg.

        • 1. Re: Severity of JMX MonitorNotification

          Severity metadata is supported for Model MBeans, so if your notification source is a model mbean you can describe its notifications and their severity.

          IIRC, this doesn't mean that the severity is attached as part of the notification though. The recipient of the notification would have to connect to the MBean server and query the notifications metadata about the severity level.

          Of course, your implementation may add any severity value as part of the notification (whether from the MBean's own metadata or from somewhere else). The notification supports an extra UserData field for this purpose (notice that the user data should be serializable though).

          • 2. Re: Severity of JMX MonitorNotification
            gmccreath

            Thanks Juha,

            I figured this would be the approach. However, while JBoss group is busy re-implementing the monitoring scheme for JBoss 3.2.4, perhaps it would be a worthy inclusion.

            For example, AlertListeners could subscribe to a severity level notification.

            Greg.