Sha256: c4742891db7ecaedef6aa999bca98fee0693a7c76903c3b590005714b400b95c
Contents?: true
Size: 1.21 KB
Versions: 1
Compression:
Stored size: 1.21 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_to "Explain", explain_path, params: {query: query[:query]}, 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pghero-2.3.0 | app/views/pg_hero/home/_live_queries_table.html.erb |