monitoring & alerts for a j2se application - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T10:12:37Zhttp://stackoverflow.com/feeds/question/817065http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/817065/monitoring-alerts-for-a-j2se-application0monitoring & alerts for a j2se applicationDaphna Shezaf2009-05-03T13:32:24Z2009-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#8170741Answer by Joachim Sauer for monitoring & alerts for a j2se applicationJoachim Sauer2009-05-03T13:38:53Z2009-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#8170810Answer by Adinochestva for monitoring & alerts for a j2se applicationAdinochestva2009-05-03T13:42:53Z2009-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#8171001Answer by Brian Agnew for monitoring & alerts for a j2se applicationBrian Agnew2009-05-03T13:49:27Z2009-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#8172381Answer by Thorbjørn Ravn Andersen for monitoring & alerts for a j2se applicationThorbjørn Ravn Andersen2009-05-03T14:45:00Z2009-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#8206410Answer by Heiko Rupp for monitoring & alerts for a j2se applicationHeiko Rupp2009-05-04T15:44:36Z2009-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#8224570Answer by Kire Haglin for monitoring & alerts for a j2se applicationKire Haglin2009-05-04T22:41:00Z2009-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>