2016-01-07 22:21:10 +00:00
|
|
|
# Telegraf [![Circle CI](https://circleci.com/gh/influxdata/telegraf.svg?style=svg)](https://circleci.com/gh/influxdata/telegraf)
|
2015-05-20 05:26:13 +00:00
|
|
|
|
2015-08-06 20:00:14 +00:00
|
|
|
Telegraf is an agent written in Go for collecting metrics from the system it's
|
2016-01-07 22:21:10 +00:00
|
|
|
running on, or from other services, and writing them into InfluxDB or other
|
|
|
|
[outputs](https://github.com/influxdata/telegraf#supported-output-plugins).
|
2015-06-19 16:34:27 +00:00
|
|
|
|
2015-08-06 20:00:14 +00:00
|
|
|
Design goals are to have a minimal memory footprint with a plugin system so
|
|
|
|
that developers in the community can easily add support for collecting metrics
|
2015-09-09 17:00:19 +00:00
|
|
|
from well known services (like Hadoop, Postgres, or Redis) and third party
|
2015-08-06 20:00:14 +00:00
|
|
|
APIs (like Mailchimp, AWS CloudWatch, or Google Analytics).
|
2015-06-19 16:34:27 +00:00
|
|
|
|
2016-01-07 22:21:10 +00:00
|
|
|
New input and output plugins are designed to be easy to contribute,
|
|
|
|
we'll eagerly accept pull
|
|
|
|
requests and will manage the set of plugins that Telegraf supports.
|
|
|
|
See the [contributing guide](CONTRIBUTING.md) for instructions on writing
|
|
|
|
new plugins.
|
2015-06-19 16:34:27 +00:00
|
|
|
|
2015-09-09 17:00:19 +00:00
|
|
|
## Installation:
|
2015-05-20 05:26:13 +00:00
|
|
|
|
2016-01-30 18:30:01 +00:00
|
|
|
### Linux deb and rpm Packages:
|
2015-09-09 17:00:19 +00:00
|
|
|
|
2015-08-20 21:18:45 +00:00
|
|
|
Latest:
|
2016-03-16 20:45:35 +00:00
|
|
|
* http://get.influxdb.org/telegraf/telegraf_0.11.1-1_amd64.deb
|
|
|
|
* http://get.influxdb.org/telegraf/telegraf-0.11.1-1.x86_64.rpm
|
2016-01-07 22:21:10 +00:00
|
|
|
|
2016-02-22 23:59:45 +00:00
|
|
|
Latest (arm):
|
2016-03-16 20:45:35 +00:00
|
|
|
* http://get.influxdb.org/telegraf/telegraf_0.11.1-1_armhf.deb
|
|
|
|
* http://get.influxdb.org/telegraf/telegraf-0.11.1-1.armhf.rpm
|
2016-02-22 23:59:45 +00:00
|
|
|
|
2016-01-30 18:30:01 +00:00
|
|
|
##### Package Instructions:
|
2015-09-09 17:00:19 +00:00
|
|
|
|
2016-01-08 22:07:44 +00:00
|
|
|
* Telegraf binary is installed in `/usr/bin/telegraf`
|
|
|
|
* Telegraf daemon configuration file is in `/etc/telegraf/telegraf.conf`
|
2015-09-09 17:00:19 +00:00
|
|
|
* On sysv systems, the telegraf daemon can be controlled via
|
|
|
|
`service telegraf [action]`
|
|
|
|
* On systemd systems (such as Ubuntu 15+), the telegraf daemon can be
|
|
|
|
controlled via `systemctl [action] telegraf`
|
|
|
|
|
2016-01-30 18:30:01 +00:00
|
|
|
### yum/apt Repositories:
|
|
|
|
|
|
|
|
There is a yum/apt repo available for the whole InfluxData stack, see
|
2016-03-21 20:30:59 +00:00
|
|
|
[here](https://docs.influxdata.com/influxdb/v0.10/introduction/installation/#installation)
|
|
|
|
for instructions on setting up the repo. Once it is configured, you will be able
|
|
|
|
to use this repo to install & update telegraf.
|
2016-01-30 18:30:01 +00:00
|
|
|
|
2016-01-27 18:59:05 +00:00
|
|
|
### Linux tarballs:
|
2015-09-09 17:00:19 +00:00
|
|
|
|
|
|
|
Latest:
|
2016-03-16 20:45:35 +00:00
|
|
|
* http://get.influxdb.org/telegraf/telegraf-0.11.1-1_linux_amd64.tar.gz
|
|
|
|
* http://get.influxdb.org/telegraf/telegraf-0.11.1-1_linux_i386.tar.gz
|
|
|
|
* http://get.influxdb.org/telegraf/telegraf-0.11.1-1_linux_armhf.tar.gz
|
2016-01-07 22:21:10 +00:00
|
|
|
|
2016-01-30 18:30:01 +00:00
|
|
|
##### tarball Instructions:
|
2015-09-09 17:00:19 +00:00
|
|
|
|
2016-01-27 18:59:05 +00:00
|
|
|
To install the full directory structure with config file, run:
|
|
|
|
|
|
|
|
```
|
2016-03-16 20:45:35 +00:00
|
|
|
sudo tar -C / -zxvf ./telegraf-0.11.1-1_linux_amd64.tar.gz
|
2016-01-27 18:59:05 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
To extract only the binary, run:
|
|
|
|
|
|
|
|
```
|
2016-03-16 20:45:35 +00:00
|
|
|
tar -zxvf telegraf-0.11.1-1_linux_amd64.tar.gz --strip-components=3 ./usr/bin/telegraf
|
2016-01-27 18:59:05 +00:00
|
|
|
```
|
2015-06-19 16:34:27 +00:00
|
|
|
|
2016-03-17 15:53:55 +00:00
|
|
|
### FreeBSD tarball:
|
|
|
|
|
|
|
|
Latest:
|
|
|
|
* http://get.influxdb.org/telegraf/telegraf-0.11.1-1_freebsd_amd64.tar.gz
|
|
|
|
|
|
|
|
##### tarball Instructions:
|
|
|
|
|
2016-03-21 20:30:59 +00:00
|
|
|
See linux instructions above.
|
2016-03-17 15:53:55 +00:00
|
|
|
|
2016-01-30 18:53:17 +00:00
|
|
|
### Ansible Role:
|
|
|
|
|
|
|
|
Ansible role: https://github.com/rossmcdonald/telegraf
|
|
|
|
|
2015-06-20 01:53:35 +00:00
|
|
|
### OSX via Homebrew:
|
|
|
|
|
|
|
|
```
|
|
|
|
brew update
|
|
|
|
brew install telegraf
|
|
|
|
```
|
|
|
|
|
2016-02-23 22:59:02 +00:00
|
|
|
### Windows Binaries (EXPERIMENTAL)
|
|
|
|
|
|
|
|
Latest:
|
2016-03-16 20:45:35 +00:00
|
|
|
* http://get.influxdb.org/telegraf/telegraf-0.11.1-1_windows_amd64.zip
|
|
|
|
* http://get.influxdb.org/telegraf/telegraf-0.11.1-1_windows_i386.zip
|
2016-02-23 22:59:02 +00:00
|
|
|
|
2015-08-18 16:16:59 +00:00
|
|
|
### From Source:
|
|
|
|
|
2015-12-08 23:18:23 +00:00
|
|
|
Telegraf manages dependencies via [gdm](https://github.com/sparrc/gdm),
|
|
|
|
which gets installed via the Makefile
|
2016-01-19 16:37:17 +00:00
|
|
|
if you don't have it already. You also must build with golang version 1.5+.
|
2015-08-26 00:16:01 +00:00
|
|
|
|
|
|
|
1. [Install Go](https://golang.org/doc/install)
|
|
|
|
2. [Setup your GOPATH](https://golang.org/doc/code.html#GOPATH)
|
2016-01-20 18:57:35 +00:00
|
|
|
3. Run `go get github.com/influxdata/telegraf`
|
|
|
|
4. Run `cd $GOPATH/src/github.com/influxdata/telegraf`
|
2015-10-19 21:26:08 +00:00
|
|
|
5. Run `make`
|
2015-08-18 16:16:59 +00:00
|
|
|
|
2016-01-30 18:53:17 +00:00
|
|
|
## How to use it:
|
2015-06-20 01:53:35 +00:00
|
|
|
|
2016-01-07 22:21:10 +00:00
|
|
|
```console
|
|
|
|
$ telegraf -help
|
2016-01-15 19:25:56 +00:00
|
|
|
Telegraf, The plugin-driven server agent for collecting and reporting metrics.
|
2016-01-07 22:21:10 +00:00
|
|
|
|
|
|
|
Usage:
|
|
|
|
|
|
|
|
telegraf <flags>
|
|
|
|
|
|
|
|
The flags are:
|
|
|
|
|
|
|
|
-config <file> configuration file to load
|
|
|
|
-test gather metrics once, print them to stdout, and exit
|
|
|
|
-sample-config print out full sample configuration to stdout
|
|
|
|
-config-directory directory containing additional *.conf files
|
|
|
|
-input-filter filter the input plugins to enable, separator is :
|
|
|
|
-output-filter filter the output plugins to enable, separator is :
|
|
|
|
-usage print usage for a plugin, ie, 'telegraf -usage mysql'
|
2016-01-15 19:25:56 +00:00
|
|
|
-debug print metrics as they're generated to stdout
|
|
|
|
-quiet run in quiet mode
|
2016-01-07 22:21:10 +00:00
|
|
|
-version print the version to stdout
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
# generate a telegraf config file:
|
|
|
|
telegraf -sample-config > telegraf.conf
|
|
|
|
|
|
|
|
# generate config with only cpu input & influxdb output plugins defined
|
|
|
|
telegraf -sample-config -input-filter cpu -output-filter influxdb
|
|
|
|
|
|
|
|
# run a single telegraf collection, outputing metrics to stdout
|
|
|
|
telegraf -config telegraf.conf -test
|
|
|
|
|
|
|
|
# run telegraf with all plugins defined in config file
|
|
|
|
telegraf -config telegraf.conf
|
|
|
|
|
|
|
|
# run telegraf, enabling the cpu & memory input, and influxdb output plugins
|
|
|
|
telegraf -config telegraf.conf -input-filter cpu:mem -output-filter influxdb
|
|
|
|
```
|
2015-05-20 05:26:13 +00:00
|
|
|
|
2015-12-11 20:07:32 +00:00
|
|
|
## Configuration
|
2015-12-01 14:15:28 +00:00
|
|
|
|
2016-02-18 20:37:36 +00:00
|
|
|
See the [configuration guide](docs/CONFIGURATION.md) for a rundown of the more advanced
|
2015-12-11 20:07:32 +00:00
|
|
|
configuration options.
|
2015-11-24 21:22:11 +00:00
|
|
|
|
2016-01-07 22:21:10 +00:00
|
|
|
## Supported Input Plugins
|
2015-08-13 19:44:41 +00:00
|
|
|
|
2016-01-14 19:34:22 +00:00
|
|
|
Telegraf currently has support for collecting metrics from many sources. For
|
|
|
|
more information on each, please look at the directory of the same name in
|
|
|
|
`plugins/inputs`.
|
|
|
|
|
|
|
|
Currently implemented sources:
|
2015-08-13 19:44:41 +00:00
|
|
|
|
2015-10-22 00:08:43 +00:00
|
|
|
* aerospike
|
2015-09-04 23:05:50 +00:00
|
|
|
* apache
|
2015-10-19 17:38:16 +00:00
|
|
|
* bcache
|
2016-03-21 18:12:23 +00:00
|
|
|
* couchbase
|
2016-02-05 11:54:08 +00:00
|
|
|
* couchdb
|
2015-08-20 20:40:23 +00:00
|
|
|
* disque
|
2016-02-21 17:43:24 +00:00
|
|
|
* dns query time
|
2016-01-20 23:21:19 +00:00
|
|
|
* docker
|
2016-02-05 16:58:21 +00:00
|
|
|
* dovecot
|
2015-08-20 20:40:23 +00:00
|
|
|
* elasticsearch
|
2016-02-25 04:32:22 +00:00
|
|
|
* exec (generic executable plugin, support JSON, influx, graphite and nagios)
|
2015-08-20 20:40:23 +00:00
|
|
|
* haproxy
|
|
|
|
* httpjson (generic JSON-emitting http service plugin)
|
2015-12-18 23:21:39 +00:00
|
|
|
* influxdb
|
2015-12-11 20:07:32 +00:00
|
|
|
* jolokia
|
2015-08-20 20:40:23 +00:00
|
|
|
* leofs
|
|
|
|
* lustre2
|
2015-12-01 21:05:24 +00:00
|
|
|
* mailchimp
|
2015-08-20 20:40:23 +00:00
|
|
|
* memcached
|
2016-02-11 00:37:24 +00:00
|
|
|
* mesos
|
2015-08-20 20:40:23 +00:00
|
|
|
* mongodb
|
|
|
|
* mysql
|
2016-01-27 00:12:54 +00:00
|
|
|
* net_response
|
2015-08-20 20:40:23 +00:00
|
|
|
* nginx
|
2016-01-17 00:29:02 +00:00
|
|
|
* nsq
|
2016-03-14 17:42:20 +00:00
|
|
|
* ntpq
|
2015-10-16 12:13:09 +00:00
|
|
|
* phpfpm
|
2016-01-15 01:09:38 +00:00
|
|
|
* phusion passenger
|
2015-09-04 23:05:50 +00:00
|
|
|
* ping
|
2015-08-20 20:40:23 +00:00
|
|
|
* postgresql
|
2016-03-18 17:26:05 +00:00
|
|
|
* postgresql_extensible
|
2016-01-29 14:53:50 +00:00
|
|
|
* powerdns
|
2015-10-07 18:31:49 +00:00
|
|
|
* procstat
|
2015-08-20 20:40:23 +00:00
|
|
|
* prometheus
|
2015-10-16 17:48:33 +00:00
|
|
|
* puppetagent
|
2015-08-20 20:40:23 +00:00
|
|
|
* rabbitmq
|
2016-02-14 10:27:13 +00:00
|
|
|
* raindrops
|
2015-08-20 20:40:23 +00:00
|
|
|
* redis
|
|
|
|
* rethinkdb
|
2016-02-19 20:30:40 +00:00
|
|
|
* riak
|
2016-02-21 23:35:56 +00:00
|
|
|
* sensors (only available if built from source)
|
|
|
|
* snmp
|
2016-01-26 19:30:02 +00:00
|
|
|
* sql server (microsoft)
|
2015-11-12 16:25:42 +00:00
|
|
|
* twemproxy
|
2015-11-09 12:37:00 +00:00
|
|
|
* zfs
|
2015-10-14 23:53:47 +00:00
|
|
|
* zookeeper
|
2016-01-22 22:02:21 +00:00
|
|
|
* win_perf_counters (windows performance counters)
|
2015-09-04 23:05:50 +00:00
|
|
|
* system
|
|
|
|
* cpu
|
|
|
|
* mem
|
|
|
|
* net
|
2015-10-14 23:53:47 +00:00
|
|
|
* netstat
|
2015-09-04 23:05:50 +00:00
|
|
|
* disk
|
2015-12-11 20:07:32 +00:00
|
|
|
* diskio
|
2015-09-04 23:05:50 +00:00
|
|
|
* swap
|
2016-03-08 10:42:31 +00:00
|
|
|
* processes
|
2016-03-10 12:40:03 +00:00
|
|
|
* kernel (/proc/stat)
|
2015-08-13 19:44:41 +00:00
|
|
|
|
2016-01-08 22:07:44 +00:00
|
|
|
Telegraf can also collect metrics via the following service plugins:
|
2015-10-07 22:11:52 +00:00
|
|
|
|
|
|
|
* statsd
|
2016-03-08 10:42:31 +00:00
|
|
|
* udp_listener
|
|
|
|
* tcp_listener
|
2016-02-09 22:03:46 +00:00
|
|
|
* mqtt_consumer
|
2015-11-16 20:12:45 +00:00
|
|
|
* kafka_consumer
|
2016-02-12 10:05:33 +00:00
|
|
|
* nats_consumer
|
2016-01-26 22:57:06 +00:00
|
|
|
* github_webhooks
|
2015-10-07 22:11:52 +00:00
|
|
|
|
2015-08-13 19:44:41 +00:00
|
|
|
We'll be adding support for many more over the coming months. Read on if you
|
|
|
|
want to add support for another service or third-party API.
|
|
|
|
|
2016-01-07 22:21:10 +00:00
|
|
|
## Supported Output Plugins
|
2015-06-19 16:38:31 +00:00
|
|
|
|
2015-08-28 16:18:46 +00:00
|
|
|
* influxdb
|
2016-01-08 22:07:44 +00:00
|
|
|
* amon
|
|
|
|
* amqp
|
2016-01-18 19:39:14 +00:00
|
|
|
* aws kinesis
|
|
|
|
* aws cloudwatch
|
2015-08-28 16:18:46 +00:00
|
|
|
* datadog
|
2016-01-17 00:29:02 +00:00
|
|
|
* graphite
|
2016-01-08 22:07:44 +00:00
|
|
|
* kafka
|
2015-10-26 18:31:21 +00:00
|
|
|
* librato
|
2016-01-08 22:07:44 +00:00
|
|
|
* mqtt
|
|
|
|
* nsq
|
|
|
|
* opentsdb
|
2015-10-28 22:19:13 +00:00
|
|
|
* prometheus
|
2015-10-22 21:50:19 +00:00
|
|
|
* riemann
|
2015-06-19 16:38:31 +00:00
|
|
|
|
2015-08-28 16:18:46 +00:00
|
|
|
## Contributing
|
2015-06-19 16:38:31 +00:00
|
|
|
|
2015-08-28 16:18:46 +00:00
|
|
|
Please see the
|
2015-09-09 17:00:19 +00:00
|
|
|
[contributing guide](CONTRIBUTING.md)
|
2016-01-30 18:53:17 +00:00
|
|
|
for details on contributing a plugin to Telegraf.
|