Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: postgresql-cfbot/postgresql
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: cf/5600~1
Choose a base ref
...
head repository: postgresql-cfbot/postgresql
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: cf/5600
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 24, 2025

  1. Clarify possibility of ephemeral discrepancies between state and wait…

    …_event in pg_stat_activity.
    tussosedan authored and Commitfest Bot committed Mar 24, 2025
    Copy the full SHA
    dfa996d View commit details
  2. [CF 5600] v3 - Doc: clarify possibility of ephemeral discrepancies be…

    …tween state and wait_event in pg_stat_activity
    
    This branch was automatically generated by a robot using patches from an
    email thread registered at:
    
    https://commitfest.postgresql.org/patch/5600
    
    The branch will be overwritten each time a new patch version is posted to
    the thread, and also periodically to check for bitrot caused by changes
    on the master branch.
    
    Patch(es): https://www.postgresql.org/message-id/3aaaddc1-dda9-4d5f-ade5-312a66c3e83a@gmail.com
    Author(s): Alex Friedman
    Commitfest Bot committed Mar 24, 2025
    Copy the full SHA
    6dd84f6 View commit details
Showing with 3 additions and 1 deletion.
  1. +3 −1 doc/src/sgml/monitoring.sgml
4 changes: 3 additions & 1 deletion doc/src/sgml/monitoring.sgml
Original file line number Diff line number Diff line change
@@ -1022,7 +1022,9 @@ postgres 27093 0.0 0.0 30096 2752 ? Ss 11:34 0:00 postgres: ser
it may or may not be <literal>waiting</literal> on some event. If the state
is <literal>active</literal> and <structfield>wait_event</structfield> is non-null, it
means that a query is being executed, but is being blocked somewhere
in the system.
in the system. To keep the reporting overhead low, the system does not attempt to
synchronize different aspects of activity data for a backend. As a result, ephemeral
discrepancies may exist between the view's columns.
</para>
</note>