pg_stat_ch
pg_stat_ch : Export PostgreSQL query telemetry to ClickHouse
Overview
| ID | Extension | Package | Version | Category | License | Language |
|---|---|---|---|---|---|---|
| 6020 | pg_stat_ch | pg_stat_ch | 0.3.6 | STAT | Apache-2.0 AND MIT AND BSD-2-Clause AND BSD-3-Clause | C++ |
| Attribute | Has Binary | Has Library | Need Load | Has DDL | Relocatable | Trusted |
|---|---|---|---|---|---|---|
--sLd-- | No | Yes | Yes | Yes | no | no |
| Relationships | |
|---|---|
| See Also | pg_tracing pg_stat_monitor pg_stat_kcache powa |
freeze due to new vcpkg dependency stack
Packages
| Type | Repo | Version | PG Major Compatibility | Package Pattern | Dependencies |
|---|---|---|---|---|---|
| EXT | PIGSTY | 0.3.6 | 18 17 16 15 14 | pg_stat_ch | - |
| RPM | PIGSTY | 0.3.6 | 18 17 16 15 14 | pg_stat_ch_$v | - |
| DEB | PIGSTY | 0.3.6 | 18 17 16 15 14 | postgresql-$v-pg-stat-ch | - |
| Linux / PG | PG18 | PG17 | PG16 | PG15 | PG14 |
|---|---|---|---|---|---|
el8.x86_64 | MISS | MISS | MISS | MISS | MISS |
el8.aarch64 | MISS | MISS | MISS | MISS | MISS |
el9.x86_64 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | MISS | MISS |
el9.aarch64 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | MISS | MISS |
el10.x86_64 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | MISS | MISS |
el10.aarch64 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | MISS | MISS |
d12.x86_64 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | MISS | MISS |
d12.aarch64 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | MISS | MISS |
d13.x86_64 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | MISS | MISS |
d13.aarch64 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | MISS | MISS |
u22.x86_64 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | MISS | MISS |
u22.aarch64 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | MISS | MISS |
u24.x86_64 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | MISS | MISS |
u24.aarch64 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | MISS | MISS |
u26.x86_64 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | MISS | MISS |
u26.aarch64 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | PIGSTY 0.3.6 | MISS | MISS |
Source
pig build pkg pg_stat_ch; # build rpm/debInstall
Make sure PGDG and PIGSTY repo available:
pig repo add pgsql -u # add both repo and update cacheInstall this extension with pig:
pig install pg_stat_ch; # install via package name, for the active PG version
pig install pg_stat_ch -v 18; # install for PG 18
pig install pg_stat_ch -v 17; # install for PG 17
pig install pg_stat_ch -v 16; # install for PG 16Config this extension to shared_preload_libraries:
shared_preload_libraries = 'pg_stat_ch';Create this extension with:
CREATE EXTENSION pg_stat_ch;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.
CREATE EXTENSION pg_stat_ch;Required Setup
pg_stat_ch must be preloaded and pointed at a ClickHouse database:
shared_preload_libraries = 'pg_stat_ch'
track_io_timing = on
pg_stat_ch.clickhouse_host = 'localhost'
pg_stat_ch.clickhouse_port = 9000
pg_stat_ch.clickhouse_database = 'pg_stat_ch'
pg_stat_ch.clickhouse_use_tls = on
pg_stat_ch.clickhouse_skip_tls_verify = offThe 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.
SELECT pg_stat_ch_version();
SELECT * FROM pg_stat_ch_stats();
SELECT pg_stat_ch_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.