telegraf/README.md

198 lines
6.2 KiB
Markdown
Raw Normal View History

2016-01-05 21:18:31 +00:00
# Telegraf - A native agent for InfluxDB [![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
Telegraf is an agent written in Go for collecting metrics from the system it's
running on, or from other services, and writing them into InfluxDB.
2015-06-19 16:34:27 +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
from well known services (like Hadoop, Postgres, or Redis) and third party
APIs (like Mailchimp, AWS CloudWatch, or Google Analytics).
2015-06-19 16:34:27 +00:00
We'll eagerly accept pull requests for new plugins and will manage the set of
plugins that Telegraf supports. See the
[contributing guide](CONTRIBUTING.md) for instructions on
2016-01-07 20:39:43 +00:00
writing new inputs.
2015-06-19 16:34:27 +00:00
## Installation:
2015-05-20 05:26:13 +00:00
### Linux deb and rpm packages:
2015-08-20 21:18:45 +00:00
Latest:
2015-12-07 19:22:52 +00:00
* http://get.influxdb.org/telegraf/telegraf_0.2.4_amd64.deb
* http://get.influxdb.org/telegraf/telegraf-0.2.4-1.x86_64.rpm
##### Package instructions:
* Telegraf binary is installed in `/opt/telegraf/telegraf`
* Telegraf daemon configuration file is in `/etc/opt/telegraf/telegraf.conf`
* 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`
### Linux binaries:
Latest:
2015-12-07 19:22:52 +00:00
* http://get.influxdb.org/telegraf/telegraf_linux_amd64_0.2.4.tar.gz
* http://get.influxdb.org/telegraf/telegraf_linux_386_0.2.4.tar.gz
* http://get.influxdb.org/telegraf/telegraf_linux_arm_0.2.4.tar.gz
##### Binary instructions:
These are standalone binaries that can be unpacked and executed on any linux
system. They can be unpacked and renamed in a location such as
`/usr/local/bin` for convenience. A config file will need to be generated,
see "How to use it" below.
2015-06-19 16:34:27 +00:00
2015-06-20 01:53:35 +00:00
### OSX via Homebrew:
```
brew update
brew install telegraf
```
2015-12-20 06:47:15 +00:00
### Version 0.3.0 Beta
Version 0.3.0 will introduce many new breaking changes to Telegraf. For starters,
plugin measurements will be aggregated into fields. This means that there will no
longer be a `cpu_usage_idle` measurement, there will be a `cpu` measurement with
a `usage_idle` field.
There will also be config file changes, meaning that your 0.2.x Telegraf config
files will no longer work properly. It is recommended that you use the
`-sample-config` flag to generate a new config file to see what the changes are.
You can also read the
[0.3.0 configuration guide](https://github.com/influxdb/telegraf/blob/0.3.0/CONFIGURATION.md)
to see some of the new features and options available.
You can read more about the justifications for the aggregated measurements
[here](https://github.com/influxdb/telegraf/issues/152), and a more detailed
breakdown of the work [here](https://github.com/influxdb/telegraf/pull/437).
Once we're closer to a full release, there will be a detailed blog post
explaining all the changes.
2015-12-21 21:53:16 +00:00
* http://get.influxdb.org/telegraf/telegraf_0.3.0-beta2_amd64.deb
* http://get.influxdb.org/telegraf/telegraf-0.3.0_beta2-1.x86_64.rpm
* http://get.influxdb.org/telegraf/telegraf_linux_amd64_0.3.0-beta2.tar.gz
* http://get.influxdb.org/telegraf/telegraf_linux_386_0.3.0-beta2.tar.gz
* http://get.influxdb.org/telegraf/telegraf_linux_arm_0.3.0-beta2.tar.gz
2015-12-20 06:47:15 +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
if you don't have it already. You also must build with golang version 1.4+.
1. [Install Go](https://golang.org/doc/install)
2. [Setup your GOPATH](https://golang.org/doc/code.html#GOPATH)
3. Run `go get github.com/influxdb/telegraf`
4. Run `cd $GOPATH/src/github.com/influxdb/telegraf`
5. Run `make`
2015-06-20 01:53:35 +00:00
### How to use it:
* Run `telegraf -sample-config > telegraf.conf` to create an initial configuration.
2016-01-07 20:39:43 +00:00
* Or run `telegraf -sample-config -input-filter cpu:mem -output-filter influxdb > telegraf.conf`.
to create a config file with only CPU and memory plugins defined, and InfluxDB
output defined.
* Edit the configuration to match your needs.
* Run `telegraf -config telegraf.conf -test` to output one full measurement
sample to STDOUT. NOTE: you may want to run as the telegraf user if you are using
the linux packages `sudo -u telegraf telegraf -config telegraf.conf -test`
* Run `telegraf -config telegraf.conf` to gather and send metrics to configured outputs.
2016-01-07 20:39:43 +00:00
* Run `telegraf -config telegraf.conf -input-filter system:swap`.
to run telegraf with only the system & swap plugins defined in the config.
## Telegraf Options
2015-05-20 05:26:13 +00:00
Telegraf has a few options you can configure under the `agent` section of the
config.
2015-05-20 05:26:13 +00:00
* **hostname**: The hostname is passed as a tag. By default this will be
2015-10-15 22:17:34 +00:00
the value returned by `hostname` on the machine running Telegraf.
You can override that value here.
2015-10-15 22:17:34 +00:00
* **interval**: How often to gather metrics. Uses a simple number +
unit parser, e.g. "10s" for 10 seconds or "5m" for 5 minutes.
* **debug**: Set to true to gather and send metrics to STDOUT as well as
InfluxDB.
2015-05-20 05:26:13 +00:00
2015-12-11 20:07:32 +00:00
## Configuration
2015-12-11 20:07:32 +00:00
See the [configuration guide](CONFIGURATION.md) for a rundown of the more advanced
configuration options.
## Supported Plugins
**You can view usage instructions for each plugin by running**
`telegraf -usage <pluginname>`.
Telegraf currently has support for collecting metrics from:
* aerospike
2015-09-04 23:05:50 +00:00
* apache
2015-10-19 17:38:16 +00:00
* bcache
* disque
* elasticsearch
* exec (generic JSON-emitting executable plugin)
* haproxy
* httpjson (generic JSON-emitting http service plugin)
* influxdb
2015-12-11 20:07:32 +00:00
* jolokia
* leofs
* lustre2
2015-12-01 21:05:24 +00:00
* mailchimp
* memcached
* mongodb
* mysql
* nginx
2015-10-16 12:13:09 +00:00
* phpfpm
2015-09-04 23:05:50 +00:00
* ping
* postgresql
* procstat
* prometheus
* puppetagent
* rabbitmq
* redis
* rethinkdb
* twemproxy
* zfs
2015-10-14 23:53:47 +00:00
* zookeeper
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
## Supported Service Plugins
Telegraf can collect metrics via the following services:
* statsd
* kafka_consumer
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.
## Supported Outputs
2015-06-19 16:38:31 +00:00
* influxdb
* nsq
* kafka
* datadog
2015-09-10 18:42:53 +00:00
* opentsdb
* amqp (rabbitmq)
* mqtt
* librato
* prometheus
2015-11-06 09:27:17 +00:00
* amon
2015-10-22 21:50:19 +00:00
* riemann
2015-06-19 16:38:31 +00:00
## Contributing
2015-06-19 16:38:31 +00:00
Please see the
[contributing guide](CONTRIBUTING.md)
for details on contributing a plugin or output to Telegraf.