Method: Honeybadger::Agent#exception_fingerprint

Defined in:
lib/honeybadger/agent.rb

#exception_fingerprintObject

DEPRECATED: Callback to add a custom grouping strategy for exceptions. The return value is hashed and sent to Honeybadger. Errors with the same fingerprint will be grouped.

See public API documentation for Notice for available attributes.

Examples:

Honeybadger.exception_fingerprint do |notice|
  [notice.error_class, notice.component, notice.backtrace.to_s].join(':')
end

Yield Returns:

  • (#to_s)

    The fingerprint of the error.

[View source]

503
# File 'lib/honeybadger/agent.rb', line 503

def_delegator :config, :exception_fingerprint