Sha256: d14423f78f93d00906e2d7d29e336c898809c18f6956f07730c11311aa9fd8bf

Contents?: true

Size: 1.04 KB

Versions: 28

Compression:

Stored size: 1.04 KB

Contents

<title>Number of Requests to the Application</title>

<% unless @datasource.default? %>
  <%#= link_to raw("&larr; Back"), rails_performance_path, class: "back_link" %>
<% end %>

<div class="card">
  <div class="card-content">
    <h2 class="subtitle">Throughput Report</h2>
    <div id="throughput_report_chart" class="chart"></div>
    <p class="content is-small">All requests (site visitors, search engines, bots, etc)</p>
  </div>
</div>

<br/>

<div class="card">
  <div class="card-content">
    <h2 class="subtitle">Average Response Time Report</h2>
    <div id="response_time_report_chart" class="chart"></div>
    <p class="content is-small">All requests (site visitors, search engines, bots, etc)</p>
  </div>
</div>

<% content_for :on_load do %>
  <script>
    var data1 = <%= raw @throughput_report_data.to_json %>;
    showTIRChart('throughput_report_chart', data1, ' rpm', 'RPM');

    var data2 = <%= raw @response_time_report_data.to_json %>;
    showRTChart('response_time_report_chart', data2);
  </script>
<% end %>

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
rails_performance-1.2.0.alpha4 app/views/rails_performance/rails_performance/index.html.erb
rails_performance-1.2.0.alpha3 app/views/rails_performance/rails_performance/index.html.erb
rails_performance-1.2.0.alpha2 app/views/rails_performance/rails_performance/index.html.erb
rails_performance-1.2.0.alpha1 app/views/rails_performance/rails_performance/index.html.erb
rails_performance-1.1.0 app/views/rails_performance/rails_performance/index.html.erb
rails_performance-1.0.5.3 app/views/rails_performance/rails_performance/index.html.erb
rails_performance-1.0.5.2 app/views/rails_performance/rails_performance/index.html.erb
rails_performance-1.0.5.1 app/views/rails_performance/rails_performance/index.html.erb
rails_performance-1.0.5 app/views/rails_performance/rails_performance/index.html.erb
rails_performance-1.0.4 app/views/rails_performance/rails_performance/index.html.erb
rails_performance-1.0.3 app/views/rails_performance/rails_performance/index.html.erb
rails_performance-1.0.2 app/views/rails_performance/rails_performance/index.html.erb
rails_performance-1.0.1 app/views/rails_performance/rails_performance/index.html.erb
rails_performance-1.0.0 app/views/rails_performance/rails_performance/index.html.erb
rails_performance-1.0.0.beta5 app/views/rails_performance/rails_performance/index.html.erb
rails_performance-1.0.0.beta4 app/views/rails_performance/rails_performance/index.html.erb
rails_performance-1.0.0.beta3 app/views/rails_performance/rails_performance/index.html.erb
rails_performance-1.0.0.beta2 app/views/rails_performance/rails_performance/index.html.erb
rails_performance-1.0.0.beta1 app/views/rails_performance/rails_performance/index.html.erb
rails_performance-0.9.9 app/views/rails_performance/rails_performance/index.html.erb