Issue #264: Fixes for logrotate config file.
This adds copytruncate and dateext to match the Influxdb logrotate file, and removes nocreate (again, to match influxdb). Closes #264 Closes #265
This commit is contained in:
parent
2f7d781635
commit
04e2db1f41
|
@ -22,6 +22,7 @@ of metrics collected and from how many plugins.
|
||||||
- [#232](https://github.com/influxdb/telegraf/pull/232): Fix bashism run during deb package installation. Thanks @yankcrime!
|
- [#232](https://github.com/influxdb/telegraf/pull/232): Fix bashism run during deb package installation. Thanks @yankcrime!
|
||||||
- [#261](https://github.com/influxdb/telegraf/issues/260): RabbitMQ panics if wrong credentials given. Thanks @ekini!
|
- [#261](https://github.com/influxdb/telegraf/issues/260): RabbitMQ panics if wrong credentials given. Thanks @ekini!
|
||||||
- [#245](https://github.com/influxdb/telegraf/issues/245): Document Exec plugin example. Thanks @ekini!
|
- [#245](https://github.com/influxdb/telegraf/issues/245): Document Exec plugin example. Thanks @ekini!
|
||||||
|
- [#264](https://github.com/influxdb/telegraf/issues/264): logrotate config file fixes. Thanks @linsomniac!
|
||||||
|
|
||||||
## v0.1.9 [2015-09-22]
|
## v0.1.9 [2015-09-22]
|
||||||
|
|
||||||
|
|
|
@ -3,8 +3,9 @@
|
||||||
rotate 6
|
rotate 6
|
||||||
daily
|
daily
|
||||||
missingok
|
missingok
|
||||||
|
dateext
|
||||||
|
copytruncate
|
||||||
notifempty
|
notifempty
|
||||||
nocreate
|
|
||||||
compress
|
compress
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue