summaryrefslogtreecommitdiff
path: root/app/workers/stuck_import_jobs_worker.rb
blob: ce8d5bf0219cf30f3e57690d987b47b340c9ac92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class StuckImportJobsWorker # rubocop:disable Scalability/IdempotentWorker
  include Gitlab::Import::StuckImportJob

  private

  def track_metrics(with_jid_count, without_jid_count)
    Gitlab::Metrics.add_event(
      :stuck_import_jobs,
      projects_without_jid_count: without_jid_count,
      projects_with_jid_count: with_jid_count
    )
  end

  def enqueued_import_states
    ProjectImportState.with_status([:scheduled, :started])
  end
end