telegraf/plugins/outputs/stomp
asaleh b0819baeec
feat: add Stomp (Active MQ) output plugin (#7995)
2022-07-14 07:14:41 -06:00
..
README.md feat: add Stomp (Active MQ) output plugin (#7995) 2022-07-14 07:14:41 -06:00
sample.conf feat: add Stomp (Active MQ) output plugin (#7995) 2022-07-14 07:14:41 -06:00
stomp.go feat: add Stomp (Active MQ) output plugin (#7995) 2022-07-14 07:14:41 -06:00
stomp_test.go feat: add Stomp (Active MQ) output plugin (#7995) 2022-07-14 07:14:41 -06:00

README.md

STOMP Producer Output Plugin

This plugin writes to a Active MQ Broker for STOMP http://stomp.github.io.

It also support Amazon MQ https://aws.amazon.com/amazon-mq/

Configuration

  ## Host of Active MQ broker
  host = "localhost:61613"

  ## Queue name for producer messages
  # queueName = "telegraf"

  ## Username and password if required by the Active MQ server.
  # username = ""
  # password = ""

  ## Optional TLS Config
  # tls_ca = "/etc/telegraf/ca.pem"
  # tls_cert = "/etc/telegraf/cert.pem"
  # tls_key = "/etc/telegraf/key.pem"

  ## Data format to output.
  # data_format = "json"