Release 0.1.5, updating CHANGELOG and README
This commit is contained in:
parent
b199d7a9fe
commit
c26fa33094
|
@ -1,4 +1,10 @@
|
|||
## v0.1.5 [unreleased]
|
||||
## v0.1.6 [unreleased]
|
||||
|
||||
### Features
|
||||
|
||||
### Bugfixes
|
||||
|
||||
## v0.1.5 [2015-08-13]
|
||||
|
||||
### Features
|
||||
- [#54](https://github.com/influxdb/telegraf/pull/54): MongoDB plugin. Thanks @jipperinbham!
|
||||
|
|
|
@ -18,9 +18,14 @@ writing new plugins.
|
|||
|
||||
### Linux packages for Debian/Ubuntu and RHEL/CentOS:
|
||||
|
||||
NOTE: version 0.1.5 has introduced some breaking changes! A 0.1.5 telegraf
|
||||
agent is NOT backwards-compatible with a config file from 0.1.4 and below.
|
||||
That being said, the difference is not huge, see below for an example on
|
||||
how to setup the new config file.
|
||||
|
||||
```
|
||||
http://get.influxdb.org/telegraf/telegraf_0.1.4_amd64.deb
|
||||
http://get.influxdb.org/telegraf/telegraf-0.1.4-1.x86_64.rpm
|
||||
http://get.influxdb.org/telegraf/telegraf_0.1.5_amd64.deb
|
||||
http://get.influxdb.org/telegraf/telegraf-0.1.5-1.x86_64.rpm
|
||||
```
|
||||
|
||||
### OSX via Homebrew:
|
||||
|
|
|
@ -22,7 +22,7 @@ var fPidfile = flag.String("pidfile", "", "file to write our pid to")
|
|||
var fPLuginsFilter = flag.String("filter", "", "filter the plugins to enable, separator is :")
|
||||
|
||||
// Telegraf version
|
||||
var Version = "0.1.5-dev"
|
||||
var Version = "0.1.6-dev"
|
||||
|
||||
func main() {
|
||||
flag.Parse()
|
||||
|
|
Loading…
Reference in New Issue