Skip to content

Commit

Permalink
database_observability: change default collect_interval to 1 minute (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
cristiangreco authored Feb 3, 2025
1 parent 5ec287f commit 01ebb47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Name | Type | Description
------------------------|----------------------|----------------------------------------------------------|---------|---------
`data_source_name` | `secret` | [Data Source Name][] for the MySQL server to connect to. | | yes
`forward_to` | `list(LogsReceiver)` | Where to forward log entries after processing. | | yes
`collect_interval` | `duration` | How frequently to collect information from database. | `"10s"` | no
`collect_interval` | `duration` | How frequently to collect information from database. | `"1m"` | no
`query_samples_enabled` | `bool` | Whether to enable collection of query samples. | `true` | no

## Blocks
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ type Arguments struct {
}

var DefaultArguments = Arguments{
CollectInterval: 10 * time.Second,
CollectInterval: 1 * time.Minute,
QuerySamplesEnabled: true,
}

Expand Down

0 comments on commit 01ebb47

Please sign in to comment.