From 248ac6d92b80f078cc8a6a638230b5cfcae89f1a Mon Sep 17 00:00:00 2001 From: Daniel Nelson Date: Fri, 2 Feb 2018 12:30:12 -0800 Subject: [PATCH] Update sample config in contributing docs --- CONTRIBUTING.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 21ae5738e..949f73300 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -79,7 +79,10 @@ func (s *Simple) Description() string { } func (s *Simple) SampleConfig() string { - return "ok = true # indicate if everything is fine" + return ` + ## Indicate if everything is fine + ok = true +` } func (s *Simple) Gather(acc telegraf.Accumulator) error { @@ -207,7 +210,9 @@ func (s *Simple) Description() string { } func (s *Simple) SampleConfig() string { - return "url = localhost" + return ` + ok = true +` } func (s *Simple) Connect() error {