ActiveMQ Qpid input plugin for fluentd
Fluentd plugin to listen to secured ActiveMQ message bus (Not RabbitMQ).
The plugin allows listening to the AMQP message bus and forward the events to other systems.
At the moment the plugin only works for secure AMQP (amqps://).
This plugin uses qpid_proton to support AMQP.
You need to install Qpid proton libraries before installing this plugin (RedHat/CentOS)
# yum install qpid-proton-c qpid-proton-c-devel
# fluent-gem install fluent-plugin-amqp
Here is the sample configuration of the plugin
<source>
@type amq
url amqps://messaging:5671
tag prefix.tag
queue Consumer.client.myclient.VirtualTopic.>
cert /home/centos/cert.crt
private_key /home/centos//cert.key
</source>
urlis the URL of the AMQP broker.tagwill prefix the topic name from the message, the resulting string will be the tag.queueis the queue to subscribe tocertis the path to the certificate to authenticate to the brokerprivate_keyis the path to the private key for thecert
- Copyright (c) 2018- Anton Sherkhonov
- License
- Apache License, Version 2.0