我正在尝试将 Logstash-output-gelf 插件与与 graylog2 的 TCP 连接一起使用。我使用 logstash 版本 5.4.2,Graylog 2.2
我使用了以下输出设置
output {
gelf{
host =>"127.0.0.1" // i have changed the ip address. The actual IP connects to a server on the network
port => 15205
}
根据在Github上找到的代码更改,您可以看到代码需要一个参数 @protocol,但是当我在输出中传递 protoco => "TCP" 时,我在配置文件中收到错误消息。
有人可以向我解释我在这里做错了什么吗?
谢谢