499499 <th>Std_Dev</th>
500500 <th>Min_Rt</th>
501501 <th>p50_Rt</th>
502+ <th>p90_Rt</th>
502503 <th>p95_Rt</th>
503504 <th>p99_Rt</th>
504505 <th>Max_Rt</th>
525526 <th>Std_Dev</th>
526527 <th>Min_Rt</th>
527528 <th>p50_Rt</th>
529+ <th>p90_Rt</th>
528530 <th>p95_Rt</th>
529531 <th>p99_Rt</th>
530532 <th>Max_Rt</th>
554556 <td></td>
555557 <td></td>
556558 <td></td>
559+ <td></td>
557560 <td class="extra-col"></td>
558561 <td class="extra-col"></td>
559562 <td class="extra-col"></td>
580583 <td> </td>
581584 <td> </td>
582585 <td> </td>
586+ <td> </td>
583587 <td class="extra-col"> </td>
584588 <td class="extra-col"> </td>
585589 <td class="extra-col"> </td>
606610 <td>%s</td>
607611 <td>%s</td>
608612 <td>%s</td>
613+ <td>%s</td>
609614 <td class="extra-col">%s</td>
610615 <td class="extra-col">%.1f</td>
611616 <td class="extra-col">%d</td>
632637 <td><b>%s</b></td>
633638 <td><b>%s</b></td>
634639 <td><b>%s</b></td>
640+ <td><b>%s</b></td>
635641 <td class="extra-col"><b>%s</b></td>
636642 <td class="extra-col"><b>%.1f</b></td>
637643 <td class="extra-col"><b>%d</b></td>
@@ -1068,6 +1074,7 @@ def print_global_summary():
10681074 rd ["std_dev" ] = jh .getStdDeviation ()
10691075 rd ["min_rt" ] = sm .min_rt
10701076 rd ["p50_rt" ] = jh .getValueAtPercentile (50.0 )
1077+ rd ["p90_rt" ] = jh .getValueAtPercentile (90.0 )
10711078 rd ["p95_rt" ] = jh .getValueAtPercentile (95.0 )
10721079 rd ["p99_rt" ] = jh .getValueAtPercentile (99.0 )
10731080 rd ["max_rt" ] = sm .max_rt
@@ -1093,6 +1100,7 @@ def print_global_summary():
10931100 formatTime (jh .getStdDeviation ()),
10941101 formatTime (sm .min_rt ),
10951102 formatTime (jh .getValueAtPercentile (50.0 )),
1103+ formatTime (jh .getValueAtPercentile (90.0 )),
10961104 formatTime (jh .getValueAtPercentile (95.0 )),
10971105 formatTime (jh .getValueAtPercentile (99.0 )),
10981106 formatTime (sm .max_rt ),
@@ -1290,6 +1298,7 @@ def print_action_summary():
12901298 rd ["std_dev" ] = jhx .getStdDeviation ()
12911299 rd ["min_rt" ] = smx .min_rt
12921300 rd ["p50_rt" ] = jhx .getValueAtPercentile (50.0 )
1301+ rd ["p90_rt" ] = jhx .getValueAtPercentile (90.0 )
12931302 rd ["p95_rt" ] = jhx .getValueAtPercentile (95.0 )
12941303 rd ["p99_rt" ] = jhx .getValueAtPercentile (99.0 )
12951304 rd ["max_rt" ] = smx .max_rt
@@ -1312,6 +1321,7 @@ def print_action_summary():
13121321 formatTime (jhx .getStdDeviation ()),
13131322 formatTime (smx .min_rt ),
13141323 formatTime (jhx .getValueAtPercentile (50.0 )),
1324+ formatTime (jhx .getValueAtPercentile (90.0 )),
13151325 formatTime (jhx .getValueAtPercentile (95.0 )),
13161326 formatTime (jhx .getValueAtPercentile (99.0 )),
13171327 formatTime (smx .max_rt ),
@@ -1401,6 +1411,7 @@ def print_action_summary():
14011411 rd ["std_dev" ] = ht .getStdDeviation ()
14021412 rd ["min_rt" ] = e ["min_rt" ]
14031413 rd ["p50_rt" ] = e ["percentiles_rt" ]["50.0" ]
1414+ rd ["p90_rt" ] = e ["percentiles_rt" ]["90.0" ]
14041415 rd ["p95_rt" ] = e ["percentiles_rt" ]["95.0" ]
14051416 rd ["p99_rt" ] = e ["percentiles_rt" ]["99.0" ]
14061417 rd ["max_rt" ] = e ["max_rt" ]
@@ -1428,6 +1439,7 @@ def print_action_summary():
14281439 formatTime (ht .getStdDeviation ()),
14291440 formatTime (e ["min_rt" ]),
14301441 formatTime (e ["percentiles_rt" ]["50.0" ]),
1442+ formatTime (e ["percentiles_rt" ]["90.0" ]),
14311443 formatTime (e ["percentiles_rt" ]["95.0" ]),
14321444 formatTime (e ["percentiles_rt" ]["99.0" ]),
14331445 formatTime (e ["max_rt" ]),
0 commit comments