summaryrefslogtreecommitdiff
path: root/lib/gitlab/health_checks/redis/rate_limiting_check.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-09-30 18:11:31 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2021-09-30 18:11:31 +0000
commitc753fd0bf4a5cc09f69941daef0f6fe99d61f20e (patch)
tree9aee7f1af879446f226d7a67c149c817ace3f69f /lib/gitlab/health_checks/redis/rate_limiting_check.rb
parenteaec42f9e37fe51f9c53fa7079639ec9f4c40efc (diff)
downloadgitlab-ce-c753fd0bf4a5cc09f69941daef0f6fe99d61f20e.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/health_checks/redis/rate_limiting_check.rb')
-rw-r--r--lib/gitlab/health_checks/redis/rate_limiting_check.rb35
1 files changed, 35 insertions, 0 deletions
diff --git a/lib/gitlab/health_checks/redis/rate_limiting_check.rb b/lib/gitlab/health_checks/redis/rate_limiting_check.rb
new file mode 100644
index 00000000000..67c14e26361
--- /dev/null
+++ b/lib/gitlab/health_checks/redis/rate_limiting_check.rb
@@ -0,0 +1,35 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module HealthChecks
+ module Redis
+ class RateLimitingCheck
+ extend SimpleAbstractCheck
+
+ class << self
+ def check_up
+ check
+ end
+
+ private
+
+ def metric_prefix
+ 'redis_rate_limiting_ping'
+ end
+
+ def successful?(result)
+ result == 'PONG'
+ end
+
+ # rubocop: disable CodeReuse/ActiveRecord
+ def check
+ catch_timeout 10.seconds do
+ Gitlab::Redis::RateLimiting.with(&:ping)
+ end
+ end
+ # rubocop: enable CodeReuse/ActiveRecord
+ end
+ end
+ end
+ end
+end