class LogStash::Outputs::RabbitMQ

Push events to a RabbitMQ exchange. Requires RabbitMQ 2.x or later version (3.x is recommended).

Relevant links:

Constants

EXCHANGE_TYPES

Public Class Methods

new(params) click to toggle source
Calls superclass method LogStash::Outputs::Base::new
# File lib/logstash/outputs/rabbitmq.rb, line 74
def initialize(params)
  params["codec"] = "json" if !params["codec"]

  super
end