/* * Copyright (C), 2000-2007 by the monit project group. * All Rights Reserved. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef MONIT_ALERT_H #define MONIT_ALERT_H #include "event.h" /** Default mail from string */ #define ALERT_FROM "monit@$HOST" /** Default mail subject */ #define ALERT_SUBJECT "monit alert -- $EVENT $SERVICE" /** Default mail message */ #define ALERT_MESSAGE "$EVENT Service $SERVICE \r\n"\ "\r\n"\ "\tDate: $DATE\r\n"\ "\tAction: $ACTION\r\n"\ "\tHost: $HOST\r\n"\ "\tDescription: $DESCRIPTION\r\n"\ "\r\n"\ "Your faithful employee,\r\n"\ "monit\r\n" /** * This module is used for event notifications. Users may register * interest for certain events in the monit control file. When an * event occurs this module is called from the event processing * machinery to notify users who have asked to be alerted for * particular events. * * @author Jan-Henrik Haukeland, * @author Martin Pala * @author Christian Hopp * * @version \$Id: alert.h,v 1.24 2007/07/25 12:54:28 hauk Exp $ * @file */ /** * Notify registred users about the event * @param E An Event object * @return If failed, return HANDLER_ALERT flag or HANDLER_PASSED flag if passed */ int handle_alert(Event_T E); #endif