jeff-barbosa / heartcheck-webservice

A plugin to check a webservice connection with heartcheck

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Heartcheck::Webservice

Build Status Ebert

A plugin to check webservice connection with heartcheck

Installation

Add this line to your application's Gemfile:

gem 'heartcheck-webservice'

And then execute:

$ bundle

Or install it yourself as:

$ gem install heartcheck-webservice

Usage

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

Here is an example using all available options:

Heartcheck.setup do |config|
  config.add :webservice do |c|
    c.add_service(name: 'CloudApi',
                  url: "https://cloud.example.com/status",
                  proxy: "10.20.30.40:8888",
                  headers: { "MY-API-KEY" => "abc123" },
                  body_match: /OK/,
                  ignore_ssl_cert: true,
                  open_timeout: 2,
                  read_timeout: 60)
  end
end

Default values

Option Value
open_timeout 3s
read_timeout 5s
ignore_ssl_cert false

Contributing

  1. Fork it ( https://github.com/locaweb/heartcheck-webservice )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

About

A plugin to check a webservice connection with heartcheck

License:MIT License


Languages

Language:Ruby 100.0%