Sha256: 00a4265960e6031cb278c5dffc74b3276ea7bba369eb42d3d3a7d28265b2e727
Contents?: true
Size: 733 Bytes
Versions: 5
Compression:
Stored size: 733 Bytes
Contents
<%= line_chart @total_time_by_day %> <h4>Last 3 Days</h4> <table> <thead> <tr> <th style="width: 40%;">Action</th> <th style="width: 15%;">Total Time (min)</th> <th style="width: 15%;">Average Time (sec)</th> <th style="width: 15%;">Requests</th> <th style="width: 15%;">Timeouts</th> </tr> </thead> <tbody> <% @top_actions.each do |action| %> <tr> <td><%= link_to action.action, slow_action_path(action_name: action.action) %></td> <td><%= (action.total_time / 60.0).round %></td> <td><%= action.average_time.round(1) %></td> <td><%= action.requests %></td> <td><%= action.timeouts %></td> </tr> <% end %> </tbody> </table>
Version data entries
5 entries across 5 versions & 1 rubygems