diff options
author | Yamagishi Kazutoshi <ykzts@desire.sh> | 2019-09-07 09:47:51 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2019-09-07 02:47:51 +0200 |
commit | d7268befa853ac4a99f9d066c38330d4fc0bfc31 (patch) | |
tree | 7ebc0784a706059880d471c3ae8664cf9beaa7dd /config/initializers | |
parent | e445a8af64908b2bdb721bec74c113e8258a129b (diff) |
Add healthcheck endpoint for web (#11770)
Diffstat (limited to 'config/initializers')
-rw-r--r-- | config/initializers/health_check.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/initializers/health_check.rb b/config/initializers/health_check.rb new file mode 100644 index 000000000..eece67b10 --- /dev/null +++ b/config/initializers/health_check.rb @@ -0,0 +1,6 @@ +HealthCheck.setup do |config| + config.uri = 'health' + + config.standard_checks = %w(database migrations cache) + config.full_checks = %w(database migrations cache) +end |