Class: Sentry::Cron::Configuration
- Inherits:
-
Object
- Object
- Sentry::Cron::Configuration
- Defined in:
- lib/sentry/cron/configuration.rb
Instance Attribute Summary collapse
-
#default_checkin_margin ⇒ Integer?
How long (in minutes) after the expected checkin time will we wait until we consider the checkin to have been missed.
-
#default_max_runtime ⇒ Integer?
How long (in minutes) is the checkin allowed to run for in in_progress before it is considered failed.
-
#default_timezone ⇒ String?
tz database style timezone string.
Instance Attribute Details
#default_checkin_margin ⇒ Integer?
How long (in minutes) after the expected checkin time will we wait until we consider the checkin to have been missed.
11 12 13 |
# File 'lib/sentry/cron/configuration.rb', line 11 def default_checkin_margin @default_checkin_margin end |
#default_max_runtime ⇒ Integer?
How long (in minutes) is the checkin allowed to run for in in_progress before it is considered failed.
16 17 18 |
# File 'lib/sentry/cron/configuration.rb', line 16 def default_max_runtime @default_max_runtime end |
#default_timezone ⇒ String?
tz database style timezone string
20 21 22 |
# File 'lib/sentry/cron/configuration.rb', line 20 def default_timezone @default_timezone end |