telegraf/plugins/outputs/prometheus_client
Philipp Weber a2635573a8 Add TLS and http basic_auth to prometheus_client output (#3719) 2018-02-01 11:12:16 -08:00
..
README.md Add TLS and http basic_auth to prometheus_client output (#3719) 2018-02-01 11:12:16 -08:00
prometheus_client.go Add TLS and http basic_auth to prometheus_client output (#3719) 2018-02-01 11:12:16 -08:00
prometheus_client_test.go Add history and summary types to telegraf and prometheus plugins (#3337) 2017-10-24 16:28:52 -07:00

README.md

Prometheus Client Service Output Plugin

This plugin starts a Prometheus Client, it exposes all metrics on /metrics (default) to be polled by a Prometheus server.

Configuration

# Publish all metrics to /metrics for Prometheus to scrape
[[outputs.prometheus_client]]
  # Address to listen on
  listen = ":9273"

  # Use TLS
  tls_cert = "/etc/ssl/telegraf.crt"
  tls_key = "/etc/ssl/telegraf.key"

  # Use http basic authentication
  basic_username = "Foo"
  basic_password = "Bar"

  # Path to publish the metrics on, defaults to /metrics
  path = "/metrics"   

  # Expiration interval for each metric. 0 == no expiration
  expiration_interval = "60s"