Hi,
I am unable to consume a message from activemq topic. The topic with the given name will be created in activemq but when I send a message for that topic, I am unable to consume the same message in logstash. The activemq version used is 5.15.8, logstash version is 6.6.2
The configurations are as below.
Logstash config file followed by jms.yml file.
input {
jms {
include_header => true
include_properties => true
include_body => true
use_jms_timestamp => true
interval => 10
destination => "TOPIC1"
pub_sub => true
yaml_file => "C:/Rajesh/Elk/logstash-6.6.2/config/jms.yml"
yaml_section => "activemq"
}
}
activemq:
:broker_url: tcp://localhost:61616
:username: admin
:password: admin
:runner: consumer
:factory: org.apache.activemq.ActiveMQConnectionFactory
:require_jars:
- C:/Rajesh/Elk/logstash-6.6.2/config/activemq-all-5.15.8.jar