We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d67eef commit 637f6fdCopy full SHA for 637f6fd
src/sentry/apiEventIntegration.js
@@ -25,7 +25,12 @@ const apiEventIntegration: Integration = {
25
if (!event.fingerprint) {
26
event.fingerprint = ['{{ default }}'];
27
}
28
- event.fingerprint.push(exception.code, exception.httpStatus.toString());
+ event.fingerprint.push(
29
+ exception.call.route,
30
+ exception.call.method,
31
+ exception.code,
32
+ exception.httpStatus.toString(),
33
+ );
34
35
// These are for humans, not for computers.
36
if (!event.extra) {
0 commit comments