Sha256: 4a1eff2d5ed782cc0a68e690109174593c7ff2fd3c390bea2d9e1f351af9e8cb
Contents?: true
Size: 1.36 KB
Versions: 4
Compression:
Stored size: 1.36 KB
Contents
<table class="table queries"> <thead> <tr> <th style="width: 25%;">Pid</th> <th style="width: 25%;">Duration</th> <th style="width: 25%;">State</th> <th style="width: 25%;"></th> </tr> </thead> <tbody> <% queries.reverse.each do |query| %> <tr> <td><%= query[:pid] %></td> <td><%= number_with_delimiter(query[:duration_ms].round) %> ms</td> <td> <%= query[:state] %> <% if vacuum_progress[query[:pid]] %> <br /> <strong><%= vacuum_progress[query[:pid]][:phase] %></strong> <% end %> </td> <td class="text-right"> <% button_path, button_options = Rails.version >= "4.1" ? [explain_path, {params: {query: query[:query]}}] : [explain_path(query: query[:query]), {}] %> <%= button_to "Explain", button_path, button_options.merge(form: {target: "_blank"}, class: "btn btn-info") %> <%= button_to "Kill", kill_path(pid: query[:pid]), class: "btn btn-danger" %> </td> </tr> <tr> <td colspan="6" style="border-top: none; padding: 0;"> <%= query[:source] %> <span class="text-muted"><%= query[:user] %></span> <pre style="margin-top: 1em;"><code><%= query[:query] %></code></pre> </td> </tr> <% end %> </tbody> </table> <script> highlightQueries(); </script>
Version data entries
4 entries across 4 versions & 1 rubygems