Sha256: beb0606ffe8a08f950a2abe854454d92f3d6a65395c6330ff0e34fc2d752fed9
Contents?: true
Size: 1.9 KB
Versions: 2
Compression:
Stored size: 1.9 KB
Contents
# Appsignal module that tracks exceptions in Streaming rack responses. module Appsignal module Rack class StreamingListener def initialize(app, options = {}) Appsignal.logger.debug 'Initializing Appsignal::Rack::StreamingListener' @app, @options = app, options end def call(env) if Appsignal.active? call_with_appsignal_monitoring(env) else @app.call(env) end end def call_with_appsignal_monitoring(env) request = ::Rack::Request.new(env) transaction = Appsignal::Transaction.create( SecureRandom.uuid, Appsignal::Transaction::HTTP_REQUEST, request ) # Instrument a `process_action`, to set params/action name status, headers, body = ActiveSupport::Notifications.instrument('process_action.rack') do begin @app.call(env) rescue Exception => e transaction.set_error(e) raise e ensure transaction.set_action(env['appsignal.action']) transaction.set_metadata('path', request.path) transaction.set_metadata('method', request.request_method) transaction.set_http_or_background_queue_start end end # Wrap the result body with our StreamWrapper [status, headers, StreamWrapper.new(body, transaction)] end end end class StreamWrapper def initialize(stream, transaction) @stream = stream @transaction = transaction end def each @stream.each { |c| yield(c) } rescue Exception => e @transaction.set_error(e) raise e end def close @stream.close if @stream.respond_to?(:close) rescue Exception => e @transaction.set_error(e) raise e ensure Appsignal::Transaction.complete_current! end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
appsignal-1.3.6 | lib/appsignal/rack/streaming_listener.rb |
appsignal-1.3.6.beta.1 | lib/appsignal/rack/streaming_listener.rb |