Files
danbooru/app/views/status/_list.html.erb
evazion f8d52e6758 /status: add more information to /status page.
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.
2021-09-26 23:11:08 -05:00

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>