You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One other thing I'll mention: this comes back to these three different kinds of ways of how dirtied pages actually get to disk. You'll notice that there's actually two columns that are no longer in either pg_stat_bgwriter or pg_stat_checkpointer. Those are those buffers_backend and buffers_backend_fsync columns. Those two are now removed from pg_stat_bgwriter, and instead you can find that information in pg_stat_io.
The PostgreSQL log shows the following error message:
It seems that the columns
buffers_checkpoint
andbuffers_backend
were removed in PostgreSQL 17.It appears that a condition should be added in:
munin/plugins/node.d/postgres_bgwriter
Lines 73 to 74 in 480273f
A possible fix might look like this:
I haven't checked if there is another column that contains the same information.
The text was updated successfully, but these errors were encountered: