Instantly share code, notes, and snippets.

Embed
What would you like to do?
input {
rabbitmq {
type => "input"
host => "127.0.0.1"
queue => "logstash"
durable => true
exclusive => false
auto_delete => false
}
}
output {
rabbitmq {
type => "output"
host => "127.0.0.1"
port => 5672
exchange => "logstash_output"
exchange_type => "fanout"
key => "logstash"
durable => true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment