I am using Sidekiq to run a background jobs for my Rails application.
I want to find out status (InProgress, Completed, Failed, Dead) of the old Sidekiq job executed 10 or 15 days ago by using jid.
Is there a way to find Sidekiq job status by using jid?
You can get some information using
Also you can use https://github.com/utgarda/sidekiq-status gem.
Or ask redis (or your backend) directly. You can find some tips in this gem sources