LCOV - differential code coverage report
Current view: top level - src/backend/utils/activity - pgstat_wal.c (source / functions) Coverage Total Hit UBC CBC
Current: 603a3335f2b60b2c798da5c627b3bb288b92a7bd vs e395fbd32a07557de4ac98088928c1749d4845d8 Lines: 98.1 % 52 51 1 51
Current Date: 2026-07-25 17:13:00 -0400 Functions: 100.0 % 8 8 8
Baseline: lcov-20260726-baseline Branches: 71.4 % 14 10 4 10
Baseline Date: 2026-07-25 19:16:42 +0200 Line coverage date bins:
Legend: Lines:     hit not hit
Branches: + taken - not taken # not executed
(30,360] days: 100.0 % 1 1 1
(360..) days: 98.0 % 51 50 1 50
Function coverage date bins:
(360..) days: 100.0 % 8 8 8
Branch coverage date bins:
(360..) days: 71.4 % 14 10 4 10

 Age         Owner                    Branch data    TLA  Line data    Source code
                                  1                 :                : /* -------------------------------------------------------------------------
                                  2                 :                :  *
                                  3                 :                :  * pgstat_wal.c
                                  4                 :                :  *    Implementation of WAL statistics.
                                  5                 :                :  *
                                  6                 :                :  * This file contains the implementation of WAL statistics. It is kept
                                  7                 :                :  * separate from pgstat.c to enforce the line between the statistics access /
                                  8                 :                :  * storage implementation and the details about individual types of
                                  9                 :                :  * statistics.
                                 10                 :                :  *
                                 11                 :                :  * Copyright (c) 2001-2026, PostgreSQL Global Development Group
                                 12                 :                :  *
                                 13                 :                :  * IDENTIFICATION
                                 14                 :                :  *    src/backend/utils/activity/pgstat_wal.c
                                 15                 :                :  * -------------------------------------------------------------------------
                                 16                 :                :  */
                                 17                 :                : 
                                 18                 :                : #include "postgres.h"
                                 19                 :                : 
                                 20                 :                : #include "executor/instrument.h"
                                 21                 :                : #include "utils/pgstat_internal.h"
                                 22                 :                : 
                                 23                 :                : 
                                 24                 :                : /*
                                 25                 :                :  * WAL usage counters saved from pgWalUsage at the previous call to
                                 26                 :                :  * pgstat_report_wal(). This is used to calculate how much WAL usage
                                 27                 :                :  * happens between pgstat_report_wal() calls, by subtracting
                                 28                 :                :  * the previous counters from the current ones.
                                 29                 :                :  */
                                 30                 :                : static WalUsage prevWalUsage;
                                 31                 :                : 
                                 32                 :                : 
                                 33                 :                : /*
                                 34                 :                :  * Calculate how much WAL usage counters have increased and update
                                 35                 :                :  * shared WAL and IO statistics.
                                 36                 :                :  *
                                 37                 :                :  * Must be called by processes that generate WAL, that do not call
                                 38                 :                :  * pgstat_report_stat(), like walwriter.
                                 39                 :                :  *
                                 40                 :                :  * "force" set to true ensures that the statistics are flushed; note that
                                 41                 :                :  * this needs to acquire the pgstat shmem LWLock, waiting on it.  When
                                 42                 :                :  * set to false, the statistics may not be flushed if the lock could not
                                 43                 :                :  * be acquired.
                                 44                 :                :  */
                                 45                 :                : void
 1572 andres@anarazel.de         46                 :CBC       48238 : pgstat_report_wal(bool force)
                                 47                 :                : {
                                 48                 :                :     bool        nowait;
                                 49                 :                : 
                                 50                 :                :     /* like in pgstat.c, don't wait for lock acquisition when !force */
 1034 michael@paquier.xyz        51                 :          48238 :     nowait = !force;
                                 52                 :                : 
                                 53                 :                :     /* flush wal stats */
  515                            54                 :          48238 :     (void) pgstat_wal_flush_cb(nowait);
  502                            55                 :          48238 :     pgstat_flush_backend(nowait, PGSTAT_BACKEND_FLUSH_WAL);
                                 56                 :                : 
                                 57                 :                :     /* flush IO stats */
 1034                            58                 :          48238 :     pgstat_flush_io(nowait);
  510                            59                 :          48238 :     (void) pgstat_flush_backend(nowait, PGSTAT_BACKEND_FLUSH_IO);
 1572 andres@anarazel.de         60                 :          48238 : }
                                 61                 :                : 
                                 62                 :                : /*
                                 63                 :                :  * Support function for the SQL-callable pgstat* functions. Returns
                                 64                 :                :  * a pointer to the WAL statistics struct.
                                 65                 :                :  */
                                 66                 :                : PgStat_WalStats *
                                 67                 :             40 : pgstat_fetch_stat_wal(void)
                                 68                 :                : {
                                 69                 :             40 :     pgstat_snapshot_fixed(PGSTAT_KIND_WAL);
                                 70                 :                : 
                                 71                 :             40 :     return &pgStatLocal.snapshot.wal;
                                 72                 :                : }
                                 73                 :                : 
                                 74                 :                : /*
                                 75                 :                :  * To determine whether WAL usage happened.
                                 76                 :                :  */
                                 77                 :                : static inline bool
  363 michael@paquier.xyz        78                 :          89782 : pgstat_wal_have_pending(void)
                                 79                 :                : {
                                 80                 :          89782 :     return pgWalUsage.wal_records != prevWalUsage.wal_records;
                                 81                 :                : }
                                 82                 :                : 
                                 83                 :                : /*
                                 84                 :                :  * Calculate how much WAL usage counters have increased by subtracting the
                                 85                 :                :  * previous counters from the current ones.
                                 86                 :                :  *
                                 87                 :                :  * If nowait is true, this function returns true if the lock could not be
                                 88                 :                :  * acquired. Otherwise return false.
                                 89                 :                :  */
                                 90                 :                : bool
  685                            91                 :          89782 : pgstat_wal_flush_cb(bool nowait)
                                 92                 :                : {
 1572 andres@anarazel.de         93                 :          89782 :     PgStatShared_Wal *stats_shmem = &pgStatLocal.shmem->wal;
 1214                            94                 :          89782 :     WalUsage    wal_usage_diff = {0};
                                 95                 :                : 
 1572                            96   [ +  +  -  + ]:          89782 :     Assert(IsUnderPostmaster || !IsPostmasterEnvironment);
                                 97   [ +  -  -  + ]:          89782 :     Assert(pgStatLocal.shmem != NULL &&
                                 98                 :                :            !pgStatLocal.shmem->is_shutdown);
                                 99                 :                : 
                                100                 :                :     /*
                                101                 :                :      * This function can be called even if nothing at all has happened. Avoid
                                102                 :                :      * taking lock for nothing in that case.
                                103                 :                :      */
  363 michael@paquier.xyz       104         [ +  + ]:          89782 :     if (!pgstat_wal_have_pending())
 1572 andres@anarazel.de        105                 :          74072 :         return false;
                                106                 :                : 
                                107                 :                :     /*
                                108                 :                :      * We don't update the WAL usage portion of the local WalStats elsewhere.
                                109                 :                :      * Calculate how much WAL usage counters were increased by subtracting the
                                110                 :                :      * previous counters from the current ones.
                                111                 :                :      */
 1214                           112                 :          15710 :     WalUsageAccumDiff(&wal_usage_diff, &pgWalUsage, &prevWalUsage);
                                113                 :                : 
 1572                           114         [ +  + ]:          15710 :     if (!nowait)
                                115                 :          10244 :         LWLockAcquire(&stats_shmem->lock, LW_EXCLUSIVE);
                                116         [ -  + ]:           5466 :     else if (!LWLockConditionalAcquire(&stats_shmem->lock, LW_EXCLUSIVE))
 1572 andres@anarazel.de        117                 :UBC           0 :         return true;
                                118                 :                : 
                                119                 :                : #define WALSTAT_ACC(fld, var_to_add) \
                                120                 :                :     (stats_shmem->stats.wal_counters.fld += var_to_add.fld)
 1214 andres@anarazel.de        121                 :CBC       15710 :     WALSTAT_ACC(wal_records, wal_usage_diff);
                                122                 :          15710 :     WALSTAT_ACC(wal_fpi, wal_usage_diff);
                                123                 :          15710 :     WALSTAT_ACC(wal_bytes, wal_usage_diff);
  271 michael@paquier.xyz       124                 :          15710 :     WALSTAT_ACC(wal_fpi_bytes, wal_usage_diff);
  524                           125                 :          15710 :     WALSTAT_ACC(wal_buffers_full, wal_usage_diff);
                                126                 :                : #undef WALSTAT_ACC
                                127                 :                : 
 1572 andres@anarazel.de        128                 :          15710 :     LWLockRelease(&stats_shmem->lock);
                                129                 :                : 
                                130                 :                :     /*
                                131                 :                :      * Save the current counters for the subsequent calculation of WAL usage.
                                132                 :                :      */
                                133                 :          15710 :     prevWalUsage = pgWalUsage;
                                134                 :                : 
                                135                 :          15710 :     return false;
                                136                 :                : }
                                137                 :                : 
                                138                 :                : void
  689 michael@paquier.xyz       139                 :          22815 : pgstat_wal_init_backend_cb(void)
                                140                 :                : {
                                141                 :                :     /*
                                142                 :                :      * Initialize prevWalUsage with pgWalUsage so that pgstat_wal_flush_cb()
                                143                 :                :      * can calculate how much pgWalUsage counters are increased by subtracting
                                144                 :                :      * prevWalUsage from pgWalUsage.
                                145                 :                :      */
 1588 andres@anarazel.de        146                 :          22815 :     prevWalUsage = pgWalUsage;
                                147                 :          22815 : }
                                148                 :                : 
                                149                 :                : void
  745 michael@paquier.xyz       150                 :           1223 : pgstat_wal_init_shmem_cb(void *stats)
                                151                 :                : {
                                152                 :           1223 :     PgStatShared_Wal *stats_shmem = (PgStatShared_Wal *) stats;
                                153                 :                : 
                                154                 :           1223 :     LWLockInitialize(&stats_shmem->lock, LWTRANCHE_PGSTATS_DATA);
                                155                 :           1223 : }
                                156                 :                : 
                                157                 :                : void
 1572 andres@anarazel.de        158                 :            258 : pgstat_wal_reset_all_cb(TimestampTz ts)
                                159                 :                : {
                                160                 :            258 :     PgStatShared_Wal *stats_shmem = &pgStatLocal.shmem->wal;
                                161                 :                : 
                                162                 :            258 :     LWLockAcquire(&stats_shmem->lock, LW_EXCLUSIVE);
                                163                 :            258 :     memset(&stats_shmem->stats, 0, sizeof(stats_shmem->stats));
                                164                 :            258 :     stats_shmem->stats.stat_reset_timestamp = ts;
                                165                 :            258 :     LWLockRelease(&stats_shmem->lock);
                                166                 :            258 : }
                                167                 :                : 
                                168                 :                : void
                                169                 :            813 : pgstat_wal_snapshot_cb(void)
                                170                 :                : {
                                171                 :            813 :     PgStatShared_Wal *stats_shmem = &pgStatLocal.shmem->wal;
                                172                 :                : 
                                173                 :            813 :     LWLockAcquire(&stats_shmem->lock, LW_SHARED);
                                174                 :            813 :     memcpy(&pgStatLocal.snapshot.wal, &stats_shmem->stats,
                                175                 :                :            sizeof(pgStatLocal.snapshot.wal));
                                176                 :            813 :     LWLockRelease(&stats_shmem->lock);
 1588                           177                 :            813 : }
        

Generated by: LCOV version 2.0-1