Method: NewRelic::Agent::Transaction#promoted_transaction_name

Defined in:
lib/new_relic/agent/transaction.rb

End common interface

[View source]

391
392
393
394
395
396
397
# File 'lib/new_relic/agent/transaction.rb', line 391

def promoted_transaction_name(name)
  if name.start_with?(MIDDLEWARE_PREFIX)
    "#{CONTROLLER_PREFIX}#{name}"
  else
    name
  end
end