pg_tracing

Distributed Tracing for PostgreSQL

Overview

PIGSTY 3rd Party Extension: pg_tracing : Distributed Tracing for PostgreSQL

Information

Metadata

  • Latest Version: 0.1.0
  • Postgres Support: 17,16,15
  • Need Load: Explicit Loading Required
  • Need DDL: Need CREATE EXTENSION DDL
  • Relocatable: Can not install to arbitrary schema
  • Trusted: Untrusted, Require Superuser to Create
  • Schemas: N/A
  • Requires: N/A

RPM / DEB

  • RPM Repo: PIGSTY
  • RPM Name: pg_tracing_$v*
  • RPM Ver : 0.1.0
  • RPM Deps: N/A
  • DEB Repo: PIGSTY
  • DEB Name: postgresql-$v-pg-tracing
  • DEB Ver : 0.1.0
  • DEB Deps: N/A

Packages

OS Arch PG17 PG16 PG15 PG14 PG13
el8 x86_64 pg_tracing_17
PIGSTY 0.1.2
pg_tracing_16
PIGSTY 0.1.2
pg_tracing_15
PIGSTY 0.1.2
el8 aarch64 pg_tracing_17
PIGSTY 0.1.2
pg_tracing_16
PIGSTY 0.1.2
pg_tracing_15
PIGSTY 0.1.2
el9 x86_64 pg_tracing_17
PIGSTY 0.1.2
pg_tracing_16
PIGSTY 0.1.2
pg_tracing_15
PIGSTY 0.1.2
el9 aarch64 pg_tracing_17
PIGSTY 0.1.2
pg_tracing_16
PIGSTY 0.1.2
pg_tracing_15
PIGSTY 0.1.2
d12 x86_64 postgresql-17-pg-tracing
PIGSTY 0.1.2
postgresql-16-pg-tracing
PIGSTY 0.1.2
postgresql-15-pg-tracing
PIGSTY 0.1.2
d12 aarch64 postgresql-17-pg-tracing
PIGSTY 0.1.2
postgresql-16-pg-tracing
PIGSTY 0.1.2
postgresql-15-pg-tracing
PIGSTY 0.1.2
u22 x86_64 postgresql-17-pg-tracing
PIGSTY 0.1.2
postgresql-16-pg-tracing
PIGSTY 0.1.2
postgresql-15-pg-tracing
PIGSTY 0.1.2
u22 aarch64 postgresql-17-pg-tracing
PIGSTY 0.1.2
postgresql-16-pg-tracing
PIGSTY 0.1.2
postgresql-15-pg-tracing
PIGSTY 0.1.2
u24 x86_64 postgresql-17-pg-tracing
PIGSTY 0.1.2
postgresql-16-pg-tracing
PIGSTY 0.1.2
postgresql-15-pg-tracing
PIGSTY 0.1.2
u24 aarch64 postgresql-17-pg-tracing
PIGSTY 0.1.2
postgresql-16-pg-tracing
PIGSTY 0.1.2
postgresql-15-pg-tracing
PIGSTY 0.1.2

Installation

Install pg_tracing via the pig CLI tool:

pig ext install pg_tracing

Install pg_tracing via Pigsty playbook:

./pgsql.yml -t pg_extension -e '{"pg_extensions": ["pg_tracing"]}' # -l <cls>

Install pg_tracing RPM from YUM repo directly:

dnf install pg_tracing_17*;
dnf install pg_tracing_16*;
dnf install pg_tracing_15*;

Install pg_tracing DEB from APT repo directly:

apt install postgresql-17-pg-tracing;
apt install postgresql-16-pg-tracing;
apt install postgresql-15-pg-tracing;

Extension pg_tracing has to be added to shared_preload_libraries

shared_preload_libraries = 'pg_tracing'; # add to pg cluster config

Enable pg_tracing extension on PostgreSQL cluster:

CREATE EXTENSION pg_tracing;




Last modified 2025-02-17: add extension part (cfa504b)