Skip to content
Florian Forster edited this page Nov 21, 2023 · 1 revision
Name: AMQP1 plugin
Type: write
Callbacks: config, shutdown, write
Status: supported
FirstVersion: 5.9
Copyright: 2017 Andy Smith
License: MIT License
Manpage: collectd.conf(5)
See also: List of Plugins

The AMQP1 plugin can be used to communicate with other instances of collectd or third party applications using an AMQP 1.0 message intermediary. Metric values or notifications are sent to the messaging intermediary which may handle direct messaging or queue based transfer.

Synopsis

  <Plugin "amqp1">
    # Send values to an AMQP 1.0 intermediary
   <Transport "name">
     Host "localhost"
     Port "5672"
     User "guest"
     Password "guest"
     Address "collectd"
     SendQueueLimit 50
  #    RetryDelay 1
     <Instance "some_name">
         Format "command"
         PreSettle false
         Notify false
  #      StoreRates false
  #      GraphitePrefix "collectd."
  #      GraphiteEscapeChar "_"
  #      GraphiteSeparateInstances false
  #      GraphiteAlwaysAppendDS false
  #      GraphitePreserveSeparator false
     </Instance>
   </Transport>
  </Plugin>

Dependencies

  • Qpid-proton-c

See also

Clone this wiki locally