Method: NewRelic::Agent::Transaction.merge_untrusted_agent_attributes

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

.merge_untrusted_agent_attributes(attributes, prefix, default_destinations) ⇒ Object


189
190
191
192
193
194
195
# File 'lib/new_relic/agent/transaction.rb', line 189

def self.merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
  if txn = tl_current
    txn.merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
  else
    NewRelic::Agent.logger.debug('Attempted to merge untrusted attributes without transaction')
  end
end