Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-07-20 18:40:28 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-07-20 18:40:28 +0300
commitb595cb0c1dec83de5bdee18284abe86614bed33b (patch)
tree8c3d4540f193c5ff98019352f554e921b3a41a72 /lib/gitlab/ci/runner
parent2f9104a328fc8a4bddeaa4627b595166d24671d0 (diff)
Add latest changes from gitlab-org/gitlab@15-2-stable-eev15.2.0-rc42
Diffstat (limited to 'lib/gitlab/ci/runner')
-rw-r--r--lib/gitlab/ci/runner/metrics.rb41
1 files changed, 41 insertions, 0 deletions
diff --git a/lib/gitlab/ci/runner/metrics.rb b/lib/gitlab/ci/runner/metrics.rb
new file mode 100644
index 00000000000..8df126decff
--- /dev/null
+++ b/lib/gitlab/ci/runner/metrics.rb
@@ -0,0 +1,41 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module Ci
+ module Runner
+ class Metrics
+ extend Gitlab::Utils::StrongMemoize
+
+ def increment_runner_authentication_success_counter(runner_type: 'unknown_type')
+ raise ArgumentError, "unknown runner type: #{runner_type}" unless
+ ::Ci::Runner.runner_types.include? runner_type
+
+ self.class.runner_authentication_success_counter.increment(runner_type: runner_type)
+ end
+
+ def increment_runner_authentication_failure_counter
+ self.class.runner_authentication_failure_counter.increment
+ end
+
+ def self.runner_authentication_success_counter
+ strong_memoize(:runner_authentication_success) do
+ name = :gitlab_ci_runner_authentication_success_total
+ comment = 'Runner authentication success'
+ labels = { runner_type: nil }
+
+ ::Gitlab::Metrics.counter(name, comment, labels)
+ end
+ end
+
+ def self.runner_authentication_failure_counter
+ strong_memoize(:runner_authentication_failure) do
+ name = :gitlab_ci_runner_authentication_failure_total
+ comment = 'Runner authentication failure'
+
+ ::Gitlab::Metrics.counter(name, comment)
+ end
+ end
+ end
+ end
+ end
+end