Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Searching a free alert framework for a java application

my first question here :) I'm searching for an alert framework. It should be able to do:

  • sending alerts about multiple channels (E-mail, SMS, Real time monitor)
  • should be easily configured. That means, alerts must be created without programming skills. Maybe in a xml-File or something like that.
  • There must be a configuration file about the specific alerts. This file describe how to react when a specific alert occurs. Who should be notified and which format the alert message must have.
  • must have an API that i can use in a java application.

I've not found something, that is able to do that. I've read, that the JMX Framework is able to do something like that, but I've no idea how. I would be happy about some ideas :)

like image 521
itsme Avatar asked Aug 31 '10 07:08

itsme


1 Answers

The easiest is to use a logging framework. Several exists.

The most actively maintained is logback, where you might find the SMTPAppender an interesting starting point.

like image 126
Thorbjørn Ravn Andersen Avatar answered Sep 27 '22 23:09

Thorbjørn Ravn Andersen