Adjusting the job name for Sidekiq Delayed classes gives users more insight into which Mailer, Model or Class methods are contributing to high counts or durations. For example, UserMailer.delay.welcome(user.id) would now have the job name of UserMailer#welcome instead of Sidekiq::Extensions::DelayedMailer.
Adjusting the job name for Sidekiq Delayed classes gives users more insight into which Mailer, Model or Class methods are contributing to high counts or durations. For example,
UserMailer.delay.welcome(user.id)
would now have the job name ofUserMailer#welcome
instead ofSidekiq::Extensions::DelayedMailer
.