为 logstash-output-stomp 使用 SSL
Use SSL for logstash-output-stomp
这是我的部分 logstash.conf
:
output {
stomp {
host => "localhost"
port => "61613"
destination => "/queue/test"
user => "admin"
password => "admin"
headers => {
"persistent" => true
}
}
stdout {}
}
现在我想使用 SSL 向 ActiveMQ 发送消息。我该怎么办?
根据 logstash-plugins 项目的 this PR,Stomp 似乎不支持 SSL/TLS。
这是我的部分 logstash.conf
:
output {
stomp {
host => "localhost"
port => "61613"
destination => "/queue/test"
user => "admin"
password => "admin"
headers => {
"persistent" => true
}
}
stdout {}
}
现在我想使用 SSL 向 ActiveMQ 发送消息。我该怎么办?
根据 logstash-plugins 项目的 this PR,Stomp 似乎不支持 SSL/TLS。