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