A plugin to check webservice connection with heartcheck
Add this line to your application's Gemfile:
gem 'heartcheck-webservice'
And then execute:
$ bundle
Or install it yourself as:
$ gem install heartcheck-webservice
You can add a check to a webservice when configuring heartcheck
The service is a Hash that needs to respond to :name
to identify the service, :url
of the service (GET request) and :body_match
is a regex that is going to match the response body.
Ex.
Heartcheck.setup do |config|
config.add :webservice do |c|
c.add_service(name: 'CloudApi', url: "http://cloud.example.com/status", body_match: /OK/)
end
end
You can ignore ssl if you want, just set the Hash with :ignore_ssl_cert
. Ex.
Heartcheck.setup do |config|
config.add :webservice do |c|
c.add_service(name: 'CloudApi',
url: "https://cloud.example.com/status",
body_match: /OK/,
ignore_ssl_cert: true)
end
end
- Fork it ( https://github.com/locaweb/heartcheck-webservice )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request