- Fix hermes invocation: 'hermes -q' → 'hermes chat -q' with proper flags
- Replace fragile string.includes('PASS') with llmExtract judge
(previous false positive: matched '--pass-session-id' in usage text)
小橘 🍊(NEKO Team)
15 lines
493 B
SQL
15 lines
493 B
SQL
-- Migration: 0001_init
|
|
-- Creates the linux_tcp_socket_stats table for linux-tcp-socket-stats sense.
|
|
|
|
CREATE TABLE IF NOT EXISTS linux_tcp_socket_stats (
|
|
ts INTEGER PRIMARY KEY,
|
|
sockets_used INTEGER NOT NULL,
|
|
tcp_inuse INTEGER NOT NULL,
|
|
tcp_orphan INTEGER NOT NULL,
|
|
tcp_tw INTEGER NOT NULL,
|
|
tcp_alloc INTEGER NOT NULL,
|
|
tcp_mem_pages INTEGER NOT NULL,
|
|
parse_ok INTEGER NOT NULL,
|
|
raw_sockstat TEXT NOT NULL
|
|
);
|