telegraf/plugins/outputs/redistimeseries
Sven Rebhan 973db8c517
fix: Cleanup and add sample.conf embedding (#12244)
2022-11-15 17:15:35 +01:00
..
README.md fix: Cleanup and add sample.conf embedding (#12244) 2022-11-15 17:15:35 +01:00
redistimeseries.go fix: Cleanup and add sample.conf embedding (#12244) 2022-11-15 17:15:35 +01:00
redistimeseries_test.go chore: fix linter findings for unparam and revive.unused-parameter (#12150) 2022-11-08 12:04:12 -07:00
sample.conf fix: Cleanup and add sample.conf embedding (#12244) 2022-11-15 17:15:35 +01:00

README.md

RedisTimeSeries Producer Output Plugin

The RedisTimeSeries output plugin writes metrics to the RedisTimeSeries server.

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.

Configuration

# Publishes metrics to a redis timeseries server
[[outputs.redistimeseries]]
  ## The address of the RedisTimeSeries server.
  address = "127.0.0.1:6379"

  ## Redis ACL credentials
  # username = ""
  # password = ""
  # database = 0

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