18 lines
599 B
Text
18 lines
599 B
Text
# Configuration for CrateDB to send metrics to.
|
|
[[outputs.cratedb]]
|
|
## Connection parameters for accessing the database see
|
|
## https://pkg.go.dev/github.com/jackc/pgx/v4#ParseConfig
|
|
## for available options
|
|
url = "postgres://user:password@localhost/schema?sslmode=disable"
|
|
|
|
## Timeout for all CrateDB queries.
|
|
# timeout = "5s"
|
|
|
|
## Name of the table to store metrics in.
|
|
# table = "metrics"
|
|
|
|
## If true, and the metrics table does not exist, create it automatically.
|
|
# table_create = false
|
|
|
|
## The character(s) to replace any '.' in an object key with
|
|
# key_separator = "_"
|