blob: f9d44580dad09e18ade1a57846fad1ccab52d82d (
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 *monitor_generate_status_html();
void monitor_check();
#endif /* _MONITOR_H */
|