UI Filtering - rselk/sidekiq GitHub Wiki

Sidekiq's retry set is very handy to diagnose and fix bugs in your code but it can fill up with hundreds or thousands of jobs, making it difficult at times to find the jobs you want to focus on.

Sidekiq Pro allows you to filter the jobs in the Dead, Retry and Scheduled queues to see only the jobs you care about:

filtering

Type any substring that can be found in the job data: the worker class, a snippet of the arguments, etc.

Note: you must be running Redis 2.8. The filter box does not show at all if an earlier version is detected.

Add require 'sidekiq/pro/web' to load the Filtering extension wherever you require 'sidekiq/web'.