In my sidekiq dashboard, I see on the left a box with the counters
Processed 168
Failed 111
Busy 0
Scheduled 0
Retries 0
Enqueued 0
How do I reset them all to 0?
To reset statistics:
Sidekiq::Stats.new.reset
ref: Add reset stats to Web UI summary box and method to API
Also, you can now clear specific stats:
Sidekiq::Stats.new.reset('failed')
Sidekiq::Stats.new.reset('failed', 'processed')
(Thanks https://stackoverflow.com/users/2475008/tmr08c for update)