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

prometheus_panel.rb « performance_monitoring « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c03218b4219a8d4453a0acdeecc4b3fc434b0343 (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
# frozen_string_literal: true

module PerformanceMonitoring
  class PrometheusPanel
    include ActiveModel::Model

    attr_accessor :type, :title, :y_label, :weight, :metrics

    validates :title, presence: true
    validates :metrics, presence: true

    def self.from_json(json_content)
      panel = new(
        type: json_content['type'],
        title: json_content['title'],
        y_label: json_content['y_label'],
        weight: json_content['weight'],
        metrics: json_content['metrics'].map { |metric| PrometheusMetric.from_json(metric) }
      )

      panel.tap(&:validate!)
    end
  end
end