1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
/*----------------------------------------------------------------------------*/
/* Xymon monitor library. */
/* */
/* Copyright (C) 2002-2011 Henrik Storner <henrik@storner.dk> */
/* */
/* This program is released under the GNU General Public License (GPL), */
/* version 2. See the file "COPYING" for details. */
/* */
/*----------------------------------------------------------------------------*/
#ifndef __EVENTLOG_H_
#define __EVENTLOG_H_
/* Format of records in the $XYMONHISTDIR/allevents file */
typedef struct event_t {
void *host;
struct htnames_t *service;
time_t eventtime;
time_t changetime;
time_t duration;
int newcolor; /* stored as "re", "ye", "gr" etc. */
int oldcolor;
int state; /* 2=escalated, 1=recovered, 0=no change */
struct event_t *next;
} event_t;
typedef struct eventcount_t {
struct htnames_t *service;
unsigned long count;
struct eventcount_t *next;
} eventcount_t;
typedef struct countlist_t {
void *src; /* May be a pointer to a host or a service */
unsigned long total;
struct countlist_t *next;
} countlist_t;
typedef enum { XYMON_S_NONE, XYMON_S_HOST_BREAKDOWN, XYMON_S_SERVICE_BREAKDOWN } eventsummary_t;
typedef enum { XYMON_COUNT_NONE, XYMON_COUNT_EVENTS, XYMON_COUNT_DURATION } countsummary_t;
typedef int (*f_hostcheck)(char *hostname);
extern char *eventignorecolumns;
extern int havedoneeventlog;
extern void do_eventlog(FILE *output, int maxcount, int maxminutes, char *fromtime, char *totime,
char *pagematch, char *expagematch,
char *hostmatch, char *exhostmatch,
char *testmatch, char *extestmatch,
char *colormatch, int ignoredialups,
f_hostcheck hostcheck,
event_t **eventlist, countlist_t **hostcounts, countlist_t **servicecounts,
countsummary_t counttype, eventsummary_t sumtype, char *periodstring);
#endif
|