Sha256: 2d6582d43e6b6f70e37d3c4092e82ece04983ec1a187405045e74084d959573b

Contents?: true

Size: 1.79 KB

Versions: 9

Compression:

Stored size: 1.79 KB

Contents

<div class="card">
  <div class="card-content">
    <h2 class="subtitle">Requests (path, total number, average response time)</h2>
    <table class="table is-fullwidth is-hoverable is-narrow">
      <thead>
        <tr>
          <th colspan='3'>Name</th>
          <th colspan='3'>Average</th>
          <th colspan='3'>Slowest</th>
        </tr>
        <tr>
          <th data-sort="string">Controller#action</th>
          <th data-sort="string">Format</th>
          <th data-sort="int">Requests</th>
          <th data-sort="float">Duration</th>
          <th data-sort="float">Views</th>
          <th data-sort="float">DB</th>
          <th data-sort="float">Duration</th>
          <th data-sort="float">Views</th>
          <th data-sort="float">DB</th>
        </tr>
      </thead>
      <tbody>
        <% @data.each do |e| %>
          <% groups = e[:group].split("|") %>
          <% c, a = groups[0].split("#") %>
          <tr>
            <td><%= link_to groups[0],  rails_performance.rails_performance_summary_path({controller_eq: c, action_eq: a}), remote: true %></td>
            <td><%= link_to groups[1]&.upcase,  rails_performance.rails_performance_summary_path({controller_eq: c, action_eq: a, format_eq: groups[1]}), remote: true %></td>
            <td><%= e[:count] %></td>
            <td class="nowrap"><%= ms e[:duration_average] %></td>
            <td class="nowrap"><%= ms e[:view_runtime_average] %></td>
            <td class="nowrap"><%= ms e[:db_runtime_average] %></td>
            <td class="nowrap"><%= ms e[:duration_slowest] %></td>
            <td class="nowrap"><%= ms e[:view_runtime_slowest] %></td>
            <td class="nowrap"><%= ms e[:db_runtime_slowest] %></td>
          </tr>
        <% end %>
      </tbody>
    </table>
  </div>
</div>

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
rails_performance-0.9.5 app/views/rails_performance/rails_performance/requests.html.erb
rails_performance-0.9.4 app/views/rails_performance/requests.html.erb
rails_performance-0.9.3 app/views/rails_performance/requests.html.erb
rails_performance-0.9.2 app/views/rails_performance/requests.html.erb
rails_performance-0.9.1 app/views/rails_performance/requests.html.erb
rails_performance-0.9.0.1 app/views/rails_performance/requests.html.erb
rails_performance-0.9.0 app/views/rails_performance/requests.html.erb
rails_performance-0.0.1.19 app/views/rails_performance/requests.html.erb
rails_performance-0.0.1.18 app/views/rails_performance/requests.html.erb