feat: overhaul hp_agent lifecycle handling

* Added backoff and liveness probes for better management
* Switched IPC to a simple text based system
* Lookups don't directly touch the agent now
* Use the database as a source of truth
This commit is contained in:
Aarnav Tale
2025-08-19 00:10:06 -04:00
parent a4a037ed68
commit 8cb91cd45b
12 changed files with 619 additions and 512 deletions
+5
View File
@@ -0,0 +1,5 @@
CREATE TABLE `host_info` (
`host_id` text PRIMARY KEY NOT NULL,
`payload` text,
`updated_at` integer
);