mirror of https://github.com/portainer/portainer
22 lines
626 B
HTML
22 lines
626 B
HTML
|
<div class="row">
|
||
|
<div class="col-xs-12">
|
||
|
<h2>Stats</h2>
|
||
|
<canvas id="cpu-stats-chart" width="700"></canvas>
|
||
|
<br>
|
||
|
<table class="table">
|
||
|
<tbody>
|
||
|
<tr>
|
||
|
<th>Time read</th>
|
||
|
<th>CPU usage</th>
|
||
|
<th>Stat</th>
|
||
|
</tr>
|
||
|
<tr ng-repeat="stat in dockerStats">
|
||
|
<td ng-bind="stat.read"/>
|
||
|
<td ng-bind="calculateCPUPercent(stat)"/>
|
||
|
<td ng-bind="stat"/>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</div>
|
||
|
</div>
|