Class: Appsignal::Grape::Middleware Private
- Inherits:
-
Grape::Middleware::Base
- Object
- Grape::Middleware::Base
- Appsignal::Grape::Middleware
- Defined in:
- lib/appsignal/integrations/grape.rb
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.
Instance Method Summary collapse
- #call(env) ⇒ Object private
- #call_with_appsignal_monitoring(env) ⇒ Object private
Instance Method Details
#call(env) ⇒ Object
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.
8 9 10 11 12 13 14 |
# File 'lib/appsignal/integrations/grape.rb', line 8 def call(env) if Appsignal.active? call_with_appsignal_monitoring(env) else app.call(env) end end |
#call_with_appsignal_monitoring(env) ⇒ Object
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.
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
# File 'lib/appsignal/integrations/grape.rb', line 16 def call_with_appsignal_monitoring(env) request = ::Rack::Request.new(env) transaction = Appsignal::Transaction.create( SecureRandom.uuid, Appsignal::Transaction::HTTP_REQUEST, request ) begin app.call(env) rescue Exception => error # rubocop:disable Lint/RescueException # Do not set error if "grape.skip_appsignal_error" is set to `true`. transaction.set_error(error) unless env["grape.skip_appsignal_error"] raise error ensure request_method = request.request_method.to_s.upcase path = request.path # Path without namespaces endpoint = env["api.endpoint"] if endpoint && endpoint. = endpoint. request_method = [:method].first.to_s.upcase klass = [:for] namespace = endpoint.namespace namespace = "" if namespace == "/" path = [:path].first.to_s path = "/#{path}" if path[0] != "/" path = "#{namespace}#{path}" transaction.set_action_if_nil("#{request_method}::#{klass}##{path}") end transaction.set_http_or_background_queue_start transaction.("path", path) transaction.("method", request_method) Appsignal::Transaction.complete_current! end end |