From b3492fcfa06d75711f08429af5525ca2a8bcb8a4 Mon Sep 17 00:00:00 2001 From: David Reimschussel Date: Wed, 7 Jul 2021 14:32:45 -0600 Subject: [PATCH] Update changelog (cherry picked from commit 7f90f97853ffc1d6cc8ea6d6d4324e68249e0735) --- CHANGELOG.md | 25 +++++++++++++++++++++++++ etc/telegraf.conf | 10 ++++++++++ 2 files changed, 35 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f0a59529..6dcf16174 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,28 @@ +## v1.19.1 [2021-07-07] + +#### Bugfixes + + - [#9388](https://github.com/influxdata/telegraf/pull/9388) `inputs.sqlserver` Require authentication method to be specified + - [#9456](https://github.com/influxdata/telegraf/pull/9456) `inputs.kube_inventory` Fix segfault in kube_inventory + - [#9448](https://github.com/influxdata/telegraf/pull/9448) `inputs.couchbase` Fix panic + - [#9444](https://github.com/influxdata/telegraf/pull/9444) `inputs.knx_listener` Fix nil pointer panic + - [#9446](https://github.com/influxdata/telegraf/pull/9446) `inputs.procstat` Update gopsutil module to fix panic + - [#9443](https://github.com/influxdata/telegraf/pull/9443) `inputs.rabbitmq` Fix JSON unmarshall regression + - [#9369](https://github.com/influxdata/telegraf/pull/9369) Update nat-server module to v2.2.6 + - [#9429](https://github.com/influxdata/telegraf/pull/9429) `inputs.dovecot` Exclude read-timeout from being an error + - [#9423](https://github.com/influxdata/telegraf/pull/9423) `inputs.statsd` Don't stop parsing after parsing error + - [#9370](https://github.com/influxdata/telegraf/pull/9370) Update apimachinary module to v0.21.1 + - [#9373](https://github.com/influxdata/telegraf/pull/9373) Update jwt module to v1.2.2 and jwt-go module to v3.2.3 + - [#9412](https://github.com/influxdata/telegraf/pull/9412) Update couchbase Module to v0.1.0 + - [#9366](https://github.com/influxdata/telegraf/pull/9366) `inputs.snmp` Add a check for oid and name to prevent empty metrics + - [#9413](https://github.com/influxdata/telegraf/pull/9413) `outputs.http` Fix toml error when parsing insecure_skip_verify + - [#9400](https://github.com/influxdata/telegraf/pull/9400) `inputs.x509_cert` Fix 'source' tag for https + - [#9375](https://github.com/influxdata/telegraf/pull/9375) Update signalfx module to v3.3.34 + - [#9406](https://github.com/influxdata/telegraf/pull/9406) `parsers.json_v2` Don't require tags to be added to included_keys + - [#9289](https://github.com/influxdata/telegraf/pull/9289) `inputs.x509_cert` Fix SNI support + - [#9372](https://github.com/influxdata/telegraf/pull/9372) Update gjson module to v1.8.0 + - [#9379](https://github.com/influxdata/telegraf/pull/9379) Linter fixes for plugins/inputs/[de]* + ## v1.19.0 [2021-06-17] #### Release Notes diff --git a/etc/telegraf.conf b/etc/telegraf.conf index 492bf7040..6d11fa692 100644 --- a/etc/telegraf.conf +++ b/etc/telegraf.conf @@ -5637,6 +5637,12 @@ # ## specified, metrics for all exchanges are gathered. # # exchanges = ["telegraf"] # +# ## Metrics to include and exclude. Globs accepted. +# ## Note that an empty array for both will include all metrics +# ## Currently the following metrics are supported: "exchange", "federation", "node", "overview", "queue" +# # metric_include = [] +# # metric_exclude = [] +# # ## Queues to include and exclude. Globs accepted. # ## Note that an empty array for both will include all queues # queue_name_include = [] @@ -8137,6 +8143,10 @@ # "Server=192.168.1.10;Port=1433;User Id=;Password=;app name=telegraf;log=1;", # ] # +# ## Authentication method +# ## valid methods: "connection_string", "AAD" +# # auth_method = "connection_string" +# # ## "database_type" enables a specific set of queries depending on the database type. If specified, it replaces azuredb = true/false and query_version = 2 # ## In the config file, the sql server plugin section should be repeated each with a set of servers for a specific database_type. # ## Possible values for database_type are - "AzureSQLDB" or "AzureSQLManagedInstance" or "SQLServer"