WANG преди 5 години
родител
ревизия
b70a5e6443
променени са 1 файла, в които са добавени 6 реда и са изтрити 3 реда
  1. 6 3
      src/main/resources/api-status.html

+ 6 - 3
src/main/resources/api-status.html

@@ -33,8 +33,7 @@ td {
 			<th colspan="4">rate (calls/s)</th>
 			<th colspan="3">cost (ms)</th>
 			<th colspan="5">Line (<= ms)</th>
-			<th rowspan="2" onclick="order('exceptionCount')">error</th>
-			<th rowspan="2">error %</th>
+			<th colspan="3" onclick="order('exceptionCount')">error</th>
 		</tr>
 		<tr style="background-color: #E0E0E0;">
 			<th onclick="order('meanRate')">mean</th>
@@ -49,6 +48,9 @@ td {
 			<th onclick="order('p95')">95%</th>
 			<th onclick="order('p98')">98%</th>
 			<th onclick="order('p99')">99%</th>
+			<th onclick="order('errorCount')">total</th>
+			<th onclick="order('errorMeanRate')">rate (calls/s)</th>
+			<th onclick="order('errorPercent')">%</th>
 		</tr>
 		<#list data as cur>
 		<tr style="color: #009999;">
@@ -67,7 +69,8 @@ td {
 			<td>${cur.p95?string("#.##")}</td>
 			<td>${cur.p98?string("#.##")}</td>
 			<td>${cur.p99?string("#.##")}</td>
-			<td>${cur.errorCount?c} (${cur.errorMeanRate?string("#.##")})</td>
+			<td>${cur.errorCount?c}</td>
+			<td>${cur.errorMeanRate?string("#.##")}</td>
 			<td>${cur.errorPercent?string.percent}</td>
 		</tr>
 		</#list>