LCOV - code coverage report
Current view: top level - src/backend/utils/activity - pgstat_checkpointer.c (source / functions) Hit Total Coverage
Test: PostgreSQL 17devel Lines: 44 44 100.0 %
Date: 2024-04-26 19:11:10 Functions: 4 4 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -------------------------------------------------------------------------
       2             :  *
       3             :  * pgstat_checkpointer.c
       4             :  *    Implementation of checkpoint statistics.
       5             :  *
       6             :  * This file contains the implementation of checkpoint 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-2024, PostgreSQL Global Development Group
      12             :  *
      13             :  * IDENTIFICATION
      14             :  *    src/backend/utils/activity/pgstat_checkpointer.c
      15             :  * -------------------------------------------------------------------------
      16             :  */
      17             : 
      18             : #include "postgres.h"
      19             : 
      20             : #include "utils/pgstat_internal.h"
      21             : 
      22             : 
      23             : PgStat_CheckpointerStats PendingCheckpointerStats = {0};
      24             : 
      25             : 
      26             : /*
      27             :  * Report checkpointer and IO statistics
      28             :  */
      29             : void
      30       15160 : pgstat_report_checkpointer(void)
      31             : {
      32             :     /* We assume this initializes to zeroes */
      33             :     static const PgStat_CheckpointerStats all_zeroes;
      34       15160 :     PgStatShared_Checkpointer *stats_shmem = &pgStatLocal.shmem->checkpointer;
      35             : 
      36             :     Assert(!pgStatLocal.shmem->is_shutdown);
      37             :     pgstat_assert_is_up();
      38             : 
      39             :     /*
      40             :      * This function can be called even if nothing at all has happened. In
      41             :      * this case, avoid unnecessarily modifying the stats entry.
      42             :      */
      43       15160 :     if (memcmp(&PendingCheckpointerStats, &all_zeroes,
      44             :                sizeof(all_zeroes)) == 0)
      45       12044 :         return;
      46             : 
      47        3116 :     pgstat_begin_changecount_write(&stats_shmem->changecount);
      48             : 
      49             : #define CHECKPOINTER_ACC(fld) stats_shmem->stats.fld += PendingCheckpointerStats.fld
      50        3116 :     CHECKPOINTER_ACC(num_timed);
      51        3116 :     CHECKPOINTER_ACC(num_requested);
      52        3116 :     CHECKPOINTER_ACC(restartpoints_timed);
      53        3116 :     CHECKPOINTER_ACC(restartpoints_requested);
      54        3116 :     CHECKPOINTER_ACC(restartpoints_performed);
      55        3116 :     CHECKPOINTER_ACC(write_time);
      56        3116 :     CHECKPOINTER_ACC(sync_time);
      57        3116 :     CHECKPOINTER_ACC(buffers_written);
      58             : #undef CHECKPOINTER_ACC
      59             : 
      60        3116 :     pgstat_end_changecount_write(&stats_shmem->changecount);
      61             : 
      62             :     /*
      63             :      * Clear out the statistics buffer, so it can be re-used.
      64             :      */
      65       31160 :     MemSet(&PendingCheckpointerStats, 0, sizeof(PendingCheckpointerStats));
      66             : 
      67             :     /*
      68             :      * Report IO statistics
      69             :      */
      70        3116 :     pgstat_flush_io(false);
      71             : }
      72             : 
      73             : /*
      74             :  * pgstat_fetch_stat_checkpointer() -
      75             :  *
      76             :  * Support function for the SQL-callable pgstat* functions. Returns
      77             :  * a pointer to the checkpointer statistics struct.
      78             :  */
      79             : PgStat_CheckpointerStats *
      80          48 : pgstat_fetch_stat_checkpointer(void)
      81             : {
      82          48 :     pgstat_snapshot_fixed(PGSTAT_KIND_CHECKPOINTER);
      83             : 
      84          48 :     return &pgStatLocal.snapshot.checkpointer;
      85             : }
      86             : 
      87             : void
      88         420 : pgstat_checkpointer_reset_all_cb(TimestampTz ts)
      89             : {
      90         420 :     PgStatShared_Checkpointer *stats_shmem = &pgStatLocal.shmem->checkpointer;
      91             : 
      92             :     /* see explanation above PgStatShared_Checkpointer for the reset protocol */
      93         420 :     LWLockAcquire(&stats_shmem->lock, LW_EXCLUSIVE);
      94         420 :     pgstat_copy_changecounted_stats(&stats_shmem->reset_offset,
      95         420 :                                     &stats_shmem->stats,
      96             :                                     sizeof(stats_shmem->stats),
      97             :                                     &stats_shmem->changecount);
      98         420 :     stats_shmem->stats.stat_reset_timestamp = ts;
      99         420 :     LWLockRelease(&stats_shmem->lock);
     100         420 : }
     101             : 
     102             : void
     103        1088 : pgstat_checkpointer_snapshot_cb(void)
     104             : {
     105        1088 :     PgStatShared_Checkpointer *stats_shmem = &pgStatLocal.shmem->checkpointer;
     106        1088 :     PgStat_CheckpointerStats *reset_offset = &stats_shmem->reset_offset;
     107             :     PgStat_CheckpointerStats reset;
     108             : 
     109        1088 :     pgstat_copy_changecounted_stats(&pgStatLocal.snapshot.checkpointer,
     110        1088 :                                     &stats_shmem->stats,
     111             :                                     sizeof(stats_shmem->stats),
     112             :                                     &stats_shmem->changecount);
     113             : 
     114        1088 :     LWLockAcquire(&stats_shmem->lock, LW_SHARED);
     115        1088 :     memcpy(&reset, reset_offset, sizeof(stats_shmem->stats));
     116        1088 :     LWLockRelease(&stats_shmem->lock);
     117             : 
     118             :     /* compensate by reset offsets */
     119             : #define CHECKPOINTER_COMP(fld) pgStatLocal.snapshot.checkpointer.fld -= reset.fld;
     120        1088 :     CHECKPOINTER_COMP(num_timed);
     121        1088 :     CHECKPOINTER_COMP(num_requested);
     122        1088 :     CHECKPOINTER_COMP(restartpoints_timed);
     123        1088 :     CHECKPOINTER_COMP(restartpoints_requested);
     124        1088 :     CHECKPOINTER_COMP(restartpoints_performed);
     125        1088 :     CHECKPOINTER_COMP(write_time);
     126        1088 :     CHECKPOINTER_COMP(sync_time);
     127        1088 :     CHECKPOINTER_COMP(buffers_written);
     128             : #undef CHECKPOINTER_COMP
     129        1088 : }

Generated by: LCOV version 1.14