diff options
author | Fujii Masao <fujii@postgresql.org> | 2024-09-30 11:56:05 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2024-09-30 11:56:05 +0900 |
commit | 559efce1d684069acf234a5cb032acba84e70938 (patch) | |
tree | 81fe6e80393961f50c21a0ffb472acdfcfc5a096 /doc/src | |
parent | 20cfec896c6a20ca436f634b0ffa3582d7b9425c (diff) | |
download | postgresql-559efce1d684069acf234a5cb032acba84e70938.tar.gz postgresql-559efce1d684069acf234a5cb032acba84e70938.zip |
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
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/monitoring.sgml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml index db7f35a4515..d83e99da495 100644 --- a/doc/src/sgml/monitoring.sgml +++ b/doc/src/sgml/monitoring.sgml @@ -3063,7 +3063,16 @@ description | Waiting for a newly initialized WAL file to reach durable storage <structfield>num_requested</structfield> <type>bigint</type> </para> <para> - Number of requested checkpoints that have been performed + Number of backend requested checkpoints + </para></entry> + </row> + + <row> + <entry role="catalog_table_entry"><para role="column_definition"> + <structfield>num_done</structfield> <type>bigint</type> + </para> + <para> + Number of checkpoints that have been performed </para></entry> </row> |