HDFS-12557. Ozone: Improve the formatting of the RPC stats on web UI. Contributed by Elek, Marton.
This commit is contained in:
parent
c17521b1bd
commit
303ecae5d5
|
@ -41,13 +41,13 @@
|
|||
<tr>
|
||||
<th>Metric name</th>
|
||||
<th>Number of ops</th>
|
||||
<th>Average time</th>
|
||||
<th>Average time (ms)</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tr ng-repeat="(key,metric) in $ctrl.metrics.numavgs">
|
||||
<td>{{key}}</td>
|
||||
<td>{{metric.numOps}}</td>
|
||||
<td>{{metric.avgTime}}</td>
|
||||
<td>{{metric.numOps | number}}</td>
|
||||
<td>{{metric.avgTime | number:2}}</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue