archivebox.cli.archivebox_process
archivebox process
Manage Process records (system-managed, mostly read-only).
Process records track executions of binaries during extraction. They are created automatically by the system and are primarily for debugging.
Actions: list - List Processes as JSONL (with optional filters)
Examples: # List all processes archivebox process list
# List processes by binary
archivebox process list --binary-name=chrome
# List recent processes
archivebox process list --limit=10
Module Contents
Functions
List Processes as JSONL with optional filters. |
|
Manage Process records (read-only, system-managed). |
|
List Processes as JSONL. |
Data
API
- archivebox.cli.archivebox_process.list_processes(binary_name: str | None = None, machine_id: str | None = None, limit: int | None = None) int[source]
List Processes as JSONL with optional filters.
Exit codes: 0: Success (even if no results)