Sha256: 4fdf5368330c529ca88844fbda0058d8bde51140a5fb7774f8ac800fdd2a0240

Contents?: true

Size: 1.13 KB

Versions: 6

Compression:

Stored size: 1.13 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><%= ms e[:duration] %></td>
        <td><%= ms e[:view_runtime] %></td>
        <td><%= ms e[:db_runtime] %></td>
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rails_performance-0.0.1.17 app/views/rails_performance/_summary.html.erb
rails_performance-0.0.1.16 app/views/rails_performance/_summary.html.erb
rails_performance-0.0.1.15 app/views/rails_performance/_summary.html.erb
rails_performance-0.0.1.14 app/views/rails_performance/_summary.html.erb
rails_performance-0.0.1.13 app/views/rails_performance/_summary.html.erb
rails_performance-0.0.1.12 app/views/rails_performance/_summary.html.erb