-
Notifications
You must be signed in to change notification settings - Fork 752
Fix parsing issues and add support for additional events to the Linux perf text file parser #2286
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
Conversation
Handle some parsing edge cases and add support for disk IO events
Fix issues with previous change
Add support for sched:sched_wakeup event
Add perfview event processing for process_exec
Fix style issue
Add test for sched:exec_process
Add support for IRQ events
brianrob
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@thooot, thank you very much. This looks great.
| exit = ReadExit(source); | ||
| source.SkipUpTo('\n'); | ||
| ScheduleSwitch schedSwitch = ReadScheduleSwitch(source); | ||
| IEnumerable<Frame> frames = ReadFramesForSample(processCommand, pid, tid, threadTimeFrame, source); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need to change in this PR - I think we should consider if there is a nice pattern we can employ here to ensure that the call to read the stack happens automatically for all event types.
|
/azp run |
|
Azure Pipelines successfully started running 1 pipeline(s). |
This improves parsing support for more complex perf traces including ones where:
It also adds support for the following event types: