After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 636343 - Use libdazzle graph for less CPU usage
Use libdazzle graph for less CPU usage
Status: RESOLVED OBSOLETE
Product: system-monitor
Classification: Core
Component: resources
2.28.x
Other Linux
: Normal enhancement
: ---
Assigned To: System-monitor maintainers
System-monitor maintainers
: 550708 692850 (view as bug list)
Depends on:
Blocks: 568985
 
 
Reported: 2010-12-03 04:56 UTC by Jean-François Fortin Tam
Modified: 2018-05-22 12:08 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Jean-François Fortin Tam 2010-12-03 04:56:30 UTC
The resources graph eats a lot of CPU on most machines, compared to https://github.com/chergert/uber-graph

Have you considered using that instead?
Comment 1 Chris Kühl 2011-11-25 10:16:44 UTC
Well, we can't use this as a drop-in replacement as it's currently Linux only according to the github readme. but I'd accept a patch that enables this for Linux.
Comment 2 Christian Hergert 2011-11-27 08:07:07 UTC
The uber graph implementations where less than perfect. The proper design went into perfkit, at https://github.com/chergert/perfkit/tree/master/perfkit-profiler. Sadly, it is quite tightly coupled to perfkit.

The important parts are:

  perfkit-profiler/ppg-rt-graph.c
  perfkit-profiler/ppg-renderer.c
  perfkit-profiler/ppg-renderer-line.c
  perfkit-profiler/ppg-visualizer.c
  perfkit-profiler/ppg-visualizer-simple.c
  perfkit/pk-model.c
  perfkit/pk-model-memory.c

As you can see, it's significantly over-abstracted for the use of gnome-system-monitor. I can look at ripping it out into something smaller, but I wont have the time for at least a few weeks.
Comment 3 Robert Roth 2012-01-08 17:22:06 UTC
I’m afraid not the graph drawing is consuming CPU, but updating the process list. A simple experiment to check this: open top to monitor System monitor CPU usage (kindoff funny  ), and change the processes to view from All processes to My processes then to Active processes. As the active processes list contains less processes than My processes, GSM consumes less CPU when set to show only active processes.

But this is only my guess, please mention any evidence you have to prove that the resource-consuming stuff is the graph drawing.
Comment 4 Jean-François Fortin Tam 2012-01-08 18:29:35 UTC
Easy enough. Use "top" to measure. The "My processes" list uses 5% CPU, the "All processes" list uses 5% CPU too. As soon as you switch to the Resources (graph) tab and let it sit there until the graph is filled, it jumps to 18%+ CPU usage.

This is on a Core2 Quad (Q9300) by the way. On a weaker machine, numbers will be even more impressive.

Note that you must start with the process list, not the resources tab. As soon as you display the resources tab, even if you switch back to another tab, the cpu usage will continue because it keeps updating the graph.
Comment 5 Robert Roth 2012-01-08 18:44:05 UTC
@Jean-François Fortin Tam: Fair enough, I did not wait until the graphs get filled. With the graphs filled, I also get around 16% (Core2 Quad Q8300). However for me Active processes top shows 2-4% CPU usage (2-3 processes shown), My processes shows 20-30%, All processes uses 30-40%. So these are two different issues (this issue for Resource graphs CPU usage, and another one for the Process list CPU usage).

I'll try to profile the code to find out the bottlenecks in these spots and check whether it's really the graph drawing or processing the information retrieved from libgtop, or something else.
Comment 6 Robert Roth 2012-01-08 19:31:49 UTC
I have profiled GNOME system monitor using callgrind, and lot of time is spent in cairo_curve_to (to draw the smooth bezier curves with cairo), but the exactly same method is used to draw the bezier curves in uber-graph and perfkit profiler renderer, so we can only tell whether there is a difference if someone implements a patch for using ubergraph/perfkit profiler renderer.

As an experiment, I have replaced cairo_curve_to with cairo_line_to (and the graphs loose their smoothness caused by drawing the beziers) and system monitor usage falls from 16% to 1-3%.
Comment 7 Christian Hergert 2012-01-09 00:11:27 UTC
If you aren't going to read the code I provided that shows how to solve this problem, please at least read the write-ups[1][2][3] that talk about the evolution of incrementally speeding up this type of widget. It is *significantly* faster than GSM, while also at least doubling the framerate. I have no problem doing 60 fps here with less CPU than GSM.

[1] http://audidude.com/?p=404
[2] http://audidude.com/?p=470
[3] http://audidude.com/?p=527
Comment 8 Robert Roth 2012-01-09 00:51:09 UTC
@Christian Hergert: Actually I have checked the code, and seen that it also uses cairo_curve_to which looks like something playing a major role in eating CPU time. I didn't say it will not improve system monitor, only that we will see the benefits only after it's integrated in GSM, which seems like will take time (both on the perfkit side to split out the charting code as you have mentioned and on the GSM side to integrate it).
And sorry about not reading the write-ups, I would've read them, but unfortunately I'm bad at searching and the obvious search queries (realtime graphs gtk) did not work, showed only seemingly irrelevant pages at first sight, and so did the cairo examples site (http://cairographics.org/examples/). Thanks for the links anyway, an intesting read, I hope someone (or I) will have the time to integrate it into GSM.
Comment 9 Christian Hergert 2012-01-09 02:52:46 UTC
@Robert Roth: The first thing, would be to avoid having to draw the lines on every frame. That right there will be a 15x improvement on a 15 FPS animation. Doing this will also let the frame-rate go up closer to 60 FPS for smoother animations without significant overhead.

The ring-buffer stuff was nice, but will be much less than the above.
Comment 10 André Klapper 2012-02-26 10:46:17 UTC
[Adding missing "QA Contact" entry so system monitor bug report changes can still be watched via the "Users to watch" list on https://bugzilla.gnome.org/userprefs.cgi?tab=email when the assignee is changed to an individual.]
Comment 11 Robert Roth 2012-08-10 21:35:10 UTC
I have just checked the system monitor demo from https://github.com/chergert/uber-graph, which runs blazingly fast (on my quad core pc system monitor resources graph uses around 20% cpu in top, while the uber-graph system monitor data uses at most 1-2%), so it's clearly worth using uber-graph. 
A great idea Christian Hergert, the uber-graph author had in terms of UI, to be able to hide/show color selectors for a given graph by clicking the chart. This will help users see more detailed chart, use vertical space optimally, but still have color selection and labels handy if they need it.
Comment 12 Christian Hergert 2012-08-10 23:42:27 UTC
John Stowers and I have been working on making this a real library that can be used. I still need to bring over some work from the now defunct perfkit effort I did. Once the library is ready, I can work on some patches for this.
Comment 13 Robert Roth 2013-02-04 23:16:37 UTC
@chergert: any update on making uber-graph a real library, which could be used here?
Comment 14 Robert Roth 2013-06-28 19:41:36 UTC
*** Bug 692850 has been marked as a duplicate of this bug. ***
Comment 15 Robert Roth 2013-08-02 06:25:29 UTC
*** Bug 550708 has been marked as a duplicate of this bug. ***
Comment 16 Robert Roth 2013-08-02 08:49:32 UTC
*** Bug 568985 has been marked as a duplicate of this bug. ***
Comment 17 Robert Roth 2018-02-10 11:30:54 UTC
Ok, I see uber-graph became sortof part of libdazzle, so let's use the graph widget of libdazzle. Updating the title accordingly.
Comment 18 Christian Hergert 2018-02-10 22:26:47 UTC
One thing I never finished in libdazzle that I had prototyped in uber-graph was the ability to do incremental updates to the backing surface (so you only draw 1-3 data points for every new collection).

So currently the code draws a new graph for each collection (generally 1-2x per second depending on your needs).

Further more, we update on the frame-clock, so reaching 60fps is possible for a smooth graph. But this also comes with additional CPU usage since you wake up on every frame.

Further more, I see even more usage on Wayland than I did on Xorg where we got nice GPU-side surfaces which were fast to 2d blit.

I my ideal long term goal would be to rewrite this as a GL/vulkan shader, and only upload the series of datapoints that need to be drawn (as texture data).
Comment 19 GNOME Infrastructure Team 2018-05-22 12:08:32 UTC
-- GitLab Migration Automatic Message --

This bug has been migrated to GNOME's GitLab instance and has been closed from further activity.

You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.gnome.org/GNOME/gnome-system-monitor/issues/31.