Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sidekiq_middleware.rb « metrics « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1c99e1e730cbc65dfd271e3cf884b7709734c129 (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
# frozen_string_literal: true

module Gitlab
  module Metrics
    # Sidekiq middleware for tracking jobs.
    #
    # This middleware is intended to be used as a server-side middleware.
    class SidekiqMiddleware
      def call(worker, payload, queue)
        trans = BackgroundTransaction.new(worker.class)

        begin
          # Old gitlad-shell messages don't provide enqueued_at/created_at attributes
          enqueued_at = payload['enqueued_at'] || payload['created_at'] || 0
          trans.set(:sidekiq_queue_duration, Time.current.to_f - enqueued_at)
          trans.run { yield }
        rescue Exception => error # rubocop: disable Lint/RescueException
          trans.add_event(:sidekiq_exception)

          raise error
        ensure
          add_info_to_payload(payload, trans)
        end
      end

      private

      def add_info_to_payload(payload, trans)
        payload.merge!(::Gitlab::Metrics::Subscribers::ActiveRecord.db_counter_payload)
      end
    end
  end
end