-
Notifications
You must be signed in to change notification settings - Fork 520
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ref(grouping): Add project_root
to debug_meta
in event
#3941
base: master
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. Additional details and impacted files@@ Coverage Diff @@
## master #3941 +/- ##
==========================================
- Coverage 80.17% 80.16% -0.01%
==========================================
Files 139 139
Lines 15394 15397 +3
Branches 2596 2597 +1
==========================================
+ Hits 12342 12343 +1
- Misses 2207 2209 +2
Partials 845 845
|
caaf3cf
to
6caf359
Compare
@getsentry/ingest Could you folks have a look if TL;DR: We are moving some of the in-app detection logic for stack frames from the SDK to the server, see getsentry/sentry#83603. In order to do this, the server needs to know the |
In my testing I've discovered that in order for this to work, I'm also going to have to update Relay. (There's a catch-all UPDATE: I'm going to assume for now that |
|
It's not really an SDK option, though. Yes, you can set it manually, but the more usual case is that the SDK just calls
Do we actually scrub |
At least it can be scrubbed by Advanced Data Scrubbing rules. |
As part of the "Incorporate any internal logic from the SDK in the server-side grouping config" task from getsentry/sentry#83603, this sends the
project_root
value in the outgoing payload, underdebug_meta
. This will allow the sentry server to replicate the logic here.Note to reviewers: If there's a better place to put it, please let me know. If
debug_meta
is a good spot, we'll need to also make a PR to Relay to addproject_root
as a recognized entry. (I have the change in a branch, but won't push it until we decide.)