[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[arfnet2-status PATCH 00/23] First release
[Thread Prev] | [Thread Next]
[Date Prev] | [Date Next]
- Subject: [arfnet2-status PATCH 00/23] First release
- From: arf20 <arf20@xxxxxxxxx>
- Reply-to: development@xxxxxxxxx
- Date: Tue, 2 Dec 2025 23:11:08 +0100
- To: development@xxxxxxxxx
- Cc: arf20 <aruizfernandez05@xxxxxxxxx>
MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: arf20 <aruizfernandez05@xxxxxxxxx> First release of arfnet2-status, currently up at status.arf20.com arf20 (23): Add template C webapp HTTP monitoring config and readme features check reachability and dns wip: incidents and uptime load events wip uptime fix event time parsing (ISO 8601) implemented uptime % timeline (fix: use events!) redo timeline implemented commiting events to disk unified config, refactor, for alerts Alert files WIP api alert REST POST API alert working email alerts working optional smtp user/pass, print smtp status fix config config key typo aaaa fix config json conflict and variable samples .gitignore | 2 + Makefile | 14 ++ README.md | 17 ++ alert.c | 241 +++++++++++++++++++++ alert.h | 10 + check.c | 135 ++++++++++++ check.h | 10 + config.c | 137 ++++++++++++ config.h | 44 ++++ events.log | 80 +++++++ index.htm.tmpl | 61 ++++++ main.c | 121 +++++++++++ monitor.c | 513 ++++++++++++++++++++++++++++++++++++++++++++ monitor.cfg.example | 37 ++++ monitor.h | 41 ++++ 15 files changed, 1463 insertions(+) create mode 100644 .gitignore create mode 100644 Makefile create mode 100644 alert.c create mode 100644 alert.h create mode 100644 check.c create mode 100644 check.h create mode 100644 config.c create mode 100644 config.h create mode 100644 events.log create mode 100644 index.htm.tmpl create mode 100644 main.c create mode 100644 monitor.c create mode 100644 monitor.cfg.example create mode 100644 monitor.h -- 2.47.3