Update changelog
(cherry picked from commit 7f90f97853ffc1d6cc8ea6d6d4324e68249e0735)
This commit is contained in:
parent
537ac63c68
commit
b3492fcfa0
25
CHANGELOG.md
25
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]
|
## v1.19.0 [2021-06-17]
|
||||||
|
|
||||||
#### Release Notes
|
#### Release Notes
|
||||||
|
|
|
||||||
|
|
@ -5637,6 +5637,12 @@
|
||||||
# ## specified, metrics for all exchanges are gathered.
|
# ## specified, metrics for all exchanges are gathered.
|
||||||
# # exchanges = ["telegraf"]
|
# # 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.
|
# ## Queues to include and exclude. Globs accepted.
|
||||||
# ## Note that an empty array for both will include all queues
|
# ## Note that an empty array for both will include all queues
|
||||||
# queue_name_include = []
|
# queue_name_include = []
|
||||||
|
|
@ -8137,6 +8143,10 @@
|
||||||
# "Server=192.168.1.10;Port=1433;User Id=<user>;Password=<pw>;app name=telegraf;log=1;",
|
# "Server=192.168.1.10;Port=1433;User Id=<user>;Password=<pw>;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
|
# ## "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.
|
# ## 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"
|
# ## Possible values for database_type are - "AzureSQLDB" or "AzureSQLManagedInstance" or "SQLServer"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue