From bb2e709b37303e6031f8d3f795431c20b88cc247 Mon Sep 17 00:00:00 2001 From: keep94 Date: Mon, 7 Mar 2022 08:25:48 -0800 Subject: [PATCH] docs: update wavefront docs for clearer proxy server use (#10774) --- plugins/outputs/wavefront/README.md | 4 ++-- plugins/outputs/wavefront/wavefront.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/outputs/wavefront/README.md b/plugins/outputs/wavefront/README.md index 6ccd6e35e..5e37b6f2f 100644 --- a/plugins/outputs/wavefront/README.md +++ b/plugins/outputs/wavefront/README.md @@ -5,8 +5,8 @@ This plugin writes to a [Wavefront](https://www.wavefront.com) proxy, in Wavefro ## Configuration ```toml - ## Url for Wavefront Direct Ingestion or using HTTP with Wavefront Proxy - ## If using Wavefront Proxy, also specify port. example: http://proxyserver:2878 + ## Url for Wavefront Direct Ingestion. For Wavefront Proxy Ingestion, see + ## the 'host' and 'port' options below. url = "https://metrics.wavefront.com" ## Authentication Token for Wavefront. Only required if using Direct Ingestion diff --git a/plugins/outputs/wavefront/wavefront.go b/plugins/outputs/wavefront/wavefront.go index 8b8593a7d..6e0dbd63a 100644 --- a/plugins/outputs/wavefront/wavefront.go +++ b/plugins/outputs/wavefront/wavefront.go @@ -59,8 +59,8 @@ var tagValueReplacer = strings.NewReplacer("*", "-") var pathReplacer = strings.NewReplacer("_", "_") var sampleConfig = ` - ## Url for Wavefront Direct Ingestion or using HTTP with Wavefront Proxy - ## If using Wavefront Proxy, also specify port. example: http://proxyserver:2878 + ## Url for Wavefront Direct Ingestion. For Wavefront Proxy Ingestion, see + ## the 'host' and 'port' optioins below. url = "https://metrics.wavefront.com" ## Authentication Token for Wavefront. Only required if using Direct Ingestion