38 lines
1.6 KiB
Text
38 lines
1.6 KiB
Text
# Run executable as long-running input plugin
|
|
[[inputs.execd]]
|
|
## One program to run as daemon.
|
|
## NOTE: process and each argument should each be their own string
|
|
command = ["telegraf-smartctl", "-d", "/dev/sda"]
|
|
|
|
## Environment variables
|
|
## Array of "key=value" pairs to pass as environment variables
|
|
## e.g. "KEY=value", "USERNAME=John Doe",
|
|
## "LD_LIBRARY_PATH=/opt/custom/lib64:/usr/local/libs"
|
|
# environment = []
|
|
|
|
## Define how the process is signaled on each collection interval.
|
|
## Valid values are:
|
|
## "none" : Do not signal anything. (Recommended for service inputs)
|
|
## The process must output metrics by itself.
|
|
## "STDIN" : Send a newline on STDIN. (Recommended for gather inputs)
|
|
## "SIGHUP" : Send a HUP signal. Not available on Windows. (not recommended)
|
|
## "SIGUSR1" : Send a USR1 signal. Not available on Windows.
|
|
## "SIGUSR2" : Send a USR2 signal. Not available on Windows.
|
|
# signal = "none"
|
|
|
|
## Delay before the process is restarted after an unexpected termination
|
|
# restart_delay = "10s"
|
|
|
|
## Buffer size used to read from the command output stream
|
|
## Optional parameter. Default is 64 Kib, minimum is 16 bytes
|
|
# buffer_size = "64Kib"
|
|
|
|
## Disable automatic restart of the program and stop if the program exits
|
|
## with an error (i.e. non-zero error code)
|
|
# stop_on_error = false
|
|
|
|
## Data format to consume.
|
|
## Each data format has its own unique set of configuration options, read
|
|
## more about them here:
|
|
## https://github.com/influxdata/telegraf/blob/master/docs/DATA_FORMATS_INPUT.md
|
|
# data_format = "influx"
|