pg_datasentinel
PostgreSQL 可观测性与活动监控扩展
仓库
datasentinel/pg_datasentinel
https://github.com/datasentinel/pg_datasentinel
源码
pg_datasentinel-1.0.tar.gz
pg_datasentinel-1.0.tar.gz
概览
| 扩展包名 | 版本 | 分类 | 许可证 | 语言 |
|---|---|---|---|---|
pg_datasentinel | 1.0 | STAT | BSD-3-Clause | C |
| ID | 扩展名 | Bin | Lib | Load | Create | Trust | Reloc | 模式 |
|---|---|---|---|---|---|---|---|---|
| 6400 | pg_datasentinel | 否 | 是 | 是 | 是 | 否 | 否 | - |
| 相关扩展 | pgsentinel system_stats pg_profile pg_stat_monitor pg_stat_kcache powa |
|---|
shared_preload_libraries = pg_datasentinel is required because the extension allocates shared memory and hooks into activity logging.
版本
| 类型 | 仓库 | 版本 | PG 大版本 | 包名 | 依赖 |
|---|---|---|---|---|---|
| EXT | PIGSTY | 1.0 | 1817161514 | pg_datasentinel | - |
| RPM | PIGSTY | 1.0 | 1817161514 | pg_datasentinel_$v | - |
| DEB | PIGSTY | 1.0 | 1817161514 | postgresql-$v-pg-datasentinel | - |
构建
您可以使用 pig build 命令构建 pg_datasentinel 扩展的 RPM / DEB 包:
pig build pkg pg_datasentinel # 构建 RPM / DEB 包
安装
您可以直接安装 pg_datasentinel 扩展包的预置二进制包,首先确保 PGDG 和 PIGSTY 仓库已经添加并启用:
pig repo add pgsql -u # 添加仓库并更新缓存
使用 pig 或者是 apt/yum/dnf 安装扩展:
pig install pg_datasentinel; # 当前活跃 PG 版本安装
pig ext install -y pg_datasentinel -v 18 # PG 18
pig ext install -y pg_datasentinel -v 17 # PG 17
pig ext install -y pg_datasentinel -v 16 # PG 16
pig ext install -y pg_datasentinel -v 15 # PG 15
dnf install -y pg_datasentinel_18 # PG 18
dnf install -y pg_datasentinel_17 # PG 17
dnf install -y pg_datasentinel_16 # PG 16
dnf install -y pg_datasentinel_15 # PG 15
apt install -y postgresql-18-pg-datasentinel # PG 18
apt install -y postgresql-17-pg-datasentinel # PG 17
apt install -y postgresql-16-pg-datasentinel # PG 16
apt install -y postgresql-15-pg-datasentinel # PG 15
预加载配置:
shared_preload_libraries = 'pg_datasentinel';
创建扩展:
CREATE EXTENSION pg_datasentinel;
用法
pg_datasentinel 在 PostgreSQL 的活动、维护、临时文件、检查点、事务回卷与容器资源数据之上提供可观测性视图。由于它会分配共享内存并挂接活动日志记录,因此必须预加载。
所需设置
-- postgresql.conf
shared_preload_libraries = 'pg_datasentinel'
log_autovacuum_min_duration = 0
log_temp_files = 0
log_checkpoints = on
CREATE EXTENSION pg_datasentinel;
主要视图
ds_stat_activity:在pg_stat_activity基础上扩展后端 RSS、可选 PSS、临时文件字节数,以及 PostgreSQL 18+ 上的plan_id。ds_container_resources:报告 cgroup CPU 与内存限制,以及当前使用量。ds_wraparound_risk:基于每小时快照估算距离激进清理与事务回卷的 XID、MXID 预计时间。ds_xid_snapshots:ds_wraparound_risk使用的原始快照历史。ds_vacuum_activity、ds_analyze_activity、ds_tempfile_activity、ds_checkpoint_activity:用于维护与检查点事件的共享内存环形缓冲区。ds_activity_summary:返回环形缓冲区占用和时间戳的一行汇总。
常用 GUCs
pg_datasentinel.enabled:启用或禁用采集。pg_datasentinel.max_entries:每类活动流的环形缓冲区容量;修改后需要重启。pg_datasentinel.maintenance_force_verbose:为手工VACUUM与ANALYZE添加VERBOSE,以便被捕获。pg_datasentinel.ignore_system_schemas:抑制pg_catalog与information_schema噪声。pg_datasentinel.enable_pss_memory:读取/proc/*/smaps_rollup以获取每个后端的 PSS。
注意事项
- 上游要求 PostgreSQL 15+。
- 内存与临时文件增强信息依赖 Linux
/proc;容器指标依赖 cgroups。 - VACUUM 与 ANALYZE 的解析依赖英文日志关键字,因此不完全支持已翻译的服务器消息区域设置。
plan_id仅在 PostgreSQL 18+ 上填充,并且与 README 中链接的官方pg_store_plans分支搭配时最有价值。