From 32d1c149800771c678de4d22a0a361f6b418562c Mon Sep 17 00:00:00 2001 From: lwandzura <51929958+lwandzura@users.noreply.github.com> Date: Thu, 20 Jan 2022 14:30:22 -0600 Subject: [PATCH 1/3] Kapacitor release notes update --- .../about_the_project/releasenotes-changelog.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/content/kapacitor/v1.6/about_the_project/releasenotes-changelog.md b/content/kapacitor/v1.6/about_the_project/releasenotes-changelog.md index ca08a82360..28403ecb12 100644 --- a/content/kapacitor/v1.6/about_the_project/releasenotes-changelog.md +++ b/content/kapacitor/v1.6/about_the_project/releasenotes-changelog.md @@ -7,6 +7,20 @@ menu: name: Release notes --- +## v1.6.3 [2022-01-20] + +### Features + +- Support for the `attributes` field in Alerta node. +- Add BigPanda handler options. +- The `env var` config can now handle new items. +- `Topic queue length` is now configurable. +- Add new `address template` to email alert. + +### Bug fixes +- Deprecations in response to feedback from sweet32 - thank you! +- Add additional detail to the error message `missing flux data`. + ## v1.6.2 [2021-09-24] ### Features From 2f597cb3621b496fa0fea5c9f802e6f92d4d2834 Mon Sep 17 00:00:00 2001 From: lwandzura <51929958+lwandzura@users.noreply.github.com> Date: Fri, 21 Jan 2022 11:18:58 -0600 Subject: [PATCH 2/3] updated PigPanda and Alerta --- .../v1.6/about_the_project/releasenotes-changelog.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/content/kapacitor/v1.6/about_the_project/releasenotes-changelog.md b/content/kapacitor/v1.6/about_the_project/releasenotes-changelog.md index 28403ecb12..ca1129e207 100644 --- a/content/kapacitor/v1.6/about_the_project/releasenotes-changelog.md +++ b/content/kapacitor/v1.6/about_the_project/releasenotes-changelog.md @@ -11,9 +11,12 @@ menu: ### Features -- Support for the `attributes` field in Alerta node. -- Add BigPanda handler options. -- The `env var` config can now handle new items. +- Add support for custom `attributes` attribute in Alerta node. +- Add `host` and `attribute` options to BigPanda node. + - `host`: Corresponds to host alert payload parameter; identifies the main object that caused the alert. + - `attribute`: Option to add additional attribute(s) to the alert payload. +- Add new `auto-attributes` configuration option to BigPanda node. +- Capability to add new items to the `env var` config. - `Topic queue length` is now configurable. - Add new `address template` to email alert. From 08e7bbaf19a347852989aa81a65288cfebb2c614 Mon Sep 17 00:00:00 2001 From: lwandzura <51929958+lwandzura@users.noreply.github.com> Date: Fri, 21 Jan 2022 14:39:50 -0600 Subject: [PATCH 3/3] Added additonal detail from Emrys' feedback --- .../about_the_project/releasenotes-changelog.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/content/kapacitor/v1.6/about_the_project/releasenotes-changelog.md b/content/kapacitor/v1.6/about_the_project/releasenotes-changelog.md index ca1129e207..e472591335 100644 --- a/content/kapacitor/v1.6/about_the_project/releasenotes-changelog.md +++ b/content/kapacitor/v1.6/about_the_project/releasenotes-changelog.md @@ -11,18 +11,20 @@ menu: ### Features -- Add support for custom `attributes` attribute in Alerta node. -- Add `host` and `attribute` options to BigPanda node. +- Add support for custom `attributes` field in [Alerta event handler](/kapacitor/v1.6/event_handlers/alerta/). +- Add `host` and `attribute` options to [BigPanda event handler](/kapacitor/v1.6/event_handlers/bigpanda/). - `host`: Corresponds to host alert payload parameter; identifies the main object that caused the alert. - `attribute`: Option to add additional attribute(s) to the alert payload. - Add new `auto-attributes` configuration option to BigPanda node. -- Capability to add new items to the `env var` config. -- `Topic queue length` is now configurable. -- Add new `address template` to email alert. +- Ability to add new headers to HTTP posts directly in `env var` config. +- `Topic queue length` is now configurable. This allows you to set a `topic-buffer-length` parameter in the Kapacitor config file in the +[alert](https://docs.influxdata.com/kapacitor/v1.6/administration/configuration/#alert) section. The default is 5000. Minimum length +is 1000. +- Add new `address template` to email alert. Email addresses no longer need to be hardcoded; can be derived directly from data. ### Bug fixes -- Deprecations in response to feedback from sweet32 - thank you! -- Add additional detail to the error message `missing flux data`. +- Deprecation in response to [sweet32](https://sweet32.info/): stopped using block ciphers. +- Add additional detail to the error message `missing flux data`. This error is generated when issues occur when running a **Flux** query within a Batch TICKscript. ## v1.6.2 [2021-09-24]