Skip to content

Commit

Permalink
all: fix statistics title of latency
Browse files Browse the repository at this point in the history
  • Loading branch information
iyuq authored and codesenberg committed Dec 28, 2017
1 parent c1c176f commit 25743c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bombardier.go
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ func latenciesString(h *uhist.Histogram) string {
})
stddev := math.Sqrt(sumOfSquares / float64(count))
return fmt.Sprintf(" %-10v %10v %10v %10v",
"Reqs/sec",
"Latency",
formatTimeUs(mean),
formatTimeUs(stddev),
formatTimeUs(float64(max)))
Expand Down

0 comments on commit 25743c0

Please sign in to comment.