Sha256: 1c797c47678f116b66b961fcfda1c67befc20e72d021246d0f4313045573efbf
Contents?: true
Size: 1.18 KB
Versions: 3
Compression:
Stored size: 1.18 KB
Contents
<div class="content"> <h1>Maintenance</h1> <table class="table"> <thead> <tr> <th>Table</th> <th style="width: 20%;">Last Vacuum</th> <th style="width: 20%;">Last Analyze</th> </tr> </thead> <tbody> <% @maintenance_info.each do |table| %> <tr> <td> <%= table["table"] %> <% if table["schema"] != "public" %> <span class="text-muted"><%= table["schema"] %></span> <% end %> </td> <td> <% time = [table["last_autovacuum"], table["last_vacuum"]].compact.max %> <% if time %> <%= @time_zone.parse(time).strftime("%-m/%-e %l:%M %P") %> <% else %> <span class="text-muted">Unknown</span> <% end %> </td> <td> <% time = [table["last_autoanalyze"], table["last_analyze"]].compact.max %> <% if time %> <%= @time_zone.parse(time).strftime("%-m/%-e %l:%M %P") %> <% else %> <span class="text-muted">Unknown</span> <% end %> </td> </tr> <% end %> </tbody> </table> </div>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
pghero-1.7.0 | app/views/pg_hero/home/maintenance.html.erb |
pghero-1.6.5 | app/views/pg_hero/home/maintenance.html.erb |
pghero-1.6.4 | app/views/pg_hero/home/maintenance.html.erb |