Vincent Fournier 844d9e0e6e Clean config.js and remove container
Change-Id: Ieeb6980232c02ec72a6a0caa707dddbacb008a6f
2015-08-26 16:45:55 -04:00

19 lines
506 B
HTML

<table class="current-health"
ng-if="hostsRatio != undefined && servicesRatio != undefined">
<thead>
<tr>
<th>Current health</th>
</tr>
</thead>
<tbody>
<tr>
<td class="layout__half">
<just-gage id="allhosts" min=0 max=100 value=hostsRatio title="ALL HOSTS"></just-gage>
</td>
<td class="layout__half">
<just-gage id="allservices" min=0 max=100 value=servicesRatio title="ALL SERVICES"></just-gage>
</td>
</tr>
</tbody>
</table>