Use 9230 as default port

This commit is contained in:
Dominik Honnef
2016-12-29 17:29:08 +01:00
parent 5b449e859f
commit 66fd7998d0
+1 -1
View File
@@ -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))