Skip to main content

Module sqlite_sink

Module sqlite_sink 

Source
Expand description

SQLite event sink — writes proxy events to the local SQLite store.

Converts ProxyEvent variants into store operations:

  • Request → insert into requests table + update session counters
  • SessionStart → insert into sessions table
  • SessionEnd → update ended_at on the session
  • Heartbeat → ignored (not stored locally)

Structs§

SqliteSink
Event sink that writes to the SQLite store.