From 5a09735020b5fd487863a911b35b3b834d00afb0 Mon Sep 17 00:00:00 2001 From: Steven Soroka Date: Fri, 18 Sep 2020 15:05:57 -0400 Subject: [PATCH] minor docs cleanup --- plugins/inputs/influxdb_v2_listener/README.md | 3 ++- plugins/processors/starlark/starlark_test.go | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/inputs/influxdb_v2_listener/README.md b/plugins/inputs/influxdb_v2_listener/README.md index 23f031c3f..cef11e9ae 100644 --- a/plugins/inputs/influxdb_v2_listener/README.md +++ b/plugins/inputs/influxdb_v2_listener/README.md @@ -12,6 +12,7 @@ defer to the output plugins configuration. ### Configuration: ```toml +[[inputs.influxdb_v2_listener]] ## Address and port to host InfluxDB listener on service_address = ":9999" @@ -19,7 +20,7 @@ defer to the output plugins configuration. ## 0 means to use the default of 32MiB. # max_body_size = "32MiB" - ## Optional tag to determine the bucket. + ## Optional tag to determine the bucket. ## If the write has a bucket in the query string then it will be kept in this tag name. ## This tag can be used in downstream outputs. ## The default value of nothing means it will be off and the database will not be recorded. diff --git a/plugins/processors/starlark/starlark_test.go b/plugins/processors/starlark/starlark_test.go index f80676a73..ce0b1803c 100644 --- a/plugins/processors/starlark/starlark_test.go +++ b/plugins/processors/starlark/starlark_test.go @@ -2793,6 +2793,7 @@ def apply(metric): }) } } + func TestAllScriptTestData(t *testing.T) { // can be run from multiple folders paths := []string{"testdata", "plugins/processors/starlark/testdata"}