-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PG17 support #19625
Merged
Merged
PG17 support #19625
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sethsamuel
approved these changes
Feb 26, 2025
datadog-agent-integrations-bot bot
pushed a commit
that referenced
this pull request
Feb 26, 2025
* PG17 support * changelog * changelog (cherry picked from commit b54df51)
steveny91
pushed a commit
that referenced
this pull request
Feb 26, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
agent/review-requested
backport/7.64.x
ecosystems/review-requested
integration/postgres
product/review-requested
qa/skip-qa
Automatically skip this PR for the next QA
team/agent-integrations
team/database-monitoring-agent
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Copying the changes from #19568 by @vcabbage:
Postgres changes are noted in the release notes. I've included links to the commits as they provide more detail.
Fixes for the following Postgres changes:
pg_stat_bgwriter
to newpg_stat_checkpointer
. (96f052613)buffers_backend
andbuffers_backend_fsync
columns removed frompg_stat_checkpointer
. The PG commit explains that they're not actually checkpointer properties andpg_stat_io
provides the equivalent and more accurate information. (74604a37f)max_dead_tuples
renamed tomax_dead_tuple_bytes
andnum_dead_tuples
renamed tonum_dead_item_ids
in thepg_stat_progress_vacuum
view. (667e65aac, f1affb670)dead_tuple_bytes
was also added to the view.pg_stat_slru
names changed. (bcdfa5f2e)blk_read_time
renamed toshared_blk_read_time
andblk_write_time
renamed toshared_blk_write_time
in thepg_stat_statements
view. (13d00729d)Co-authored-by: @vcabbage