From 66fd7998d0722b828f0981b3a6b0a71a95fc8faa Mon Sep 17 00:00:00 2001 From: Dominik Honnef Date: Thu, 29 Dec 2016 17:29:08 +0100 Subject: [PATCH] Use 9230 as default port --- cmd/nut_exporter/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/nut_exporter/main.go b/cmd/nut_exporter/main.go index 8480e3d..808fe7f 100644 --- a/cmd/nut_exporter/main.go +++ b/cmd/nut_exporter/main.go @@ -16,7 +16,7 @@ import ( func main() { fHosts := flag.String("h", "localhost", "Space-separated list of hosts to collect") - fListen := flag.String("l", ":9100", "Address and port to listen on") + fListen := flag.String("l", ":9230", "Address and port to listen on") flag.Parse() c := nutcollector.New(strings.Fields(*fHosts))