Sha256: 6288d2f7794f0edac46683fb0eec59da26a032cdbcb6689b7d3c62bea882faab

Contents?: true

Size: 892 Bytes

Versions: 5

Compression:

Stored size: 892 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
      KeywordExists = 1
      KeywordNotExists = 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

5 entries across 5 versions & 1 rubygems

Version Path
uptimerobot-0.1.4 lib/uptimerobot/constants.rb
uptimerobot-0.1.3 lib/uptimerobot/constants.rb
uptimerobot-0.1.2 lib/uptimerobot/constants.rb
uptimerobot-0.1.1 lib/uptimerobot/constants.rb
uptimerobot-0.1.0 lib/uptimerobot/constants.rb