Skip to content

Commit

Permalink
Fix default listening port (#229)
Browse files Browse the repository at this point in the history
Fix typo in default listening port.

Signed-off-by: SuperQ <superq@gmail.com>
  • Loading branch information
SuperQ authored May 26, 2023
1 parent 6cb7206 commit 2cbf059
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## master / unreleased

## 0.14.1 / 2023-05-26

* [BUGFIX] Fix default listening port

## 0.14.0 / 2023-05-26

* [FEATURE] cache descriptors to reduce API calls #218
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.14.0
0.14.1
2 changes: 1 addition & 1 deletion stackdriver_exporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ import (
var (
// General exporter flags

toolkitFlags = webflag.AddFlags(kingpin.CommandLine, ":9225")
toolkitFlags = webflag.AddFlags(kingpin.CommandLine, ":9255")

metricsPath = kingpin.Flag(
"web.telemetry-path", "Path under which to expose Prometheus metrics.",
Expand Down

0 comments on commit 2cbf059

Please sign in to comment.