- Add esbuild build script to package.json - Add .gitignore for dist/ - Remove stale tsc-generated .js files (now bundled) - Include sense files generated by workflow run (hermes-gateway-health update, worker-process-metrics) - Clean up nerve.yaml (remove deleted workflows, migrate reflexes to interval)
12 lines
370 B
SQL
12 lines
370 B
SQL
-- Migration: 0001_init
|
|
-- Creates the worker_process_metrics table for worker-process-metrics sense.
|
|
|
|
CREATE TABLE IF NOT EXISTS worker_process_metrics (
|
|
ts INTEGER PRIMARY KEY,
|
|
pid INTEGER NOT NULL,
|
|
uptime_sec REAL NOT NULL,
|
|
heap_used_mb REAL NOT NULL,
|
|
rss_mb REAL NOT NULL,
|
|
external_mb REAL NOT NULL
|
|
);
|