telegraf/plugins/outputs/stomp
Sven Rebhan 9f3a7414a9
feat(parsers.json): Allow JSONata based transformations in JSON serializer (#11251)
2022-07-21 18:37:36 +02:00
..
README.md chore: cleanup go.mod and dependency licences (#11503) 2022-07-14 07:59:43 -06:00
sample.conf chore: cleanup go.mod and dependency licences (#11503) 2022-07-14 07:59:43 -06:00
stomp.go feat: add Stomp (Active MQ) output plugin (#7995) 2022-07-14 07:14:41 -06:00
stomp_test.go feat(parsers.json): Allow JSONata based transformations in JSON serializer (#11251) 2022-07-21 18:37:36 +02: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

# Configuration for active mq with stomp protocol to send metrics to
[[outputs.stomp]]
  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"