feat: scaffold agentmon services and k8s deploy

Adds Go microservices (ingest-gateway, event-processor, query-api, web-ui), NATS+Postgres wiring, initial schema/init job, ingress manifests for LAN+tailnet, and a multi-arch image build script.
This commit is contained in:
William Valentin
2026-01-17 01:06:57 -08:00
parent a584d7e274
commit 256b841cbf
28 changed files with 1554 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
-- Minimal schema v1
create table if not exists events (
event_id text primary key,
ts timestamptz not null,
type text not null,
session_id text null,
run_id text null,
trace_id text null,
span_id text null,
parent_span_id text null,
source_framework text null,
client_id text null,
payload jsonb not null
);
create index if not exists events_ts_idx on events (ts);
create index if not exists events_session_idx on events (session_id);
create index if not exists events_run_idx on events (run_id);
create index if not exists events_type_ts_idx on events (type, ts);