-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
chore(aci): log action ids we'd fire in workflow engine #93480
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
Conversation
🔍 Existing Issues For ReviewYour pull request is modifying functions with the following pre-existing issues: 📄 File: src/sentry/workflow_engine/processors/delayed_workflow.py
Did you find this useful? React with a 👍 or 👎 |
logger.info( | ||
"workflow_engine.triggered_actions", | ||
extra={ | ||
"detector_id": detector.id, | ||
"action_ids": [action.id for action in actions], | ||
"event_data": asdict(event_data), | ||
}, | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should this also include the action and detector types to help with filtering? (that'd mean putting it in the for
loop below.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for now i'm ok having this be just ids, i will be setting up some tests that will trigger 1 workflow
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 #93480 +/- ##
=======================================
Coverage 88.03% 88.03%
=======================================
Files 10294 10294
Lines 593836 593815 -21
Branches 23044 23044
=======================================
- Hits 522768 522751 -17
+ Misses 70619 70615 -4
Partials 449 449 |
Suspect IssuesThis pull request was deployed and Sentry observed the following issues:
Did you find this useful? React with a 👍 or 👎 |
I would like to be able to see which actions we would fire in workflow engine (post-process and delayed processing)