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

context_payload_processor.rb « processor « error_tracking « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9559d6807da35b07314373aa8f33cbb5248de0b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

module Gitlab
  module ErrorTracking
    module Processor
      module ContextPayloadProcessor
        # This processor is added to inject application context into Sentry
        # events generated by Sentry built-in integrations. When the
        # integrations are re-implemented and use Gitlab::ErrorTracking, this
        # processor should be removed.
        def self.call(event)
          Gitlab::ErrorTracking::ContextPayloadGenerator.generate(nil, {}).each do |key, value|
            event.public_send(key).deep_merge!(value) # rubocop:disable GitlabSecurity/PublicSend
          end

          event
        end
      end
    end
  end
end