我究竟如何从Windows命令提示符/ git bash发送数据到telegraf?
我正在尝试将unix bash中的数据发送到telegraf。
在bash中,我这样做:
echo -e "my_db,owner=me,field=value" | nc -u4 -w1 my.telefra.host.com 1231;
答案 0 :(得分:1)
您可以使用telegraf exec input plugin。 它允许您执行各种命令,包括powershell,cmd,git bash等。例如,如果我要运行powershell命令,
commands = ["powershell -command <command>"]
可以对git bash进行相同的操作
commands = ["<path>\bash.exe <command>"]