Method: NewRelic::Agent::Transaction#had_error_affecting_apdex?

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

#had_error_affecting_apdex?Boolean

Returns:

  • (Boolean)
[View source]

818
819
820
821
822
# File 'lib/new_relic/agent/transaction.rb', line 818

def had_error_affecting_apdex?
  @exceptions.each.any? do |exception, options|
    NewRelic::Agent.instance.error_collector.error_affects_apdex?(exception, options)
  end
end