No commit activity in last 3 years
No release in over 3 years
Provides an URL for to check the health of the application
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

Runtime

 Project Readme

Elb Health Check

Simple healthcheck for Rails apps.

Installation

Include elb-health-check in your Gemfile.

gem 'elb-health-check'

Usage

In most cases you have to do nothing else, but you can configure the checks like this.

ElbHealthCheck.configure |config|
  config.uris = ['/health_check']  # default
  config.checks = %i(database)     # default
end