惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

腾讯CDC
博客园 - Franky
MyScale Blog
MyScale Blog
L
LangChain Blog
Martin Fowler
Martin Fowler
Recent Announcements
Recent Announcements
Stack Overflow Blog
Stack Overflow Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 司徒正美
量子位
A
About on SuperTechFans
C
Check Point Blog
大猫的无限游戏
大猫的无限游戏
Last Week in AI
Last Week in AI
小众软件
小众软件
Apple Machine Learning Research
Apple Machine Learning Research
I
InfoQ
V
Visual Studio Blog
Vercel News
Vercel News
B
Blog
爱范儿
爱范儿
aimingoo的专栏
aimingoo的专栏
U
Unit 42

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Turn Anything Into a Queryable SQLite Database
Mukhtar · 2026-05-18 · via DEV Community

grep, jq, ETL, and forensic indexing collapsed into one local SQL primitive


Your audit trail should be a database you own, not a SaaS UI you rent.

surveilr turns your files, emails, and APIs into standard SQLite databases you can query forever—with any tool, offline, on your machine.

No cloud. No dashboards. Just SQL.


See It Work in 2 Minutes

Install surveilr and immediately query your filesystem:

# Install (macOS/Linux)
brew tap surveilr/tap && brew install surveilr

# Create a database and scan your Documents folder
surveilr admin init -d my-data.db
surveilr ingest files -r ~/Documents -d my-data.db

# Open SQL shell and query
surveilr shell -d my-data.db

Enter fullscreen mode Exit fullscreen mode

Now run surprisingly powerful queries:

-- Find every PDF modified after a specific date
SELECT file_path, last_modified, size_bytes
FROM files
WHERE extension = 'pdf'
  AND last_modified > '2024-05-01';

-- Track file changes over time
SELECT file_basename, COUNT(*) as versions
FROM files
GROUP BY file_basename
HAVING versions > 1;

-- Find orphaned large files
SELECT file_path, size_bytes / 1024 / 1024 AS size_mb
FROM files
WHERE size_bytes > 10485760
ORDER BY size_bytes DESC;

Enter fullscreen mode Exit fullscreen mode

That's it. You just turned your filesystem into a queryable database you can keep investigating.


What is surveilr?

surveilr is a local-first universal SQL layer that ingests operational data and outputs standard SQLite databases.

It's not a platform. It's not a dashboard. It's an ingestion layer that speaks SQL.

Core Capabilities

  • 📂 File system indexing — Turn any directory into queryable metadata
  • 🔄 Content transformation — CSV→SQL tables, HTML→JSON (CSS selectors), Markdown/XML→queryable data
  • 📧 Email ingestion — IMAP to SQLite (Gmail, Outlook, any server)
  • 🔌 API extraction — 600+ Singer taps (GitHub, Jira, Salesforce, databases)
  • 🔍 Standard SQL — No custom DSL, just SQLite
  • 🏠 Local-first — Everything runs on your machine, offline-capable
  • 🔒 You own the data — Portable .db files you control forever

Why This Matters

Most operational data ends up in one of three dead ends:

  1. SaaS dashboards you can't query your way
  2. One-off scripts that become unmaintainable
  3. CSV exports that lose context over time

surveilr gives you a different option: permanent, queryable SQLite databases.

Years from now, you'll still be able to open that .db file with any SQLite client and run new queries you haven't thought of yet.


The SQLite Advantage

surveilr doesn't invent a new database format. It uses SQLite—the world's most deployed database.

You already trust SQLite. It's in your phone, your browser, your laptop's OS.

What surveilr adds is disciplined ingestion patterns that turn messy operational data into clean, queryable tables.

Inspectable: Open any .db file with DB Browser, VS Code, or sqlite3
Durable: SQLite files last decades
Interoper able: Works with Datasette, DuckDB, pandas, Observable, Grafana
Portable: One file, zero dependencies
Permanent: Your data doesn't disappear when a vendor shuts down

This is the opposite of SaaS data lock-in.


Queries That Make You Go "Wait, I Can Do THAT?"

The power comes from cross-domain queries you can't run anywhere else.

Find documents mentioned in emails after they were modified

SELECT f.file_path, e.subject, e.date, f.last_modified
FROM files f
JOIN emails e ON e.subject LIKE '%' || f.file_basename || '%'
WHERE f.last_modified < e.date
ORDER BY e.date DESC;

Enter fullscreen mode Exit fullscreen mode

Track all GitHub commits made within 24 hours of a production incident

SELECT c.commit_sha, c.author, c.message, c.timestamp
FROM github_commits c
WHERE c.timestamp BETWEEN
  (SELECT incident_time - interval '24 hours' FROM incidents WHERE id = 'INC-123')
  AND
  (SELECT incident_time FROM incidents WHERE id = 'INC-123');

Enter fullscreen mode Exit fullscreen mode

Find invoices discussed in email without matching purchase orders in Jira

SELECT e.subject, e.from, e.date
FROM emails e
WHERE e.subject LIKE '%invoice%'
  AND NOT EXISTS (
    SELECT 1 FROM jira_issues j
    WHERE j.summary LIKE '%' || SUBSTR(e.subject, INSTR(e.subject, 'INV-'), 10) || '%'
  );

Enter fullscreen mode Exit fullscreen mode

These aren't theoretical examples. These are real forensic workflows you can build.


Three Practical Guides

Guide 1: Query Your File System

Read the full guide →

Scan directories and query file metadata with SQL. Plus: Transform CSVs into SQL tables, extract data from HTML with CSS selectors, parse Markdown and XML into queryable JSON.

2-minute win: Find all PDFs modified in the last 30 days
Bonus: Turn CSV files into queryable SQL tables automatically


Guide 2: Turn Email Into SQL

Read the full guide →

Ingest Gmail/Outlook via IMAP. Query conversations, track threads, extract attachments, search across years of email history.

2-minute win: Find all emails from a specific sender mentioning "invoice"


Guide 3: Extract API Data

Read the full guide →

Use Singer taps to pull data from GitHub, Jira, GitLab, Salesforce, or 600+ other sources. Join across platforms.

2-minute win: Query all GitHub commits from the last 7 days


Why Not Just Write a Script?

You could. But:

Scripts become dead ends.
Six months later, you can't remember what format you used or where you saved the output.

surveilr outputs permanent, standard SQLite databases.
Open them years later with any SQL tool and keep querying.

Scripts don't compose.
You can't easily join your email script's output with your file scan script's output.

surveilr stores everything in one queryable database.
Cross-domain joins just work.

Scripts have no schema.
You're parsing JSON with jq and hoping the structure doesn't change.

surveilr normalizes data into stable SQL tables.
Query with confidence.


Ecosystem Integration

surveilr isn't the destination. It's the ingestion layer.

Once your data is in SQLite, you can use any tool in the SQLite ecosystem:

You own the database. Use whatever tools you want.


Local-First. No Cloud. You Own It.

This is a big deal in 2026.

Most "compliance platforms" hide your own data behind proprietary dashboards.

surveilr gives you raw SQL access to everything.

  • All data stays on your machine — No upload, no sync, no cloud dependency
  • Works completely offline — Internet not required
  • Inspectable — Open the .db file with any SQLite client
  • Portable — Copy the file, query it anywhere
  • No vendor lock-in — Standard SQLite format, not proprietary
  • Privacy-first — Your data never leaves your control

If you're tired of SaaS platforms that:

  • Charge per seat
  • Lock your data behind APIs
  • Disappear when the startup shuts down
  • Require constant internet connectivity

...then surveilr is for you.


Oh, By the Way: Compliance Teams Love This Too

If you work in healthcare, finance, or regulated industries, surveilr happens to be perfect for:

  • HIPAA audits — Track where PHI files are stored
  • SOX compliance — Maintain 7-year email records with queryable evidence
  • GDPR requests — Respond to "right to access" with SQL queries
  • SOC 2 audits — Show complete change management history

But that's a side effect of the real value: permanent, queryable operational data you control.


Forensic Curiosity

Once you start using surveilr, you'll find yourself asking new questions:

  • What files were deleted but are still referenced in emails?
  • Which documents were modified right before a deployment?
  • What code changes correlate with customer support tickets?
  • Which team members touched files in a specific directory over the last year?
  • What attachments were sent externally that match internal file hashes?

These questions are impossible to answer with dashboards.

But with SQL, they're just queries.


Installation

macOS / Linux

brew tap surveilr/tap && brew install surveilr

Enter fullscreen mode Exit fullscreen mode

Verify

surveilr --version
surveilr doctor  # Check environment

Enter fullscreen mode Exit fullscreen mode

For other platforms, see the installation guide.


Run This Now

Pick your 2-minute win:

Option 1: Query your filesystem

surveilr admin init -d fs.db
surveilr ingest files -r ~/Documents -d fs.db

Enter fullscreen mode Exit fullscreen mode

Option 2: Query your email

surveilr admin init -d email.db
surveilr ingest imap -u you@gmail.com -p "app-password" -a imap.gmail.com -d email.db

Enter fullscreen mode Exit fullscreen mode

Option 3: Query GitHub (Ingest Singer taps)

surveilr admin init -d github.db
surveilr ingest files -r ./github-tap-script.py -d github.db
surveilr orchestrate adapt-singer (convert data to views)

Enter fullscreen mode Exit fullscreen mode

Then open the .db file in any SQLite tool and start exploring.


Learn More


The Bottom Line

Your operational data—files, emails, API responses—should be:

  1. Queryable (SQL, not grep)
  2. Permanent (SQLite, not CSVs)
  3. Yours (local, not SaaS)
  4. Composable (join across domains)
  5. Inspectable (open in any tool)

That's what surveilr gives you.

It's not compliance software. It's not enterprise governance.

It's grep, jq, ETL, and forensic indexing collapsed into one local SQL primitive you can build on forever.


Ready to own your data? Install surveilr and query something surprising.

Get Started →