vote up 2 vote down star

Is it possible to subscribe to a url with log4j logs? I understand that many applications do have daily error logs notification by email. But a problem with this approach is that the server that host the application may not provide smtp capability. Thus the RSS subscribe approach seens to be more flexibile.

Anyone know how is this being done ?

flag

0% accept rate

4 Answers

vote up 1 vote down

A pretty simple solution would be to use log4j (or log4net in my case) to persist the logging information to some store (database or file). Then you can easily create a service that exposes that log as an RSS feed.

link|flag
vote up 1 vote down

Simplest thing to do would be to write a custom Log4J appender (not hard, just subclass WriterAppender) which converts LoggingEvents into RSS format, and stores them in a disk file. Each time it gets a new event, load in the existing file, parse it, add the new RSS entry, and write it back. Then use a web server to server up the RSS.

It won't scale well, but then if you have large numbers of log events, then RSS itself is not a good choice.

link|flag
vote up 0 vote down

very nice

link|flag
vote up 3 vote down

A log4j RSS appender has already been written. Have a look at http://code.google.com/p/rssappender/

link|flag

Your Answer

Get an OpenID
or

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