From c753fd0bf4a5cc09f69941daef0f6fe99d61f20e Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Thu, 30 Sep 2021 18:11:31 +0000 Subject: Add latest changes from gitlab-org/gitlab@master --- .../health_checks/redis/rate_limiting_check.rb | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 lib/gitlab/health_checks/redis/rate_limiting_check.rb (limited to 'lib/gitlab/health_checks/redis/rate_limiting_check.rb') 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 -- cgit v1.2.1