Class: Appsignal::Rack::PathableBodyWrapper Private

Inherits:
EnumerableBodyWrapper show all
Defined in:
lib/appsignal/rack/body_wrapper.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Having "to_path" on a body allows Rack to serve out a static file, or to pass that file to the downstream webserver for sending using X-Sendfile

Constant Summary

Constants inherited from BodyWrapper

BodyWrapper::IGNORED_ERRORS

Instance Method Summary collapse

Methods inherited from EnumerableBodyWrapper

#each

Methods inherited from BodyWrapper

#close, #initialize, #method_missing, #respond_to_missing?, wrap

Constructor Details

This class inherits a constructor from Appsignal::Rack::BodyWrapper

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Appsignal::Rack::BodyWrapper

Instance Method Details

#to_pathObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



155
156
157
158
159
160
161
162
163
164
165
166
167
# File 'lib/appsignal/rack/body_wrapper.rb', line 155

def to_path
  Appsignal.instrument(
    "process_response_body.rack",
    "Process Rack response body (#to_path)"
  ) do
    @body.to_path
  end
rescue *IGNORED_ERRORS # Do not report
  raise
rescue Exception => error # rubocop:disable Lint/RescueException
  @transaction.set_error(error)
  raise error
end