SDK Fingerprinting

All events have a fingerprint. Events with the same fingerprint are grouped together into an issue.

By default, Sentry will run one of our built-in grouping algorithms to generate a fingerprint based on information available within the event such as stacktrace, exception, and message. To extend the default grouping behavior or change it completely, you can use a combination of the following options:

  1. In your SDK, using SDK Fingerprinting, as documented below
  2. In your project, using Fingerprint Rules or Stack Trace Rules

In supported SDKs, you can override Sentry's default grouping that passes the fingerprint attribute as an array of strings. The length of a fingerprint's array is not restricted. This works similarly to the fingerprint rules functionality, which is always available and can achieve similar results.

In the most basic case, values are passed directly:

Copied
def do_something(action_name)
  # some code
rescue => exception
  Sentry.capture_exception(exception, fingerprint: [__method__, action_name])
end

You can use variable substitution to fill dynamic values into the fingerprint generally computed on the server. For instance, the value {{ default }} can be added to add the entire normally generated grouping hash into the fingerprint. These values are the same as for server-side fingerprinting. See Variables for more information.

In some scenarios, you'll want to group errors more granularly.

For example, if your application queries a Remote Procedure Call Model (RPC) interface or external Application Programming Interface (API) service, the stack trace is generally the same, even if the outgoing request is very different.

The following example will split up the default group Sentry would create (represented by {{ default }}) further, taking some attributes on the error object into account:

Copied
class RPCError < StandardError
  attr_reader :code, :function_name, :message

  def initialize(code, function_name, message)
    @code = code
    @function_name = function_name
    @message = message
  end
end

Sentry.init do |config|
  # ...
  config.before_send = lambda do |event, hint|
    exception = hint[:exception]

    if exception.is_a?(RPCError)
      event.fingerprint = ["{{default}}", exception.code, exception.function_name]
    end

    event
  end
end

You can also overwrite Sentry's grouping entirely.

For example, if a generic error, such as a database connection error, has many different stack traces and never groups them together, you can overwrite Sentry's grouping by omitting {{ default }} from the array:

Copied
Sentry.init do |config|
  #...
  config.before_send = lambda do |event, hint|
    if hint[:exception].is_a?(ActiveRecord::ConnectionTimeoutError)
      event.fingerprint = ["database-connection-error"]
    end

    event
  end
end
Help improve this content
Our documentation is open source and available on GitHub. Your contributions are welcome, whether fixing a typo (drat!) or suggesting an update ("yeah, this would be better").