pg_tracing
pg_tracing
pg_tracing : Distributed Tracing for PostgreSQL
Overview
| ID | Extension | Package | Version | Category | License | Language |
|---|---|---|---|---|---|---|
| 6010 | pg_tracing
|
pg_tracing
|
0.1.3 |
STAT
|
MIT
|
C
|
| Attribute | Has Binary | Has Library | Need Load | Has DDL | Relocatable | Trusted |
|---|---|---|---|---|---|---|
--sLd-r
|
No
|
Yes
|
Yes
|
Yes
|
yes
|
no
|
| Relationships | |
|---|---|
| See Also | pg_profile
pg_show_plans
pg_stat_kcache
pg_stat_monitor
pg_qualstats
pg_store_plans
pg_track_settings
pg_wait_sampling
|
Packages
| Type | Repo | Version | PG Major Compatibility | Package Pattern | Dependencies |
|---|---|---|---|---|---|
| EXT | PIGSTY
|
0.1.3 |
18
17
16
15
14
13
|
pg_tracing |
- |
| RPM | PIGSTY
|
0.1.3 |
18
17
16
15
14
13
|
pg_tracing_$v* |
- |
| DEB | PIGSTY
|
0.1.3 |
18
17
16
15
14
13
|
postgresql-$v-pg-tracing |
- |
| Linux / PG | PG18 | PG17 | PG16 | PG15 | PG14 | PG13 |
|---|---|---|---|---|---|---|
el8.x86_64
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
MISS
|
el8.aarch64
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
MISS
|
el9.x86_64
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
MISS
|
el9.aarch64
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
MISS
|
el10.x86_64
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
MISS
|
el10.aarch64
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
MISS
|
d12.x86_64
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
MISS
|
d12.aarch64
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
MISS
|
d13.x86_64
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
MISS
|
d13.aarch64
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
MISS
|
u22.x86_64
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
MISS
|
u22.aarch64
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
MISS
|
u24.x86_64
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
MISS
|
u24.aarch64
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
PIGSTY 0.1.3
|
MISS
|
Source
pig build pkg pg_tracing; # build rpm / deb with pigInstall
Make sure PGDG and PIGSTY repo available:
pig repo add pgdg pigsty -u # add both repo and update cacheInstall this extension with pig:
pig install pg_tracing; # install via package name, for the active PG version
pig install pg_tracing -v 18; # install for PG 18
pig install pg_tracing -v 17; # install for PG 17
pig install pg_tracing -v 16; # install for PG 16
pig install pg_tracing -v 15; # install for PG 15
pig install pg_tracing -v 14; # install for PG 14Config this extension to shared_preload_libraries:
shared_preload_libraries = 'pg_tracing';Create this extension with:
CREATE EXTENSION pg_tracing;Last updated on