up vote 0 down vote favorite
share [g+] share [fb]

I am designing a J2SE application, and looking for a solution for monitoring and alerts. The requirements are:

  1. Objects can report their status and issue alerts when they have problems.
  2. Calling some pre-defined methods on specific objects (e.g. to dump their state).
  3. Monitoring JVM health, especially memory usage.
  4. Preferably access all of the above from a remote computer.

What would be the best solution for that? Anything involving JMX?

link|improve this question

feedback

8 Answers

up vote 1 down vote accepted

Yes, you're describing pretty much JMX and MBeans.

link|improve this answer
feedback

you can use smartinspect , you can log whatever u want in ur app, objects , picture , ... and you can also have access to them from remote computer

link|improve this answer
feedback

See JConsole, 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).

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.

link|improve this answer
feedback

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.

It is really great for inspecting.

link|improve this answer
feedback

If you want to throw alerts into the mix too, have a look at Jopr (http://www.jboss.org/jopr/)

link|improve this answer
feedback

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.

You can download it here for free.

alt text

link|improve this answer
feedback

If you need a continues monitoring solution, consider Evident ClearStone for Java. With this you can monitor any custom mbeans and also set it up to send you alerts when thresholds are breached.

link|improve this answer
feedback

Check the eG Java Monitoring tool - http://www.eginnovations.com/web/java-monitoring.htm

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.