0.1.6, update changelog, readme, plugins list

This commit is contained in:
Cameron Sparr 2015-08-20 14:40:23 -06:00
parent f8c1e953d4
commit 8273679634
3 changed files with 36 additions and 16 deletions

View File

@ -1,4 +1,4 @@
## v0.1.6 [unreleased] ## v0.1.6 [2015-08-20]
### Features ### Features
- [#112](https://github.com/influxdb/telegraf/pull/112): Datadog output. Thanks @jipperinbham! - [#112](https://github.com/influxdb/telegraf/pull/112): Datadog output. Thanks @jipperinbham!

View File

@ -30,8 +30,8 @@ are some InfluxDB compatibility requirements:
* InfluxDB 0.9.2 and prior requires Telegraf 0.1.4 * InfluxDB 0.9.2 and prior requires Telegraf 0.1.4
Telegraf 0.1.5 Telegraf 0.1.5
* http://get.influxdb.org/telegraf/telegraf_0.1.5_amd64.deb * http://get.influxdb.org/telegraf/telegraf_0.1.6_amd64.deb
* http://get.influxdb.org/telegraf/telegraf-0.1.5-1.x86_64.rpm * http://get.influxdb.org/telegraf/telegraf-0.1.6-1.x86_64.rpm
Telegraf 0.1.4 Telegraf 0.1.4
* http://get.influxdb.org/telegraf/telegraf_0.1.4_amd64.deb * http://get.influxdb.org/telegraf/telegraf_0.1.4_amd64.deb
@ -135,19 +135,24 @@ path = [ "/opt", "/home" ]
Telegraf currently has support for collecting metrics from: Telegraf currently has support for collecting metrics from:
* System (memory, CPU, network, etc.) * disque
* Docker * elasticsearch
* MySQL * exec (generic executable JSON-gathering plugin)
* Prometheus (client libraries and exporters) * haproxy
* PostgreSQL * httpjson (generic JSON-emitting http service plugin)
* Redis * kafka_consumer
* Elasticsearch * leofs
* RethinkDB * lustre2
* Kafka * memcached
* MongoDB * mongodb
* Disque * mysql
* Lustre2 * nginx
* Memcached * postgresql
* prometheus
* rabbitmq
* redis
* rethinkdb
* system (mem, CPU, load, etc.)
We'll be adding support for many more over the coming months. Read on if you 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. want to add support for another service or third-party API.

15
plugins/exec/README.md Normal file
View File

@ -0,0 +1,15 @@
# Exec Plugin
The exec plugin can execute arbitrary commands which return flattened
JSON.
For example, if you have a json-returning command called mycollector, you could
setup the exec plugin with:
```
[[exec.commands]]
command = "/usr/bin/mycollector --output=json"
name = "mycollector"
```
The name is used as a prefix for the measurements.