Sha256: 0ebfa448778cc7322ef0abe8fbc29a80c05802bd8f94fd61e74662807d3338a2

Contents?: true

Size: 878 Bytes

Versions: 3

Compression:

Stored size: 878 Bytes

Contents

module UptimeRobot
  module Monitor
    module Type
      HTTP = 1
      Keyword = 2
      Ping = 3
      Port = 4
    end

    module SubType
      HTTP = 1
      HTTPS = 2
      FTP = 3
      SMTP = 4
      POP3 = 5
      IMAP = 6
      Custom = 99
    end

    module KeywordType
      Exists = 1
      NotExists = 2
    end

    module Status
      Paused = 0
      NotCheckedYet = 1
      Up = 2
      SeemsDown = 8
      Down = 9
    end
  end

  module Log
    module Type
      Down = 1
      Up = 2
      Paused = 99
      Started = 98
    end
  end

  module AlertContact
    module Type
      SMS = 1
      Email = 2
      TwitterDM = 3
      Boxcar = 4
      WebHook = 5
      Pushbullet = 6
      Zapier = 7
      Pushover = 9
      HipChat = 10
      Slack = 11
    end

    module Status
      NotSctivated = 0
      Paused = 1
      Active = 2
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
uptimerobot-0.2.0 lib/uptimerobot/constants.rb
uptimerobot-0.1.6 lib/uptimerobot/constants.rb
uptimerobot-0.1.5 lib/uptimerobot/constants.rb