I am trying to setup instana according to: https://www.instana.com/docs/ecosystem/python/ where I:
- pip install instana
- export AUTOWRAPT_BOOTSTRAP=instana
Everything seems to be working except that I am no longer able to pass command line arguments to python scripts.
Given a script file test.py:
import sys
print(sys.argv)
when I run from the command line:
the output is empty list instead of passed arguments.
If I don't set: AUTOWRAPT_BOOTSTRAP=instana instana is not starting and everything is working fine.
python version is 3.8 run as a virtualenv