Sha256: 5d3fac3f58d311d4c395a6db653ae460184e14ca65a5fed48defc88255caba7b
Contents?: true
Size: 1.88 KB
Versions: 5
Compression:
Stored size: 1.88 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 = app @options = 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 = Appsignal.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
5 entries across 5 versions & 1 rubygems