Sha256: 5407a7deabcebc32f6185d8b98e9bc9383a2186c88df87777dfddc72987addc5
Contents?: true
Size: 1.04 KB
Versions: 8
Compression:
Stored size: 1.04 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 %> <%= PgHero.time_zone.parse(time).strftime("%m/%-e %l:%M %P") %> <% end %> </td> <td> <% time = [table["last_autoanalyze"], table["last_analyze"]].compact.max %> <% if time %> <%= PgHero.time_zone.parse(time).strftime("%m/%-e %l:%M %P") %> <% end %> </td> </tr> <% end %> </tbody> </table> </div>
Version data entries
8 entries across 8 versions & 1 rubygems