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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-03-31 15:08:55 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-03-31 15:08:55 +0300
commitea1dcaef18edf97b3ac73892d64ebaf5eecd7f68 (patch)
tree4ffca65c5590a6bb6ea6f72efda3feaf7be45ec2 /lib/gitlab/error_tracking.rb
parent2c6c1c4dce92b5ef64c357156c9a27656e8bdbb8 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/error_tracking.rb')
-rw-r--r--lib/gitlab/error_tracking.rb10
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/gitlab/error_tracking.rb b/lib/gitlab/error_tracking.rb
index dfed8db8df0..47d361fb95c 100644
--- a/lib/gitlab/error_tracking.rb
+++ b/lib/gitlab/error_tracking.rb
@@ -16,6 +16,12 @@ module Gitlab
Rack::Timeout::RequestTimeoutException
].freeze
+ PROCESSORS = [
+ ::Gitlab::ErrorTracking::Processor::SidekiqProcessor,
+ ::Gitlab::ErrorTracking::Processor::GrpcErrorProcessor,
+ ::Gitlab::ErrorTracking::Processor::ContextPayloadProcessor
+ ].freeze
+
class << self
def configure
Raven.configure do |config|
@@ -97,7 +103,9 @@ module Gitlab
inject_context_for_exception(event, hint[:exception])
custom_fingerprinting(event, hint[:exception])
- event
+ PROCESSORS.reduce(event) do |processed_event, processor|
+ processor.call(processed_event)
+ end
end
def process_exception(exception, sentry: false, logging: true, extra:)