Using logstash-input-jms

This is my first elk stack project and I need to process JMS input. Has anyone used the logstash-jms-input plugin and if so could I get some guidence on how to configure the config file? I have it built and installed in Logstash-1.5.4

Thank You

1 Like

+1 Could use some help as well

John, I have set aside input-jms for the moment because logstash-input-stomp was able to process an ActiveMQ generated jms message.

My logstash config file looks like this:

input {
stomp {
host => "localhost"
destination => "foo.bar"
}
}

output {
elasticsearch {
protocol => "http"
}
}

Where destination is my localhost located ActiveMQ queue name. I wish I could take credit, but I found the stomp alternative here.

http://blog.florian-hopf.de/2015/07/activemq-as-message-broker-for-logstash.html

Hope this helps a little.