Skip to content
This repository has been archived by the owner on Jun 24, 2021. It is now read-only.

Commit

Permalink
FIX: listen on correct port (9696)
Browse files Browse the repository at this point in the history
  • Loading branch information
domrim committed Apr 20, 2020
1 parent 81043c2 commit 8761344
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exporter/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ func main() {
//start serving prom metrics
go func() {
http.Handle("/metrics", promhttp.Handler())
err := http.ListenAndServe(":8080", nil)
err := http.ListenAndServe(":9696", nil)
if err != nil {
fmt.Printf("Unable to serve prom metrics: %s\n", err.Error())
signals <- iFail
Expand Down

0 comments on commit 8761344

Please sign in to comment.