| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
In-database observability for PostgreSQL.
One static binary connects read-only, reads Postgres's own statistics views,
and prints a findings-first health report — plus what changed since last time.
No agent, no external service, no write privilege anywhere in the path.
Quickstart · Install · Setup · Commands · CI · MCP · JSON contract · Troubleshooting · Provider notes
Status: beta. The --json contract is versioned (currently 1.2.0, JSON Schema published in schema/) and breaking changes to it are treated as breaking changes to the tool. The human-readable report is not a stable interface — parse --json, not the terminal output.
curl -fsSL https://pgbot.dev/install | sh
pgbot inspect "postgres://pgbot_ro@host:5432/db"Or set the connection once in the environment and drop the argument — handy for CI and shells, and it keeps the password out of your history and ps:
export DATABASE_URL="postgres://pgbot_ro@host:5432/db"
pgbot inspectpgbot reads the argument first, then $DATABASE_URL, then $PGBOT_DATABASE_URL. (Shell note: export DATABASE_URL="…" — no $ on the left, no spaces around =.)
Everything pgbot takes from the environment fits in one block — the connection, and (only if you want the optional ask/explain AI layer) one model key:
export DATABASE_URL="postgres://pgbot_ro:…@host:5432/db?sslmode=require"
# optional, for `pgbot ask` / `pgbot explain` — one of:
export OPENAI_API_KEY=sk-… # → OpenAI (gpt-4o-mini by default)
export GEMINI_API_KEY=… # → Google Gemini (AI Studio key)Everything else — inspect, queries, indexes, MCP, CI — is fully deterministic and needs no key; nothing leaves your machine. Provider pinning and model/endpoint overrides: the AI layer.
connected · db.example.com · postgres 17.4 · read-only · 6h20m window Database health: 82/100 CRITICAL ● transaction-id age 1.8B — 84% toward wraparound WARNING ● orders queries 3.2× slower (8 → 26 ms mean) ● 3 unused indexes consume 18 GB ● connection usage reached 87% GOOD ● cache hit ratio 99.4% ● replication healthy ● no deadlocks Details: pgbot inspect --full · Machine-readable: --json Ask it: pgbot ask "what's wrong?"
The default report is a graded read: a health score, findings bucketed CRITICAL / WARNING / NOTE, then a GOOD list naming the healthy subsystems with their values (a tool that names what it verified reads like a colleague who looked, not an alarm). pgbot inspect --full adds a subsystem status board plus the section tables and per-finding caveats; focused commands (indexes, queries, tables, vacuum) each drill into one signal; pgbot ask "…" and pgbot explain put a plain-language AI reading on top of the same findings. --json is the complete, versioned contract for agents and scripts.
$ pgbot ask "what's wrong?" Your database is mostly healthy. 1 critical issue: orders queries became 3.2× slower in the last 6 hours. Likely cause: sequential scans increased after the orders table grew 18%. Recommended: review an index on customer_id + created_at.
| Read-only by role, not by flag | The guarantee is a pg_monitor login role with no write grants. Session pinning (default_transaction_read_only, statement_timeout=15s, lock_timeout=2s) and BEGIN READ ONLY are defence in depth on top of it. |
| It remembers | Every run writes a local baseline, so from the third run on it tells you what changed and why it matters — a query that got slower, a table that started sequential-scanning, an index that stopped being used. |
| Findings are deterministic | Every finding is computed in Go from SQL. The optional AI layer explains findings; it never generates them. |
| Nothing to deploy | One static binary. No collector, no time-series database, no service to run. |
| Built for agents | --json is a versioned, PII-free contract; pgbot mcp exposes the same findings over the Model Context Protocol, with a skill and a Claude Code plugin on top. |
pgbot is a point-in-time diagnostic you run, not a monitoring platform you operate. If you want dashboards, alerting, long retention, and multi-host rollups, run pganalyze / Percona PMM / pgwatch — pgbot doesn't replace them. Reach for pgbot when you want an answer in ten seconds without deploying anything, when you're triaging a database you don't own, or when an AI agent needs structured Postgres findings it can reason over.
pgbot inspect --full — a subsystem status board (one row per subsystem, colored ok / warn / fail), followed by the detailed section tables.
pgbot indexes — zero-scan indexes with sizes, and the caveat that matters: on a primary those scan counts are per-node, so a replica may still be using an index that looks unused here. It tells you what not to drop.
pgbot queries — the top statements from pg_stat_statements, ranked by total execution time (the query quietly eating your database) with a share column for each query's slice of total time. Add --by-calls to rank by call count instead — a cheap query run a million times can outweigh an expensive one run twice. Transaction-control and session-SET noise is filtered out.
$ pgbot queries "$DATABASE_URL" total share calls mean query 4h11m 61.0% 812.4k 18.55 ms SELECT * FROM orders WHERE user_id = $1 AND … 22m3s 17.8% 1.3k 1.02 s SELECT count(*) FROM events WHERE created_at … 15m2s 12.0% 99.8k 9.04 ms INSERT INTO audit_log (actor, action, …) VAL …
pgbot vacuum — autovacuum health per table: dead tuples, dead-tuple ratio, when autovacuum last ran, and a computed due? — whether the table's dead tuples have passed Postgres' default autovacuum trigger (50 + 20% of live rows). Rising dead tuples with due? yes and no recent run is autovacuum falling behind, the early signal for bloat and, eventually, wraparound risk.
$ pgbot vacuum "$DATABASE_URL" table live dead dead% last autovacuum due? public.demo_events 42.9k 33.8k 44.1% 4m ago yes public.churny 5.0k 10.0k 66.7% never yes
pgbot tables — the largest tables by total size (heap + indexes + TOAST), each with row count, dead-tuple ratio, and sequential-vs-index scan counts. It's storage accounting and a missing-index radar: a large table with heavy seq scans and few idx scans is a likely index candidate.
$ pgbot tables "$DATABASE_URL" size rows dead% seq scans idx scans table 38.7 GiB 19.7M 8.3% 1.5k 112.3M public.performance_events 20.0 GiB 1.3M 10.8% 2.5M 121.6M public.events ← 2.5M seq scans 7.1 GiB 5.6M 0.0% 5.0k 46.6M public.log_entries
pgbot ask "why is it slow?" — a plain-language reading of the same deterministic findings. It leads with the lock contention and refuses to recommend dropping the indexes because replication is active — the caveat is carried into the advice, not lost.
Every command takes the connection the same way — an argument, $DATABASE_URL, or $PGBOT_DATABASE_URL.
| Command | What it does |
|---|---|
| inspect | the full findings-first health report (--full for the section tables) |
| lint | schema-only check, safe on an empty CI database (inspect --profile=schema --no-store) |
| init | generate the read-only role setup SQL — nothing is executed (--verify checks an existing role) |
| diff | compare two baseline snapshots offline |
| indexes · queries · tables · vacuum | drill into one signal |
| advise | planner-validated missing-index suggestions (needs hypopg) |
| ask "…" · explain | a plain-language AI reading of the same deterministic findings |
| explain-finding <id> | the catalogue page for a finding, offline |
| mcp | serve the findings to an AI agent over MCP |
| config · baselines | manage .pgbot.toml and the local baseline store |
Key inspect flags:
| Flag | |
|---|---|
| --json · --format=text|json|sarif|junit|prometheus | output format; SARIF uploads to the GitHub Security tab |
| --fail-on=critical|warn|info|none | the severity that makes the exit code non-zero (the CI gate) |
| --profile=full|schema | schema runs only catalog-derived findings — safe on an empty CI database |
| --fail-on-new <base.json> | act only on findings not already in a base report (migration PRs) |
| --all-databases | inspect every database in the cluster; cluster-wide findings reported once |
| --config <path> | a .pgbot.toml for thresholds, severity remaps, and [[ignore]] rules |
Exit codes are a scriptable contract: 0 clean · 1 warn · 2 critical · 3 connection/execution failure · 64 usage error. Suppressed and pre-existing findings never move them.
| Method | Command |
|---|---|
| npx (no install) | npx @pgbot/cli inspect "$DATABASE_URL" |
| Script (cosign signature + checksum) | curl -fsSL https://pgbot.dev/install | sh |
| Homebrew | brew install pgrundev/tap/pgbot |
| Go | go install github.com/pgrundev/pgbot/cmd/pgbot@latest |
| Docker | docker run --rm ghcr.io/pgrundev/pgbot inspect "$DATABASE_URL" |
| Windows / manual | download the archive for your OS/arch from Releases (Linux/macOS .tar.gz, Windows .zip) |
npx @pgbot/cli fetches the prebuilt binary for your platform from npm (shipped as an optionalDependency, so only the matching one installs) and runs it — nothing to install, works with npm ci --ignore-scripts. It installs the pgbot command (npm i -g @pgbot/cli). The package is scoped: the bare name pgbot is blocked by npm's package-name-similarity rule (too close to got), so npx pgbot returns E404 — use npx @pgbot/cli.
Homebrew installs from the pgrundev/homebrew-tap tap; the formula is regenerated by every release and pins the SHA-256 of each platform's release archive. macOS (Intel/Apple Silicon) and Linux (x86_64/arm64).
Against a remote/managed database (RDS, Neon, Supabase, …) the container needs no special networking — it reaches the host directly. Pass the DSN by environment, not as an argument, so the password stays out of ps and your shell history:
export DATABASE_URL="postgres://pgbot_ro:…@yourdb.example.com:5432/db?sslmode=require"
docker run --rm -e DATABASE_URL ghcr.io/pgrundev/pgbot inspectUse a pg_monitor role, not a superuser. (For a database in a local container, see Postgres in Docker — the networking differs.)
What each path verifies. npm is the convenient path: the packages carry registry integrity hashes and npm provenance, a verifiable link to the GitHub Actions workflow that built them — that attests where the package came from, not that the artifact was signed. install.sh is the verified path: releases ship SHA256 checksums signed with cosign (keyless, via GitHub Actions OIDC), and the script verifies that signature when cosign is on your PATH and always verifies the checksum. For the strongest guarantee, require the signature:
PGBOT_REQUIRE_SIGNATURE=1 curl -fsSL https://pgbot.dev/install | shPGBOT_REQUIRE_SIGNATURE=1 hard-fails if cosign is missing or the check doesn't pass. To verify a release by hand:
cosign verify-blob --bundle checksums.txt.cosign.bundle \
--certificate-identity-regexp '^https://github.com/pgrundev/pgbot/' \
--certificate-oidc-issuer https://token.actions.githubusercontent.com checksums.txtrm "$(command -v pgbot)"
rm -rf "${XDG_STATE_HOME:-$HOME/.local/state}/pgbot" # local baseline storepgbot writes nothing else on your machine — no daemons, no launch agents — and nothing in the database: no extensions, no tables, no roles.
The read-only guarantee is the role, not a flag. Create a login role that holds pg_monitor (so it can see the full statistics views) and has no write grants:
CREATE ROLE pgbot_ro LOGIN PASSWORD '...';
GRANT pg_monitor TO pgbot_ro;
GRANT CONNECT ON DATABASE yourdb TO pgbot_ro;Or have pgbot init write exactly this for you — tailored to your provider and database name, including the provider-specific pg_stat_statements step. pgbot itself executes none of it (pgbot never writes); you review and run it:
pgbot init "postgres://admin@host:5432/db" | psql "postgres://admin@host:5432/db"
pgbot init --verify "postgres://pgbot_ro:…@host:5432/db" # confirm the role worksWithout pg_monitor, a non-superuser sees only its own sessions in pg_stat_activity and can't read several views fully — pgbot detects this at connect time and tells you exactly which GRANT to run rather than silently reporting partial data.
pgbot additionally pins every session read-only (default_transaction_read_only, statement_timeout=15s, lock_timeout=2s) and wraps each query in its own BEGIN READ ONLY … COMMIT. It commits those read-only probes rather than rolling them back — a read-only transaction writes nothing either way, but a rollback would inflate the xact_rollback counter pgbot itself reports. Those are defence in depth; the role is the boundary.
A run opens one connection pool capped at 4 connections, holds no long transactions (every probe is its own BEGIN READ ONLY … COMMIT under the pinned statement_timeout=15s / lock_timeout=2s), and takes no locks beyond the shared catalog access any SELECT takes. Counters are sampled twice across the --interval gap (default 1s), so a full inspect finishes in a few seconds of wall clock. It is safe to run against a busy primary — pgbot even excludes its own sessions, transactions, and temp usage from what it reports, so it never measures its own footprint as the database's. Run it against a replica if you prefer, noting the per-node index-scan caveat in pgbot indexes.
Pass the connection string as an argument — a URL or a libpq DSN:
pgbot inspect "postgres://pgbot_ro:secret@host:5432/db?sslmode=require"
# the libpq keyword/value DSN form works too:
pgbot inspect "host=host port=5432 dbname=db user=pgbot_ro sslmode=require"Or set it once in the environment and omit the argument — convenient for a shell session or CI, and it keeps the password out of your shell history and ps output:
export DATABASE_URL="postgres://pgbot_ro:secret@host:5432/db?sslmode=require"
pgbot inspect
pgbot queries # every command takes the connection the same way
pgbot diff --since 24hpgbot resolves the connection in this order: the argument first, then $DATABASE_URL, then $PGBOT_DATABASE_URL. Add ?sslmode=require (or stricter) for any database reached over a network.
| Variable | Purpose |
|---|---|
| DATABASE_URL / PGBOT_DATABASE_URL | Connection used when no connection string is passed (checked in that order, after the argument). |
| NO_COLOR | Disables ANSI output (as does a non-TTY, or --no-color). |
| XDG_STATE_HOME | Where the baseline store lives; defaults to ~/.local/state. |
| PGBOT_CONFIG | Path to .pgbot.toml (otherwise discovered from cwd upward, then $XDG_CONFIG_HOME). |
| OPENAI_API_KEY | Enables ask / explain via OpenAI. Keys are never accepted as flags. |
| GEMINI_API_KEY / GOOGLE_API_KEY | Enables ask / explain via Google Gemini. |
| PGBOT_AI_PROVIDER | Forces openai or gemini when both keys are set. |
| PGBOT_OPENAI_MODEL / PGBOT_OPENAI_URL | Model/endpoint override (any OpenAI-compatible endpoint works). |
| PGBOT_GEMINI_MODEL / PGBOT_GEMINI_URL | Model/endpoint override for Gemini. |
| PGBOT_REQUIRE_SIGNATURE | install.sh only: hard-fail unless the cosign signature verifies. |
pgbot is a client — it connects over the Postgres wire protocol like psql. You never install anything on the database; run pgbot from your laptop, a bastion, CI, or an instance in the same network. Grant pg_monitor to your role (above) and connect. Provider-specific notes:
You can't install on the RDS/Aurora instance itself — it's managed, no OS access. Run pgbot from a client that can reach it:
# on the EC2 (or your laptop for a public instance):
curl -fsSL https://pgbot.dev/install | sh
pgbot inspect "postgres://pgbot_ro@mydb.abc123.us-east-1.rds.amazonaws.com:5432/appdb?sslmode=require"Grant pg_monitor as the master (rds_superuser) role. Caveat: host metrics (CPU / memory / disk IOPS) live in CloudWatch, not Postgres, so they're out of reach over a connection string — everything else works.
pgbot inspect "postgres://user:pass@ep-xxx.region.aws.neon.tech/dbname?sslmode=require"# direct endpoint (session-scoped, best for pgbot):
pgbot inspect "postgres://postgres:pass@db.<ref>.supabase.co:5432/postgres?sslmode=require"
# or the pooled endpoint (:6543, transaction mode) — pgbot notes it and proceeds:
pgbot inspect "postgres://postgres.<ref>:pass@aws-0-<region>.pooler.supabase.com:6543/postgres?sslmode=require"The connection string depends on where pgbot runs relative to the container.
pgbot on the host, container with a published port. Read the PORTS column of docker ps — 0.0.0.0:6433->5432/tcp means host port 6433 maps to the container's 5432. Connect to the host port:
docker port mypg 5432 # → 0.0.0.0:6433 (find the host port)
pgbot inspect "postgres://postgres:pw@127.0.0.1:6433/postgres?sslmode=disable"Use 127.0.0.1, not localhost: localhost resolves to IPv6 (::1) first, which Docker Desktop doesn't forward, so the connect stalls ~10s before falling back to IPv4. Local containers usually have no TLS → sslmode=disable. Find the credentials with docker exec mypg env | grep POSTGRES.
pgbot as a container reaching a DB container. localhost would mean pgbot's own container — join the DB's network and use the container name + internal port 5432:
docker run --rm --network <that-network> ghcr.io/pgrundev/pgbot \
inspect "postgres://postgres:pw@mypg:5432/postgres?sslmode=disable"The image is multi-arch (amd64/arm64) and public — no login needed. Prefer passing the DSN by environment so it stays out of the container's argument list:
docker run --rm --network <that-network> -e DATABASE_URL ghcr.io/pgrundev/pgbot inspectpgbot as a container reaching a DB on the host. Use host.docker.internal (add --add-host=host.docker.internal:host-gateway on Linux).
Rule of thumb: same-network containers address each other by container name + internal port 5432; the host reaches a container by 127.0.0.1 + the published host port. A container with no -> mapping in docker ps isn't reachable from the host at all — publish it with -p, or connect from inside its network.
pgbot inspect <connection-string> # URL or libpq DSN, or set $DATABASE_URL --json emit the versioned, PII-free Context (the agent/script contract) --interval 1s gap between the two counter samples (min 500ms) --no-store don't read or write the local baseline --no-color disable ANSI (also honors NO_COLOR and non-TTY) pgbot baselines list # what's stored locally, per database pgbot baselines prune <fingerprint> # delete a database's snapshots pgbot baselines export <fingerprint># dump stored snapshots as JSON pgbot indexes <connection-string> # zero-scan indexes + what NOT to drop --correlate grade each index (catalog_proven/needs_code_check/inconclusive) + what to grep in code pgbot queries <connection-string> # top pg_stat_statements by total time (--by-calls to re-rank) pgbot tables <connection-string> # largest tables + row counts + seq-vs-index scan pattern pgbot vacuum <connection-string> # autovacuum health per table — dead tuples + whether it's due pgbot tune <connection-string> # config-tuning recommendations from the workload pgbot explain <connection-string> # inspect, then have an AI explain the findings pgbot ask "why is it slow?" # AI answer grounded on the findings ($DATABASE_URL) --yes skip the "this sends data to Google" confirmation pgbot mcp # run as an MCP server over stdio (for AI agents)
pgbot mcp speaks the Model Context Protocol on stdio, so an AI agent can call pgbot as a read-only tool. It exposes deterministic tools only and lets the connected model do the explaining:
Every tool is read-only, returns a stable JSON shape carrying its exactness label, honors .pgbot.toml suppression, and never exposes a raw connection string or query literals to the model. The agent reasons over the same findings the CLI computes.
Add it to any MCP client (Claude Desktop/Code, Cursor, …):
{
"mcpServers": {
"pgbot": {
"command": "pgbot",
"args": ["mcp"],
"env": { "DATABASE_URL": "postgres://pgbot_ro@host:5432/db" }
}
}
}With DATABASE_URL set, the agent calls inspect with no arguments; or it can pass connection_string per call to reach several databases. pgbot never writes, so there's nothing an agent can break through it.
It also exposes a diagnose prompt (a one-click "inspect and give me a prioritized diagnosis" workflow) and a pgbot://baselines resource (the databases pgbot has local history for) — so tools, prompts, and resources are all available to the agent.
Pair it with the skill. MCP gives the agent the tools; the postgres-diagnostics skill gives it the playbook — respect caveats, never EXPLAIN ANALYZE, prioritize by impact, never write. One command installs it into Claude Code, Cursor, or Codex:
npx skills add pgrundev/pgbot(or curl -fsSL https://pgbot.dev/skill | sh — see skills/), and your agent asks the right pgbot command and reads the results the way pgbot intends.
Claude Code users can install the tools, the skill, and the commands in one shot — the repo is its own plugin marketplace:
claude plugin marketplace add pgrundev/pgbot
claude plugin install pgbot@pgbotThat registers the pgbot MCP tools, the postgres-diagnostics skill, and three slash commands — /pg-health, /pg-slow, /pg-indexes — each of which carries the pgbot judgment (caveats intact, impact-first, never writes). The plugin drives the pgbot binary, so install that first (curl -fsSL https://pgbot.dev/install | sh); set DATABASE_URL or pass a connection string per call, then ask "is my Postgres healthy?"
pgbot explain runs the exact same read-only inspection, prints the deterministic report unchanged, then asks a model to explain and prioritize the findings in plain language. The findings are still computed locally in Go — the model only interprets them, it never invents them, and it's instructed to carry every caveat into any recommendation. The AI text is printed below a labeled rule (🤖 generated by … — verify before acting); if the model errors or the key is unset, the deterministic report still stands.
This is the only command that sends data off the machine — the same PII-free Context you can see with inspect --json. It works with OpenAI or Google Gemini, and the key is always read from the environment (never a flag). pgbot picks the provider automatically: OPENAI_API_KEY → OpenAI, GEMINI_API_KEY (or GOOGLE_API_KEY) → Gemini. Set PGBOT_AI_PROVIDER=openai|gemini to force one when both are present.
# OpenAI export OPENAI_API_KEY=sk-… pgbot explain "$DATABASE_URL" # gpt-4o-mini by default # …or Google Gemini export GEMINI_API_KEY=… # from Google AI Studio pgbot explain "$DATABASE_URL"
Override the model or endpoint per provider: PGBOT_OPENAI_MODEL / PGBOT_OPENAI_URL (any OpenAI-compatible endpoint works — Azure OpenAI, OpenRouter, a local server) and PGBOT_GEMINI_MODEL / PGBOT_GEMINI_URL.
Exit codes (a stable contract for CI): 0 clean · 1 warnings · 2 critical findings · 3 connection/execution failure · 64 usage error (bad flags/args). Suppressed findings never contribute to the exit code.
pgbot advise finds missing indexes without guessing. It reads the slowest queries from pg_stat_statements, derives candidate indexes from the planner's own sequential-scan filters (deterministically, in Go — never an LLM), and then validates each one: it creates the index hypothetically with hypopg, re-plans the query, and only reports it if the planner actually switches to it and the estimated cost drops.
$ pgbot advise "$DATABASE_URL"
index advisor · app · postgres 17 · hypopg validation — nothing was built
1 validated recommendation(s):
⚑ public.orders
CREATE INDEX ON public.orders (customer_id, status);
helps: SELECT count(*) FROM orders WHERE customer_id = $1 AND status = $2
60 calls · 68% of DB time
planner confirmed: cost 4653 → 4.1 (−99.9%)
↳ nothing was created. Review, then build off-peak: add CONCURRENTLY.
Nothing is ever built — the hypothetical indexes live in backend memory and are discarded. Everything runs in a READ ONLY transaction; pgbot only plans your query (EXPLAIN (GENERIC_PLAN)), it never executes it and never uses the executing form of EXPLAIN. Requires hypopg, pg_stat_statements, and PostgreSQL 16+; when any is missing it prints exactly what to enable and does nothing else. --json gives structured recommendations for agents (also exposed as the MCP suggest_indexes tool).
Local Docker gotcha: with a database in Docker Desktop, connect via 127.0.0.1, not localhost. localhost resolves to IPv6 (::1) first, which Docker Desktop doesn't forward, so the connect stalls for ~10s before falling back to IPv4. Managed hosts (RDS, Supabase, Neon…) aren't affected.
The baseline store lives at $XDG_STATE_HOME/pgbot/baselines.db (7 days at full resolution, hourly rollups to 90 days, 100 MB cap). It's yours — inspect and delete it with pgbot baselines.
All from SQL — connections, cache-hit ratio, TPS and rollback ratio, WAL and IO rates, checkpoints, locks and blocking chains, replication lag, replication-slot WAL retention and logical-subscription health, top queries (pg_stat_statements), table/index sizes, dead tuples and vacuum activity, unused and missing indexes, and non-default settings. Counters (pg_stat_database, pg_stat_wal, IO) are double-sampled to produce live rates; the rest are point-in-time reads trended against the baseline.
--json (and --format=json) is the interface to build on — a versioned, PII-free document (schema_version, currently 1.2.0) whose machine-checkable JSON Schema is published in schema/. Every section carries an exactness label — sampled, cumulative, scraped, or unavailable — so a consumer never mistakes a cumulative total for a live rate.
Versioning policy: additive fields bump the minor version and are not breaking — a 1.1.0 consumer parses 1.2.0 output unchanged; breaking changes to the contract are treated as breaking changes to the tool. pgbot advise --json has its own schema (schema/pgbot-advise-1.0.0.json).
Collectors degrade rather than fail when a capability is absent:
| Feature | From | Fallback |
|---|---|---|
| pg_stat_wal (WAL rates) | PG 14 | section marked unavailable |
| pg_stat_io (buffers written) | PG 16 | pg_stat_bgwriter |
| pg_stat_checkpointer | PG 17 | pg_stat_bgwriter |
| stats_fetch_consistency | PG 15 | separate per-sample transactions |
| pg_stat_statements | extension | queries section unavailable + install hint |
| Tier | Versions | In CI |
|---|---|---|
| Supported | PostgreSQL 16, 17, 18 | every PR + push |
| Best-effort | PostgreSQL 14, 15 | every PR + push |
| Unsupported | PostgreSQL 13 and older | — (13 is end-of-life) |
New features may target 16+ without a backward path. Everything degrades rather than errors on an older or capability-limited server (see the table above).
pgbot detects the platform (RDS, Aurora, Cloud SQL, Azure Flexible Server, Supabase, Neon) and prints the provider-specific steps to enable pg_stat_statements when it's missing. Supabase (:6543) and Neon (-pooler) default to a pooled endpoint, which pgbot notes without degrading its rates; Neon's scale-to-zero discards stats, which pgbot handles as a cold window. Full per-provider notes and the live-verification checklist are in docs/providers.md.
An optional .pgbot.toml (committed to your repo) overrides thresholds, remaps a finding's severity, and suppresses specific findings so noise never trains people to ignore the severity column:
schema = 1
[severity]
checksums_disabled = "info" # can't change it on this managed provider
[[ignore]]
finding = "unused_indexes"
object = "public.idx_legacy_*" # glob; omit to mute the whole finding
reason = "backs the quarterly export"
expires = "2026-12-31"Suppression is always visible — suppressed findings stay in --json (with suppressed/suppression_reason), never affect the exit code, and a suppressed critical still renders (a config must not hide checksum_failures). pgbot refuses to read any credential-shaped key from the file, flags rules that have gone stale, and ships pgbot config check / explain / init. Full contract — including the per-finding object-identity table — in docs/configuration.md.
pgbot diff [--since 24h] compares the two most relevant baseline snapshots from the local store — no connection needed. It's honest about what it compared:
$ pgbot diff --since 24h diff · prod · a1b2c3d4e5f6 2026-08-16 09:00 → 2026-08-17 16:00 · 31h elapsed note: you asked for ~24h back, but the nearest older snapshot is 31h back — comparing that.
It prints the interval it actually used (the nearest snapshot to --since, not a silent substitution), warns up front when a stats reset or pg_stat_statements eviction between the snapshots makes specific deltas untrustworthy, and refuses to compare two different databases (pass --fingerprint when the store holds more than one).
Whole cluster: pgbot inspect "$DATABASE_URL" --all-databases inspects every connectable database on the server. Cluster-wide findings (settings, replication, archiving, wraparound) are reported once; per-database findings appear per database. Serial by default (--parallel N to fan out).
pgbot is built to run in a pipeline. --fail-on decouples the exit code from the default severity map, and --format emits machine-readable reports:
pgbot inspect "$DATABASE_URL" --fail-on=critical --format=sarif > pgbot.sarif--format=sarif produces SARIF 2.1.0; upload it with github/codeql-action/upload-sarif and every finding lands in your repo's Security tab, linked to its catalogue page. --format=junit feeds Jenkins/GitLab test panes. Suppressed findings stay visible (a SARIF suppression / a JUnit skipped) and never affect the exit code.
- uses: pgrundev/pgbot@v1
with:
dsn: ${{ secrets.PGBOT_DSN }}
fail-on: criticalThat runs the check and uploads SARIF to the Security tab. The DSN must be a pg_monitor role with no data access — never a superuser. Create one:
CREATE ROLE pgbot_ci LOGIN PASSWORD '…';
GRANT pg_monitor TO pgbot_ci;
GRANT CONNECT ON DATABASE yourdb TO pgbot_ci;pg_monitor grants read access to the statistics views pgbot needs and nothing else — no table data. The job that uploads SARIF needs security-events: write.
An empty CI database has never been queried, so the full profile fires unused_indexes and stale_statistics on everything and buries the one change that matters. --profile=schema runs only the findings derivable from the catalog (invalid/redundant indexes, unindexed FKs, a narrow int4/serial identity column, autovacuum disabled on a table) — valid on an empty, freshly-migrated database. Pair it with --fail-on-new so the check fails only on what the PR introduced, not pre-existing findings:
# .github/workflows/pr.yml — runs on every pull request
- run: | # 1. base branch, migrated → base report
git checkout ${{ github.base_ref }} && ./migrate.sh
- uses: pgrundev/pgbot@v1
with: { dsn: "${{ env.CI_DSN }}", profile: schema, format: json }
- run: mv pgbot-report.json base.json
- run: | # 2. PR branch, migrated
git checkout ${{ github.sha }} && ./migrate.sh
- uses: pgrundev/pgbot@v1 # fails only on findings new vs base
with: { dsn: "${{ env.CI_DSN }}", profile: schema, base-report: base.json, fail-on: warn }(Or skip step 1 and download a base.json artifact your main CI already produced.) This is deliberately quiet when correct — no PR comment, SARIF annotations for new findings only, and the exit code carries the verdict. A check that speaks on every PR is a check nobody reads.
The two profiles answer different questions and you want both: the schema check on pull_request above, and the full profile against production on a schedule —
# .github/workflows/nightly.yml
on: { schedule: [{ cron: "0 7 * * *" }] }
# ... uses: pgrundev/pgbot@v1 with a read-only DSN to the production replica— which sees backups, replication, bloat, and wraparound that a schema check never can. A clean --profile=schema report says nothing about a running database's health; its own header says so.
--format=prometheus writes the node_exporter textfile format: every finding as a pgbot_finding{id,severity,dimension,object} series plus the gauges behind them (pgbot_cache_hit_ratio, pgbot_xid_age, pgbot_connections_used, pgbot_replica_lag_seconds, …), so an alert can fire on a trend before a finding crosses its threshold. Suppressed findings are exported with suppressed="true", not dropped — a muted config stays visible in your metrics.
pgbot has no daemon — that is deliberate. Point it at a textfile collector on a cron or systemd timer:
pgbot inspect "$DATABASE_URL" --format=prometheus > /var/lib/node_exporter/pgbot.prom.$$
mv /var/lib/node_exporter/pgbot.prom.$$ /var/lib/node_exporter/pgbot.prom # atomicUnder --all-databases, each database's series carry a database="…" label.
Every finding pgbot emits has a reference page — what it observed, why it matters, a read-only query to verify it yourself, how to fix it, when to ignore it (with a pasteable [[ignore]] block), and what pgbot cannot see. Browse them by symptom in docs/findings/, or read one offline straight from the binary:
pgbot explain-finding low_hot_update_ratio
Every line of a report tells you its id, so pgbot explain-finding <id> always has the page.
Scale-to-zero databases (Neon, Databricks Lakebase, and similar) discard in-memory statistics when the compute suspends — by default after ~5 minutes idle. After each wake, pg_stat_statements history, cache-hit counters and index-scan counts all start again from zero.
pgbot detects this and degrades rather than lies:
If you want continuous history, disable scale-to-zero or raise the suspend timeout so the statistics survive between runs.
Use 127.0.0.1, not localhost. localhost resolves to IPv6 (::1) first, which Docker Desktop doesn't forward, so the connect stalls before falling back to IPv4. Managed hosts (RDS, Supabase, Neon…) aren't affected. See Postgres in Docker.
"queries section unavailable"pg_stat_statements isn't installed or isn't in shared_preload_libraries. pgbot prints the steps for your specific provider; see docs/providers.md.
Findings look partial or sessions are missingThe role is missing pg_monitor. See Setup — pgbot names the exact GRANT at connect time.
Deltas are missing on a database I've inspected beforeStatistics were reset or the server restarted; pgbot suppresses deltas rather than reporting a fake −99% change. On serverless Postgres this is expected — see Serverless Postgres.
npx pgbot returns E404The bare npm name pgbot is blocked by npm's package-name-similarity rule; the package is scoped. Use npx @pgbot/cli.
Nothing leaves the machine unless you ask for it: every command except the AI layer is entirely local. The only commands that make an outbound call are pgbot explain and pgbot ask, which send the same PII-free Context to your configured model — OpenAI or Gemini (and say so, with a confirmation prompt).
That Context is PII-free by construction: pg_stat_statements text is normalized ($1 placeholders), and the one raw-SQL source (pg_stat_activity for blocking chains) is scrubbed of string/numeric literals, emails, and UUIDs before it can enter the Context. Connection strings are redacted in every log, error, and output. This holds for a reader of the source, not just as a claim.
Issues and PRs welcome — see CONTRIBUTING.md for the invariants that are load-bearing (read-only, deterministic findings, PII-free output) and the dev loop: go build ./cmd/pgbot, go test ./... (DB-dependent tests self-skip), and scripts/gate.sh before pushing. make matrix runs the suite against the PostgreSQL matrix in docker-compose.test.yml.
pgbot handles connection strings and reads production statistics. To report a vulnerability, use GitHub's private vulnerability reporting (Security → Report a vulnerability) — please don't open a public issue. Scope and response expectations are in SECURITY.md.
| Back | FazBrowse Home | New Git URL |