module NewRelic::Agent::Instrumentation::Sinatra::TransactionNamer
Constants
- SINATRA_ROUTE
Public Instance Methods
Source
# File lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb, line 41 def http_verb(request) request.request_method if request.respond_to?(:request_method) end
Source
# File lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb, line 24 def initial_transaction_name(request) transaction_name(::NewRelic::Agent::UNKNOWN_METRIC, request) end
Source
# File lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb, line 47 def route_for_sinatra(env) env['newrelic.last_route'] end
For bare Sinatra
, our override on process_route captures the last route into the environment for us to use later on
Source
# File lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb, line 53 def route_name_for_padrino(request) request.route_obj.original_path rescue nil end
For Padrino
, the request object has a copy of the matched route on it when we go to evaluating, so we can just retrieve that
Source
# File lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb, line 28 def transaction_name(route_text, request) verb = http_verb(request) route_text = route_text.source if route_text.is_a?(Regexp) name = route_text.gsub(%r{^[/^\\A]*(.*?)[/\$\?\\z]*$}, '\1') name = NewRelic::ROOT if name.empty? name = "#{verb} #{name}" unless verb.nil? name rescue => e ::NewRelic::Agent.logger.debug("#{e.class} : #{e.message} - Error encountered trying to identify Sinatra transaction name") ::NewRelic::Agent::UNKNOWN_METRIC end
Source
# File lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb, line 14 def transaction_name_for_route(env, request) if env.key?(SINATRA_ROUTE) env[SINATRA_ROUTE] else name = route_for_sinatra(env) name = route_name_for_padrino(request) if name.nil? transaction_name(name, request) unless name.nil? end end