Class: RailsPerformance::Reports::SlowRequestsReport

Inherits:
BaseReport
  • Object
show all
Defined in:
lib/rails_performance/reports/slow_requests_report.rb

Instance Attribute Summary

Attributes inherited from BaseReport

#db, #group, #sort, #title

Instance Method Summary collapse

Methods inherited from BaseReport

#calculate_data, #collect, #initialize, time_in_app_time_zone

Constructor Details

This class inherits a constructor from RailsPerformance::Reports::BaseReport

Instance Method Details

#dataObject



8
9
10
11
12
13
14
15
# File 'lib/rails_performance/reports/slow_requests_report.rb', line 8

def data
  db.data
    .collect{|e| e.record_hash}
    .select{|e| e if e[sort] > RailsPerformance.slow_requests_time_window.ago.to_i}
    .sort{|a, b| b[sort] <=> a[sort]}
    .filter{|e| e[:duration] > RailsPerformance.slow_requests_threshold.to_i}
    .first(limit)
end

#set_defaultsObject



4
5
6
# File 'lib/rails_performance/reports/slow_requests_report.rb', line 4

def set_defaults
  @sort ||= :datetimei
end