debian-mirror-gitlab/config/initializers/health_check.rb

11 lines
262 B
Ruby
Raw Normal View History

2016-06-02 11:05:42 +05:30
HealthCheck.setup do |config|
2017-08-17 22:00:37 +05:30
config.standard_checks = %w(database migrations cache)
config.full_checks = %w(database migrations cache)
2019-09-30 21:07:59 +05:30
Gitlab.ee do
config.add_custom_check('geo') do
Gitlab::Geo::HealthCheck.new.perform_checks
end
end
2016-06-02 11:05:42 +05:30
end