I'm searching free tools for monitor tomcat (traffic, memory usage, threads, requests, CPU, logs,...). I'm currently using lambdaprobe on Tomcat 5.5.x, but it seems that is no more developed (or not? the site lambdaprobe.org is always down for me...). Has someone good experiences to share? In lambdaprobe there are some info available only if tomcat is instrumented with JMX. Well, JMX is something of strange and mysterious for me. Is a good solution in a production server? It's worth to spend my (little) time to learn it?
closed as not constructive by Will♦ Sep 14 '11 at 15:21
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Try JavaMelody, http://javamelody.googlecode.com It is opensource and active. "traffic, memory usage, threads, requests, CPU, logs, ...":
And it is perfect in a production server. |
|||||||||||||||||
|
|
http://tomcat.apache.org/tomcat-5.5-doc/monitoring.html Yes I would recommend looking at JMX. You can use the jconsole application to have a look at most of the stats you require straight away. The link above will help explain it better than I ever can in a few sentences. run jconsole it should come with your JDK. |
|||||
|
|
The already suggested Lamba Probe is a dead project. There is a fork however: Psi Probe. It's not the perfect monitoring tool but is is a very good replacement for the default Tomcat Manager. |
|||
|
|
|
VisualVM allows you to deep dive into problem stops; and my present company uses zabbix for general system monitoring. |
|||
|
|
Take a look at Cacti and setup SNMP in your JVM , then take a look at this template. Using this method on our tomcat and resin servers and working very well. Also made a custom template to monitor the permgen space as well but I have not yet posted it anywhere. |
|||||
|
|
I've used Nagios in the past and love it. Nagios has a lot of features including a simple plugin design (in case you need to create something specific for your needs). Worth a look at least. |
|||
|
|
|
I have been very happy monitoring Tomcat with Hyperic HQ. Even if developing Hyperic HQ plugins has an initial cost, we got familiar with it and developed many JMX Mbeans + associated Hyperic plugins for the needs we had like Jakarta DBCP datasource , util.concurrent ExecutorService / ThreadPoolExecutor, JMS connections, CXF, EhCache and also monitoring business application code with an @Profiled annotation to declaratively monitor key business operations. We packaged all these JMX extras with Spring xml namespace based configuration, monitoring jsps and Hyperic plugins at http://code.google.com/p/xebia-france/wiki/XebiaManagementExtras . To ease integration / modification of this code, we used the business friendly Apache Software License, a Google Code project and deployed the artifact on Maven Central Repository. Hope this helps, Cyrille (Xebia) |
||||
|
|
|
Throwing one more tool into the mix... jmxtrans. This one is more focused on taking the output and graphing it, but it is fully pluggable if you'd like to do other things with the data. |
|||
|
|
|
AppPerfect Agentless Monitor is well suited in this case. It supports most J2EE application servers such as BEA WebLogic 7.x/8.x/9.x/10.x, IBM WebSphere 5.x/6.x, Apache Tomcat 5.x, JBoss 3.2.x/4.x/5.x, Macromedia JRun 4.x, SunOne 7.x/8.x, Jetty 6.x and Oracle Application Server 10.1.x. |
|||
|
|
|
Check out Tcat Server, which provides Tomcat specific diagnostics. The product is free to use for developers and can be downloaded from www.mulesoft.com. You might also want to check out my blog post on monitoring vs. diagnostics for Tomcat here: http://blogs.mulesoft.org/2009/09/general-purpose-monitoring-vs-deep-diagnostics-choosing-the-right-tool/ |
|||
|
|
|
Check out the eG Java Monitor - http://www.eginnovations.com/web/java-monitoring.htm It can monitor your JVM in great detail, provide historical stats, and also has custom monitors for Tomcat, JBoss, WebLogic etc. |
|||
|
|
|
I have tried JavaMelody, it is best. Simple, and useful. Now I am looking for the monitor tools, which can detect the failure of tomcat services, and start it again automatically. |
|||
|
|
|
I recommend the built-in JVM-SNMP-Agent: Simply add "-Dcom.sun.management.config.file=/your/path/to/snmp.properties" to your JVM starting parameters and setup /your/path/to/snmp.properties as follows:
You can use
for example to query the jvmMemoryHeapUsed Thanks to this Blogpost by Roger Keays |
||||
|
|
|
You should give OpenNMS a try. It has the ability to connect to Tomcat with JMX. It also uses Tomcat itself and has a lot of features. |
|||
|
|
|
With Nagios you can monitor not only jmx (with jmx-plugin), but sql selects to database, health of host in general so on. It is web-console with own database, notification by e-mails... Also it is free. |
|||
|
|
JMX == good. Why? Reduces logging and allows you to monitor continuous values. A lot of times, watching the graph of a JMX counter can directly indicate what is going on. – Scoobie Feb 22 '11 at 21:28