Simpler implementation of amqp routing keys

This commit is contained in:
Nick Ethier 2011-08-02 15:12:59 -06:00
parent 25fe17ee0d
commit 4c02e74069

View file

@ -7,11 +7,7 @@ require "logstash/namespace"
# Examples of AMQP servers are [RabbitMQ](http://www.rabbitmq.com/) and
# [QPid](http://qpid.apache.org/)
class LogStash::Outputs::Amqp < LogStash::Outputs::Base
MQTYPES = [ "fanout", "direct", "topic" ]
KEY_VARS = {
:hostname => Socket.gethostname,
:type => ''
}
MQTYPES = [ "fanout", "direct", "topic" ]
config_name "amqp"