Fix avg speed

master
Alexey Kostin 2019-02-28 17:03:00 +03:00
parent ddbea1d434
commit 6a6bf587a6
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ func bench(cephconn *Cephconnection, osddevice Device, buffs *[][]byte, startbuf
// iops = 1s / latency
iops := 1000000 / latencytotal * int64(params.threadsCount)
// avg speed = iops * block size / 1 MB
avgspeed := 1000000 / float64(latencytotal) * float64(params.blocksize) / 1024 / 1024
avgspeed := 1000000 / float64(latencytotal) * float64(params.blocksize) / 1024 / 1024 * float64(params.threadsCount)
avgline := fmt.Sprintf("Avg iops: %-5v Avg speed: %.3f MB/s Total writes count: %-5v Total writes (MB): %-5v\n\n",
iops, avgspeed, len(osdlatencies), uint64(len(osdlatencies))*params.blocksize/1024/1024)
switch {