You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Future2100 I have used kubectl-trace to trace Rust, usual rules of thumb apply:
if you are trying to trace something compiled under --release make sure to keep debug symbols
If your stack traces have missing frames, make sure you have frame pointers on with RUSTFLAGS=-Cforce-frame-pointers=yes
Rust mangles symbols as it has to map a more complex feature set onto a simpler one - if you know a-priori what functions/symbols you may be interested in inspecting try the #[no_mangle] attribute
Is there any tutorial about how to use it in rust?
The text was updated successfully, but these errors were encountered: