telegraf/plugins/outputs/stomp
Sven Rebhan c3ce6a8e12
chore(config): Split tests to avoid cyclic import (#13371)
2023-06-02 12:32:10 +02:00
..
README.md docs: indicate secret-store support in plugin READMEs (#12592) 2023-02-02 09:31:23 -07:00
sample.conf chore: cleanup go.mod and dependency licences (#11503) 2022-07-14 07:59:43 -06:00
stomp.go chore: Fix linter findings for errorlint (part3) (#12704) 2023-02-22 13:38:16 +01:00
stomp_test.go chore(config): Split tests to avoid cyclic import (#13371) 2023-06-02 12:32:10 +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/

Global configuration options

In addition to the plugin-specific configuration settings, plugins support additional global and plugin configuration settings. These settings are used to modify metrics, tags, and field or create aliases and configure ordering, etc. See the CONFIGURATION.md for more details.

Secret-store support

This plugin supports secrets from secret-stores for the username and password option. See the secret-store documentation for more details on how to use them.

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"