gpt4 book ai didi

Logstash - 流入数据库的输出是否可用?

转载 作者:行者123 更新时间:2023-12-04 14:12:31 24 4
gpt4 key购买 nike

我想从 Logstash 获得 Influx DB 的输出,是否有可用的此类插件?

输出设置为 Graphite ..这是流入配置:

[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 安装没有问题。

最佳答案

解决了。我需要将已经准备好的 influx 兼容字符串通过 logstash 传递给 influx。

以下是实现此目的的 logstash 配置片段:

output {
http {
url => "http://localhost:8086/db/<influx db name>/series?u=<user name>&p=<pwd>"
format => "message"
content_type => "application/json"
http_method => "post"
message => "%{message}"
verify_ssl => false
}
stdout {}
}

注意:如果您使用“json”格式,那么 logstash 会将正文包裹在导致问题的“message”字段周围。

关于Logstash - 流入数据库的输出是否可用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25933168/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com