Update changelog

This commit is contained in:
Daniel Nelson 2018-11-29 16:06:18 -08:00
parent 34231f6141
commit 1d6db08dc8
No known key found for this signature in database
GPG Key ID: CAAD59C9444F6155
2 changed files with 8 additions and 0 deletions

View File

@ -15,6 +15,7 @@
- [#4664](https://github.com/influxdata/telegraf/issues/4664): Fix server connection and document stats in mongodb input.
- [#5010](https://github.com/influxdata/telegraf/issues/5010): Add X-Requested-By header to graylog input.
- [#5052](https://github.com/influxdata/telegraf/issues/5052): Fix metric memory not freed from the metric buffer on write.
- [#3817](https://github.com/influxdata/telegraf/issues/3817): Add support for client tls certificates in postgresql inputs.
## v1.9 [2018-11-20]

View File

@ -45,6 +45,13 @@ A list of databases to pull metrics about. If not specified, metrics for all dat
`databases = ["app_production", "testing"]`
### TLS Configuration
Add the `sslkey`, `sslcert` and `sslrootcert` options to your DSN:
```
host=localhost user=pgotest dbname=app_production sslmode=require sslkey=/etc/telegraf/key.pem sslcert=/etc/telegraf/cert.pem sslrootcert=/etc/telegraf/ca.pem
```
### Configuration example
```
[[inputs.postgresql]]