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
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2017-09-10 17:25:29 +05:30
|
|
|
def check
|
|
|
|
catch_timeout 10.seconds do
|
|
|
|
Gitlab::Redis::Cache.with(&:ping)
|
|
|
|
end
|
|
|
|
end
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|