Skip to content

Commit

Permalink
using the same unit for queries/sec
Browse files Browse the repository at this point in the history
  • Loading branch information
rbarazzutti committed Jan 2, 2022
1 parent 2892b29 commit 82be11b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/pinglogger.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func (quietLogger *quietLogger) onTputClose() {
stat := stats.ComputeStats(tputMeasuresIterable(quietLogger.tputMeasures))
_, _ = fmt.Fprintf(quietLogger.stdout, "\n")
_, _ = fmt.Fprintf(quietLogger.stdout, "throughput measures:\n")
_, _ = fmt.Fprintf(quietLogger.stdout, "queries throughput min/avg/max/stdev = %.1f/%.1f/%.1f/%.1f queries per second\n", stat.Min, stat.Average, stat.Max, stat.StdDev)
_, _ = fmt.Fprintf(quietLogger.stdout, "queries throughput min/avg/max/stdev = %.1f/%.1f/%.1f/%.1f queries/sec \n", stat.Min, stat.Average, stat.Max, stat.StdDev)
}

type standardLogger struct {
Expand Down

0 comments on commit 82be11b

Please sign in to comment.