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
30 changes: 0 additions & 30 deletions harbor/assets/configuration/spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,33 +31,3 @@ files:
type: file
path: /var/log/harbor/*.log
source: harbor
- name: auto_conf.yaml
options:
- template: ad_identifiers
overrides:
value.example:
- nginx-photon
- template: init_config
options: []
- template: instances
options:
- name: url
required: true
description: The Harbor HTTP url.
value:
example: 'http://%%host%%/'
type: string
- name: username
required: true
description: |
The username to use for authentication against the Harbor API.
Note: Some metrics and service checks requires an admin account to be collected.
This includes chartmuseum.status, replication registries data, volume information.
value:
type: string
- name: password
required: true
description: The password used together with the username for authentication against the Harbor API.
secret: true
value:
type: string
1 change: 1 addition & 0 deletions harbor/changelog.d/23595.fixed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Remove the default auto configuration that used literal placeholder credentials.
32 changes: 0 additions & 32 deletions harbor/datadog_checks/harbor/data/auto_conf.yaml

This file was deleted.

91 changes: 91 additions & 0 deletions postgres/assets/configuration/spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1065,6 +1065,97 @@ files:
example:
- "customer.*"

- name: collect_column_statistics
description: |
Enable collection of column statistics from pg_stats.
Requires the `datadog.column_statistics()` function to be created in the database.
options:
- name: enabled
description: |
Enable collection of column statistics. Requires `dbm: true`.
value:
type: boolean
example: false
- name: collection_interval
description: |
Set the column statistics collection interval (in seconds).
value:
type: number
example: 3600
display_default: 3600
- name: max_tables
description: |
Maximum number of tables to collect column statistics for.
value:
type: number
example: 500
display_default: 500
- name: include_databases
description: |
A list of regex patterns to include databases.
Any database whose name matches any one of these patterns will be included.
If empty, all databases matching other filters are included.
value:
type: array
items:
type: string
example:
- "mydb"
- name: exclude_databases
description: |
A list of regex patterns to exclude databases.
Any database whose name matches any one of these patterns will be excluded.
If empty, all databases matching other filters are included.
value:
type: array
items:
type: string
example:
- "privatedb.*"
- name: include_schemas
description: |
A list of regex patterns to include schemas.
Any schema whose name matches any one of these patterns will be included.
If empty, all schemas matching other filters are included.
value:
type: array
items:
type: string
example:
- "myschema"
- name: exclude_schemas
description: |
A list of regex patterns to exclude schemas.
Any schema whose name matches any one of these patterns will be excluded.
If empty, all schemas matching other filters are included.
value:
type: array
items:
type: string
example:
- "privateschema.*"
- name: include_tables
description: |
A list of regex patterns to include tables.
Any table whose name matches any one of these patterns will be included.
If empty, all tables matching other filters are included.
value:
type: array
items:
type: string
example:
- "users.*"
- name: exclude_tables
description: |
A list of regex patterns to exclude tables.
Any table whose name matches any one of these patterns will be excluded.
If empty, all tables matching other filters are included.
value:
type: array
items:
type: string
example:
- "temp_.*"
- name: aws
display_priority: 0
description: |
Expand Down
1 change: 1 addition & 0 deletions postgres/changelog.d/23364.added
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add column statistics collection from pg_stats for Database Monitoring.
Loading
Loading