Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions postgres/assets/configuration/spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,8 @@ files:
A list of databases to ignore. No metrics or statement samples will be collected for these databases.
Each value can be a plain string or a Postgres pattern. If you want to ignore the postgres database,
set collect_default_database to false in addition to adding it to this array.
This setting does not apply to schema collection, column statistics, or autodiscovery; instead use
the specific include/exclude settings nested under those configurations.
For more information on how patterns work, see https://www.postgresql.org/docs/12/functions-matching.html
value:
type: array
Expand Down
1 change: 1 addition & 0 deletions postgres/changelog.d/24922.added
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Clarify Postgres spec usage of ignore_databases
2 changes: 2 additions & 0 deletions postgres/datadog_checks/postgres/data/conf.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,8 @@ instances:
## A list of databases to ignore. No metrics or statement samples will be collected for these databases.
## Each value can be a plain string or a Postgres pattern. If you want to ignore the postgres database,
## set collect_default_database to false in addition to adding it to this array.
## This setting does not apply to schema collection, column statistics, or autodiscovery; instead use
## the specific include/exclude settings nested under those configurations.
## For more information on how patterns work, see https://www.postgresql.org/docs/12/functions-matching.html
#
# ignore_databases:
Expand Down
Loading