blob: 198908e7688a679f0b330cbbf0881921129c2a92 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _MONITOR_H
#define _MONITOR_H
int monitor_init(const char *cfg_file, const char *log_file);
const char *monitor_generate_status_html();
const char *monitor_generate_incidents_html();
void monitor_check();
void monitor_update_events();
#endif /* _MONITOR_H */
|