2017-05-19 22:22:40 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* DOWNTIME.H - Header file for scheduled downtime functions
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* License:
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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, write to the Free Software
|
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
|
2017-05-19 23:37:19 +02:00
|
|
|
#ifndef NAGIOS_DOWNTIME_H_INCLUDED
|
|
|
|
#define NAGIOS_DOWNTIME_H_INCLUDED
|
2017-05-19 22:22:40 +02:00
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "objects.h"
|
2017-05-19 23:37:19 +02:00
|
|
|
#ifndef NSCGI
|
|
|
|
#include "nagios.h"
|
|
|
|
#endif
|
2017-05-19 22:22:40 +02:00
|
|
|
|
|
|
|
NAGIOS_BEGIN_DECL
|
|
|
|
|
|
|
|
/* SCHEDULED_DOWNTIME_ENTRY structure */
|
2017-05-19 23:37:19 +02:00
|
|
|
typedef struct scheduled_downtime {
|
2017-05-19 22:22:40 +02:00
|
|
|
int type;
|
|
|
|
char *host_name;
|
|
|
|
char *service_description;
|
|
|
|
time_t entry_time;
|
|
|
|
time_t start_time;
|
|
|
|
time_t flex_downtime_start; /* Time the flexible downtime started */
|
|
|
|
time_t end_time;
|
|
|
|
int fixed;
|
|
|
|
unsigned long triggered_by;
|
|
|
|
unsigned long duration;
|
|
|
|
unsigned long downtime_id;
|
|
|
|
int is_in_effect;
|
|
|
|
int start_notification_sent;
|
|
|
|
char *author;
|
|
|
|
char *comment;
|
|
|
|
unsigned long comment_id;
|
2017-05-19 23:37:19 +02:00
|
|
|
#ifndef NSCGI
|
2017-05-19 22:22:40 +02:00
|
|
|
int start_flex_downtime;
|
|
|
|
int incremented_pending_downtime;
|
|
|
|
#endif
|
2017-05-19 23:37:19 +02:00
|
|
|
struct scheduled_downtime *next;
|
|
|
|
#ifndef NSCGI
|
|
|
|
struct timed_event *start_event, *stop_event;
|
|
|
|
#endif
|
|
|
|
struct scheduled_downtime *prev;
|
2017-05-19 22:22:40 +02:00
|
|
|
} scheduled_downtime;
|
|
|
|
|
2017-05-19 23:37:19 +02:00
|
|
|
extern struct scheduled_downtime *scheduled_downtime_list;
|
2017-05-19 22:22:40 +02:00
|
|
|
|
|
|
|
|
2017-05-19 23:37:19 +02:00
|
|
|
int initialize_downtime_data(void); /* initializes scheduled downtime data */
|
|
|
|
int cleanup_downtime_data(void); /* cleans up scheduled downtime data */
|
2017-05-19 22:22:40 +02:00
|
|
|
|
2017-05-19 23:37:19 +02:00
|
|
|
#ifndef NSCGI
|
2017-05-19 22:22:40 +02:00
|
|
|
int add_new_downtime(int, char *, char *, time_t, char *, char *, time_t, time_t, int, unsigned long, unsigned long, unsigned long *, int, int);
|
|
|
|
int add_new_host_downtime(char *, time_t, char *, char *, time_t, time_t, int, unsigned long, unsigned long, unsigned long *, int, int);
|
|
|
|
int add_new_service_downtime(char *, char *, time_t, char *, char *, time_t, time_t, int, unsigned long, unsigned long, unsigned long *, int, int);
|
|
|
|
|
|
|
|
int delete_host_downtime(unsigned long);
|
|
|
|
int delete_service_downtime(unsigned long);
|
|
|
|
int delete_downtime(int, unsigned long);
|
|
|
|
|
|
|
|
int schedule_downtime(int, char *, char *, time_t, char *, char *, time_t, time_t, int, unsigned long, unsigned long, unsigned long *);
|
|
|
|
int unschedule_downtime(int, unsigned long);
|
|
|
|
|
|
|
|
int register_downtime(int, unsigned long);
|
2017-05-19 23:37:19 +02:00
|
|
|
int handle_scheduled_downtime(struct scheduled_downtime *);
|
2017-05-19 22:22:40 +02:00
|
|
|
int handle_scheduled_downtime_by_id(unsigned long);
|
|
|
|
|
2017-05-19 23:37:19 +02:00
|
|
|
int check_pending_flex_host_downtime(struct host *);
|
|
|
|
int check_pending_flex_service_downtime(struct service *);
|
|
|
|
int is_host_in_pending_flex_downtime(struct host *);
|
|
|
|
int is_service_in_pending_flex_downtime(struct service *);
|
2017-05-19 22:22:40 +02:00
|
|
|
|
|
|
|
int check_for_expired_downtime(void);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int add_host_downtime(char *, time_t, char *, char *, time_t, time_t, time_t, int, unsigned long, unsigned long, unsigned long, int, int);
|
|
|
|
int add_service_downtime(char *, char *, time_t, char *, char *, time_t, time_t, time_t, int, unsigned long, unsigned long, unsigned long, int, int);
|
|
|
|
|
|
|
|
/* If you are going to be adding a lot of downtime in sequence, set
|
|
|
|
defer_downtime_sorting to 1 before you start and then call
|
|
|
|
sort_downtime afterwards. Things will go MUCH faster. */
|
|
|
|
|
|
|
|
extern int defer_downtime_sorting;
|
|
|
|
int add_downtime(int, char *, char *, time_t, char *, char *, time_t, time_t, time_t, int, unsigned long, unsigned long, unsigned long, int, int);
|
|
|
|
int sort_downtime(void);
|
|
|
|
|
2017-05-19 23:37:19 +02:00
|
|
|
struct scheduled_downtime *find_downtime(int, unsigned long);
|
|
|
|
struct scheduled_downtime *find_host_downtime(unsigned long);
|
|
|
|
struct scheduled_downtime *find_service_downtime(unsigned long);
|
2017-05-19 22:22:40 +02:00
|
|
|
|
|
|
|
void free_downtime_data(void); /* frees memory allocated to scheduled downtime list */
|
|
|
|
|
|
|
|
int delete_downtime_by_hostname_service_description_start_time_comment(char *, char *, time_t, char *);
|
|
|
|
|
|
|
|
NAGIOS_END_DECL
|
|
|
|
#endif
|