我正在尝试使用 http 模块制作输出 POST 消息。我有以下配置:
http {
http_method => "post"
url => "http://localhost:40104/api/message"
format => "message"
content_type => "application/json"
message => "Test"
}
它调用 API,但 POST 没有正文。我希望它包含“测试”。
我们在 Windows 上使用 Logstash 1.5 版。
我们尝试as_json
在消息后使用,我们尝试将消息格式化为 JSON,我们尝试发送content_type
文本,我们尝试了其他一些事情。
为什么它不起作用,如何解决?