diff --git a/CHANGELOG.md b/CHANGELOG.md index b049c6a91..736952fc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ -## v0.10.1 [unreleased] +## v0.10.2 [unreleased] -### Release Notes: +### Release Notes + +### Features + +### Bugfixes + +## v0.10.1 [2016-01-27] + +### Release Notes - Telegraf now keeps a fixed-length buffer of metrics per-output. This buffer defaults to 10,000 metrics, and is adjustable. The buffer is cleared when a diff --git a/README.md b/README.md index 59e987247..b33043f0c 100644 --- a/README.md +++ b/README.md @@ -27,8 +27,8 @@ the [release blog post](https://influxdata.com/blog/announcing-telegraf-0-10-0/) ### Linux deb and rpm packages: Latest: -* http://get.influxdb.org/telegraf/telegraf_0.10.0-1_amd64.deb -* http://get.influxdb.org/telegraf/telegraf-0.10.0-1.x86_64.rpm +* http://get.influxdb.org/telegraf/telegraf_0.10.1-1_amd64.deb +* http://get.influxdb.org/telegraf/telegraf-0.10.1-1.x86_64.rpm 0.2.x: * http://get.influxdb.org/telegraf/telegraf_0.2.4_amd64.deb @@ -43,24 +43,31 @@ Latest: * On systemd systems (such as Ubuntu 15+), the telegraf daemon can be controlled via `systemctl [action] telegraf` -### Linux binaries: +### Linux tarballs: Latest: -* http://get.influxdb.org/telegraf/telegraf-0.10.0_linux_amd64.tar.gz -* http://get.influxdb.org/telegraf/telegraf-0.10.0_linux_386.tar.gz -* http://get.influxdb.org/telegraf/telegraf-0.10.0_linux_arm.tar.gz +* http://get.influxdb.org/telegraf/telegraf-0.10.1-1_linux_amd64.tar.gz +* http://get.influxdb.org/telegraf/telegraf-0.10.1-1_linux_386.tar.gz +* http://get.influxdb.org/telegraf/telegraf-0.10.1-1_linux_arm.tar.gz 0.2.x: * 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: +##### tarball 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. +To install the full directory structure with config file, run: + +``` +sudo tar -C / -xvf ./telegraf-v0.10.1-1_linux_amd64.tar.gz +``` + +To extract only the binary, run: + +``` +tar -zxvf telegraf-v0.10.1-1_linux_amd64.tar.gz --strip-components=3 ./usr/bin/telegraf +``` ### OSX via Homebrew: diff --git a/etc/telegraf.conf b/etc/telegraf.conf index 7cafa9512..b5b028559 100644 --- a/etc/telegraf.conf +++ b/etc/telegraf.conf @@ -75,7 +75,7 @@ # Whether to report total system cpu stats or not totalcpu = true # Comment this line if you want the raw CPU time metrics - drop = ["cpu_time"] + drop = ["time_*"] # Read metrics about disk usage by mount point [[inputs.disk]]