I have seen several Java web application projects adding some JSP or servlet to visualize status information such as:

  • JVM info (version, free memory, PermGen statistics, etc.)
  • System status (OS, username, system time, locale, encoding, environment variables, etc.)
  • App status (custom...)

Do you know if there is any interesting reusable code that one could add to his/her web projects?

If there is any open-source project out there, we could use it and also contribute with more features (i.e. in our case we'd love also to retrieve the Spring context to generate a report about each bean's configuration).

Thanks,

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

JavaMelody is a great open source library that will accomplish most of what you are asking for with only a few config lines in your web.xml file. It provides current and historic info of system resources, application configuration, and hit counts and time spent on jsp pages, http requests, sql queries, ehcache etc. It shows current threads, requests, sessions, and error summaries. You can probably extend it to add spring configuration information.

JaMon was another one I tried, but it was not as easy to drop in as JavaMelody and didn't provide as much information. JavaMelody is built much better than it. I was able to drop it in and be monitoring everything in 5 minutes. I only had to add one more Hibernate config add in order to monitor all my sql queries and then I was done. It's quite a gem and I think you'll find it to be extremely helpful. I've observed that it's overhead is very minimal and can be used in production environments.

link|improve this answer
Thanks Nealvs. this is the best match for the problem stated in the question. – Sebastian Dec 5 '11 at 15:34
feedback

For Tomcat, I use lambda probe to display this basic information. Probably you could take the code and embed it into your own application.

link|improve this answer
feedback

What you really need is "JMX web console". Search quoted string and see a lot of results.

I personally used jmxtools.jar - the ready to use web app that provides you access to all JMX resources. Take a look here: http://java.sun.com/developer/technicalArticles/J2SE/jmx.html

link|improve this answer
Thanks Alex. Indeed, JMX is an alternative to a simple HTTP page. However, the main concern expressed in the question is still open: is there any code that already pulls this information? For JMX, that would be a set of nice and reusable manged beans exporting this information. – Sebastian Nov 17 '11 at 14:01
feedback

Your Answer

 
or
required, but never shown

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