20 lines
645 B
Plaintext
20 lines
645 B
Plaintext
# Output Configuration for telegraf agent
|
|
[[outputs.influxdb_v2]]
|
|
## The URLs of the InfluxDB cluster nodes.
|
|
##
|
|
## Multiple URLs can be specified for a single cluster, only ONE of the
|
|
## urls will be written to each interval.
|
|
## urls exp: http://127.0.0.1:8086
|
|
urls = ["http://influxdb.in.thelinuxpro.net:8086"]
|
|
|
|
## Token for authentication.
|
|
token = "$DOCKER_INFLUXDB_INIT_ADMIN_TOKEN"
|
|
|
|
## Organization is the name of the organization you wish to write to; must exist.
|
|
organization = "$DOCKER_INFLUXDB_INIT_ORG"
|
|
|
|
## Destination bucket to write into.
|
|
bucket = "$DOCKER_INFLUXDB_INIT_BUCKET"
|
|
|
|
insecure_skip_verify = true
|