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

metrics.rb « runner « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8df126decfff9f5b99715b04017f9d35f20b444f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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