From ffc560b3afe3a3aa0f846506193ca6b729a8decf Mon Sep 17 00:00:00 2001 From: Trey Dockendorf Date: Thu, 13 Feb 2020 11:59:25 -0500 Subject: [PATCH] Adjust default port --- cgroup_exporter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cgroup_exporter.go b/cgroup_exporter.go index 8f6e390..cd90924 100644 --- a/cgroup_exporter.go +++ b/cgroup_exporter.go @@ -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() )