summaryrefslogtreecommitdiff
path: root/app/models/performance_monitoring/prometheus_panel_group.rb
blob: f88106f259b67a6a10d07d54555e26a8ff00b70b (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
# frozen_string_literal: true

module PerformanceMonitoring
  class PrometheusPanelGroup
    include ActiveModel::Model

    attr_accessor :group, :priority, :panels

    validates :group, presence: true
    validates :panels, presence: true
    class << self
      def from_json(json_content)
        build_from_hash(json_content).tap(&:validate!)
      end

      private

      def build_from_hash(attributes)
        return new unless attributes.is_a?(Hash)

        new(
          group: attributes['group'],
          priority: attributes['priority'],
          panels: attributes['panels']&.map { |panel| PrometheusPanel.from_json(panel) }
        )
      end
    end
  end
end