Skip to content

Commit 67a32bc

Browse files
authored
Add p90 column to performance data tables (#396)
* Add p90 column to performance data tables * Rollback to Gradle 9.3.1
1 parent 19a896e commit 67a32bc

File tree

5 files changed

+15
-3
lines changed

5 files changed

+15
-3
lines changed

gradle/wrapper/gradle-wrapper.jar

-2.73 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

reports/report.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -499,6 +499,7 @@
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>
@@ -525,6 +526,7 @@
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>
@@ -554,6 +556,7 @@
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>
@@ -580,6 +583,7 @@
580583
<td>&nbsp;</td>
581584
<td>&nbsp;</td>
582585
<td>&nbsp;</td>
586+
<td>&nbsp;</td>
583587
<td class="extra-col">&nbsp;</td>
584588
<td class="extra-col">&nbsp;</td>
585589
<td class="extra-col">&nbsp;</td>
@@ -606,6 +610,7 @@
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>
@@ -632,6 +637,7 @@
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

Comments
 (0)