-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
feat(source-map-issues): Adding group id and title as attr to processing error trace item #112387
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1277,7 +1277,9 @@ def process_processing_errors_eap(job: PostProcessJob) -> None: | |
|
|
||
| from sentry.processing_errors.eap.producer import produce_processing_errors_to_eap | ||
|
|
||
| produce_processing_errors_to_eap(event.project, event.data, processing_errors) | ||
| produce_processing_errors_to_eap( | ||
| event.project, event.data, processing_errors, group_id=event.group_id, title=event.title | ||
| ) | ||
|
Comment on lines
+1280
to
+1282
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think the group id should already be available in the occurrence data, are you sure that you need this?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @wedamija We'd have the source map issue's group_id in the occurrence data, instead of the the group_id of the sample events that triggered detection |
||
|
|
||
|
|
||
| def process_processing_issue_detection(job: PostProcessJob) -> None: | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.