From 0103691eb6dd2a6d7a4a260c113015fad4f4a7c6 Mon Sep 17 00:00:00 2001 From: Rick van de Loo Date: Wed, 26 Feb 2020 18:33:24 +0100 Subject: [PATCH] Fix typo in exec input readme (#7086) --- etc/telegraf.conf | 2 +- plugins/outputs/exec/README.md | 2 +- plugins/outputs/exec/exec.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/etc/telegraf.conf b/etc/telegraf.conf index 28edd5192..79add5bd2 100644 --- a/etc/telegraf.conf +++ b/etc/telegraf.conf @@ -509,7 +509,7 @@ # # Send metrics to command as input over stdin # [[outputs.exec]] -# ## Command to injest metrics via stdin. +# ## Command to ingest metrics via stdin. # command = ["tee", "-a", "/dev/null"] # # ## Timeout for command to complete. diff --git a/plugins/outputs/exec/README.md b/plugins/outputs/exec/README.md index 2b0c2d3f1..d82676a25 100644 --- a/plugins/outputs/exec/README.md +++ b/plugins/outputs/exec/README.md @@ -12,7 +12,7 @@ On non-zero exit stderr will be logged at error level. ```toml [[outputs.exec]] - ## Command to injest metrics via stdin. + ## Command to ingest metrics via stdin. command = ["tee", "-a", "/dev/null"] ## Timeout for command to complete. diff --git a/plugins/outputs/exec/exec.go b/plugins/outputs/exec/exec.go index 474c96791..5995d4bca 100644 --- a/plugins/outputs/exec/exec.go +++ b/plugins/outputs/exec/exec.go @@ -26,7 +26,7 @@ type Exec struct { } var sampleConfig = ` - ## Command to injest metrics via stdin. + ## Command to ingest metrics via stdin. command = ["tee", "-a", "/dev/null"] ## Timeout for command to complete.