-
-
Notifications
You must be signed in to change notification settings - Fork 280
Sentry.io Integration
Darren Cheng edited this page Jun 14, 2018
·
7 revisions
Add below to some Rails initializer, example: config/initializers/shoryuken.rb
# Shoryuken middleware to capture worker errors and send them on to Sentry.io
module Shoryuken
module Middleware
module Server
class RavenReporter
def call(worker_instance, queue, sqs_msg, body)
tags = { job: body['job_class'], queue: queue }
context = { message: body }
Raven.capture(tags: tags, extra: context) do
yield
end
end
end
end
end
end
Shoryuken.configure_server do |config|
config.server_middleware do |chain|
chain.add Shoryuken::Middleware::Server::RavenReporter
end
end