File: monitor.h

package info (click to toggle)
cheops 0.61-12
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,264 kB
  • ctags: 1,312
  • sloc: ansic: 12,730; sh: 155; makefile: 152
file content (63 lines) | stat: -rw-r--r-- 1,788 bytes parent folder | download | duplicates (4)
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
56
57
58
59
60
61
62
63
/*
 * Cheops Network User Interface
 *
 * Copyright (C) 1999, Adtran, Inc.
 * 
 * Distributed under the terms of the GNU GPL
 *
 */

#define MONITOR_NOT_MONITORED 0
#define MONITOR_MONITORED 1
#define MONITOR_NOMINAL   2
#define MONITOR_WARNING  3
#define MONITOR_CRITICAL 4

struct monitor {
	/* A monitor plugin */
	char service[40];
	char label[40];
	int default_level;
	void (*monitor)(struct net_object *no, int status, void **data, void *setupdata);
	void (*cleanup)(void **data);
	void *(*setup)(void *data, struct net_object *no);
	void (*setup_cleanup)(void *data);
	char *(*setup2str)(void *data);
	void *(*str2setup)(char *buf, struct net_object *no);
	void (*timeout_callback)(struct net_object *no, void **data, int expired);
};

struct monitor_tag {
	struct monitor_tag *next;
	struct net_object *no;
	struct net_page *tonp;
	struct monitor *mon;
	int error_level;
	int level;
	int failures;
	int maxfailures;
	int frequency;
	int id;
	int tid;
	char lastmsg[256];
	void *data;
	void *setupdata;
};

/* Provided by network.c */
extern void (*ping_callback)(struct net_object *no);

extern void show_monitor_box(struct net_object *no);
extern void monitor_report(struct net_object *no, struct net_page *np, int status, char *service, char *msg);
extern void init_monitoring();
extern int try_to_connect(int s, unsigned int ip, unsigned short port, 
			  void *data, void (*callback)(void *, int, GdkInputCondition));
extern void monitor_update(struct net_object *no);
extern void destroy_tag(struct monitor_tag *mt);
extern int wait_for_data(int s, void (*callback)(void *, int, GdkInputCondition), void *data);
extern void cancel_data(int);

extern int get_socket_error(int);
extern int connection_timeout;
extern int option_immediate_retry;
extern int option_goto_failure;