Deep Health Check

Gem Version License Depfu Codecov

A simple Health status API

Getting Started

Install gem

 # Gemfile
 gem 'deep_health_check'

Add middleware before Rails::Rack::Logger to prevent false positive response if other middleware fails when database is down for example ActiveRecord::QueryCache

 # config/application.rb
 config.middleware.insert_after "Rails::Rack::Logger", DeepHealthCheck::MiddlewareHealthCheck

Protect Health Check endpoints using htauth credentials.

Health check middleware expose the following endpoints

  • /health
  • /db_health
  • /tcp_dependencies_health

    • dependencies must follow the below format and can be coonfigured using envioronment varables such as:
    # TCP_DEPENDENCY_${00..99}=${ip_or_host}:${port}
    TCP_DEPENDENCY_00=127.0.0.0:8080
  • /http_dependencies_health

    • dependencies must be valid http url and can be coonfigured using envioronment varables such as:
    # HTTP_DEPENDENCY_${00..99}=${ip_or_host}:${port}
    HTTP_DEPENDENCY_00=http://127.0.0.0:8080/health

Some of these endpoints provide information about the database and system status. By Default these endpoints are not protected and are accessible publicly. To reduce the security risk introduced by exposing these endpoints, We can protect them using htauth credentials. The following page provide all the necessary steps needed to achieve this task.