Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sidekiq-ent periodic tasks support #2401

Open
kichik opened this issue Sep 13, 2024 · 0 comments
Open

sidekiq-ent periodic tasks support #2401

kichik opened this issue Sep 13, 2024 · 0 comments

Comments

@kichik
Copy link

kichik commented Sep 13, 2024

Cron monitoring has built-in support for sidekiq-cron and sidekiq-scheduler. It would be great if the built-in cron feature of Sidekiq was supported as well. It is limited to sidekiq-ent (the paid version), but I imagine it's still popular enough to consider being included.

In our sidekiq.rb we have:

Sidekiq.configure_server do |config|
  config.periodic do |mgr|
    mgr.register("* * * * *", "TestJob") # every minute
  end
end

It would be awesome if our sentry.rb could have:

Sentry.init do |config|
  config.enabled_patches += [:sidekiq_ent_cron]
end

That way we don't have to manually implement check-ins.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: No status
Development

No branches or pull requests

2 participants