|
| 1 | +# frozen_string_literal |
| 2 | + |
| 3 | +require 'sentry/cron/monitor_schedule' |
| 4 | + |
| 5 | +module Sentry |
| 6 | + module Cron |
| 7 | + class MonitorConfig |
| 8 | + # The monitor schedule configuration |
| 9 | + # @return [MonitorSchedule::Crontab, MonitorSchedule::Interval] |
| 10 | + attr_accessor :schedule |
| 11 | + |
| 12 | + # How long (in minutes) after the expected checkin time will we wait |
| 13 | + # until we consider the checkin to have been missed. |
| 14 | + # @return [Integer, nil] |
| 15 | + attr_accessor :checkin_margin |
| 16 | + |
| 17 | + # How long (in minutes) is the checkin allowed to run for in in_progress |
| 18 | + # before it is considered failed. |
| 19 | + # @return [Integer, nil] |
| 20 | + attr_accessor :max_runtime |
| 21 | + |
| 22 | + # tz database style timezone string |
| 23 | + # @return [String, nil] |
| 24 | + attr_accessor :timezone |
| 25 | + |
| 26 | + def initialize(schedule, checkin_margin: nil, max_runtime: nil, timezone: nil) |
| 27 | + @schedule = schedule |
| 28 | + @checkin_margin = checkin_margin |
| 29 | + @max_runtime = max_runtime |
| 30 | + @timezone = timezone |
| 31 | + end |
| 32 | + |
| 33 | + def self.from_crontab(crontab, **options) |
| 34 | + new(MonitorSchedule::Crontab.new(crontab), **options) |
| 35 | + end |
| 36 | + |
| 37 | + def self.from_interval(num, unit, **options) |
| 38 | + return nil unless MonitorSchedule::Interval::VALID_UNITS.include?(unit) |
| 39 | + |
| 40 | + new(MonitorSchedule::Interval.new(num, unit), **options) |
| 41 | + end |
| 42 | + |
| 43 | + def to_hash |
| 44 | + { |
| 45 | + schedule: schedule.to_hash, |
| 46 | + checkin_margin: checkin_margin, |
| 47 | + max_runtime: max_runtime, |
| 48 | + timezone: timezone |
| 49 | + }.compact |
| 50 | + end |
| 51 | + end |
| 52 | + end |
| 53 | +end |
0 commit comments