-
Notifications
You must be signed in to change notification settings - Fork 16
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
Python files can be recorded #352
Comments
TitleEnable AppMap to record individual Python files specified in ProblemThe current implementation of AnalysisAppMap is designed to record function executions, HTTP requests, and database transactions in supported languages through dynamic instrumentation. For To resolve this, we need to modify the configuration and file loading mechanisms to detect and instrument individual Python files if their
Proposed Changes
Detailed Implementation
SummaryThis update will enable By implementing these changes, users will gain the enhanced ability to record and analyze simpler Python projects or specific Python scripts, improving the flexibility and usability of AppMap. |
appmap-python
currently refuses to record Python code that isn't in a module. This is a barrier to getting the desired data in some cases, especially for simple projects.If the
path
setting in appmap.yml matches the name of a Python file, that file should be instrumented.The text was updated successfully, but these errors were encountered: