From c70db45b36f1b3388bf257f550402dbb1cb11963 Mon Sep 17 00:00:00 2001 From: Simon Effenberg Date: Fri, 24 Feb 2017 21:44:55 +0100 Subject: [PATCH] adding doc for new metrics plugin 'prometheus' --- docs/plugins.rst | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/docs/plugins.rst b/docs/plugins.rst index df0b8aa53..2e7839bca 100644 --- a/docs/plugins.rst +++ b/docs/plugins.rst @@ -170,6 +170,30 @@ Configuration in thumbor.conf: For monitors and keys, the values ​​used are those defined in the configuration file ceph.conf. +Metrics +-------- + +`thumbor\_prometheus `__ (by `Simon Effenberg `__) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +`Prometheus `__ a monitoring and alerting toolkit. + +This module provide support for Prometheus as metrics collector. + +- *URL:* https://github.com/thumbor-community/prometheus +- *Installing:* + ``pip install tc_prometheus`` + +Configuration in thumbor.conf: + +:: + + ################################# Extensibility ################################# + METRICS = 'tc_prometheus.metrics.prometheus_metrics' + + # optional with defaults + PROMETHEUS_SCRAPE_PORT = 8000 # Port the prometheus client should listen on + Extensions ----------