alarm_checks.h

Go to the documentation of this file.
00001 /*
00002  * $Id$
00003  *
00004  * SNMPStats Module 
00005  * Copyright (C) 2006 SOMA Networks, INC.
00006  * Written by: Jeffrey Magder (jmagder@somanetworks.com)
00007  *
00008  * This file is part of Kamailio, a free SIP server.
00009  *
00010  * Kamailio is free software; you can redistribute it and/or modify it
00011  * under the terms of the GNU General Public License as published by
00012  * the Free Software Foundation; either version 2 of the License, or
00013  * (at your option) any later version
00014  *
00015  * Kamailio is distributed in the hope that it will be useful, but
00016  * WITHOUT ANY WARRANTY; without even the implied warranty of
00017  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00018  * General Public License for more details.
00019  *
00020  * You should have received a copy of the GNU General Public License
00021  * along with this program; if not, write to the Free Software
00022  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
00023  * USA
00024  *
00025  * History:
00026  * --------
00027  * 2006-11-23 initial version (jmagder)
00028  *
00029  * This file groups together alarm checking and handling
00030  */
00031 
00039 #ifndef _SNMPSTATS_ALARM_AGENT_
00040 #define _SNMPSTATS_ALARM_AGENT_
00041 
00042 #define ALARM_AGENT_FREQUENCY_IN_SECONDS 5
00043 #define ALARM_AGENT_NAME                 "snmpstats_alarm_agent"
00044 
00048 int check_msg_queue_alarm(int threshold_to_compare_to);
00049 
00052 int check_dialog_alarm(int threshold_to_compare_to);
00053 
00057 void run_alarm_check(unsigned int ticks, void * attr);
00058 
00059 #endif