pgbouncer_fdw
pgbouncer_fdw
Extension for querying PgBouncer stats from normal SQL views & running pgbouncer commands from normal SQL functions
Overview
| ID | Extension | Package | Version | Category | License | Language |
|---|---|---|---|---|---|---|
| 8650 | pgbouncer_fdw | pgbouncer_fdw | 1.4.0 | FDW | PostgreSQL | SQL |
| Attribute | Has Binary | Has Library | Need Load | Has DDL | Relocatable | Trusted |
|---|---|---|---|---|---|---|
--s-d-- | No | Yes | No | Yes | no | no |
| Relationships | |
|---|---|
| See Also | dblink postgres_fdw pg_stat_monitor pg_stat_statements wrappers multicorn odbc_fdw jdbc_fdw |
Packages
| Type | Repo | Version | PG Major Availability | Package Pattern | Dependencies |
|---|---|---|---|---|---|
| EL | PGDG | 1.4.0 | 18 17 16 15 14 13 | pgbouncer_fdw_$v | - |
| Linux / PG | PG18 | PG17 | PG16 | PG15 | PG14 | PG13 |
|---|---|---|---|---|---|---|
el8.x86_64 | PGDG 1.4.0 | PGDG 1.4.0 | PGDG 1.4.0 | PGDG 1.4.0 | PGDG 1.4.0 | PGDG 1.4.0 |
el8.aarch64 | PGDG 1.4.0 | PGDG 1.4.0 | PGDG 1.4.0 | PGDG 1.4.0 | PGDG 1.4.0 | PGDG 1.4.0 |
el9.x86_64 | PGDG 1.4.0 | PGDG 1.4.0 | PGDG 1.4.0 | PGDG 1.4.0 | PGDG 1.4.0 | PGDG 1.4.0 |
el9.aarch64 | PGDG 1.4.0 | PGDG 1.4.0 | PGDG 1.4.0 | PGDG 1.4.0 | PGDG 1.4.0 | PGDG 1.4.0 |
el10.x86_64 | PGDG 1.4.0 | PGDG 1.4.0 | PGDG 1.4.0 | PGDG 1.4.0 | PGDG 1.4.0 | PGDG 1.4.0 |
el10.aarch64 | PGDG 1.4.0 | PGDG 1.4.0 | PGDG 1.4.0 | PGDG 1.4.0 | PGDG 1.4.0 | PGDG 1.4.0 |
d12.x86_64 | MISS | MISS | MISS | MISS | MISS | MISS |
d12.aarch64 | MISS | MISS | MISS | MISS | MISS | MISS |
d13.x86_64 | MISS | MISS | MISS | MISS | MISS | MISS |
d13.aarch64 | MISS | MISS | MISS | MISS | MISS | MISS |
u22.x86_64 | MISS | MISS | MISS | MISS | MISS | MISS |
u22.aarch64 | MISS | MISS | MISS | MISS | MISS | MISS |
u24.x86_64 | MISS | MISS | MISS | MISS | MISS | MISS |
u24.aarch64 | MISS | MISS | MISS | MISS | MISS | MISS |
| Package | Version | OS | ORG | SIZE | File URL |
|---|---|---|---|---|---|
pgbouncer_fdw_18 | 1.4.0 | el8.x86_64 | pgdg | 24.0 KiB | pgbouncer_fdw_18-1.4.0-1PGDG.rhel8.x86_64.rpm |
pgbouncer_fdw_18 | 1.4.0 | el8.aarch64 | pgdg | 23.9 KiB | pgbouncer_fdw_18-1.4.0-1PGDG.rhel8.aarch64.rpm |
pgbouncer_fdw_18 | 1.4.0 | el9.x86_64 | pgdg | 21.9 KiB | pgbouncer_fdw_18-1.4.0-1PGDG.rhel9.x86_64.rpm |
pgbouncer_fdw_18 | 1.4.0 | el9.aarch64 | pgdg | 21.8 KiB | pgbouncer_fdw_18-1.4.0-1PGDG.rhel9.aarch64.rpm |
pgbouncer_fdw_18 | 1.4.0 | el10.x86_64 | pgdg | 22.4 KiB | pgbouncer_fdw_18-1.4.0-1PGDG.rhel10.x86_64.rpm |
pgbouncer_fdw_18 | 1.4.0 | el10.aarch64 | pgdg | 22.4 KiB | pgbouncer_fdw_18-1.4.0-1PGDG.rhel10.aarch64.rpm |
Source
Install
To add the required PGDG / PIGSTY upstream repository, use:
pig repo add pgsql -u # add PGDG + Pigsty repo and update cache (leave existing repos)Install this extension with:
pig ext install pgbouncer_fdw; # install by extension name, for the current active PG version
pig ext install pgbouncer_fdw; # install via package alias, for the active PG version
pig ext install pgbouncer_fdw -v 18; # install for PG 18
pig ext install pgbouncer_fdw -v 17; # install for PG 17
pig ext install pgbouncer_fdw -v 16; # install for PG 16
pig ext install pgbouncer_fdw -v 15; # install for PG 15
pig ext install pgbouncer_fdw -v 14; # install for PG 14
pig ext install pgbouncer_fdw -v 13; # install for PG 13Create this extension with:
CREATE EXTENSION pgbouncer_fdw;Last updated on