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
I'm having an issue using the collector: pgcluu_collected in v17. There are errors on the columns of the views: pg_stat_bgwriter & pg_stat_database.
Extract from postgresql log : ...ERROR: column "checkpoints_timed" does not exist at character 44...
due to : COPY (SELECT date_trunc('seconds', now()), checkpoints_timed, checkpoints_req, checkpoint_write_time, checkpoint_sync_time, buffers_checkpoint, buffers_clean, maxwritten_clean, buffers_backend, buffers_backend_fsync, buffers_alloc, date_trunc('seconds', stats_reset) AS stats_reset FROM pg_stat_bgwriter ) TO STDOUT CSV DELIMITER ';';
and
...ERROR: column "shared_blk_read_time" does not exist at character 286...
due to : COPY (SELECT date_trunc('seconds', now()), datid, datname, numbackends, xact_commit, xact_rollback, blks_read, blks_hit, tup_returned, tup_fetched, tup_inserted, tup_updated, tup_deleted, conflicts, date_trunc('seconds', stats_reset) AS stats_reset, temp_files, temp_bytes, deadlocks, shared_blk_read_time, shared_blk_write_time FROM pg_stat_database ) TO STDOUT CSV DELIMITER ';'
Are you already working on it ?
Best regards
The text was updated successfully, but these errors were encountered:
Hello,
I'm having an issue using the collector: pgcluu_collected in v17. There are errors on the columns of the views: pg_stat_bgwriter & pg_stat_database.
Extract from postgresql log :
...ERROR: column "checkpoints_timed" does not exist at character 44...
due to :
COPY (SELECT date_trunc('seconds', now()), checkpoints_timed, checkpoints_req, checkpoint_write_time, checkpoint_sync_time, buffers_checkpoint, buffers_clean, maxwritten_clean, buffers_backend, buffers_backend_fsync, buffers_alloc, date_trunc('seconds', stats_reset) AS stats_reset FROM pg_stat_bgwriter ) TO STDOUT CSV DELIMITER ';';
and
...ERROR: column "shared_blk_read_time" does not exist at character 286...
due to :
COPY (SELECT date_trunc('seconds', now()), datid, datname, numbackends, xact_commit, xact_rollback, blks_read, blks_hit, tup_returned, tup_fetched, tup_inserted, tup_updated, tup_deleted, conflicts, date_trunc('seconds', stats_reset) AS stats_reset, temp_files, temp_bytes, deadlocks, shared_blk_read_time, shared_blk_write_time FROM pg_stat_database ) TO STDOUT CSV DELIMITER ';'
Are you already working on it ?
Best regards
The text was updated successfully, but these errors were encountered: