diff --git a/README.md b/README.md index c7859ddf..5edd0fd4 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ See [Wiki](https://github.com/martinlindhe/wmi_exporter/wiki/TODO) go build . .\wmi_exporter.exe -The prometheus metrics will be exposed on [localhost:9129](http://localhost:9129) +The prometheus metrics will be exposed on [localhost:9182](http://localhost:9182) ## License diff --git a/exporter.go b/exporter.go index 3dcfee31..138123b7 100644 --- a/exporter.go +++ b/exporter.go @@ -57,7 +57,7 @@ func (c *WmiExporter) Collect(ch chan<- prometheus.Metric) { func main() { var ( - addr = flag.String("telemetry.addr", ":9129", "host:port for WMI exporter") + addr = flag.String("telemetry.addr", ":9182", "host:port for WMI exporter") metricsPath = flag.String("telemetry.path", "/metrics", "URL path for surfacing collected metrics") ) flag.Parse()