Build a SQL-queryable private evidence warehouse that fits on your laptop — fully auditable without IT support and with little to no human intervention.
surveilr is a single binary that runs securely on Windows, Linux, and macOS. Your data stays private — only shared when you allow it.
Every feature designed to make evidence surveillance, compliance verification, and data aggregation your default workflow.
Most logging optimizes for writing and punishes querying. Surveilr flips the script with SQL-first Contextual Unified Activity Records — one context-rich record per request, queryable like data, not text. AI-ready by design.
-- Show all checkout failures for premium users
-- in the last hour with feature flag X enabled
SELECT request_id, user_id, error_code, duration_ms
FROM activity_record
WHERE service = 'checkout'
AND status_code >= 400
AND subscription = 'premium'
AND time > datetime('now', '-1 hour')
ORDER BY duration_ms DESC; A durable, inspectable message queue built on SQLite — no external broker required. File drops and IMAP as ingress, SQL views as queue semantics, and optional SQS-compatible API.
-- Receive next visible message from control-evidence queue
SELECT message_id, topic, payload, received_at
FROM queue_view
WHERE queue_name = 'control-evidence'
AND visible_at <= datetime('now')
AND NOT acknowledged
ORDER BY received_at ASC
LIMIT 1; From security monitoring to compliance auditing, healthcare to finance — all built with pre-configured Patterns.
Collect, analyze, and audit security evidence across your entire infrastructure.
HIPAA-ready evidence collection for healthcare organizations and systems.
SOX compliance and financial regulatory evidence management.
Easy answers to the toughest questions. Have more? Visit our Help Desk
Ready to start using the Resource Surveillance and Integration Engine? Get started with surveilr today.