mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 22:57:16 -04:00
Change amqp -> rabbitmq in lgtm conf
This commit is contained in:
parent
ca3514ca27
commit
24588d7dec
1 changed files with 5 additions and 5 deletions
|
@ -17,17 +17,17 @@ input {
|
|||
|
||||
output {
|
||||
# This will be your durable shipping mechanism
|
||||
amqp {
|
||||
host => "myamqpserver"
|
||||
rabbitmq {
|
||||
host => "myrabbitmqserver"
|
||||
exchange_type => "fanout"
|
||||
name => "rawlogs"
|
||||
exchange => "rawlogs"
|
||||
}
|
||||
# This is an optional non-durable shipping mechanism
|
||||
# With this, you can sniff logs from your own code
|
||||
amqp {
|
||||
rabbitmq {
|
||||
host => "127.0.0.1"
|
||||
exchange_type => "topic"
|
||||
name => "logsniff"
|
||||
exchange => "logsniff"
|
||||
durable => false
|
||||
persistent => false
|
||||
# The following is optional
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue