monitoring & alerts for a j2se application - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T10:12:37Z http://stackoverflow.com/feeds/question/817065 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/817065/monitoring-alerts-for-a-j2se-application 0 monitoring & alerts for a j2se application Daphna Shezaf 2009-05-03T13:32:24Z 2009-05-04T22:41:00Z <p>I am designing a J2SE application, and looking for a solution for monitoring and alerts. The requirements are:</p> <ol> <li>Objects can report their status and issue alerts when they have problems.</li> <li>Calling some pre-defined methods on specific objects (e.g. to dump their state).</li> <li>Monitoring JVM health, especially memory usage.</li> <li>Preferably access all of the above from a remote computer.</li> </ol> <p>What would be the best solution for that? Anything involving JMX?</p> http://stackoverflow.com/questions/817065/monitoring-alerts-for-a-j2se-application/817074#817074 1 Answer by Joachim Sauer for monitoring & alerts for a j2se application Joachim Sauer 2009-05-03T13:38:53Z 2009-05-03T13:38:53Z <p>Yes, you're describing pretty much JMX and MBeans.</p> http://stackoverflow.com/questions/817065/monitoring-alerts-for-a-j2se-application/817081#817081 0 Answer by Adinochestva for monitoring & alerts for a j2se application Adinochestva 2009-05-03T13:42:53Z 2009-05-03T13:42:53Z <p>you can use <a href="http://www.gurock.com/products/smartinspect/" rel="nofollow">smartinspect</a> , you can log whatever u want in ur app, objects , picture , ... and you can also have access to them from remote computer</p> http://stackoverflow.com/questions/817065/monitoring-alerts-for-a-j2se-application/817100#817100 1 Answer by Brian Agnew for monitoring & alerts for a j2se application Brian Agnew 2009-05-03T13:49:27Z 2009-05-03T13:49:27Z <p>See <a href="http://java.sun.com/developer/technicalArticles/J2SE/jconsole.html" rel="nofollow">JConsole</a>, which is packaged with the Java install. This allows you to inspect JMX-available statistics, whether on local or remote machines. You need to start up your monitored VM with the appropriate options (detailed in the linked article) and then simply start JConsole and point to the required VM (you can secure via authentication if you require).</p> <p>JConsole can inspect all the standard JMX beans, plus any that you create/register. The GUI will allow you to call exposed methods, and chart statistics etc.</p> http://stackoverflow.com/questions/817065/monitoring-alerts-for-a-j2se-application/817238#817238 1 Answer by Thorbjørn Ravn Andersen for monitoring & alerts for a j2se application Thorbjørn Ravn Andersen 2009-05-03T14:45:00Z 2009-05-03T14:45:00Z <p>If you use Java 6u10 or later, also see VisualVM (jvisualvm.exe in the JDK) which can do all kinds of interesting things, including (with a plugin) the same things jconsole can.</p> <p>It is really great for inspecting.</p> http://stackoverflow.com/questions/817065/monitoring-alerts-for-a-j2se-application/820641#820641 0 Answer by Heiko Rupp for monitoring & alerts for a j2se application Heiko Rupp 2009-05-04T15:44:36Z 2009-05-04T15:44:36Z <p>If you want to throw alerts into the mix too, have a look at Jopr (<a href="http://www.jboss.org/jopr/" rel="nofollow">http://www.jboss.org/jopr/</a>)</p> http://stackoverflow.com/questions/817065/monitoring-alerts-for-a-j2se-application/822457#822457 0 Answer by Kire Haglin for monitoring & alerts for a j2se application Kire Haglin 2009-05-04T22:41:00Z 2009-05-04T22:41:00Z <p>If you want to inspect JMX-data try the Management Console that comes with JRockit Mission Control. It's JConsole/VisualVM on steroids. It's very easy to inspect arrays, maps, Collections, compositeData etc., and add the monitored attributes to a graph or a dial. It's also possible to create trigger alerts.</p> <p>You can download it <a href="http://www.oracle.com/technology/products/jrockit/missioncontrol/index.html" rel="nofollow">here</a> for free. </p> <p><img src="http://www.oracle.com/technology/products/jrockit/missioncontrol/new%5Fand%5Fnoteworthy/3.1.0/images/console/mbean%5Fdrilling.png" alt="alt text" /></p>