control: fix digits for RPS

This commit is contained in:
Gyu-Ho Lee 2017-01-18 18:57:04 -08:00
parent 085823ad44
commit c89db0e335
No known key found for this signature in database
GPG Key ID: 1DDD39C7EB70C24C
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ func saveDataLatencyDistributionSummary(cfg Config, st report.Stats) {
}
c6 := dataframe.NewColumn("REQUESTS-PER-SECOND")
c6.PushBack(dataframe.NewStringValue(fmt.Sprintf("%4.4f", 1000*st.RPS)))
c6.PushBack(dataframe.NewStringValue(fmt.Sprintf("%4.4f", st.RPS)))
if err := fr.AddColumn(c6); err != nil {
plog.Fatal(err)
}