summaryrefslogtreecommitdiff
path: root/app/services/ci/archive_trace_service.rb
blob: a1dd00721b59553c286f7a56d3e2886890f87274 (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
30
31
32
33
34
35
# frozen_string_literal: true

module Ci
  class ArchiveTraceService
    def execute(job)
      job.trace.archive!
    rescue ::Gitlab::Ci::Trace::AlreadyArchivedError
      # It's already archived, thus we can safely ignore this exception.
    rescue => e
      # Tracks this error with application logs, Sentry, and Prometheus.
      # If `archive!` keeps failing for over a week, that could incur data loss.
      # (See more https://docs.gitlab.com/ee/administration/job_traces.html#new-live-trace-architecture)
      # In order to avoid interrupting the system, we do not raise an exception here.
      archive_error(e, job)
    end

    private

    def failed_archive_counter
      @failed_archive_counter ||=
        Gitlab::Metrics.counter(:job_trace_archive_failed_total,
                                "Counter of failed attempts of trace archiving")
    end

    def archive_error(error, job)
      failed_archive_counter.increment
      Rails.logger.error "Failed to archive trace. id: #{job.id} message: #{error.message}"

      Gitlab::Sentry
        .track_exception(error,
                         issue_url: 'https://gitlab.com/gitlab-org/gitlab-ce/issues/51502',
                         extra: { job_id: job.id })
    end
  end
end