HBASE-6243. New UI should space detailed latency columns equally (Elliott Clark)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1352694 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
042965f8da
commit
d81ce8cc21
|
@ -240,11 +240,11 @@ java.lang.management.ManagementFactory;
|
|||
<tr>
|
||||
<td><% op %></td>
|
||||
<td><% histo.getCount()%></td>
|
||||
<td><% histo.getMean()%></td>
|
||||
<td><% s.getMedian()%></td>
|
||||
<td><% s.get75thPercentile()%></td>
|
||||
<td><% s.get95thPercentile()%></td>
|
||||
<td><% s.get99thPercentile()%></td>
|
||||
<td><% s.get999thPercentile()%></td>
|
||||
<td><% String.format("%10.2f", histo.getMean()) %></td>
|
||||
<td><% String.format("%10.2f", s.getMedian()) %></td>
|
||||
<td><% String.format("%10.2f", s.get75thPercentile()) %></td>
|
||||
<td><% String.format("%10.2f", s.get95thPercentile()) %></td>
|
||||
<td><% String.format("%10.2f", s.get99thPercentile()) %></td>
|
||||
<td><% String.format("%10.2f", s.get999thPercentile())%></td>
|
||||
</tr>
|
||||
</%def>
|
Loading…
Reference in New Issue