From 7f83b9ef8567a097570f7ba177b06f20cf117596 Mon Sep 17 00:00:00 2001 From: Matt Wilder Date: Thu, 4 Feb 2021 14:21:21 -0800 Subject: [PATCH] Fix GraphiteBridge example again. Signed-off-by: Matt Wilder --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d3f2bf93..7e5051ba 100644 --- a/README.md +++ b/README.md @@ -452,7 +452,7 @@ Graphite [tags](https://grafana.com/blog/2018/01/11/graphite-1.1-teaching-an-old ```python from prometheus_client.bridge.graphite import GraphiteBridge -gb = GraphiteBridge(('graphite.your.org', 2003, tags=True)) +gb = GraphiteBridge(('graphite.your.org', 2003), tags=True) c = Counter('my_requests_total', 'HTTP Failures', ['method', 'endpoint']) c.labels('get', '/').inc() gb.push()