Add the following: * Container name, machine name, worker id. * Container uptime, puma uptime, worker uptime. * Number of requests processed by current worker. * ExifTool version. Also change /status page to show information in tables instead of lists.
10 lines
195 B
Plaintext
10 lines
195 B
Plaintext
<%# hash %>
|
|
<table class="striped aligned-vertical">
|
|
<% hash.each do |key, value| %>
|
|
<tr>
|
|
<th><%= key.to_s.humanize %></th>
|
|
<td><%= value %></td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|