From 6f2f9890f70a116b0e27c23d7c461458a6502d24 Mon Sep 17 00:00:00 2001 From: Will Rouesnel Date: Wed, 16 Nov 2016 23:02:42 +1100 Subject: [PATCH] Change default port to 9187. This is the postgres_exporter WIP port for Prometheus and avoids the by default collision with the nginx_exporter. Closes #22. --- postgres_exporter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgres_exporter.go b/postgres_exporter.go index f8a8b5cf..17a289c4 100644 --- a/postgres_exporter.go +++ b/postgres_exporter.go @@ -22,7 +22,7 @@ var Version string = "0.0.1" var ( listenAddress = flag.String( - "web.listen-address", ":9113", + "web.listen-address", ":9187", "Address to listen on for web interface and telemetry.", ) metricPath = flag.String(