Sha256: a1140d542761a68b234e71c8c65448cb51d6958acca2ff4b65f3dff0bb2c05d1

Contents?: true

Size: 1.34 KB

Versions: 12

Compression:

Stored size: 1.34 KB

Contents

<title>Slow Requests</title>

<div class="card">
  <div class="card-content">
    <div class="columns">
      <div class="column">
        <h2 class="subtitle">Slow Requests (last <%= RailsPerformance.slow_requests_time_window / 60 %> minutes + slower than <%= RailsPerformance.slow_requests_threshold %>ms)<h2>
      </div>
      <div class="column is-narrow">
        <%= render "export" %> 
      </div>
    </div>

    <table id="recent" class="table is-fullwidth is-hoverable is-narrow">
      <thead>
        <tr>
          <th data-sort="string"></th>
          <th data-sort="string">Datetime</th>
          <th data-sort="string">Controller#action</th>
          <th data-sort="string">Method</th>
          <th data-sort="string">Format</th>
          <th></th>
          <th data-sort="string">Path</th>
          <th data-sort="string">Status</th>
          <th data-sort="float">Duration</th>
          <th data-sort="float">Views</th>
          <th data-sort="float">DB</th>
          <th></th>
        </tr>
      </thead>
      <tbody>
        <% if @data.empty? %>
          <tr>
            <td colspan="10">Nothing to show here. Try to make a few requests in the main app.</td>
          </tr>
        <% end %>
        <% @data.each do |e| %>
          <%= render 'recent_row', e: e %>
        <% end %>
      </tbody>
    </table>
  </div>
</div>

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
rails_performance-1.4.1 app/views/rails_performance/rails_performance/slow.html.erb
rails_performance-1.4.1.alpha1 app/views/rails_performance/rails_performance/slow.html.erb
rails_performance-1.4.0 app/views/rails_performance/rails_performance/slow.html.erb
rails_performance-1.4.0.alpha5 app/views/rails_performance/rails_performance/slow.html.erb
rails_performance-1.4.0.alpha4 app/views/rails_performance/rails_performance/slow.html.erb
rails_performance-1.4.0.alpha3 app/views/rails_performance/rails_performance/slow.html.erb
rails_performance-1.4.0.alpha2 app/views/rails_performance/rails_performance/slow.html.erb
rails_performance-1.4.0.alpha1 app/views/rails_performance/rails_performance/slow.html.erb
rails_performance-1.3.3 app/views/rails_performance/rails_performance/slow.html.erb
rails_performance-1.3.2 app/views/rails_performance/rails_performance/slow.html.erb
rails_performance-1.3.1 app/views/rails_performance/rails_performance/slow.html.erb
rails_performance-1.3.0 app/views/rails_performance/rails_performance/slow.html.erb