From 96c7b9aac9c5087fd40847175735b3c87960a316 Mon Sep 17 00:00:00 2001 From: Sven Rebhan Date: Mon, 19 Feb 2024 20:51:07 +0100 Subject: [PATCH 1/3] Document change in default behavior --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f431b848d43a..fddda404a9690 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -48,6 +48,15 @@ - [#14771](https://github.com/influxdata/telegraf/pull/14771) `deps` Bump tj-actions/changed-files from 41 to 42 - [#14757](https://github.com/influxdata/telegraf/pull/14757) `deps` Get rid of golang.org/x/exp and use stable versions instead - [#14753](https://github.com/influxdata/telegraf/pull/14753) `deps` Use github.com/coreos/go-systemd/v22 instead of git version +## Unreleased + +### Important Changes + +- The default read-timeout of `inputs.syslog` of five seconds is not a sensible + default as the plugin will close the connection if the time between + consecutive messages exceeds the timeout. + [#14828](https://github.com/influxdata/telegraf/pull/14828) sets the timeout + to infinite (i.e zero) as this is the expected behavior. ## v1.29.4 [2024-01-31] From 2c89a8ea854e04e9acf8091828fd22664f76f25a Mon Sep 17 00:00:00 2001 From: Sven Rebhan Date: Wed, 21 Feb 2024 19:15:13 +0100 Subject: [PATCH 2/3] Fix rebase fallout --- CHANGELOG.md | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fddda404a9690..020b4abd95d1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ # Changelog +## Unreleased + +### Important Changes + +- The default read-timeout of `inputs.syslog` of five seconds is not a sensible + default as the plugin will close the connection if the time between + consecutive messages exceeds the timeout. + [#14828](https://github.com/influxdata/telegraf/pull/14828) sets the timeout + to infinite (i.e zero) as this is the expected behavior. + ## v1.29.5 [2024-02-20] ### Bugfixes @@ -48,15 +58,6 @@ - [#14771](https://github.com/influxdata/telegraf/pull/14771) `deps` Bump tj-actions/changed-files from 41 to 42 - [#14757](https://github.com/influxdata/telegraf/pull/14757) `deps` Get rid of golang.org/x/exp and use stable versions instead - [#14753](https://github.com/influxdata/telegraf/pull/14753) `deps` Use github.com/coreos/go-systemd/v22 instead of git version -## Unreleased - -### Important Changes - -- The default read-timeout of `inputs.syslog` of five seconds is not a sensible - default as the plugin will close the connection if the time between - consecutive messages exceeds the timeout. - [#14828](https://github.com/influxdata/telegraf/pull/14828) sets the timeout - to infinite (i.e zero) as this is the expected behavior. ## v1.29.4 [2024-01-31] From 1f867fb11fba535f078204eddcff2577fcb45eb9 Mon Sep 17 00:00:00 2001 From: Sven Rebhan Date: Mon, 26 Feb 2024 11:48:47 +0100 Subject: [PATCH 3/3] Fix PR reference --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 020b4abd95d1b..e248fafdb5fed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ - The default read-timeout of `inputs.syslog` of five seconds is not a sensible default as the plugin will close the connection if the time between consecutive messages exceeds the timeout. - [#14828](https://github.com/influxdata/telegraf/pull/14828) sets the timeout + [#14837](https://github.com/influxdata/telegraf/pull/14828) sets the timeout to infinite (i.e zero) as this is the expected behavior. ## v1.29.5 [2024-02-20]