diff --git a/plugins/inputs/nginx_sts/README.md b/plugins/inputs/nginx_sts/README.md index c8b2adae4..935bc9af8 100644 --- a/plugins/inputs/nginx_sts/README.md +++ b/plugins/inputs/nginx_sts/README.md @@ -7,6 +7,8 @@ status such as servers, upstreams, caches. This is similar to the live activity monitoring of Nginx plus. For module configuration details please see its [documentation](https://github.com/vozlt/nginx-module-sts#synopsis). +Telegraf minimum version: Telegraf 1.15.0 + ### Configuration ```toml diff --git a/plugins/inputs/redfish/README.md b/plugins/inputs/redfish/README.md index 26f5a1844..5a6ed4a1a 100644 --- a/plugins/inputs/redfish/README.md +++ b/plugins/inputs/redfish/README.md @@ -2,6 +2,7 @@ The `redfish` plugin gathers metrics and status information about CPU temperature, fanspeed, Powersupply, voltage, hostname and Location details(datacenter,placement,rack and room) of hardware servers for which redfish is enabled. +Telegraf minimum version: Telegraf 1.15.0 ### Configuration diff --git a/plugins/outputs/execd/README.md b/plugins/outputs/execd/README.md index 24613d537..0394c0d71 100644 --- a/plugins/outputs/execd/README.md +++ b/plugins/outputs/execd/README.md @@ -2,6 +2,8 @@ The `execd` plugin runs an external program as a daemon. +Telegraf minimum version: Telegraf 1.15.0 + ### Configuration: ```toml @@ -23,4 +25,4 @@ The `execd` plugin runs an external program as a daemon. see [examples][] -[examples]: https://github.com/influxdata/telegraf/blob/master/plugins/outputs/execd/examples/ \ No newline at end of file +[examples]: https://github.com/influxdata/telegraf/blob/master/plugins/outputs/execd/examples/ diff --git a/plugins/outputs/newrelic/README.md b/plugins/outputs/newrelic/README.md index ae056ed2f..e6c59aeea 100644 --- a/plugins/outputs/newrelic/README.md +++ b/plugins/outputs/newrelic/README.md @@ -4,6 +4,8 @@ This plugins writes to New Relic Insights using the [Metrics API][]. To use this plugin you must first obtain an [Insights API Key][]. +Telegraf minimum version: Telegraf 1.15.0 + ### Configuration ```toml [[outputs.newrelic]] diff --git a/plugins/processors/defaults/README.md b/plugins/processors/defaults/README.md index 638a3dac7..52574ed23 100644 --- a/plugins/processors/defaults/README.md +++ b/plugins/processors/defaults/README.md @@ -7,7 +7,9 @@ There are three cases where this processor will insert a configured default fiel 1. The field is nil on the incoming metric 1. The field is not nil, but its value is an empty string. 1. The field is not nil, but its value is a string of one or more empty spaces. - + +Telegraf minimum version: Telegraf 1.15.0 + ### Configuration ```toml ## Set default fields on your metric(s) when they are nil or empty diff --git a/plugins/processors/execd/README.md b/plugins/processors/execd/README.md index 0535dbf5f..c5fcb7799 100644 --- a/plugins/processors/execd/README.md +++ b/plugins/processors/execd/README.md @@ -7,6 +7,8 @@ metrics in influx line protocol to standard output (STDOUT). Program output on standard error is mirrored to the telegraf log. +Telegraf minimum version: Telegraf 1.15.0 + ### Caveats - Metrics with tracking will be considered "delivered" as soon as they are passed diff --git a/plugins/processors/filepath/README.md b/plugins/processors/filepath/README.md index f4473ff62..ab3454dcb 100644 --- a/plugins/processors/filepath/README.md +++ b/plugins/processors/filepath/README.md @@ -22,7 +22,9 @@ stored in a new tag or field. If you plan to apply multiple transformations to the same `tag`/`field`, bear in mind the processing order stated above. -## Configuration +Telegraf minimum version: Telegraf 1.15.0 + +### Configuration ```toml [[processors.filepath]] @@ -56,9 +58,9 @@ If you plan to apply multiple transformations to the same `tag`/`field`, bear in # tag = "path" ``` -## Considerations +### Considerations -### Clean +#### Clean Even though `clean` is provided a standalone function, it is also invoked when using the `rel` and `dirname` functions, so there is no need to use it along with them. @@ -81,13 +83,13 @@ Is equivalent to: tag = "path" ``` -### ToSlash +#### ToSlash The effects of this function are only noticeable on Windows platforms, because of the underlying golang implementation. -## Examples +### Examples -### Basename +#### Basename ```toml [[processors.filepath]] @@ -100,7 +102,7 @@ The effects of this function are only noticeable on Windows platforms, because o + my_metric,path="ajob.log" duration_seconds=134 1587920425000000000 ``` -### Dirname +#### Dirname ```toml [[processors.filepath]] @@ -114,7 +116,7 @@ The effects of this function are only noticeable on Windows platforms, because o + my_metric path="/var/log/batch/ajob.log",folder="/var/log/batch",duration_seconds=134 1587920425000000000 ``` -### Stem +#### Stem ```toml [[processors.filepath]] @@ -127,7 +129,7 @@ The effects of this function are only noticeable on Windows platforms, because o + my_metric,path="ajob" duration_seconds=134 1587920425000000000 ``` -### Clean +#### Clean ```toml [[processors.filepath]] @@ -140,7 +142,7 @@ The effects of this function are only noticeable on Windows platforms, because o + my_metric,path="/var/log/batch/ajob.log" duration_seconds=134 1587920425000000000 ``` -### Rel +#### Rel ```toml [[processors.filepath]] @@ -154,7 +156,7 @@ The effects of this function are only noticeable on Windows platforms, because o + my_metric,path="batch/ajob.log" duration_seconds=134 1587920425000000000 ``` -### ToSlash +#### ToSlash ```toml [[processors.filepath]] diff --git a/plugins/processors/ifname/README.md b/plugins/processors/ifname/README.md index 1335148d3..d06f9e9fd 100644 --- a/plugins/processors/ifname/README.md +++ b/plugins/processors/ifname/README.md @@ -2,6 +2,8 @@ The `ifname` plugin looks up network interface names using SNMP. +Telegraf minimum version: Telegraf 1.15.0 + ### Configuration: ```toml diff --git a/plugins/processors/port_name/README.md b/plugins/processors/port_name/README.md index c078fe1c4..ad4e52d6b 100644 --- a/plugins/processors/port_name/README.md +++ b/plugins/processors/port_name/README.md @@ -4,6 +4,8 @@ Use the `port_name` processor to convert a tag containing a well-known port numb Tag can contain a number ("80") or number and protocol separated by slash ("443/tcp"). If protocol is not provided it defaults to tcp but can be changed with the default_protocol setting. +Telegraf minimum version: Telegraf 1.15.0 + ### Configuration ```toml diff --git a/plugins/processors/reverse_dns/README.md b/plugins/processors/reverse_dns/README.md index b95174ad2..c8aa0bfdb 100644 --- a/plugins/processors/reverse_dns/README.md +++ b/plugins/processors/reverse_dns/README.md @@ -3,6 +3,8 @@ The `reverse_dns` processor does a reverse-dns lookup on tags (or fields) with IPs in them. +Telegraf minimum version: Telegraf 1.15.0 + ### Configuration: ```toml diff --git a/plugins/processors/starlark/README.md b/plugins/processors/starlark/README.md index 2b25711e4..fc6a79be5 100644 --- a/plugins/processors/starlark/README.md +++ b/plugins/processors/starlark/README.md @@ -13,6 +13,8 @@ files or sockets. The Starlark [specification][] has details about the syntax and available functions. +Telegraf minimum version: Telegraf 1.15.0 + ### Configuration ```toml