Skip to content

Instantly share code, notes, and snippets.

@dpaola2
Forked from unkleara/Sidekiq Reset
Created January 6, 2021 18:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dpaola2/349e231a043df4b8c2d2926fa06755c8 to your computer and use it in GitHub Desktop.
Save dpaola2/349e231a043df4b8c2d2926fa06755c8 to your computer and use it in GitHub Desktop.
Sidekiq reset stats
To reset processed jobs:
Sidekiq.redis {|c| c.del('stat:processed') }
To reset failed jobs:
Sidekiq.redis {|c| c.del('stat:failed') }
To reset statistics:
Sidekiq::Stats.new.reset
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment