pgfr_analyze
pg_flight_recorder : Reporting and analysis functions for pgfr_record
Overview
| ID | Extension | Package | Version | Category | License | Language |
|---|---|---|---|---|---|---|
| 6061 | pgfr_analyze | pg_flight_recorder | 2.29.2 | STAT | Apache-2.0 | SQL |
| Attribute | Has Binary | Has Library | Need Load | Has DDL | Relocatable | Trusted |
|---|---|---|---|---|---|---|
----d-- | No | No | No | Yes | no | no |
| Relationships | |
|---|---|
| Schemas | pgfr_analyze |
| Requires | pgfr_record |
| See Also | pgfr_record pg_profile pg_stat_statements |
| Siblings | pgfr_record |
Secondary extension shipped by pg_flight_recorder; requires pgfr_record.
Packages
| Type | Repo | Version | PG Major Compatibility | Package Pattern | Dependencies |
|---|---|---|---|---|---|
| EXT | PIGSTY | 2.29.2 | 18 17 16 15 14 | pg_flight_recorder | pgfr_record |
| RPM | PIGSTY | 2.29.2 | 18 17 16 15 14 | pg_flight_recorder_$v | pg_cron_$v |
| DEB | PIGSTY | 2.29.2 | 18 17 16 15 14 | postgresql-$v-pg-flight-recorder | postgresql-$v-cron |
| Linux / PG | PG18 | PG17 | PG16 | PG15 | PG14 |
|---|---|---|---|---|---|
el8.x86_64 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | MISS |
el8.aarch64 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | MISS |
el9.x86_64 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | MISS |
el9.aarch64 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | MISS |
el10.x86_64 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | MISS |
el10.aarch64 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | MISS |
d12.x86_64 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | MISS |
d12.aarch64 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | MISS |
d13.x86_64 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | MISS |
d13.aarch64 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | MISS |
u22.x86_64 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | MISS |
u22.aarch64 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | MISS |
u24.x86_64 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | MISS |
u24.aarch64 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | MISS |
u26.x86_64 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | MISS |
u26.aarch64 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | PIGSTY 2.29.2 | MISS |
Source
pig build pkg pg_flight_recorder; # build rpm/debInstall
Make sure PGDG and PIGSTY repo available:
pig repo add pgsql -u # add both repo and update cacheInstall this extension with pig:
pig install pg_flight_recorder; # install via package name, for the active PG version
pig install pgfr_analyze; # install by extension name, for the current active PG version
pig install pgfr_analyze -v 18; # install for PG 18
pig install pgfr_analyze -v 17; # install for PG 17
pig install pgfr_analyze -v 16; # install for PG 16
pig install pgfr_analyze -v 15; # install for PG 15Create this extension with:
CREATE EXTENSION pgfr_analyze CASCADE; -- requires pgfr_recordUsage
Sources:
- pgfr_analyze v2.29.2 README
- pgfr_analyze control file
- pg_flight_recorder v2.29.2 reference
- v2.29.2 release notes
pgfr_analyze is the read-oriented analysis half of PostgreSQL Flight Recorder. It interprets history captured by pgfr_record to compare periods, summarize waits, assemble incident timelines, detect regressions, and estimate blast radius. Install it after pgfr_record and use it for diagnosis rather than collection.
Install the Analysis Layer
CREATE EXTENSION pg_cron;
CREATE EXTENSION pgfr_record;
CREATE EXTENSION pgfr_analyze;
SELECT pgfr_record.enable();
pgfr_analyze depends on recorder objects and has no useful history until pgfr_record has collected samples. It does not require its own background worker.
Start an Incident Investigation
Summarize what happened around a known timestamp:
SELECT *
FROM pgfr_analyze.what_happened_at(
now() - interval '15 minutes'
);
Build an ordered incident view over a period:
SELECT *
FROM pgfr_analyze.incident_timeline(
now() - interval '30 minutes',
now()
);
Compare a suspect period with a baseline using compare, then narrow the result with wait_summary or anomaly_report. Always inspect the installed function signatures with psql or pg_get_function_arguments because optional parameters can change between releases.
Analysis Index
- compare: contrast metrics across baseline and incident windows.
- wait_summary: aggregate sampled wait events.
- report and anomaly_report: produce broad or anomaly-focused summaries.
- what_happened_at: inspect observations around one timestamp.
- incident_timeline: order notable events over a range.
- detect_regressions and detect_query_storms: flag worsening behavior or query bursts.
- blast_radius: identify affected sessions or workloads.
- capacity_summary and capacity_report: summarize capacity-related signals.
- configuration analysis: relate relevant setting changes to the period.
Interpretation Workflow
- Confirm pgfr_record.health_check() and the available sample interval.
- Choose explicit baseline and incident windows with comparable workload.
- Use compare and wait_summary to locate the dominant change.
- Correlate activity, locks, replication, vacuum, and configuration evidence.
- Validate hypotheses against PostgreSQL logs, query plans, application telemetry, and host metrics.
Caveats
- Results are observations and heuristics, not proof of causality. Sparse sampling can miss short events.
- Counter resets, extension upgrades, restarts, retention gaps, and workload seasonality can distort comparisons.
- Some findings are richer when pg_stat_statements is enabled and sufficiently sized.
- Access to analysis output can expose query text and operational metadata; restrict privileges accordingly.
- v2.29.2 mainly improves managed-service scheduling behavior in pgfr_record. It does not replace the need to verify that collection jobs actually ran.