-
-
Notifications
You must be signed in to change notification settings - Fork 1
Module call events #59
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
design-docs/adr/0014-module-call-event-naming.md: design-docs/module-call-event-naming-implementation-plan.md: Signed-off-by: Tzanko Matev <[email protected]>
codetracer-python-recorder/src/lib.rs: codetracer-python-recorder/src/module_identity.rs: codetracer-python-recorder/src/runtime/activation.rs: codetracer-python-recorder/src/runtime/tracer/events.rs: codetracer-python-recorder/src/runtime/tracer/io.rs: codetracer-python-recorder/src/trace_filter/engine.rs: design-docs/module-call-event-naming-implementation-plan.status.md: Signed-off-by: Tzanko Matev <[email protected]>
codetracer-python-recorder/src/runtime/tracer/events.rs: codetracer-python-recorder/src/runtime/tracer/runtime_tracer.rs: design-docs/module-call-event-naming-implementation-plan.status.md: Signed-off-by: Tzanko Matev <[email protected]>
codetracer-python-recorder/README.md: codetracer-python-recorder/src/runtime/tracer/runtime_tracer.rs: codetracer-python-recorder/tests/python/test_monitoring_events.py: design-docs/module-call-event-naming-implementation-plan.status.md: Signed-off-by: Tzanko Matev <[email protected]>
codetracer-python-recorder/CHANGELOG.md: design-docs/module-call-event-naming-implementation-plan.status.md: Signed-off-by: Tzanko Matev <[email protected]>
Coverage SummaryRust (lines)
Python (statements)
Generated automatically via |
|
@codex review |
|
Codex Review: Didn't find any major issues. Another round soon, please! ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
If Codex has suggestions, it will comment; otherwise it will react with 👍. Codex can also answer questions or update the PR. Try commenting "@codex address that feedback". |
Before each "Call" event in our trace which corresponds to a module initialisation would contain a function name ''. This had two problems:
With this change we replace this string with the module name. Note, we currently have issues deriving the module name, that will be resolved in future PRs