From a953bfcfa6800cadb6a70f7ae8ac174ff6ba7eb0 Mon Sep 17 00:00:00 2001 From: Viliam Lorinc Date: Tue, 7 May 2024 16:55:00 +0200 Subject: [PATCH] revert http port back to 9064 to match dpservice config --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 7d389a6..33ef697 100644 --- a/main.go +++ b/main.go @@ -46,7 +46,7 @@ func main() { flag.StringVar(&hostnameFlag, "hostname", "", "Hostname to use") flag.IntVar(&pollIntervalFlag, "poll-interval", 20, "Polling interval in seconds") - flag.Uint64Var(&exporterPort, "port", 8080, "Port on which exporter will be running.") + flag.Uint64Var(&exporterPort, "port", 9064, "Port on which exporter will be running.") flag.Parse() if exporterPort < 1024 || exporterPort > 65535 {