Sha256: 04fc01ec38d29236581042955c3e8402ca53686dd8e14981aa3c48a31e82a127

Contents?: true

Size: 1008 Bytes

Versions: 2

Compression:

Stored size: 1008 Bytes

Contents

<div class="sixteen columns">
<table id="host">
  <thead>
    <tr>
      <th>Host Name</th>
      <th>Load Average</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><%= @host_name %></td>
      <td><%= @load_average %></td>
    </tr>
  </tbody>
</table>
<br class="clear" />
</div>

<div class="sixteen columns">
<table id="hardware">
  <thead>
    <tr>
      <th>Memory Total</th>
      <th>Memory Free</th>
      <th>Total CPUS</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><%= @memory["MemTotal"] %></a></td>
      <td><%= @memory["MemFree"] %></a></td>
      <td><%= @cpus %></td>
    </tr>
  </tbody>
</table>
<br class="clear" />
</div>


<div class="sixteen columns">
<table id="network">
  <thead>
    <tr>
      <th>IP Address</th>
      <th>Name</th>
    </tr>
  </thead>
  <tbody>
    <% @ip_addresses.each do |ip| %>
      <tr>
        <td><%= ip[:ip_address] %></a></td>
        <td><%= ip[:name] %></td>
      </tr>
    <% end %>
  </tbody>
</table>
<br class="clear" />
</div>


Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
swiss_admin-0.7.0 lib/swiss_admin/web/views/info.erb
swiss_admin-0.6.1 lib/swiss_admin/web/views/info.erb