Sha256: 726f7955f3d76ba0e38b09de1c3a3e8e6378870885fecd544f27fa27d4597ee8

Contents?: true

Size: 1.9 KB

Versions: 4

Compression:

Stored size: 1.9 KB

Contents

<table class="table queries-table">
  <% unless local_assigns[:xhr] %>
    <thead>
      <tr>
        <th style="width: 33.33%;"><%= local_assigns[:sort_headers] ? link_to("Total Time", {sort: nil}, data: {sort: nil}) : "Total Time" %></th>
        <th style="width: 33.33%;"><%= local_assigns[:sort_headers] ? link_to("Average Time", {sort: "average_time"}, data: {sort: "average_time"}) : "Average Time" %></th>
        <th style="width: 33.33%;"><%= local_assigns[:sort_headers] ? link_to("Calls", {sort: "calls"}, data: {sort: "calls"}) : "Calls" %></th>
      </tr>
    </thead>
  <% end %>
  <tbody id="queries">
    <% if queries.empty? %>
      <tr>
        <td colspan="3">
          <p class="queries-info text-muted">
            <% if local_assigns[:xhr] %>
              No data available for this time.
            <% else %>
              ...
            <% end %>
          </p>
        </td>
      </tr>
    <% end %>
    <% queries.each do |query| %>
      <tr>
        <td>
          <%= number_with_delimiter(query["total_minutes"].to_f.round) %> min
          <span class="percent">
            <% percent = query["total_percent"].to_f %>
            <% if percent > 1 %>
              <%= percent.round %>%
            <% elsif percent > 0.1 %>
              <%= percent.round(1) %>%
            <% else %>
              &lt; 0.1%
            <% end %>
          </span>
        </td>
        <td><%= number_with_delimiter(query["average_time"].to_f.round) %> ms</td>
        <td><%= number_with_delimiter(query["calls"].to_i) %></td>
      </tr>
      <tr>
        <td colspan="3" style="border-top: none; padding: 0;">
          <pre><%= query["query"] %></pre>
          <% if query["query"] == "<insufficient privilege>" %>
            <p class="text-muted">For security reasons, only superusers can see queries executed by other users.</p>
          <% end %>
        </td>
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
pghero-1.1.4 app/views/pg_hero/home/_queries_table.html.erb
pghero-1.1.3 app/views/pg_hero/home/_queries_table.html.erb
pghero-1.1.2 app/views/pg_hero/home/_queries_table.html.erb
pghero-1.1.1 app/views/pg_hero/home/_queries_table.html.erb