debshots/config/initializers/healthcheck.rb

27 lines
930 B
Ruby

# frozen_string_literal: true
Healthcheck.configure do |config|
config.success = 200
config.error = 503
config.verbose = true
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') }
config.add_check :env, -> {
['SALSA_OAUTH_KEY', 'SALSA_OAUTH_SECRET'].each do |key|
#puts "checking for environment variable #{key}"
raise "Env variable #{key} not set" unless ENV.key?(key)
end
}
end