我想从 Logstash 获得 Influx DB 的输出,有没有这样的插件可用?
输出设置为石墨。这是流入配置:
[input_plugins]
# Configure the graphite api
[input_plugins.graphite]
enabled = true
port = 2003
database = "AirAnalytics" # store graphite data in this database
# udp_enabled = true # enable udp interface on the same port as the tcp interface
这是logstash配置:
output {
stdout {}
graphite {
host => "localhost"
port => 2003
}
}
我在控制台(stdout)中看到了输出,但没有其他消息,也没有任何内容被发布到涌入中。我也检查了流入日志,没有。
我尝试通过http直接将相同的消息发布到influx并且它可以工作,因此消息或influx安装没有问题。