Skip to content

Commit f453115

Browse files
committed
Update changelog
1 parent 1cdf588 commit f453115

File tree

2 files changed

+88
-1
lines changed

2 files changed

+88
-1
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## v1.19.0-rc1 [2021-06-10]
1+
## v1.19.0 [2021-06-17]
22

33
#### Release Notes
44

@@ -13,6 +13,14 @@
1313
- [#9051](https://github.com/influxdata/telegraf/pull/9051) `outputs.kafka` Don't prevent telegraf from starting when there's a connection error
1414
- [#8795](https://github.com/influxdata/telegraf/pull/8795) `parsers.prometheusremotewrite` Update prometheus dependency to v2.21.0
1515
- [#9295](https://github.com/influxdata/telegraf/pull/9295) `outputs.dynatrace` Use dynatrace-metric-utils
16+
- [#9368](https://github.com/influxdata/telegraf/pull/9368) `parsers.json_v2` Update json_v2 parser to handle null types
17+
- [#9359](https://github.com/influxdata/telegraf/pull/9359) `inputs.sql` Fix import of sqlite and ignore it on all platforms that require CGO.
18+
- [#9329](https://github.com/influxdata/telegraf/pull/9329) `inputs.kube_inventory` Fix connecting to the wrong url
19+
- [#9358](https://github.com/influxdata/telegraf/pull/9358) upgrade denisenkom go-mssql to v0.10.0
20+
- [#9283](https://github.com/influxdata/telegraf/pull/9283) `processors.parser` Fix segfault
21+
- [#9243](https://github.com/influxdata/telegraf/pull/9243) `inputs.docker` Close all idle connections
22+
- [#9338](https://github.com/influxdata/telegraf/pull/9338) `inputs.suricata` Support new JSON format
23+
- [#9296](https://github.com/influxdata/telegraf/pull/9296) `outputs.influxdb` Fix endless retries
1624

1725
#### Features
1826

@@ -54,6 +62,7 @@
5462
- [OpenTelemetry](https://github.com/influxdata/telegraf/tree/master/plugins/inputs/opentelemetry) - contributed by @jacobmarble
5563
- [Intel Data Plane Development Kit (DPDK)](https://github.com/influxdata/telegraf/tree/master/plugins/inputs/dpdk) - contributed by @p-zak
5664
- [KNX](https://github.com/influxdata/telegraf/tree/master/plugins/inputs/knx_listener) - contributed by @DocLambda
65+
- [SQL](https://github.com/influxdata/telegraf/tree/master/plugins/inputs/sql) - contributed by @srebhan
5766

5867
#### New Output Plugins
5968

etc/telegraf.conf

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8046,6 +8046,84 @@
80468046
# # content_encoding = "identity"
80478047

80488048

8049+
# # Read metrics from SQL queries
8050+
# [[inputs.sql]]
8051+
# ## Database Driver
8052+
# ## See https://github.com/influxdata/telegraf/blob/master/docs/SQL_DRIVERS_INPUT.md for
8053+
# ## a list of supported drivers.
8054+
# driver = "mysql"
8055+
#
8056+
# ## Data source name for connecting
8057+
# ## The syntax and supported options depends on selected driver.
8058+
# dsn = "username:password@mysqlserver:3307/dbname?param=value"
8059+
#
8060+
# ## Timeout for any operation
8061+
# # timeout = "5s"
8062+
#
8063+
# ## Connection time limits
8064+
# ## By default the maximum idle time and maximum lifetime of a connection is unlimited, i.e. the connections
8065+
# ## will not be closed automatically. If you specify a positive time, the connections will be closed after
8066+
# ## idleing or existing for at least that amount of time, respectively.
8067+
# # connection_max_idle_time = "0s"
8068+
# # connection_max_life_time = "0s"
8069+
#
8070+
# ## Connection count limits
8071+
# ## By default the number of open connections is not limited and the number of maximum idle connections
8072+
# ## will be inferred from the number of queries specified. If you specify a positive number for any of the
8073+
# ## two options, connections will be closed when reaching the specified limit. The number of idle connections
8074+
# ## will be clipped to the maximum number of connections limit if any.
8075+
# # connection_max_open = 0
8076+
# # connection_max_idle = auto
8077+
#
8078+
# [[inputs.sql.query]]
8079+
# ## Query to perform on the server
8080+
# query="SELECT user,state,latency,score FROM Scoreboard WHERE application > 0"
8081+
# ## Alternatively to specifying the query directly you can select a file here containing the SQL query.
8082+
# ## Only one of 'query' and 'query_script' can be specified!
8083+
# # query_script = "/path/to/sql/script.sql"
8084+
#
8085+
# ## Name of the measurement
8086+
# ## In case both measurement and 'measurement_col' are given, the latter takes precedence.
8087+
# # measurement = "sql"
8088+
#
8089+
# ## Column name containing the name of the measurement
8090+
# ## If given, this will take precedence over the 'measurement' setting. In case a query result
8091+
# ## does not contain the specified column, we fall-back to the 'measurement' setting.
8092+
# # measurement_column = ""
8093+
#
8094+
# ## Column name containing the time of the measurement
8095+
# ## If ommited, the time of the query will be used.
8096+
# # time_column = ""
8097+
#
8098+
# ## Format of the time contained in 'time_col'
8099+
# ## The time must be 'unix', 'unix_ms', 'unix_us', 'unix_ns', or a golang time format.
8100+
# ## See https://golang.org/pkg/time/#Time.Format for details.
8101+
# # time_format = "unix"
8102+
#
8103+
# ## Column names containing tags
8104+
# ## An empty include list will reject all columns and an empty exclude list will not exclude any column.
8105+
# ## I.e. by default no columns will be returned as tag and the tags are empty.
8106+
# # tag_columns_include = []
8107+
# # tag_columns_exclude = []
8108+
#
8109+
# ## Column names containing fields (explicit types)
8110+
# ## Convert the given columns to the corresponding type. Explicit type conversions take precedence over
8111+
# ## the automatic (driver-based) conversion below.
8112+
# ## NOTE: Columns should not be specified for multiple types or the resulting type is undefined.
8113+
# # field_columns_float = []
8114+
# # field_columns_int = []
8115+
# # field_columns_uint = []
8116+
# # field_columns_bool = []
8117+
# # field_columns_string = []
8118+
#
8119+
# ## Column names containing fields (automatic types)
8120+
# ## An empty include list is equivalent to '[*]' and all returned columns will be accepted. An empty
8121+
# ## exclude list will not exclude any column. I.e. by default all columns will be returned as fields.
8122+
# ## NOTE: We rely on the database driver to perform automatic datatype conversion.
8123+
# # field_columns_include = []
8124+
# # field_columns_exclude = []
8125+
8126+
80498127
# # Read metrics from Microsoft SQL Server
80508128
# [[inputs.sqlserver]]
80518129
# ## Specify instances to monitor with a list of connection strings.

0 commit comments

Comments
 (0)