Summary
Whenever ANALYZE is running, the pg_stat_progress_analyze view will contain a row for each backend that is currently running that command. The tables below describe the information that will be reported and provide information about how to interpret it.
(Description quoted from the official PostgreSQL documentation.)
Columns
The pg_stat_progress_analyze statistics view exposes the following columns (names, types and descriptions are taken verbatim from the PostgreSQL documentation):
pidinteger
Process ID of backend.datidoid
OID of the database to which this backend is connected.datnamename
Name of the database to which this backend is connected.relidoid
OID of the table being analyzed.phasetext
Current processing phase. See analyze_phases.sample_blks_totalbigint
Total number of heap blocks that will be sampled.sample_blks_scannedbigint
Number of heap blocks scanned.ext_stats_totalbigint
Number of extended statistics.ext_stats_computedbigint
Number of extended statistics computed. This counter only advances when the phase is computing extended statistics.child_tables_totalbigint
Number of child tables.child_tables_donebigint
Number of child tables scanned. This counter only advances when the phase is acquiring inherited sample rows.current_child_table_relidoid
OID of the child table currently being scanned. This field is only valid when the phase is acquiring inherited sample rows.delay_timedouble precision
Total time spent sleeping due to cost-based delay (see runtime_config_resource_vacuum_cost), in milliseconds (if track_cost_delay_timing is enabled, otherwise zero).started_bytext
Shows what caused the current ANALYZE operation to be started. Possible values are: manual: The analyze was started by an explicit ANALYZE, or by VACUUM with the ANALYZE option. autovacuum: The analyze was started by an autovacuum worker.
Version applicability
Present in PostgreSQL 17, 18, 19 (verified against each release’s documentation). This is a long-standing system object that also exists in earlier PostgreSQL releases.
Related & references
Reference: PostgreSQL documentation — pg_stat_progress_analyze.