telegraf/plugins/outputs/nats
R.I.Pienaar 79ff743064
Add support for credentials file to nats_consumer and nats output (#7022)
2020-02-20 14:30:04 -08:00
..
README.md Add support for credentials file to nats_consumer and nats output (#7022) 2020-02-20 14:30:04 -08:00
nats.go Add support for credentials file to nats_consumer and nats output (#7022) 2020-02-20 14:30:04 -08:00
nats_test.go Add NATS output plugin. 2016-09-06 11:39:57 +01:00

README.md

NATS Output Plugin

This plugin writes to a (list of) specified NATS instance(s).

[[outputs.nats]]
  ## URLs of NATS servers
  servers = ["nats://localhost:4222"]
  ## Optional credentials
  # username = ""
  # password = ""

  ## Optional NATS 2.0 and NATS NGS compatible user credentials
  # credentials = "/etc/telegraf/nats.creds"

  ## NATS subject for producer messages
  subject = "telegraf"

  ## Use Transport Layer Security
  # secure = false

  ## Optional TLS Config
  # tls_ca = "/etc/telegraf/ca.pem"
  # tls_cert = "/etc/telegraf/cert.pem"
  # tls_key = "/etc/telegraf/key.pem"
  ## Use TLS but skip chain & host verification
  # insecure_skip_verify = false

  ## Data format to output.
  ## Each data format has its own unique set of configuration options, read
  ## more about them here:
  ## https://github.com/influxdata/telegraf/blob/master/docs/DATA_FORMATS_OUTPUT.md
  data_format = "influx"