pg_stat_statements

track planning and execution statistics of all SQL statements executed

Overview

CONTRIB Built-in Extension: pg_stat_statements : track planning and execution statistics of all SQL statements executed

Information

Metadata

  • Latest Version: 1.11
  • Postgres Support: 17,16,15,14,13
  • Need Load: Explicit Loading Required
  • Need DDL: Need CREATE EXTENSION DDL
  • Relocatable: Unknown
  • Trusted: Untrusted, Require Superuser to Create
  • Schemas: N/A
  • Requires: N/A

RPM / DEB

PostgreSQL Built-in Contrib Extension


Packages

OS Arch PG17 PG16 PG15 PG14 PG13
el8 x86_64
el8 aarch64
el9 x86_64
el9 aarch64
d12 x86_64
d12 aarch64
u22 x86_64
u22 aarch64
u24 x86_64
u24 aarch64

Installation

Extension pg_stat_statements is PostgreSQL Built-in Contrib Extension which is installed along with the kernel/contrib.

Install pg_stat_statements RPM from YUM repo directly:

dnf install postgresql17-contrib;
dnf install postgresql16-contrib;
dnf install postgresql15-contrib;
dnf install postgresql14-contrib;
dnf install postgresql13-contrib;

Install pg_stat_statements DEB from APT repo directly:

apt install postgresql-17;
apt install postgresql-16;
apt install postgresql-15;
apt install postgresql-14;
apt install postgresql-13;

Extension pg_stat_statements has to be added to shared_preload_libraries

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

Enable pg_stat_statements extension on PostgreSQL cluster:

CREATE EXTENSION pg_stat_statements;




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