2018-10-07 22:44:08 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
|
|
|
|
<rd-widget>
|
|
|
|
<rd-widget-header icon="fa-code" title-text="Host Details"></rd-widget-header>
|
|
|
|
<rd-widget-body classes="no-padding">
|
|
|
|
<table class="table">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>Hostname</td>
|
|
|
|
<td>{{ $ctrl.host.name }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr ng-if="$ctrl.host.os">
|
|
|
|
<td>OS Information</td>
|
|
|
|
<td>{{ $ctrl.host.os.type }} {{$ctrl.host.os.arch}}
|
|
|
|
{{$ctrl.host.os.name}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr ng-if="$ctrl.host.kernelVersion">
|
|
|
|
<td>Kernel Version</td>
|
|
|
|
<td>{{ $ctrl.host.kernelVersion }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Total CPU</td>
|
|
|
|
<td>{{ $ctrl.host.totalCPU }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Total memory</td>
|
|
|
|
<td>{{ $ctrl.host.totalMemory | humansize }}</td>
|
|
|
|
</tr>
|
2018-10-11 22:32:17 +00:00
|
|
|
<tr ng-if="$ctrl.isAgent">
|
|
|
|
<td colspan="2">
|
|
|
|
<button
|
|
|
|
class="btn btn-primary btn-sm"
|
|
|
|
title="Browse"
|
|
|
|
ui-sref="{{$ctrl.browseUrl}}">
|
|
|
|
Browse
|
|
|
|
</button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
2018-10-07 22:44:08 +00:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</rd-widget-body>
|
|
|
|
</rd-widget>
|
|
|
|
</div>
|
|
|
|
</div>
|