github zubkov-andrei/pg_profile 4.3
Release 4.3

latest releases: 4.7, 4.6, 4.5...
11 months ago

pg_profile 4.3

Installation

Provided file pg_profile--4.3.tar.gz is to be extracted into extension folder of postgresql installation:

sudo tar xzf pg_profile--4.3.tar.gz --directory $(pg_config --sharedir)/extension

You will need plpgsql and dblink extensions in your database, and pg_stat_statements extension if you need statements statistics. Then, you can create extension in postgresql database:

CREATE SCHEMA profile;
CREATE EXTENSION pg_profile SCHEMA profile;

If previous version of pg_profile is installed in your database, it can be updated:

ALTER EXTENSION pg_profile UPDATE;

Use provided pg_profile--4.3_manual.tar.gz file only for manual objects creation in restricted environments (when you have no file system access). Right now export and import functionalities is not supported in manually installed version.

For further setup and usage details refer to doc/pg_profile.md file

Grafana dashboards

You can use Grafana to visualize pg_profile samples data as time series. It will help you to find time intervals for reports. Dashboards are in pg_profile_grafana_4.3.tar.gz file.

Changelog

  • Postgres 16 supported
  • data collection supported for pg_stat_slru
  • New report section "Cluster I/O statistics" (for Postgres 16)
  • New report section "Cluster SLRU statistics"
  • New report section "Top tables by new-page updated tuples" (for Postgres 16)
  • Highlight of topics in table of contents sidebar containing selected object data (@Djoongaar)
  • Privileges. Every user can now build a report, but the pg_read_all_stats role must be granted to user to see query texts. See Privileges

Don't miss a new pg_profile release

NewReleases is sending notifications on new releases.