-
Notifications
You must be signed in to change notification settings - Fork 1
/
logstash.conf
71 lines (65 loc) · 2.48 KB
/
logstash.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
input
{
jms {
broker_url => 'tcp://localhost:61616'
destination => 'helloworld.q'
factory => 'org.apache.activemq.ActiveMQConnectionFactory'
pub_sub => false
# JMS provider credentials if needed
username => 'admin'
password => 'admin'
# JMS provider keystore and truststore details
# keystore => '/Users/logstash-user/security/keystore.jks'
# keystore_password => 'another_secret'
# truststore => '/Users/logstash-user/security/truststore.jks'
# truststore_password => 'yet_another_secret'
# Parts of the JMS message to be included
include_header => false
include_properties => false
include_body => true
require_jars => ['/usr/local/Cellar/activemq/5.16.0/libexec/activemq-all-5.16.0.jar']
}
jms {
broker_url => 'tcp://localhost:61616'
destination => 'server.q'
factory => 'org.apache.activemq.ActiveMQConnectionFactory'
pub_sub => false
# JMS provider credentials if needed
username => 'admin'
password => 'admin'
# JMS provider keystore and truststore details
# keystore => '/Users/logstash-user/security/keystore.jks'
# keystore_password => 'another_secret'
# truststore => '/Users/logstash-user/security/truststore.jks'
# truststore_password => 'yet_another_secret'
# Parts of the JMS message to be included
include_header => false
include_properties => false
include_body => true
require_jars => ['/usr/local/Cellar/activemq/5.16.0/libexec/activemq-all-5.16.0.jar']
}
jms {
broker_url => 'tcp://localhost:61616'
destination => 'client.q'
factory => 'org.apache.activemq.ActiveMQConnectionFactory'
pub_sub => false
# JMS provider credentials if needed
username => 'admin'
password => 'admin'
# JMS provider keystore and truststore details
# keystore => '/Users/logstash-user/security/keystore.jks'
# keystore_password => 'another_secret'
# truststore => '/Users/logstash-user/security/truststore.jks'
# truststore_password => 'yet_another_secret'
# Parts of the JMS message to be included
include_header => false
include_properties => false
include_body => true
require_jars => ['/usr/local/Cellar/activemq/5.16.0/libexec/activemq-all-5.16.0.jar']
}
}
output {
elasticsearch {
hosts => ["localhost:9200"]
}
}