vote up 1 vote down star
1

Does anyone know of a system for automatic error reporting in java? We have a server product that is installed on client servers. The idea is that our server would phone home with the details of an error to one of our servers, which then enters a bug in our bug tracker. Preferable, this would happen over http. It wouldn't happen for all exceptions, just the more serious and any that are not otherwise handled.

I'm trying to avoid rolling my own. We'll catch the exceptions ourselves, but I'm hoping this system would handle as much as possible between exception handler and the bug tracker back home.

flag

56% accept rate
Have you checked with clients first? I don't know any single client who would be happy with server software phoning home. Their security teams would get really mad. – Vladimir Dyuzhev Oct 15 '08 at 0:25
Our system does so already, we're just looking for something better. You raise a good point: such a system should be generally be opt-in, depending on the domain. – sblundy Oct 15 '08 at 18:59

2 Answers

vote up 3 vote down

Not conventional, but maybe you could use Log4J appenders to do it.

The SocketAppender allows you to send an event to a remote a log server. You can also communicate via mail using SMTPAppender (a little tricky but easy to implement). I don't know if there is any other appender to communicate with the server via HTTP (you could even implement it if needed, I suppose it is pretty easy).

Lets see if other users at stackoverflow have a better idea.

link|flag
I thought of that, but I was hoping for something more complete – sblundy Oct 14 '08 at 20:35
Actually, I've recently implemented an ExceptionLogger, which is an appender that saves the log into the database (along with NDC context) in case any exception was logged during the processing. Was only couples of hours of work. Instead of DB yours should be doing HTTP request. – Vladimir Dyuzhev Oct 15 '08 at 0:27
vote up 1 vote down

Have a look at SNMP4J. There are quite a lot of system administration tools to aggregate SNMP infomation (ask your systems administrator), and the Simple Network Management Protocol is designed for monitoring.

If you only need errors to be mailed to you you can also build your own framework with JavaMail; it is not that complicated and the boiler plate code can be put outside your business logic.

Maybe your bug tracking systems allows Soap/XML messages; then Axis would be a good fit, although it comes with quite a few dependencies.

link|flag

Your Answer

Get an OpenID
or

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