Class: Sentry::GoodJob::Configuration
- Inherits:
-
Object
- Object
- Sentry::GoodJob::Configuration
- Defined in:
- lib/sentry/good_job/configuration.rb
Instance Attribute Summary collapse
-
#enable_cron_monitors ⇒ Object
Whether to enable cron monitoring for all scheduled jobs This is GoodJob-specific functionality for monitoring scheduled tasks.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
24 25 26 |
# File 'lib/sentry/good_job/configuration.rb', line 24 def initialize @enable_cron_monitors = true end |
Instance Attribute Details
#enable_cron_monitors ⇒ Object
Whether to enable cron monitoring for all scheduled jobs This is GoodJob-specific functionality for monitoring scheduled tasks
22 23 24 |
# File 'lib/sentry/good_job/configuration.rb', line 22 def enable_cron_monitors @enable_cron_monitors end |