debian-mirror-gitlab/lib/gitlab/health_checks/redis/cache_check.rb

32 lines
539 B
Ruby
Raw Normal View History

2017-09-10 17:25:29 +05:30
module Gitlab
module HealthChecks
module Redis
class CacheCheck
extend SimpleAbstractCheck
class << self
def check_up
check
end
private
def metric_prefix
'redis_cache_ping'
end
2018-03-17 18:26:18 +05:30
def successful?(result)
2017-09-10 17:25:29 +05:30
result == 'PONG'
end
def check
catch_timeout 10.seconds do
Gitlab::Redis::Cache.with(&:ping)
end
end
end
end
end
end
end