Thread: pgsql: Add num_done counter to the pg_stat_checkpointer view.

pgsql: Add num_done counter to the pg_stat_checkpointer view.

From
Fujii Masao
Date:
Add num_done counter to the pg_stat_checkpointer view.

Checkpoints can be skipped when the server is idle. The existing num_timed and
num_requested counters in pg_stat_checkpointer track both completed and
skipped checkpoints, but there was no way to count only the completed ones.

This commit introduces the num_done counter, which tracks only completed
checkpoints, making it easier to see how many were actually performed.

Bump catalog version.

Author: Anton A. Melnikov
Reviewed-by: Fujii Masao
Discussion: https://postgr.es/m/9ea77f40-818d-4841-9dee-158ac8f6e690@oss.nttdata.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/559efce1d684069acf234a5cb032acba84e70938

Modified Files
--------------
doc/src/sgml/monitoring.sgml                     | 11 ++++++-
src/backend/access/transam/xlog.c                |  9 ++++--
src/backend/catalog/system_views.sql             |  1 +
src/backend/postmaster/checkpointer.c            | 39 +++++++++++++++---------
src/backend/utils/activity/pgstat_checkpointer.c |  2 ++
src/backend/utils/adt/pgstatfuncs.c              |  6 ++++
src/include/access/xlog.h                        |  2 +-
src/include/catalog/catversion.h                 |  2 +-
src/include/catalog/pg_proc.dat                  |  5 +++
src/include/pgstat.h                             |  1 +
src/test/regress/expected/rules.out              |  1 +
11 files changed, 60 insertions(+), 19 deletions(-)