From e92ebb4a5e6424c7881b33f1d103654330d8fdac Mon Sep 17 00:00:00 2001 From: David Reimschussel Date: Thu, 16 Dec 2021 15:13:51 -0700 Subject: [PATCH] Update changelog --- CHANGELOG.md | 12 +++++++++++- etc/telegraf.conf | 8 ++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c73a674365fee..547d7a57e93c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ -# Change Log +## v1.21.1 [2021-12-16] + +### Bugfixes + +- [#10288](https://github.com/influxdata/telegraf/pull/10288) Fix panic in parsers due to missing Log for all plugins using SetParserFunc +- [#10247](https://github.com/influxdata/telegraf/pull/10247) Update go-sensu module to v2.12.0 +- [#10284](https://github.com/influxdata/telegraf/pull/10284) `inputs.openstack` Fix typo in openstack neutron input plugin (newtron) + +### Features + +- [#10150](https://github.com/influxdata/telegraf/pull/10150) `inputs.smart` Add SMART plugin concurrency configuration option, nvme-cli v1.14+ support and lint fixes ## v1.21.0 [2021-12-15] diff --git a/etc/telegraf.conf b/etc/telegraf.conf index f59fb4415c090..30aa3c3aec41f 100644 --- a/etc/telegraf.conf +++ b/etc/telegraf.conf @@ -6356,6 +6356,14 @@ # # ## Timeout for the cli command to complete. # # timeout = "30s" +# +# ## Optionally call smartctl and nvme-cli with a specific concurrency policy. +# ## By default, smartctl and nvme-cli are called in separate threads (goroutines) to gather disk attributes. +# ## Some devices (e.g. disks in RAID arrays) may have access limitations that require sequential reading of +# ## SMART data - one individual array drive at the time. In such case please set this configuration option +# ## to "sequential" to get readings for all drives. +# ## valid options: concurrent, sequential +# # read_method = "concurrent" # # Retrieves SNMP values from remote agents