telegraf/plugins/outputs/prometheus_client
Daniel Nelson 8484de6c12
Fix separation of multiple prometheus_client outputs (#3570)
2017-12-11 18:00:19 -08:00
..
README.md Add configurable metrics endpoint to prometheus output (#3245) 2017-09-19 11:27:11 -07:00
prometheus_client.go Fix separation of multiple prometheus_client outputs (#3570) 2017-12-11 18:00:19 -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"

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

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