From ca8f96916650190be136337b33a8660f3fd93f92 Mon Sep 17 00:00:00 2001 From: Ed Schouten Date: Fri, 17 Feb 2017 15:53:56 +0100 Subject: [PATCH] Repurpose the existing port number intended for Postfix exporters. --- postfix_exporter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postfix_exporter.go b/postfix_exporter.go index 0f1dfea..83635e1 100644 --- a/postfix_exporter.go +++ b/postfix_exporter.go @@ -146,7 +146,7 @@ func (e *PostfixExporter) Collect(ch chan<- prometheus.Metric) { func main() { var ( - listenAddress = flag.String("web.listen-address", ":6054", "Address to listen on for web interface and telemetry.") + listenAddress = flag.String("web.listen-address", ":9154", "Address to listen on for web interface and telemetry.") metricsPath = flag.String("web.telemetry-path", "/metrics", "Path under which to expose metrics.") postfixShowqPath = flag.String("postfix.showq_path", "/var/spool/postfix/public/showq", "Path at which Postfix places its showq socket.") )