Class: Sidekiq::Stats::History

Inherits:
Object
  • Object
show all
Defined in:
lib/sidekiq/api.rb

Instance Method Summary collapse

Constructor Details

#initialize(days_previous, start_date = nil) ⇒ History

Returns a new instance of History.



139
140
141
142
# File 'lib/sidekiq/api.rb', line 139

def initialize(days_previous, start_date = nil)
  @days_previous = days_previous
  @start_date = start_date || Time.now.utc.to_date
end

Instance Method Details

#failedObject



148
149
150
# File 'lib/sidekiq/api.rb', line 148

def failed
  date_stat_hash("failed")
end

#processedObject



144
145
146
# File 'lib/sidekiq/api.rb', line 144

def processed
  date_stat_hash("processed")
end