View difference between Paste ID: mFX6CJbb and cxNU4P94
SHOW: | | - or go back to the newest paste.
1-
    rabbitmq {
1+
#output   
2
 rabbitmq {
3
    exchange => "logstash-rabbitmq"
4
    exchange_type => "direct"
5
    key => "logstash-key"
6
    host => "x.x.x.x"
7
    workers => 12
8
    durable => true
9
    persistent => true
10
  }
11
12
13
#input  rabbitmq {
14
        host => "x.x.x.x"
15
        add_field  => { "environment" => "production" }
16
        queue => "logstash-queue"
17
        durable => true
18
        key => "logstash-key"
19
        exchange => "logstash-rabbitmq"
20
        exclusive => false
21
        auto_delete => false
22
        threads => 3
23
        prefetch_count => 20
24
        port => 5672
25
        user => "guest"
26
        password => "guest"
27
    }