Adjust default port

This commit is contained in:
Trey Dockendorf 2020-02-13 11:59:25 -05:00
parent a090dab072
commit ffc560b3af
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ const (
var (
defCgroupRoot = "/sys/fs/cgroup"
configPaths = kingpin.Flag("config.paths", "Comma separated list of cgroup paths to check, eg /user.slice,/system.slice,/slurm").Required().String()
listenAddress = kingpin.Flag("web.listen-address", "Address to listen on for web interface and telemetry.").Default(":9304").String()
listenAddress = kingpin.Flag("web.listen-address", "Address to listen on for web interface and telemetry.").Default(":9306").String()
disableExporterMetrics = kingpin.Flag("web.disable-exporter-metrics", "Exclude metrics about the exporter (promhttp_*, process_*, go_*)").Default("false").Bool()
cgroupRoot = kingpin.Flag("path.cgroup.root", "Root path to cgroup fs").Default(defCgroupRoot).String()
)