Skip to content

Commit

Permalink
use port 9534 as the default port to align with Prometheus port alloc…
Browse files Browse the repository at this point in the history
…ations
  • Loading branch information
kaspernissen committed Jan 15, 2019
1 parent e18c755 commit 3e3c7c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func main() {
baseURL := flags.Flag("humio.url", "Humio base API url").Required().String()
apiToken := flags.Flag("api.token", "Humio API token").Required().String()
requestTimeout := flags.Flag("humio.timeout", "Timeout for requests against the Humio API").Default("10").Int()
listenAddress := flags.Flag("web.listen-address", "Address on which to expose metrics.").Default(":9533").String()
listenAddress := flags.Flag("web.listen-address", "Address on which to expose metrics.").Default(":9534").String()
log.AddFlags(flags)
flags.HelpFlag.Short('h')
flags.Version(version)
Expand Down

0 comments on commit 3e3c7c9

Please sign in to comment.