Skip to content
This repository has been archived by the owner on Mar 27, 2021. It is now read-only.

v0.6.4.2

Compare
Choose a tag to compare
@obi-a obi-a released this 30 Jul 07:43
· 165 commits to master since this release

[Tagged in preparation for 0.7.0 re-write release]
12-31-2015: Original Release date

  • Upgrades the Ragios built-in url_monitor plugin to use excon gem instead of restclient gem.
  • url monitors can now make http GET requests with a retry_limit (default is 3 times) and a connection timeout setting default is 60 seconds.
    Sample url monitor with new retry_limit and connect_timeout keys:
monitor = {
  monitor: "My Website",
  url: "http://mysite.com",
  every: "5m",
  contact: "[email protected]",
  via: "gmail_notifier",
  plugin: "url_monitor",
  retry_limit: 6,
  connect_timeout: 300
}