【发布时间】:2020-05-19 19:44:44
【问题描述】:
我已经设置了一个 fluentd 节点来接收任何 syslog 消息并将其发送到 graylog。
但是目前 Graylog 并没有接收到之前 fluentd 接收到的所有日志。如果我检查 td-agent.log fluentd 已经收到日志,但似乎没有全部发送到 graylog。
这是我的 td-agent.conf 配置
<source>
@type syslog
port 5140
bind 0.0.0.0
tag system
</source>
<match system**>
@type copy
<store>
@type gelf
host 10.150.2.21
port 5140
flush_interval 5s
</store>
<store>
@type stdout
</store>
</match>
有人可以帮我吗?
【问题讨论】: