From 106f5b5ca8dde9cd6637f17d658f3329c4994608 Mon Sep 17 00:00:00 2001 From: Daniel Nelson Date: Tue, 16 Oct 2018 12:23:05 -0700 Subject: [PATCH] Update changelog --- CHANGELOG.md | 10 +++++++--- README.md | 1 + plugins/outputs/stackdriver/README.md | 5 +++-- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 47ef1a4cd..393c27707 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ ## v1.9 [unreleased] -### Release Notes +#### Release Notes - The `http_listener` input plugin has been renamed to `influxdb_listener` and use of the original name is deprecated. The new name better describes the @@ -8,11 +8,15 @@ transfer of metrics in any format via HTTP, it is recommended to use `http_listener_v2` instead. -### New Inputs +#### New Inputs - [http_listener_v2](/plugins/inputs/http_listener_v2/README.md) - Contributed by @jul1u5 -### Features +#### New Outputs + +- [stackdriver](/plugins/outputs/stackdriver/README.md) - Contributed by @jamesmaidment + +#### Features - [#4686](https://github.com/influxdata/telegraf/pull/4686): Add replace function to strings processor. - [#4754](https://github.com/influxdata/telegraf/pull/4754): Query servers in parallel in dns_query input. diff --git a/README.md b/README.md index c7f4be899..17b248247 100644 --- a/README.md +++ b/README.md @@ -337,6 +337,7 @@ For documentation on the latest development code see the [documentation index][d * [riemann](./plugins/outputs/riemann) * [riemann_legacy](./plugins/outputs/riemann_legacy) * [socket_writer](./plugins/outputs/socket_writer) +* [stackdriver](./plugins/outputs/stackdriver) * [tcp](./plugins/outputs/socket_writer) * [udp](./plugins/outputs/socket_writer) * [wavefront](./plugins/outputs/wavefront) diff --git a/plugins/outputs/stackdriver/README.md b/plugins/outputs/stackdriver/README.md index c3ecea790..ead8a0a6e 100644 --- a/plugins/outputs/stackdriver/README.md +++ b/plugins/outputs/stackdriver/README.md @@ -9,10 +9,11 @@ Metrics are grouped by the `namespace` variable and metric key - eg: `custom.goo ### Configuration -``` +```toml +[[outputs.stackdriver]] # GCP Project project = "erudite-bloom-151019" # The namespace for the metric descriptor namespace = "telegraf" -``` \ No newline at end of file +```