Can we use JMX for Alerts/Notification - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T09:10:16Z http://stackoverflow.com/feeds/question/303613 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/303613/can-we-use-jmx-for-alerts-notification 2 Can we use JMX for Alerts/Notification Anurag 2008-11-19T22:25:08Z 2009-04-26T12:54:33Z <p>Here are the specs that I'm trying to implement in a nutshell:</p> <p>1) Some Alerts have to be sent on certain events in the application.</p> <p>2) These Alerts have Users subscribe to them.</p> <p>3) And the Users have set their own Notification preferences (e.g. Email and/or SMS).</p> <p>I have not been able to find an open source solution in Java so far.</p> <p>Is JMX Notifications an option? The more I read about JMX, the more I feel that it is trying to achieve something different that my problem.</p> <p>Any help would be useful.</p> http://stackoverflow.com/questions/303613/can-we-use-jmx-for-alerts-notification/303698#303698 0 Answer by eishay for Can we use JMX for Alerts/Notification eishay 2008-11-19T22:51:36Z 2008-11-19T22:51:36Z <p>Do you mean JMS (instead of JMX)? JMS is an messaging API while JMX is a monitoring/administration API. Using JMS as the back end is a good way to implement the back-end messages, it will take care of decoupaging, load balancing, and persistency. But you still have to have a component that receives the messages and send them on to the user.</p> http://stackoverflow.com/questions/303613/can-we-use-jmx-for-alerts-notification/303748#303748 0 Answer by fawce for Can we use JMX for Alerts/Notification fawce 2008-11-19T23:08:52Z 2008-11-19T23:08:52Z <p>If you mean JMX, there is a JBoss/Nagios bridge called <a href="http://monju.sourceforge.net" rel="nofollow">monju</a> that has a generlized JMX hook.</p> http://stackoverflow.com/questions/303613/can-we-use-jmx-for-alerts-notification/303807#303807 3 Answer by Will Hartung for Can we use JMX for Alerts/Notification Will Hartung 2008-11-19T23:32:42Z 2008-11-19T23:32:42Z <p>JMX can be a mechanism to solve this problem, but it's not the complete solution.</p> <p>JMX provides facilities and services to your programs to allow clients to access monitoring data as well as allowing clients to make control calls to the application.</p> <p>As you mentioned, one aspect of JMX is the notification system. What this system provides is infrastructure to make it easy for your program to make alerts and notifications available to clients, and modern JVMs also provide a free JMX server to allow client to connect to your application remotely and subscribe to those events.</p> <p>But its one thing to make a JMX alert, and it's another thing completely to act on it.</p> <p>What you would need to do is have some JMX client, somewhere, "subscribe" to the JMX notifications of your programs, and then THAT client can act upon those notification by sending emails, or whatever.</p> <p>The JMX client can be a remote client talking to your application via TCP, or it can be an internal JMX client within the program, running in a thread, say, and it can act on the notifications.</p> <p>So, basically, JMX provides the plumbing and infrastructure for what you want to do, but doesn't take it "the last mile" to converting alerts in to emails.</p> <p>As @fawce mentioned, there are some "generic" JMX clients of various sophistication that can act upon JMX data and may do what you want (I'm not familiar with them, so I can not say first hand), or you can code your own system to monitor the JMX data.</p> http://stackoverflow.com/questions/303613/can-we-use-jmx-for-alerts-notification/422281#422281 0 Answer by stili for Can we use JMX for Alerts/Notification stili 2009-01-07T21:53:49Z 2009-01-07T21:53:49Z <p>I would suggest using JMX notifications and SNMP which should support your scenario, 2) and 3) being covered by the SNMP software.</p> <p>You could also code it in Java yourself as long as you have access to a SMS gateway with some API. Using javax.mail is straightforward as long as you have access to a SMTP host allowing anonymous access. A flexible publish-subscribe mechanism for 2) can be used to connect 1) and 3).</p> http://stackoverflow.com/questions/303613/can-we-use-jmx-for-alerts-notification/790807#790807 -1 Answer by suresh for Can we use JMX for Alerts/Notification suresh 2009-04-26T12:54:33Z 2009-04-26T12:54:33Z <p>hi Anurag,</p> <p>i also has the same issue like yours</p> <p>can you please share your solution with me </p> <p>thanks </p> <p>Suresh</p>