Sha256: bf696757b2a1ccdda27d53dd42ff673dc1626225d16e55bfcf81ea466d92a19e
Contents?: true
Size: 1.17 KB
Versions: 13
Compression:
Stored size: 1.17 KB
Contents
<h2 class="subtitle">Throughput</h2> <div id="throughput_report_chart_mini" class="chart_mini"></div> <h2 class="subtitle">Average Response Time</h2> <div id="response_time_report_chart_mini" class="chart_mini"></div> <h2 class="subtitle"><%= @report.title %></h2> <table class="table is-fullwidth is-hoverable is-narrow is-size-7"> <thead> <tr> <th data-sort="string">Datetime</th> <th data-sort="string">Method</th> <th data-sort="string">Path</th> <th data-sort="string">Format</th> <th data-sort="int">Status</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| %> <tr> <td><%= format_datetime e[:datetime] %></td> <td><%= e[:method] %></td> <td><%= link_to_path(e) %></td> <td><%= e[:format] %></td> <td><%= status_tag e[:status] %></td> <td class="nowrap"><%= ms e[:duration] %></td> <td class="nowrap"><%= ms e[:view_runtime] %></td> <td class="nowrap"><%= ms e[:db_runtime] %></td> </tr> <% end %> </tbody> </table>
Version data entries
13 entries across 13 versions & 1 rubygems