Skip to content
This repository has been archived by the owner on May 30, 2023. It is now read-only.

Commit

Permalink
remove ":" from metrics
Browse files Browse the repository at this point in the history
  • Loading branch information
foosinn committed Jun 18, 2019
1 parent c5ec12e commit 67c9a36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metrics/metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func Register() {
lock.Lock()
defer lock.Unlock()
for k, v := range counter {
fmt.Fprintf(w, "%s: %d\n", k, v)
fmt.Fprintf(w, "%s %d\n", k, v)
}
})
}

0 comments on commit 67c9a36

Please sign in to comment.