Archived documentation version rendered and hosted by DevNetExpertTraining.com
Documentation

Get started with Telegraf

This page documents an earlier version of Telegraf. Telegraf v1.21 is the latest stable version. View this page in the v1.21 documentation.

Use Telegraf to collect and write metrics into InfluxDB and other supported outputs.

To get up and running, do the following:

  1. Download and install Telegraf
  2. Configure Telegraf
  3. Start Telegraf service

Download and install Telegraf

Follow the instructions in the Telegraf section on the Downloads page.

Note: Telegraf will start automatically using the default configuration when installed from a deb package.

Configure Telegraf

Configuration file location by installation type

  • macOS Homebrew: /usr/local/etc/telegraf.conf
  • Linux debian and RPM packages: /etc/telegraf/telegraf.conf
  • Standalone Binary: see the next section for how to create a configuration file

Note: You can also specify a remote URL endpoint to pull a configuration file from. See Configuration file locations.

Create and edit the configuration file

Before starting the Telegraf server, create or edit the initial configuration to specify your inputs (where the metrics come from) and outputs (where the metrics go). You can do this several ways.

The following example shows how to create a configuration file called telegraf.conf and specify two inputs (cpu and mem) with the --input-filter flag and specify InfluxDB as the output with the --output-filter flag.

telegraf -sample-config --input-filter cpu:mem --output-filter influxdb > telegraf.conf

cpu and mem reads metrics about the system’s cpu usage and memory usage, and then output this data to InfluxDB.

Start Telegraf service

Start the Telegraf service and direct it to the relevant configuration file or URL to pull a configuration file from a remote endpoint:

macOS Homebrew

telegraf --config telegraf.conf

Linux (sysvinit and upstart installations)

sudo service telegraf start

Linux (systemd installations)

systemctl start telegraf

Results

Telegraf starts collecting and writing data to the specified output.

Returning to our sample configuration, we show what the cpu and mem data looks like in InfluxDB below. Note that we used the default input and output configuration settings to get this data.

> SHOW MEASUREMENTS
name: measurements
------------------
name
cpu
mem
> SHOW FIELD KEYS
name: cpu
---------
fieldKey                fieldType
usage_guest             float
usage_guest_nice	       float
usage_idle		            float
usage_iowait		          float
usage_irq		             float
usage_nice		            float
usage_softirq		         float
usage_steal		           float
usage_system		          float
usage_user		            float

name: mem
---------
fieldKey                fieldType
active			               integer
available		             integer
available_percent	      float
buffered		              integer
cached			               integer
free			                 integer
inactive		              integer
total			                integer
used			                 integer
used_percent		          float
  • Select a sample of the data in the field usage_idle in the measurement cpu_usage_idle:
> SELECT usage_idle FROM cpu WHERE cpu = 'cpu-total' LIMIT 5
name: cpu
---------
time			               usage_idle
2016-01-16T00:03:00Z	 97.56189047261816
2016-01-16T00:03:10Z	 97.76305923519121
2016-01-16T00:03:20Z	 97.32533433320835
2016-01-16T00:03:30Z	 95.68857785553611
2016-01-16T00:03:40Z	 98.63715928982245

Notice that the timestamps occur at rounded ten second intervals (that is, :00, :10, :20, and so on) - this is a configurable setting.

That’s it! You ready to use Telegraf to collect metrics and write them to your output of choice.


Upgrade to InfluxDB Cloud or InfluxDB 2.0!

InfluxDB Cloud and InfluxDB OSS 2.0 ready for production.