This is archived documentation for InfluxData product versions that are no longer maintained. For newer documentation, see the latest InfluxData documentation.
This page provides directions for installing, starting, and configuring Telegraf.
Requirements
Installation of the Telegraf package may require root or administrator privileges in order to complete successfully.
Networking
Telegraf offers multiple service plugins that may
require custom ports.
All port mappings can be modified through the configuration file
which is located at /etc/telegraf/telegraf.conf for default installations.
Installation
Ubuntu & Debian
For instructions on how to install the Debian package from a file, please see the downloads page.
Debian and Ubuntu users can install the latest stable version of Telegraf using the apt-get package manager.
For Ubuntu users, you can add the InfluxData repository by using the following commands:
curl -sL https://repos.influxdata.com/influxdata-archive_compat.key | sudo apt-key add -
source /etc/lsb-release
echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.listFor Debian users, you can add the InfluxData repository by using the following commands:
curl -sL https://repos.influxdata.com/influxdata-archive_compat.key | sudo apt-key add -
source /etc/os-release
test $VERSION_ID = "7" && echo "deb https://repos.influxdata.com/debian wheezy stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
test $VERSION_ID = "8" && echo "deb https://repos.influxdata.com/debian jessie stable" | sudo tee /etc/apt/sources.list.d/influxdb.listAnd then to install Telegraf:
sudo apt-get update && sudo apt-get install telegrafRedHat & CentOS
For instructions on how to install the RPM package from a file, please see the downloads page.
RedHat and CentOS users can install the latest stable version of Telegraf using the yum package manager:
cat <<EOF | sudo tee /etc/yum.repos.d/influxdb.repo
[influxdb]
name = InfluxDB Repository - RHEL \$releasever
baseurl = https://repos.influxdata.com/rhel/\$releasever/\$basearch/stable
enabled = 1
gpgcheck = 1
gpgkey = https://repos.influxdata.com/influxdata-archive_compat.key
EOFOnce repository is added to the yum configuration,
you can install telegraf
sudo yum install telegrafSLES & openSUSE
There are RPM packages provided by openSUSE Build Service for SUSE Linux users:
# add go repository
zypper ar -f obs://devel:languages:go/ go
# install latest telegraf
zypper in telegrafFreeBSD/PC-BSD
Telegraf is part of the FreeBSD package system. It can be installed by running:
sudo pkg install telegrafThe configuration file is located at /usr/local/etc/telegraf.conf with examples in /usr/local/etc/telegraf.conf.sample.
macOS
Users of macOS 10.8 and higher can install Telegraf using the Homebrew package manager.
Once brew is installed, you can install Telegraf by running:
brew update
brew install telegrafStart the Telegraf service
macOS (via Homebrew)
To have launchd start telegraf at login:
ln -sfv /usr/local/opt/telegraf/*.plist ~/Library/LaunchAgents
Then to load telegraf now:
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.telegraf.plist
Or, if you don’t want/need launchctl, you can just run:
telegraf -config /usr/local/etc/telegraf.conf
sysv systems
sudo service telegraf start
systemd systems (such at Ubuntu 15+)
systemctl start Telegraf
Configuration
Create a configuration file with default input and output plugins.
Every plugin will be in the file, but most will be commented.
telegraf -sample-config > telegraf.conf
Create a configuration file with specific inputs and outputs
telegraf -sample-config -input-filter <pluginname>[:<pluginname>] -output-filter <outputname>[:<outputname>] > telegraf.conf
For more advanced configuration details, see the configuration documentation.