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
1 change: 0 additions & 1 deletion mysql/assets/configuration/spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,6 @@ files:
type: number
example: 600
- name: schemas_collection
hidden: true
description: |
Configure collection of schemas (databases).
Only tables and schemas for which the user has been granted SELECT privileges are collected.
Expand Down
21 changes: 21 additions & 0 deletions mysql/datadog_checks/mysql/data/conf.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,27 @@ instances:
#
# collection_interval: 600

## Configure collection of schemas (databases).
## Only tables and schemas for which the user has been granted SELECT privileges are collected.
#
# schemas_collection:

## @param enabled - boolean - optional - default: false
## Enable schema collection. Requires `dbm: true`. Defaults to false.
#
# enabled: false

## @param collection_interval - number - optional - default: 600
## Set the database schema collection interval (in seconds). Defaults to 600 seconds.
#
# collection_interval: 600

## @param max_execution_time - number - optional - default: 60
## Set the maximum time for schema collection (in seconds). Defaults to 60 seconds.
## Capped by `schemas_collection.collection_interval`
#
# max_execution_time: 60

## Configure collection of query metrics
#
# query_metrics:
Expand Down
Loading