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:
Diffstat (limited to 'app/models/performance_monitoring/prometheus_panel_group.rb')
-rw-r--r--app/models/performance_monitoring/prometheus_panel_group.rb36
1 files changed, 0 insertions, 36 deletions
diff --git a/app/models/performance_monitoring/prometheus_panel_group.rb b/app/models/performance_monitoring/prometheus_panel_group.rb
deleted file mode 100644
index 7f3d2a1b8f4..00000000000
--- a/app/models/performance_monitoring/prometheus_panel_group.rb
+++ /dev/null
@@ -1,36 +0,0 @@
-# frozen_string_literal: true
-
-module PerformanceMonitoring
- class PrometheusPanelGroup
- include ActiveModel::Model
-
- attr_accessor :group, :priority, :panels
-
- validates :group, presence: true
- validates :panels, array_members: { member_class: PerformanceMonitoring::PrometheusPanel }
-
- 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: initialize_children_collection(attributes['panels'])
- )
- end
-
- def initialize_children_collection(children)
- return unless children.is_a?(Array)
-
- children.map { |panels| PerformanceMonitoring::PrometheusPanel.from_json(panels) }
- end
- end
- end
-end