errorInfo.ftl
1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<#if (count)??>
<div id="failureContent">
-------------------
<h4>错误信息(错误总数: ${count})</h4>
<table border="1" class="table table-bordered table-striped table-hover">
<thead>
<tr>
<th>错误名称</th>
<th>错误个数</th>
</tr>
</thead>
<tbody>
<#list statusMap?keys as status>
<tr>
<td>${status}</td>
<td>${statusMap[status]}</td>
</tr>
</#list>
</tbody>
</table>
</div>
<div id="distrubuteContent">
-------------------
<h4>错误分布</h4>
<table border="1" class="table table-bordered table-striped table-hover">
<thead>
<tr>
<th>机器IP</th>
<th>错误个数</th>
</tr>
</thead>
<tbody>
<#list distributeMap?keys as ip>
<tr>
<td>${ip}</td>
<td>${distributeMap[ip]}</td>
</tr>
</#list>
</tbody>
</table>
</div>
</#if>