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 'lib/gitlab/metrics/dashboard/processor.rb')
-rw-r--r--lib/gitlab/metrics/dashboard/processor.rb33
1 files changed, 0 insertions, 33 deletions
diff --git a/lib/gitlab/metrics/dashboard/processor.rb b/lib/gitlab/metrics/dashboard/processor.rb
deleted file mode 100644
index 9566e5afb9a..00000000000
--- a/lib/gitlab/metrics/dashboard/processor.rb
+++ /dev/null
@@ -1,33 +0,0 @@
-# frozen_string_literal: true
-
-module Gitlab
- module Metrics
- module Dashboard
- # Responsible for processesing a dashboard hash, inserting
- # relevant DB records & sorting for proper rendering in
- # the UI. These includes shared metric info, custom metrics
- # info, and alerts (only in EE).
- class Processor
- def initialize(project, dashboard, sequence, params)
- @project = project
- @dashboard = dashboard
- @sequence = sequence
- @params = params
- end
-
- # Returns a new dashboard hash with the results of
- # running transforms on the dashboard.
- # @return [Hash, nil]
- def process
- return unless @dashboard
-
- @dashboard.deep_symbolize_keys.tap do |dashboard|
- @sequence.each do |stage|
- stage.new(@project, dashboard, @params).transform!
- end
- end
- end
- end
- end
- end
-end