diff options
| -rw-r--r-- | README.md | 4 | ||||
| -rw-r--r-- | alert.c | 0 | ||||
| -rw-r--r-- | alert.h | 0 | ||||
| -rw-r--r-- | monitor.h | 4 |
4 files changed, 4 insertions, 4 deletions
@@ -13,8 +13,8 @@ make ## Features (TODO) [X] Current service status table - [ ] Outage events table - [ ] Uptime counter (total, month) + [X] Incident event table + [X] Uptime counter (total, month) [ ] Alerts [ ] Centralised config @@ -7,7 +7,7 @@ typedef enum { TYPE_REACH, TYPE_DNS, TYPE_WEB -} type_t; +} mon_type_t; typedef enum { STATUS_DOWN, @@ -20,7 +20,7 @@ typedef struct { } event_t; typedef struct { - type_t type; + mon_type_t type; char *name; char *target; |
