Kick off (#1)

* Kick off
* Update LICENSE copyright
This commit is contained in:
2026-04-11 13:22:36 +02:00
committed by GitHub
parent 1f1e74c9f8
commit 3882a1941a
76 changed files with 17154 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
-- Hourly aggregated check results for data retention
CREATE TABLE check_results_hourly (
id INTEGER PRIMARY KEY AUTOINCREMENT,
monitor_name TEXT NOT NULL,
hour_timestamp INTEGER NOT NULL,
total_checks INTEGER NOT NULL,
successful_checks INTEGER NOT NULL,
failed_checks INTEGER NOT NULL,
avg_response_time_ms INTEGER,
min_response_time_ms INTEGER,
max_response_time_ms INTEGER
);
CREATE UNIQUE INDEX idx_hourly_monitor_hour ON check_results_hourly(monitor_name, hour_timestamp);