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

prometheus_metrics.rb « v1 « yml « transformers « dashboard « metrics « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4e46eec17d6e567c32a7471c42e1c538e11a5675 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
# frozen_string_literal: true

module Gitlab
  module Metrics
    module Dashboard
      module Transformers
        module Yml
          module V1
            # Takes a JSON schema validated dashboard hash and
            # maps it to PrometheusMetric model attributes
            class PrometheusMetrics
              def initialize(dashboard_hash, project: nil, dashboard_path: nil)
                @dashboard_hash = dashboard_hash.with_indifferent_access
                @project = project
                @dashboard_path = dashboard_path

                @dashboard_hash.default_proc = -> (h, k) { raise Transformers::Errors::MissingAttribute, k.to_s }
              end

              def execute
                prometheus_metrics = []

                dashboard_hash[:panel_groups].each do |panel_group|
                  panel_group[:panels].each do |panel|
                    panel[:metrics].each do |metric|
                      prometheus_metrics << {
                        project:        project,
                        title:          panel[:title],
                        y_label:        panel[:y_label],
                        query:          metric[:query_range] || metric[:query],
                        unit:           metric[:unit],
                        legend:         metric[:label],
                        identifier:     metric[:id],
                        group:          Enums::PrometheusMetric.groups[:custom],
                        common:         false,
                        dashboard_path: dashboard_path
                      }.compact
                    end
                  end
                end

                prometheus_metrics
              end

              private

              attr_reader :dashboard_hash, :project, :dashboard_path
            end
          end
        end
      end
    end
  end
end