Release 0.10.1
This commit is contained in:
parent
6ebb6bc7ee
commit
3a64a01f91
12
CHANGELOG.md
12
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
|
- 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
|
defaults to 10,000 metrics, and is adjustable. The buffer is cleared when a
|
||||||
|
|
29
README.md
29
README.md
|
@ -27,8 +27,8 @@ the [release blog post](https://influxdata.com/blog/announcing-telegraf-0-10-0/)
|
||||||
### Linux deb and rpm packages:
|
### Linux deb and rpm packages:
|
||||||
|
|
||||||
Latest:
|
Latest:
|
||||||
* http://get.influxdb.org/telegraf/telegraf_0.10.0-1_amd64.deb
|
* http://get.influxdb.org/telegraf/telegraf_0.10.1-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.x86_64.rpm
|
||||||
|
|
||||||
0.2.x:
|
0.2.x:
|
||||||
* http://get.influxdb.org/telegraf/telegraf_0.2.4_amd64.deb
|
* 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
|
* On systemd systems (such as Ubuntu 15+), the telegraf daemon can be
|
||||||
controlled via `systemctl [action] telegraf`
|
controlled via `systemctl [action] telegraf`
|
||||||
|
|
||||||
### Linux binaries:
|
### Linux tarballs:
|
||||||
|
|
||||||
Latest:
|
Latest:
|
||||||
* http://get.influxdb.org/telegraf/telegraf-0.10.0_linux_amd64.tar.gz
|
* http://get.influxdb.org/telegraf/telegraf-0.10.1-1_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.1-1_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_arm.tar.gz
|
||||||
|
|
||||||
0.2.x:
|
0.2.x:
|
||||||
* http://get.influxdb.org/telegraf/telegraf_linux_amd64_0.2.4.tar.gz
|
* 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_386_0.2.4.tar.gz
|
||||||
* http://get.influxdb.org/telegraf/telegraf_linux_arm_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
|
To install the full directory structure with config file, run:
|
||||||
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.
|
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:
|
### OSX via Homebrew:
|
||||||
|
|
||||||
|
|
|
@ -75,7 +75,7 @@
|
||||||
# Whether to report total system cpu stats or not
|
# Whether to report total system cpu stats or not
|
||||||
totalcpu = true
|
totalcpu = true
|
||||||
# Comment this line if you want the raw CPU time metrics
|
# Comment this line if you want the raw CPU time metrics
|
||||||
drop = ["cpu_time"]
|
drop = ["time_*"]
|
||||||
|
|
||||||
# Read metrics about disk usage by mount point
|
# Read metrics about disk usage by mount point
|
||||||
[[inputs.disk]]
|
[[inputs.disk]]
|
||||||
|
|
Loading…
Reference in New Issue