From 9281f4fbbce2df7c29d5318d654ab557db79fe4b Mon Sep 17 00:00:00 2001 From: Hans Kristian Flaatten Date: Fri, 31 Mar 2017 14:01:56 +0200 Subject: [PATCH] Make toml Bucket array homogeneous --- docs/toml.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/toml.md b/docs/toml.md index ed547d1b3..3c9426671 100644 --- a/docs/toml.md +++ b/docs/toml.md @@ -556,7 +556,7 @@ address = ":8080" # # To enable Traefik to export internal metrics to Prometheus # [web.metrics.prometheus] -# Buckets=[0.1,0.3,1.2,5] +# Buckets=[0.1,0.3,1.2,5.0] # # To enable basic auth on the webui # with 2 user/pass: test:test and test2:test2 @@ -735,7 +735,7 @@ $ curl -s "http://localhost:8080/api" | jq . - `/metrics`: You can enable Traefik to export internal metrics to different monitoring systems (Only Prometheus is supported at the moment). ```bash -$ traefik --web.metrics.prometheus --web.metrics.prometheus.buckets="0.1,0.3,1.2,5" +$ traefik --web.metrics.prometheus --web.metrics.prometheus.buckets="0.1,0.3,1.2,5.0" ``` ## Docker backend