I’ve modified the beforeSend
event of Sentry’s React SDK to achieve 1 event per 1 issue. That means no events will be ever grouped in an issue. I’ve done this since events can’t be resolved individually. Will it increase my billing? and is it a bad approach?
I used the event_id as the fingerprint to achieve 1 event per 1 issue:
beforeSend: (event, hint) => {
event['fingerprint'] = event.event_id;
return event;
},