Change amqp -> rabbitmq in lgtm conf

This commit is contained in:
Michael Zaccari 2013-01-28 23:11:12 -05:00
parent ca3514ca27
commit 24588d7dec

View file

@ -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