- 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)
14 lines
546 B
TypeScript
14 lines
546 B
TypeScript
import { integer, sqliteTable, text } from "drizzle-orm/sqlite-core";
|
|
|
|
export const linuxTcpSocketStats = sqliteTable("linux_tcp_socket_stats", {
|
|
ts: integer("ts").primaryKey(),
|
|
socketsUsed: integer("sockets_used").notNull(),
|
|
tcpInuse: integer("tcp_inuse").notNull(),
|
|
tcpOrphan: integer("tcp_orphan").notNull(),
|
|
tcpTw: integer("tcp_tw").notNull(),
|
|
tcpAlloc: integer("tcp_alloc").notNull(),
|
|
tcpMemPages: integer("tcp_mem_pages").notNull(),
|
|
parseOk: integer("parse_ok").notNull(),
|
|
rawSockstat: text("raw_sockstat").notNull(),
|
|
});
|