Enable OpenTelemetry mode
Set these parameters inpostgresql.conf and restart PostgreSQL:
use_otel is enabled, the ClickHouse connection parameters are ignored. The background worker sends events to the OTel collector via gRPC.
How it works
The OTel exporter maps pg_stat_ch events to OpenTelemetry semantic conventions:- Logs: Each query execution becomes an OTel log record with attributes following the database semantic conventions (
db.name,db.user,db.operation.name,db.statement). - Metrics: Query duration is exported as a histogram metric at a configurable interval, allowing you to view latency distributions in your metrics backend.
Configuration
All OTel-specific parameters require a PostgreSQL restart.| Parameter | Default | Description |
|---|---|---|
pg_stat_ch.otel_endpoint | localhost:4317 | OTel collector gRPC endpoint (host:port) |
pg_stat_ch.otel_log_queue_size | 65536 | Max log records buffered before dropping |
pg_stat_ch.otel_log_batch_size | 8192 | Records per gRPC export call |
pg_stat_ch.otel_log_max_bytes | 3145728 (3 MiB) | Max gRPC message size |
pg_stat_ch.otel_log_delay_ms | 100 | Delay between batch exports |
pg_stat_ch.otel_metric_interval_ms | 5000 | Metric histogram export interval |
Example: OTel Collector to ClickHouse
You can use the OpenTelemetry Collector as a middle layer between pg_stat_ch and ClickHouse. This is useful when you want to fan out data to multiple backends or apply transformations.Example: Grafana with Tempo/Loki
Route pg_stat_ch logs to Loki and metrics to Prometheus/Mimir for Grafana dashboards:Verify data is flowing
Check export health the same way as with ClickHouse:send_failures is increasing, check:
- The OTel collector is running and reachable at the configured endpoint
- The collector’s gRPC receiver is listening on port 4317
- PostgreSQL logs for connection error details

