pg_stat_ch
Overview
| Package | Version | Category | License | Language |
|---|---|---|---|---|
pg_stat_ch | 0.3.6 | STAT | Apache-2.0 | C++ |
| ID | Extension | Bin | Lib | Load | Create | Trust | Reloc | Schema |
|---|---|---|---|---|---|---|---|---|
| 6020 | pg_stat_ch | No | Yes | Yes | Yes | No | No | - |
| Related | pg_clickhouse pg_stat_monitor pgmonitor pg_datasentinel duckdb_fdw pgsentinel pgnodemx pg_duckdb system_stats pg_profile |
|---|
freeze due to new vcpkg dependency stack
Version
| Type | Repo | Version | PG Ver | Package | Deps |
|---|---|---|---|---|---|
| EXT | PIGSTY | 0.3.6 | 1817161514 | pg_stat_ch | - |
| RPM | PIGSTY | 0.3.6 | 1817161514 | pg_stat_ch_$v | - |
| DEB | PIGSTY | 0.3.6 | 1817161514 | postgresql-$v-pg-stat-ch | - |
Build
You can build the RPM / DEB packages for pg_stat_ch using pig build:
Install
You can install pg_stat_ch directly. First, make sure the PGDG and PIGSTY repositories are added and enabled:
Install the extension using pig or apt/yum/dnf:
Preload:
Create Extension:
Usage
Sources: README, release 0.3.6
pg_stat_ch captures per-query PostgreSQL execution telemetry and exports raw events to ClickHouse through a shared-memory queue and background worker. The upstream project positions it as a raw-event alternative to pg_stat_statements, with aggregation and dashboards handled in ClickHouse instead of PostgreSQL.
Required Setup
pg_stat_ch must be preloaded and pointed at a ClickHouse database:
The README says PostgreSQL 16, 17, and 18 are fully supported; the latest release is 0.3.6 from April 15, 2026.
SQL API
pg_stat_ch_version()returns the extension version.pg_stat_ch_stats()exposes queue and exporter counters.pg_stat_ch_reset()clears queue counters.pg_stat_ch_flush()triggers an immediate export flush.
Important GUCs
pg_stat_ch.enabledtoggles collection.pg_stat_ch.queue_capacityandpg_stat_ch.string_area_sizesize the shared-memory buffers.pg_stat_ch.flush_interval_msandpg_stat_ch.batch_maxcontrol exporter cadence and batch size.pg_stat_ch.log_min_elevelcontrols which errors are captured.
What Gets Captured
- Query timing, row counts, buffer usage, WAL usage, and CPU time.
- DML, DDL, and utility statements.
- SQLSTATE and error levels.
- JIT metrics on PostgreSQL 15+.
- Parallel worker stats on PostgreSQL 18+.
- Application name, client IP, and query text up to the upstream truncation limit.
Release 0.3.6 replaces the normalize cache with a queryId-keyed LRU cache and replaces the OpenTelemetry SDK with a direct-protobuf exporter plus sampling support. Existing SQL usage remains centered on the event tables, summary views, and reset/version helper functions above.
Caveats
- The design intentionally drops events on queue overflow instead of blocking the foreground query path.
- ClickHouse schema creation is a required part of setup; upstream quickstart scripts preload it automatically, but manual deployments must load the schema separately.
- Pigsty’s current RPM refresh for
pg_stat_chis PostgreSQL 16-18 on EL9/EL10 only; Debian/Ubuntu packages remain PostgreSQL 16-18 on the active targets.
Was this page helpful?
Thanks—your feedback helps us improve this page.
What got in the way? (optional)