blob: 8c2529e4794fc67ee9058c643a0e7011ebc01ad4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#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();
#endif /* _MONITOR_H */
|