Sha256: 3587736653cb879b1fd9a544816873241e5f12e6558077b9adaf40b2080100a1
Contents?: true
Size: 1.49 KB
Versions: 12
Compression:
Stored size: 1.49 KB
Contents
<title>Recent Requests</title> <div class="card"> <div class="card-content"> <div class="columns"> <div class="column"> <h2 class="subtitle">Recent Requests (last <%= RailsPerformance.recent_requests_time_window / 60 %> minutes)<h2> </div> <div class="column is-narrow"> <%= render "export" %> </div> </div> <div class="has-text-right"> <label id="autoupdate_label"> <input id="autoupdate" type="checkbox" /> Auto-update </label> </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