Inspect and manage the background queue that ships session data to the Collector.
IronBee buffers session events in a file-backed queue before sending them to the Collector. This happens automatically in the background and you rarely need to touch it. These commands are for diagnosing or recovering delivery when something stalls (e.g. you were offline and events piled up).
Destructive cleanup of queue state. Use with care:
ironbee queue purge --snapshots # delete all snapshot files, unprocessedironbee queue purge --sessions older-than=14d # remove queue dirs older than 14 days
Option
Description
--snapshots
Delete all snapshot files across sessions without processing them
--sessions <spec>
Remove old queue/ subdirs — older-than=<duration> (e.g. older-than=14d)
--project-dir <dir>
Target a specific project directory
purge permanently drops queued data. --snapshots discards events that were never sent. Reach for drain first if you want to deliver pending events rather than throw them away.
All of these commands are available interactively in the TUI Queue area.