Class: Raven::Rack
- Inherits:
-
Object
- Object
- Raven::Rack
- Defined in:
- lib/raven/integrations/rack.rb
Overview
Middleware for Rack applications. Any errors raised by the upstream application will be delivered to Sentry and re-raised.
Synopsis:
require 'rack'
require 'raven'
Raven.configure do |config|
config.server = 'http://my_dsn'
end
app = Rack::Builder.app do
use Raven::Rack
run lambda { |env| raise "Rack down" }
end
Use a standard Raven.configure call to configure your server credentials.
Class Method Summary collapse
- .capture_type(exception, env, options = {}) ⇒ Object (also: capture_message, capture_exception)
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app) ⇒ Rack
constructor
A new instance of Rack.
Constructor Details
#initialize(app) ⇒ Rack
Returns a new instance of Rack.
39 40 41 |
# File 'lib/raven/integrations/rack.rb', line 39 def initialize(app) @app = app end |
Class Method Details
.capture_type(exception, env, options = {}) ⇒ Object Also known as: capture_message, capture_exception
24 25 26 27 28 29 30 31 32 33 |
# File 'lib/raven/integrations/rack.rb', line 24 def self.capture_type(exception, env, = {}) if env['raven.requested_at'] [:time_spent] = Time.now - env['raven.requested_at'] end Raven.capture_type(exception, ) do |evt| evt.interface :http do |int| int.from_rack(env) end end end |
Instance Method Details
#call(env) ⇒ Object
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/raven/integrations/rack.rb', line 43 def call(env) # store the current environment in our local context for arbitrary # callers env['raven.requested_at'] = Time.now Raven.rack_context(env) Raven.context.transaction.push(env["PATH_INFO"]) if env["PATH_INFO"] begin response = @app.call(env) rescue Error raise # Don't capture Raven errors rescue Exception => e Raven::Rack.capture_exception(e, env) raise end error = env['rack.exception'] || env['sinatra.error'] Raven::Rack.capture_exception(error, env) if error response ensure Context.clear! BreadcrumbBuffer.clear! end |