21 lines
715 B
Ruby
21 lines
715 B
Ruby
# frozen_string_literal: true
|
|
|
|
Healthcheck.configure do |config|
|
|
config.success = 200
|
|
config.error = 503
|
|
config.verbose = false
|
|
config.route = '/healthcheck'
|
|
config.method = :get
|
|
|
|
# -- Custom Response --
|
|
# config.custom = lambda { |controller, checker|
|
|
# controller.render json: my_custom_response unless checker.errored?
|
|
# ...
|
|
# }
|
|
|
|
# -- Checks --
|
|
# config.add_check :database, -> { ActiveRecord::Base.connection.execute('select 1') }
|
|
# config.add_check :migrations, -> { ActiveRecord::Migration.check_pending! }
|
|
# config.add_check :cache, -> { Rails.cache.read('some_key') }
|
|
# config.add_check :environments, -> { Dotenv.require_keys('ENV_NAME', 'ANOTHER_ENV') }
|
|
end
|