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

推荐订阅源

月光博客
月光博客
Stack Overflow Blog
Stack Overflow Blog
L
LangChain Blog
Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
雷峰网
雷峰网
T
Tailwind CSS Blog
MongoDB | Blog
MongoDB | Blog
博客园 - 【当耐特】
博客园 - 聂微东
V
Visual Studio Blog
博客园_首页
Engineering at Meta
Engineering at Meta
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The Cloudflare Blog
人人都是产品经理
人人都是产品经理
Apple Machine Learning Research
Apple Machine Learning Research
阮一峰的网络日志
阮一峰的网络日志
Microsoft Security Blog
Microsoft Security Blog
GbyAI
GbyAI
F
Fortinet All Blogs
C
Check Point Blog
罗磊的独立博客
H
Hackread – Cybersecurity News, Data Breaches, AI and More

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - AndreaBeggiato/pg-tail: tail -f for PostgreSQL —...
pigno · 2026-06-18 · via Hacker News: Show HN

test Go Reference License: MIT

tail -f for PostgreSQL. Stream INSERT/UPDATE/DELETE events to your terminal in real time using the native logical replication protocol.

[12:01:03] INSERT public.orders  id=1 status=pending amount=99.99
[12:01:07] UPDATE public.orders  id=1
                                 status: pending → completed
[12:01:10] DELETE public.orders  id=1

pg-tail demo


Contents

  • Requirements
  • Install
  • Quick start
  • Usage
    • Flags
    • Examples
    • TUI mode
    • --where syntax
  • How it works
  • How is this different from other tools?
  • Postgres setup
    • wal_level
    • Publication
    • UPDATE diffs (REPLICA IDENTITY)
  • doctor subcommand
  • Hosted Postgres
  • Caveats
  • License

Requirements

  • Go 1.23+
  • PostgreSQL 10+ with wal_level=logical

Install

Homebrew (macOS / Linux):

brew install AndreaBeggiato/tap/pg-tail

Go:

go install github.com/AndreaBeggiato/pg-tail/cmd/pg-tail@latest

Pre-built binaries: download from the releases page (linux / darwin / windows, amd64 / arm64).

From source:

git clone https://github.com/AndreaBeggiato/pg-tail
cd pg-tail
go build -o pg-tail ./cmd/pg-tail

Quick start

1. Start Postgres with logical replication enabled

podman run --rm \
  -e POSTGRES_PASSWORD=postgres \
  -p 5432:5432 \
  postgres:16 -c wal_level=logical

2. Check your setup

DATABASE_URL=postgres://postgres:postgres@localhost:5432/postgres ./pg-tail doctor

3. Create a test table and start streaming

psql postgres://postgres:postgres@localhost:5432/postgres \
  -c "CREATE TABLE orders (id SERIAL PRIMARY KEY, status TEXT, amount NUMERIC);"

DATABASE_URL=postgres://postgres:postgres@localhost:5432/postgres ./pg-tail
# → prompted to create the publication on first run, type y

4. Fire some events in a second terminal

psql postgres://postgres:postgres@localhost:5432/postgres

INSERT INTO orders (status, amount) VALUES ('pending', 99.99);
UPDATE orders SET status = 'completed' WHERE id = 1;
DELETE FROM orders WHERE id = 1;

Press Ctrl-C to stop. The temporary replication slot is dropped automatically on exit.


Usage

pg-tail [flags]              # opens the interactive TUI by default
pg-tail --stream [flags]     # plain streaming output for terminals and pipes
pg-tail doctor [--dsn <dsn>]

Flags

Flag Short Default Description
--dsn -d $DATABASE_URL Postgres connection string
--publication -p pg_tail Publication name to stream from
--tables -t (all) Comma-separated table filter, e.g. orders,users
--events -e (all) Comma-separated event filter: insert, update, delete
--where -w (none) SQL WHERE expression to filter rows
--verbose -v false Show BEGIN/COMMIT transaction markers on stderr
--stream false Plain streaming output instead of the TUI
--diff false UPDATE events only (stream mode)
--format text Output format: text or ndjson (stream mode)
--ignore-fields (none) Comma-separated column names to hide from output and diffs
--max-value-len 80 Truncate values longer than N characters

pg-tail reads DATABASE_URL from the environment. If a .env file is present in the current directory it is auto-loaded. The connection string can be a URL (postgres://user:pass@host/db) or a key-value DSN (host=localhost dbname=mydb).

Examples

# Watch a single table (TUI)
pg-tail --tables orders

# Plain streaming output (good for logs / pipes)
pg-tail --stream

# Watch inserts and updates only
pg-tail --events insert,update

# Combine table, event type, and row filters
pg-tail --tables orders --events update --where "amount > 100"

# UPDATE diffs only, NDJSON to jq
pg-tail --stream --diff --format ndjson | jq .

# Hide noisy columns
pg-tail --ignore-fields updated_at,search_vector

# SQL WHERE expressions
pg-tail --where "status = 'pending'"
pg-tail --where "status IN ('pending', 'processing') AND amount > 50"
pg-tail --where "email LIKE '%@example.com'"
pg-tail --where "deleted_at IS NULL"
pg-tail --where "NOT (status = 'archived')"

# Show transaction boundaries
pg-tail --verbose

TUI mode

The TUI is the default. It opens an interactive split-pane view on top of the same event stream — see the demo above.

The top pane shows one box per table with the most recent event at the cursor position. The bottom pane is the live event stream. [LIVE] / [PAUSED] indicator shows current state in the help bar.

Key bindings

Key Action
/ k Move cursor up; top boxes rewind to that point in time
/ j Move cursor down
G / End Jump to tail (resume live follow)
g / Home Jump to oldest visible entry
Enter Full-screen row history for the selected row
w Open the live where-filter modal (SQL WHERE expression)
/ In-pane search with n / N to navigate matches
p Pause / resume the live stream
y Yank the current event to the system clipboard (OSC 52)
q / Ctrl-C Quit

The where-filter is persisted to ~/.config/pg-tail/state.json and reloaded on next start. Use --stream for non-interactive output — e.g. pg-tail --stream --format ndjson | jq ..

--where syntax

--where accepts standard SQL WHERE expressions evaluated against each row's column values.

Operator Example
=, !=, <> status = 'active'
>, <, >=, <= amount >= 100
AND, OR, NOT a = 1 AND b = 2
LIKE, NOT LIKE name LIKE 'order_%' (case-insensitive / ILIKE semantics)
IN, NOT IN status IN ('a', 'b')
IS NULL, IS NOT NULL deleted_at IS NULL
Parentheses (a = 1 OR b = 2) AND c = 3

Numeric comparison is used automatically when both sides parse as numbers; string comparison is the fallback.


How it works

pg-tail uses PostgreSQL's logical replication protocol — the same protocol used by tools like Debezium and pglogical. On start it:

  1. Opens a replication connection to Postgres
  2. Creates a temporary logical replication slot (dropped automatically on exit)
  3. Streams WAL changes decoded by the pgoutput plugin
  4. Decodes and prints INSERT/UPDATE/DELETE events in real time

No polling. No triggers. No schema changes required beyond a publication.


How is this different from other tools?

vs. pg_recvlogical + jq (Postgres' built-in CLI). pg_recvlogical streams the raw pgoutput byte protocol — you'd have to write your own decoder before you could read anything. pg-tail decodes pgoutput for you and adds colorized diffs, table/event/row filtering, and a publication-aware UX. Use pg_recvlogical for replication transport; use pg-tail for seeing what's happening.

vs. CDC platforms (Debezium, Sequin, PeerDB, etc.). Those are production pipelines that ship changes to Kafka, SQS, webhooks, search indexes, and other destinations. You operate them as services, often via Docker. pg-tail is the opposite — a single binary you run in your terminal for interactive debugging. No infrastructure, no sinks, no configuration files. The replication slot is ephemeral and dropped when you Ctrl-C. If you need a CDC pipeline, Sequin is great. If you need to see what just happened, pg-tail is the tool.

vs. other projects named pg-tail / pgtail / pg_tail. A few projects share this naming territory. Worth disambiguating:

  • willibrandon/pgtail is an actively-maintained interactive tailer for Postgres log files with a Textual TUI. Excellent tool — solves a different problem (server logs, not row changes).
  • aaparmeggiani/pg_tail (C) and ChillarAnand/pgtail (Python) tail table rows via polling — repeated queries on an interval. pg-tail uses logical replication instead, which captures every change including intermediate updates without per-poll query load.

Postgres setup

wal_level

Logical replication requires wal_level = logical. Check with:

If it is not logical, change it (requires a server restart):

ALTER SYSTEM SET wal_level = logical;
-- then restart Postgres

Publication

pg-tail needs a publication to subscribe to. If you run pg-tail without one it will offer to create it. To create it manually:

-- All tables (simplest)
CREATE PUBLICATION pg_tail FOR ALL TABLES;

-- Specific tables only
CREATE PUBLICATION pg_tail FOR TABLE orders, users;

Use a different publication name with --publication.

UPDATE diffs (REPLICA IDENTITY)

By default, Postgres only includes the primary key in UPDATE and DELETE events. To see old → new diffs for all columns, set REPLICA IDENTITY FULL on the table:

ALTER TABLE orders REPLICA IDENTITY FULL;

Without it, UPDATE events show the new state of all columns but no diff. The pg-tail doctor command reports the replica identity for each table in your publication.


doctor subcommand

pg-tail doctor checks your Postgres instance and reports everything pg-tail needs:

  ✓  connection                    connected to postgres
  ✓  wal_level                     logical
  ✓  postgres version              16.2
  ✓  publications                  pg_tail (ALL TABLES)
  ℹ  replication slots             none (pg-tail creates a temporary one on start)
  ⚠  replica identity: public.orders  DEFAULT (key columns only) — UPDATE diffs show changed fields only with REPLICA IDENTITY FULL

It also prints the exact SQL to fix any issues it finds.


Hosted Postgres

pg-tail uses the standard PostgreSQL logical replication protocol, so it works with any provider that supports it. Confirmed:

Provider Status Notes
Local Postgres ✅ Works Start with -c wal_level=logical.
Neon ✅ Works Enable logical replication under Settings → Replication. Use the direct connection URL from the dashboard.
Supabase ✅ Works Requires the direct connection URL (port 5432), not the connection pooler. The pooler does not proxy the replication protocol. On the free tier, direct connections are IPv6-only — paid tiers include an IPv4 add-on.
Amazon RDS ✅ Works Set the parameter group flag rds.logical_replication = 1 and reboot. The connecting user needs the rds_replication role.
Amazon Aurora ✅ Works Same setup as RDS.
Google Cloud SQL ✅ Works Enable the cloudsql.logical_decoding flag on the instance.

If your connection is being routed through a pooler (PgBouncer, Supabase pooler, etc.), pg-tail doctor will detect it and tell you to switch to the direct URL.


Caveats

  • Temporary slot: the replication slot is dropped when pg-tail exits. If the process is killed hard (e.g. kill -9), the slot may linger. Check with SELECT slot_name FROM pg_replication_slots; and drop manually if needed: SELECT pg_drop_replication_slot('pg_tail_tmp');
  • WAL retention: while pg-tail is running, Postgres retains WAL from the slot's restart LSN. For long-running sessions on busy databases this can grow. Monitor disk usage.
  • DELETE columns: with default replica identity, DELETE events only include the primary key. Non-key columns appear as NULL. Use REPLICA IDENTITY FULL to capture the full deleted row.
  • Managed Postgres: see the Hosted Postgres section above for per-provider setup.

License

MIT