change "default" retention policy to ""

closes #1374
This commit is contained in:
Cameron Sparr 2016-06-16 12:18:08 +01:00
parent 5b43901bd8
commit af0979cce5
3 changed files with 5 additions and 4 deletions

View File

@ -11,6 +11,7 @@
- [#1336](https://github.com/influxdata/telegraf/issues/1336): Fixed incorrect prometheus metrics source selection. - [#1336](https://github.com/influxdata/telegraf/issues/1336): Fixed incorrect prometheus metrics source selection.
- [#1112](https://github.com/influxdata/telegraf/issues/1112): Set default Zookeeper chroot to empty string. - [#1112](https://github.com/influxdata/telegraf/issues/1112): Set default Zookeeper chroot to empty string.
- [#1335](https://github.com/influxdata/telegraf/issues/1335): Fix overall ping timeout to be calculated based on per-ping timeout. - [#1335](https://github.com/influxdata/telegraf/issues/1335): Fix overall ping timeout to be calculated based on per-ping timeout.
- [#1374](https://github.com/influxdata/telegraf/pull/1374): Change "default" retention policy to "".
## v1.0 beta 1 [2016-06-07] ## v1.0 beta 1 [2016-06-07]

View File

@ -81,8 +81,8 @@
## The target database for metrics (telegraf will create it if not exists). ## The target database for metrics (telegraf will create it if not exists).
database = "telegraf" # required database = "telegraf" # required
## Retention policy to write to. ## Retention policy to write to. Empty string writes to the default rp.
retention_policy = "default" retention_policy = ""
## Write consistency (clusters only), can be: "any", "one", "quorom", "all" ## Write consistency (clusters only), can be: "any", "one", "quorom", "all"
write_consistency = "any" write_consistency = "any"

View File

@ -53,8 +53,8 @@ var sampleConfig = `
## The target database for metrics (telegraf will create it if not exists). ## The target database for metrics (telegraf will create it if not exists).
database = "telegraf" # required database = "telegraf" # required
## Retention policy to write to. ## Retention policy to write to. Empty string writes to the default rp.
retention_policy = "default" retention_policy = ""
## Write consistency (clusters only), can be: "any", "one", "quorom", "all" ## Write consistency (clusters only), can be: "any", "one", "quorom", "all"
write_consistency = "any" write_consistency = "any"