Skip to content
Snippets Groups Projects
Commit 72ced4e0 authored by Naveen Kr. Sharma's avatar Naveen Kr. Sharma
Browse files

99ptile latency

parent ba22c934
No related branches found
No related tags found
No related merge requests found
......@@ -70,8 +70,10 @@ print "Abort Rate: ", (float)(len(tLatency)-len(sLatency))/len(tLatency)
print "Throughput (All/Success): ", len(tLatency)/(end-start), len(sLatency)/(end-start)
print "Average Latency (all): ", sum(tLatency)/float(len(tLatency))
print "Median Latency (all): ", tLatency[len(tLatency)/2]
print "99%tile Latency (all): ", tLatency[(len(tLatency) * 99)/100]
print "Average Latency (success): ", sum(sLatency)/float(len(sLatency))
print "Median Latency (success): ", sLatency[len(sLatency)/2]
print "99%tile Latency (success): ", sLatency[(len(sLatency) * 99)/100]
print "Extra (all): ", tExtra
print "Extra (success): ", sExtra
if len(xLatency) > 0:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment