I want to find or develop an application that can run as a daemon, notify the administrator by email or sms when the Java applications running on a host get any exceptions or errors. I know JVMTI can achieve part of my goal, but it will impact performance of the monitored applications(I don't know how much will it be, it will be acceptable if it's slight), besides it seems to be a troublesom job to develop a JVMTI agent and I'm not sure what would happen if several applications running at the same time using the same agent. Is there any better solutions? Thanks in advance.

link|improve this question
feedback

5 Answers

up vote 1 down vote accepted

One way would be to use a logging system like log4j that publishes all errors occuring on system A to a logging server on system B from which you can monitor the errors occured. This isn't a completely generic solutation however, since only exceptions propagated to log4j (or any other logging system) would be handled - but it may be a good start.

link|improve this answer
Thanks for the advice. What confused me about log4j is that, if the monitor process on the remote system crashed itself, after restarting it, can it still receive logging messages from the log4j clients? As I understand it, there should be a server socket thread or something in the remote monitor process, listening a port and waiting for the log4j, as a client socket to connect. When the server is down, the socket in the log4j client is closed; and when the server is started again, how would the log4j get notified to connect the server without restart the log4j client itself? Thx in advance:-) – user545838 Dec 20 '10 at 3:40
Well, the documentation of log4j said that "If the remote server is down, the logging requests are simply dropped. However, if and when the server comes back up, then event transmission is resumed transparently. This transparent reconneciton is performed by a connector thread which periodically attempts to connect to the server. " That will be fine~ – user545838 Dec 20 '10 at 3:54
feedback

The best solution is to have the Java application send its errors via email/sms. The problem is that programs will generate exceptions and handle correctly in normal operation. You only want particular exception.

Failing this you could write a log reader, which reads the logs of the application. This is tricky to get right, but it can be done.

An application can generate 1000+ exception per days and still be behaving normally because the application knows how to handle these exceptions. e.g. every time a socket connection is closed an exception can be thrown.

link|improve this answer
Thx for your answer. Well, luckily our applications are all using log4j, I'm thinking about using socket appender in log4j to send LoggingEvent objects to the remote listener, which would be easier. Though that can't monitor all the possible exception/errors in the Java apps, it's an acceptable solution. – user545838 Dec 20 '10 at 3:19
feedback

IMO, the best approach is to deploy an external monitoring system. This can:

  • monitor multiple applications
  • monitor infrastructure services
  • monitor network availability and machine accessibility,
  • monitor resources such as processor and file system usage.

Applications can be monitored in a variety of ways, including:

  • by processing log events,
  • by watching for application restarts,
  • by "pinging" the application's web apis to check service liveness, and
  • by using the application's JMX interfaces.

This information can be filtered and prioritized in an intelligent fashion, and critical events can be reported by whatever means is most appropriate.

You don't want individual applications sending emails, because they don't have sufficient information to do a decent job. Furthermore, putting the reporting logic into individual applications is likely to lead to inconsistent implementation, poor configurability, and so on.

link|improve this answer
feedback

There is a nearby alternative to JVMTI : JPDA. This infrastructure allows you to create a remote "debugger" (yes, that's what you're planning to do) using Java code, and connect it to the VM using either local or remote connection.

There will be, like for JVMTI, an overhead to program execution. However, as the Trace.java example shows, it's quite simple to both implement and connect to target VM.

Finally, notice if you want to instrument code run by application server (JBoss, Glassfish, Tomcat, you name it) there are various other means available.

link|improve this answer
feedback

I follow the pattern where every exception gets logged to a table. Then an RSS feed selects from that table. I subscribe to the RSS feed in MS Outlook at work and also on my Android phone with a program called NewsRob. NewsRob let me set my phone to alert me when there is something new.

I blog about how to do this HERE. It is in .net, but you get the idea.

As a related step I found a way to notify myself when something DIDN'T happen. That blog is HERE.

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.