使用SSL进行logstash-output-stomp

问题描述 投票:0回答:1

这是我的logstash.conf部分:

output {
    stomp {
        host => "localhost"
        port => "61613"
        destination => "/queue/test"
        user => "admin"
        password => "admin"
        headers => {
            "persistent" => true
        }
    }
    stdout {}
}

现在,我想使用SSL向ActiveMQ发送消息。我该怎么办?

ssl plugins logstash stomp
1个回答
0
投票

基于logstash-plugins项目中的this PR,似乎Stomp不支持SSL / TLS。>

© www.soinside.com 2019 - 2024. All rights reserved.