debian-mirror-gitlab/app/workers/metrics/dashboard/sync_dashboards_worker.rb
2021-06-08 01:23:25 +05:30

25 lines
600 B
Ruby

# frozen_string_literal: true
module Metrics
module Dashboard
class SyncDashboardsWorker
include ApplicationWorker
sidekiq_options retry: 3
feature_category :metrics
tags :exclude_from_kubernetes
idempotent!
def perform(project_id)
project = Project.find(project_id)
dashboard_paths = ::Gitlab::Metrics::Dashboard::RepoDashboardFinder.list_dashboards(project)
dashboard_paths.each do |dashboard_path|
::Gitlab::Metrics::Dashboard::Importer.new(dashboard_path, project).execute!
end
end
end
end
end