You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
input {
jms {
broker_url => '(tcp://activemq:61616)/?initialReconnectDelay=100'
destination => 'myqueue'
factory => 'org.apache.activemq.ActiveMQConnectionFactory'
pub_sub => false
use_jms_timestamp => false
# JMS provider credentials if needed
username => 'admin'
password => 'password'
# JMS provider keystore and truststore details
# Parts of the JMS message to be included
include_header => false
include_properties => false
include_body => true
# Message selector
selector => "string_property = 'this' OR int_property < 3"
# Connection factory specific settings
factory_settings => {
exclusive_consumer => true
}
# Jar Files to include
require_jars => ['./apache-activemq-5.16.0/activemq-all-5.16.0.jar']
}
}
elasticsearch.yml
---
## Default Elasticsearch configuration from Elasticsearch base image.
## https://github.com/elastic/elasticsearch/blob/master/distribution/docker/src/docker/config/elasticsearch.yml
#
cluster.name: "docker-cluster"
network.host: 0.0.0.0
## X-Pack settings
## see https://www.elastic.co/guide/en/elasticsearch/reference/current/setup-xpack.html
#
xpack.license.self_generated.type: trial
xpack.security.enabled: true
xpack.monitoring.collection.enabled: true
elasticsearch-dockerfile:
ARG ELK_VERSION
# https://www.docker.elastic.co/
FROM docker.elastic.co/elasticsearch/elasticsearch:${ELK_VERSION}
# Add your elasticsearch plugins setup here
# Example: RUN elasticsearch-plugin install analysis-icu
logstash-dockerfile
ARG ELK_VERSION
# https://www.docker.elastic.co/
FROM docker.elastic.co/logstash/logstash:${ELK_VERSION}
# Add your logstash plugins setup here
# Example: RUN logstash-plugin install logstash-filter-json
RUN logstash-plugin install logstash-input-jms
kibana docker file
ARG ELK_VERSION
# https://www.docker.elastic.co/
FROM docker.elastic.co/kibana/kibana:${ELK_VERSION}
# Add your kibana plugins setup here
# Example: RUN kibana-plugin install <name|url>
docker-compose.yml
10-jms.conf
elasticsearch.yml
elasticsearch-dockerfile:
logstash-dockerfile
kibana docker file
error:
The text was updated successfully, but these errors were encountered: