-
Notifications
You must be signed in to change notification settings - Fork 257
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
FR Inspection of individual trace events with their respective parameters #667
Comments
Indeed, a table view for trace events with arguments would be nice to have. I don't think that is useful for samples though, or? I updated the title accordingly |
I cannot give you such an estimate without spending more time on this myself. we'd need to understand how tools like you'd have to read the remaining data from the
the following data is written in
so, if you would just read this in and forward it to the GUI. then it becomes a question how to store the results efficiently, probably needs some interning here and there. then, ideally we'd find a way to put the data into the |
I am recording sys_enter_futex_time32 and sys_exit_futex_time32 events and I am interested in the call parameters, so that I can better understand which futexes are locked/unlocked.
Recording with
perf record -e syscalls:sys_enter_futex_time32,syscalls:sys_exit_futex_time32 -o perf.data
and printing to a log withperf script -i perf.data > perf_script.log
I can see these parameters. It would be nice to see them in Hotspot too.Thanks for the tool, it's incredible useful.
The text was updated successfully, but these errors were encountered: