Update changelog and readme for package updates

This commit is contained in:
Cameron Sparr 2016-01-08 15:07:44 -07:00
parent 231b5feb23
commit f37f8ac815
2 changed files with 20 additions and 16 deletions

View File

@ -1,6 +1,8 @@
## v0.3.0 [unreleased] ## v0.3.0 [unreleased]
### Release Notes ### Release Notes
- Linux packages have been taken out of `opt`, the binary is now in `/usr/bin`
and configuration files are in `/etc/telegraf`
- **breaking change** `plugins` have been renamed to `inputs`. This was done because - **breaking change** `plugins` have been renamed to `inputs`. This was done because
`plugins` is too generic, as there are now also "output plugins", and will likely `plugins` is too generic, as there are now also "output plugins", and will likely
be "aggregator plugins" and "filter plugins" in the future. Additionally, be "aggregator plugins" and "filter plugins" in the future. Additionally,
@ -19,6 +21,12 @@ instead of only `cpu_`
- The prometheus plugin schema has not been changed (measurements have not been - The prometheus plugin schema has not been changed (measurements have not been
aggregated). aggregated).
### Packaging change note:
RHEL/CentOS users upgrading from 0.2 to 0.3 will probably have their
configurations overwritten by the upgrade. There is a backup stored at
/etc/telegraf/telegraf.conf.$(date +%s).backup.
### Features ### Features
- Plugin measurements aggregated into a single measurement. - Plugin measurements aggregated into a single measurement.
- Added ability to specify per-plugin tags - Added ability to specify per-plugin tags

View File

@ -35,8 +35,8 @@ Latest:
##### Package instructions: ##### Package instructions:
* Telegraf binary is installed in `/opt/telegraf/telegraf` * Telegraf binary is installed in `/usr/bin/telegraf`
* Telegraf daemon configuration file is in `/etc/opt/telegraf/telegraf.conf` * Telegraf daemon configuration file is in `/etc/telegraf/telegraf.conf`
* On sysv systems, the telegraf daemon can be controlled via * On sysv systems, the telegraf daemon can be controlled via
`service telegraf [action]` `service telegraf [action]`
* On systemd systems (such as Ubuntu 15+), the telegraf daemon can be * On systemd systems (such as Ubuntu 15+), the telegraf daemon can be
@ -126,9 +126,6 @@ configuration options.
## Supported Input Plugins ## Supported Input Plugins
**You can view usage instructions for each plugin by running**
`telegraf -usage <pluginname>`.
Telegraf currently has support for collecting metrics from: Telegraf currently has support for collecting metrics from:
* aerospike * aerospike
@ -169,9 +166,7 @@ Telegraf currently has support for collecting metrics from:
* diskio * diskio
* swap * swap
## Supported Input Service Plugins Telegraf can also collect metrics via the following service plugins:
Telegraf can collect metrics via the following services:
* statsd * statsd
* kafka_consumer * kafka_consumer
@ -182,15 +177,16 @@ want to add support for another service or third-party API.
## Supported Output Plugins ## Supported Output Plugins
* influxdb * influxdb
* nsq
* kafka
* datadog
* opentsdb
* amqp (rabbitmq)
* mqtt
* librato
* prometheus
* amon * amon
* amqp
* datadog
* kafka
* amazon kinesis
* librato
* mqtt
* nsq
* opentsdb
* prometheus
* riemann * riemann
## Contributing ## Contributing