-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
Seems u* tools never work with namespaced processs #5127
Comments
there are already some explanations. The python binary is not built with --with-dtrace or --enable-dtrace. |
@yonghong-song what I tested with bpftrace bpftrace -e 'usdt:/proc/146304/root/usr/lib/libpython3.8-pyston2.3.so.1.0:python:function__entry { printf("%s %s\n", probe, str(arg0)); }' it works without problem |
Maybe you can debug more by yourself from source?
|
from my attempt the and I also tried to make it to be
I guess I can check how the bpftrace does but the function What I tried is do the below again
and check this with another bpftrace session
what the |
Hi, trying to tracing python USDT wiith u*tools but stucked,
Chaning probe path is work with uprobe but seems it never work with USDT
updating the ucalls source
Tried wth
/proc/146304/root/usr/lib/libpython3.8-pyston2.3.so.1.0:python:function__entry"
too which frombpftrace -l
but no helpAny point to check? : (
The text was updated successfully, but these errors were encountered: