-
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
Tracepoint #508
base: master
Are you sure you want to change the base?
Tracepoint #508
Conversation
d54b806
to
5e1dd33
Compare
e481527
to
2b03816
Compare
13acd7e
to
1daf271
Compare
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.
there are still no unit tests for any of the new functionality - we need both! i.e. tests for the new behavior of showing tracepoint events in the model, and tests for the favorite.
we also cannot yet undo a favorite action, i.e. remove a favorite
505cf1e
to
150e3e3
Compare
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.
hey @lievenhey - I cleaned up the remaining nits and played around with this. It definitely goes into the right direction.
but there is more work remaining to make this actually useful:
the biggest issue is that all tracepoints for all threads and processes are lumped together into a single row - that is pretty useless.
the way I see it, our "Event Sources" should become a combo box that allows multi-selection. Then, each of these event sources will get one row below the CPU or Thread group.
The proxy should then flatten this, if just a single cost is selected - i.e. such that we keep the view as-is for data files that don't contain any extra tracepoint data.
Right now with your proposed patch here, one can have "Event Source: " and then we'd see the per-thread tracepoints and then one more row with all tracepoints clumped together 🤷 that's not useful
additionally, the tooltips shown in the event delegate are wrong when hovering a tracepoint event, because it only looks at the events of the selected source type, meaning tracepoints are never considered.
once those things are fixed, I am OK with merging this work as a stepping stone. the following steps will then be:
- time measurement between enter/exit similar to off-CPU time
- somehow making sure that the favorite rows are always shown, independent of the vertical current scroll position - potentially through a second view?
0506b95
to
52dc89b
Compare
using a second view is most likely the easiest option since |
Agreed, we just need to sync the views and show just a single header somehow. But this should/ could be done in a follow-up patch and doesn't necessarily block integration of the work here as long as the other important issues are resolved. |
Is this still in a draft state? It seems that new testcases are now available (but failing) are there still missing ones? |
f0ef9d6
to
a042f06
Compare
@milianw I finally found some time to work in this. Can you check if it to your satisfaction? |
4fafd04
to
8b63f7d
Compare
9fa7c07
to
a05cc6d
Compare
are you sure you pushed the correct work? I don't think you attended the issue I raised above, namely:
I just checked out your branch, rebased it on master and ran it on data I obtained with
The result is still a single list of tracepoints across all threads, which is not useful. What's worse, some threads are suddenly showing up multiple times in the timelines above? |
48c9f49
to
e80f5f6
Compare
Ok, fixed that. Now all events are shown in one line (before there was one line per even type).
|
Since we use QSortFilterProxyModel we get this for free. This patch adds support for regex search by not escaping the search term if it is prefix with %. For the flamegraph there is a custom implementation, which changes the current QString::contains to a QRegularExpression::match call. Closes: #508
3c12c0a
to
c2720e3
Compare
The tracepoints are getting a better visual representation on the timelinewidget so this is no longer necessary.
Move the tracepoints from TimeAxisHeaderView to TimeLineWidget so that we can use the header for cpu usage. This also improves usability since the tracepoints are no longer bundles in one line. They now each have their own line.
Enum automatically counts up so there is no need to manually set these values.
this allows the user to group important timelines together so that he can compare them better
c2720e3
to
adf4a37
Compare
The favourites and tracepoint patches include some rows in the model that may be empty. To keep the code simple an readable all rows will be shown. Then a proxy model is put ontop to remove empty rows.
This way we can more easily find them and changing the sort order doesn't move them to the bottom.
Showing only one cost is fine if we only show a hardware event, but since we now support tracepoints and some come in an enter/exit pair it requires us to rework the timeline delegate. This patch makes the event source combobox multi select and allows to select multiple event sources.
adf4a37
to
89f14ee
Compare
Show tracepoints in TimeLineWidget