Configure Telegraf for InfluxDB
Use the Telegraf influxdb_v2
output plugin to collect and write metrics to
InfluxDB Cloud Dedicated.
Learn how to enable the plugin in new and
existing Telegraf configurations,
and then start Telegraf using the custom configuration file.
View the requirements for using Telegraf with InfluxDB Cloud Dedicated.
Configure Telegraf input and output plugins
Configure Telegraf input and output plugins in the Telegraf configuration file (typically named telegraf.conf
).
Input plugins collect metrics.
Output plugins define destinations where metrics are sent.
This guide assumes you followed Setup instructions in the Get Started tutorial to set up InfluxDB and configure authentication credentials.
Add Telegraf plugins
To add any of the available Telegraf plugins, follow the steps below.
- Find the plugin you want to enable from the complete list of available Telegraf plugins.
- Click View to the right of the plugin name to open the plugin page on GitHub. For example, view the MQTT plugin GitHub page.
- Copy and paste the example configuration into your Telegraf configuration file
(typically named
telegraf.conf
).
Enable and configure the InfluxDB v2 output plugin
To send data to InfluxDB Cloud Dedicated, enable the
influxdb_v2
output plugin
in the telegraf.conf
.
[[outputs.influxdb_v2]]
urls = ["https://cluster-id.a.influxdb.io"]
# INFLUX_TOKEN is an environment variable you created for your database WRITE token
token = "${INFLUX_TOKEN}"
organization = ""
bucket = "DATABASE_NAME"
Replace the following:
DATABASE_NAME
: the name of the InfluxDB database to write data to
The InfluxDB output plugin configuration contains the following options:
urls
An array of URL strings. To write to InfluxDB Cloud Dedicated, include your InfluxDB Cloud Dedicated cluster URL using the HTTPS protocol:
["https://cluster-id.a.influxdb.io"]
token
Your InfluxDB Cloud Dedicated database token with write permission to the database.
In the examples, INFLUX_TOKEN
is an environment variable assigned to a
database token that
has write permission to the database.
organization
For InfluxDB Cloud Dedicated, set this to an empty string (""
).
bucket
The name of the InfluxDB Cloud Dedicated database to write data to.
Write to InfluxDB v1.x and InfluxDB Cloud Dedicated
If a Telegraf agent is already writing to an InfluxDB v1.x database, enabling the InfluxDB v2 output plugin will write data to both v1.x and your InfluxDB Cloud Dedicated cluster.
Other Telegraf configuration options
influx_uint_support
: supported in InfluxDB v3.
For more plugin options, see influxdb
on GitHub.
Start Telegraf
Start the Telegraf service using the --config
flag to specify the location of your telegraf.conf
.
telegraf --config /path/to/custom/telegraf.conf
Was this page helpful?
Thank you for your feedback!
Support and feedback
Thank you for being part of our community! We welcome and encourage your feedback and bug reports for InfluxDB and this documentation. To find support, use the following resources:
Customers with an annual or support contract can contact InfluxData Support.