Describe the bug
In fioio_count.py then the way that IOPS is calculated is by collecting over a range of 1000 msec which occurs whenever the timestamp modulo 1000 equals 0. However, there might be cases where no such timestamp is found over a particular range. Then collection will span even greater ranges until it at some point either reaches EOF or a timestamp that equals to zero when taken with modulo 1000.
Describe the bug In
fioio_count.py
then the way that IOPS is calculated is by collecting over a range of 1000 msec which occurs whenever the timestamp modulo 1000 equals 0. However, there might be cases where no such timestamp is found over a particular range. Then collection will span even greater ranges until it at some point either reaches EOF or a timestamp that equals to zero when taken with modulo 1000.