brynary/rack-bug

View on GitHub
lib/rack/bug/views/panels/sphinx.html.erb

Summary

Maintainability
Test Coverage
<h3>Sphinx Usage</h3>
<table id="Sphinx_usage">
  <tr>
    <th>Total Calls</th>
    <td><%= stats.calls %></td>

    <th>Total Time</th>
    <td><%= stats.display_time %></td>
  </tr>
</table>

<% if stats.queries.any? %>
  <h3>Breakdown</h3>
  <table id="Sphinx_breakdown">
    <thead>
      <tr>
        <th>Time&nbsp;(ms)</th>
        <th>Command</th>
      </tr>
    </thead>
    <tbody>
      <% i = 1 %>
      <% stats.queries.each do |query| %>
        <tr>
          <td><%= query.display_time %></td>
          <td><%= query.command %></td>
        </tr>
        <% i += 1 %>
      <% end %>
    </tbody>
  </table>
<% end %>