Файл: wmon_dist/templates/host.php
Строк: 50
<?php
<div class="navbar navbar-inverse">
<div class="navbar-inner">
<div class="container-fluid hostname" rel="{{ hostvar }}">
<a class="hostname">{{ hostname }}</a>
</div>
</div>
</div>
<div class="container-fluid">
<div class="host" rel="{{ hostvar }}" data-csv="{{cvs}}">
<div class="row-fluid">
<div class="span12">
<div class="info">{{ cpu_model_name }} | {{ uptime }}</div>
<div class="chart"></div>
<br/>
</div>
</div>
<div class="visible-desktop"><br></div>
<div class="row-fluid" style="font-size:90%">
<div class="span4 top column">
<table class="table current top table-condensed">
<thead>
<tr>
<th class="left" nowrap>CPU %</th>
<th class="left">User</th>
<th class="left">Processes</th>
</tr>
</thead>
<tbody>
{{#top}}
<tr><td>{{0}}</td><td>{{1}}</td><td>{{2}}</td></tr>
{{/top}}
</tbody>
</table>
<table class="table highlight top table-condensed hide">
<thead>
<tr>
<th class="left" nowrap>CPU %</th>
<th class="left">User</th>
<th class="left">Processes</th>
</tr>
</thead>
<tbody>
<tr><td></td><td></td><td></td></tr>
</tbody>
</table>
</div>
<div class="span4 services column">
<table class="table table-condensed">
<thead>
<tr>
<th class="left">Service</th>
<th class="left">Daemon</th>
<th class="left" style="width:50px;">Status</th>
</tr>
</thead>
<tbody>
{{#services}}
<tr>
<td>{{name}}</td>
<td>{{service}}</td>
<td><span class="label label-{{class}}">{{status}}</span></td>
</tr>
{{/services}}
</tbody>
</table>
</div>
<div class="span4 partitions column">
<table class="table table-condensed" style="margin-bottom:0">
<thead>
<tr>
<th class="left">Partitions</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div style="">
{{#partitions }}
<div class="progress">
<div class="bar {{ 6 }}" style="width: {{ 5 }};">{{ 5 }}</div>
</div>
{{ 0 }} size: {{ 2 }} used: {{ 3 }} free: {{ 4 }} {{ 1 }}
<div style="height:12px"></div>
{{/partitions }}
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
?>