Class: Sentry::Cron::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/sentry/cron/configuration.rb

Instance Attribute Summary collapse

Instance Attribute Details

#default_checkin_marginInteger?

How long (in minutes) after the expected checkin time will we wait until we consider the checkin to have been missed.

Returns:

  • (Integer, nil)


11
12
13
# File 'lib/sentry/cron/configuration.rb', line 11

def default_checkin_margin
  @default_checkin_margin
end

#default_max_runtimeInteger?

How long (in minutes) is the checkin allowed to run for in in_progress before it is considered failed.

Returns:

  • (Integer, nil)


16
17
18
# File 'lib/sentry/cron/configuration.rb', line 16

def default_max_runtime
  @default_max_runtime
end

#default_timezoneString?

tz database style timezone string

Returns:

  • (String, nil)


20
21
22
# File 'lib/sentry/cron/configuration.rb', line 20

def default_timezone
  @default_timezone
end