我正在尝试将 telegraf 配置为运行带有标志的 bash 脚本。
例如:
[[inputs.exec]] ## Commands array
commands = [
"/tmp/test.sh",
]
效果很好,但是当我将其修改为:
[[inputs.exec]]
## Commands array
commands = [
"/tmp/test.sh -r",
]
看起来电报忽略了“-r”标志。
怎么了?
我正在尝试将 telegraf 配置为运行带有标志的 bash 脚本。
例如:
[[inputs.exec]] ## Commands array
commands = [
"/tmp/test.sh",
]
效果很好,但是当我将其修改为:
[[inputs.exec]]
## Commands array
commands = [
"/tmp/test.sh -r",
]
看起来电报忽略了“-r”标志。
怎么了?