class Airbrake::Rack::RequestBodyFilter

def call(notice)

Other tags:
    See: Airbrake::FilterChain#refine -
def call(notice)
  return unless (request = notice.stash[:rack_request])
  return unless request.body
  notice[:environment][:body] = request.body.read(@length)
  request.body.rewind
end