diff options
| author | Paul Buetow <paul@buetow.org> | 2025-07-09 00:54:07 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-07-09 00:54:07 +0300 |
| commit | 24636ef8fc5fc11e878a11fb8ae821d8e7d0a269 (patch) | |
| tree | 1094e8ead64ecaed2da77c126a1386bcfd61d68c /about/showcase/ior | |
| parent | cbc7ebcde06e453235ab5ea1b66f754c560e3a7f (diff) | |
Update content for md
Diffstat (limited to 'about/showcase/ior')
| -rw-r--r-- | about/showcase/ior/image-1.png | bin | 0 -> 46683 bytes | |||
| -rw-r--r-- | about/showcase/ior/image-2.svg | 12270 |
2 files changed, 12270 insertions, 0 deletions
diff --git a/about/showcase/ior/image-1.png b/about/showcase/ior/image-1.png Binary files differnew file mode 100644 index 00000000..157df174 --- /dev/null +++ b/about/showcase/ior/image-1.png diff --git a/about/showcase/ior/image-2.svg b/about/showcase/ior/image-2.svg new file mode 100644 index 00000000..9c7d98c6 --- /dev/null +++ b/about/showcase/ior/image-2.svg @@ -0,0 +1,12270 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg version="1.1" width="1200" height="310" onload="init(evt)" viewBox="0 0 1200 310" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> +<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. --> +<!-- NOTES: --> +<defs> + <linearGradient id="background" y1="0" y2="1" x1="0" x2="0" > + <stop stop-color="#eeeeee" offset="5%" /> + <stop stop-color="#eeeeb0" offset="95%" /> + </linearGradient> +</defs> +<style type="text/css"> + text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); } + #search, #ignorecase { opacity:0.1; cursor:pointer; } + #search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; } + #subtitle { text-anchor:middle; font-color:rgb(160,160,160); } + #title { text-anchor:middle; font-size:17px} + #unzoom { cursor:pointer; } + #frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; } + .hide { display:none; } + .parent { opacity:0.5; } +</style> +<script type="text/ecmascript"> +<![CDATA[ + "use strict"; + var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn; + function init(evt) { + details = document.getElementById("details").firstChild; + searchbtn = document.getElementById("search"); + ignorecaseBtn = document.getElementById("ignorecase"); + unzoombtn = document.getElementById("unzoom"); + matchedtxt = document.getElementById("matched"); + svg = document.getElementsByTagName("svg")[0]; + searching = 0; + currentSearchTerm = null; + + // use GET parameters to restore a flamegraphs state. + var params = get_params(); + if (params.x && params.y) + zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]'))); + if (params.s) search(params.s); + } + + // event listeners + window.addEventListener("click", function(e) { + var target = find_group(e.target); + if (target) { + if (target.nodeName == "a") { + if (e.ctrlKey === false) return; + e.preventDefault(); + } + if (target.classList.contains("parent")) unzoom(true); + zoom(target); + if (!document.querySelector('.parent')) { + // we have basically done a clearzoom so clear the url + var params = get_params(); + if (params.x) delete params.x; + if (params.y) delete params.y; + history.replaceState(null, null, parse_params(params)); + unzoombtn.classList.add("hide"); + return; + } + + // set parameters for zoom state + var el = target.querySelector("rect"); + if (el && el.attributes && el.attributes.y && el.attributes._orig_x) { + var params = get_params() + params.x = el.attributes._orig_x.value; + params.y = el.attributes.y.value; + history.replaceState(null, null, parse_params(params)); + } + } + else if (e.target.id == "unzoom") clearzoom(); + else if (e.target.id == "search") search_prompt(); + else if (e.target.id == "ignorecase") toggle_ignorecase(); + }, false) + + // mouse-over for info + // show + window.addEventListener("mouseover", function(e) { + var target = find_group(e.target); + if (target) details.nodeValue = "Function: " + g_to_text(target); + }, false) + + // clear + window.addEventListener("mouseout", function(e) { + var target = find_group(e.target); + if (target) details.nodeValue = ' '; + }, false) + + // ctrl-F for search + // ctrl-I to toggle case-sensitive search + window.addEventListener("keydown",function (e) { + if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { + e.preventDefault(); + search_prompt(); + } + else if (e.ctrlKey && e.keyCode === 73) { + e.preventDefault(); + toggle_ignorecase(); + } + }, false) + + // functions + function get_params() { + var params = {}; + var paramsarr = window.location.search.substr(1).split('&'); + for (var i = 0; i < paramsarr.length; ++i) { + var tmp = paramsarr[i].split("="); + if (!tmp[0] || !tmp[1]) continue; + params[tmp[0]] = decodeURIComponent(tmp[1]); + } + return params; + } + function parse_params(params) { + var uri = "?"; + for (var key in params) { + uri += key + '=' + encodeURIComponent(params[key]) + '&'; + } + if (uri.slice(-1) == "&") + uri = uri.substring(0, uri.length - 1); + if (uri == '?') + uri = window.location.href.split('?')[0]; + return uri; + } + function find_child(node, selector) { + var children = node.querySelectorAll(selector); + if (children.length) return children[0]; + } + function find_group(node) { + var parent = node.parentElement; + if (!parent) return; + if (parent.id == "frames") return node; + return find_group(parent); + } + function orig_save(e, attr, val) { + if (e.attributes["_orig_" + attr] != undefined) return; + if (e.attributes[attr] == undefined) return; + if (val == undefined) val = e.attributes[attr].value; + e.setAttribute("_orig_" + attr, val); + } + function orig_load(e, attr) { + if (e.attributes["_orig_"+attr] == undefined) return; + e.attributes[attr].value = e.attributes["_orig_" + attr].value; + e.removeAttribute("_orig_"+attr); + } + function g_to_text(e) { + var text = find_child(e, "title").firstChild.nodeValue; + return (text) + } + function g_to_func(e) { + var func = g_to_text(e); + // if there's any manipulation we want to do to the function + // name before it's searched, do it here before returning. + return (func); + } + function update_text(e) { + var r = find_child(e, "rect"); + var t = find_child(e, "text"); + var w = parseFloat(r.attributes.width.value) -3; + var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); + t.attributes.x.value = parseFloat(r.attributes.x.value) + 3; + + // Smaller than this size won't fit anything + if (w < 2 * 12 * 0.59) { + t.textContent = ""; + return; + } + + t.textContent = txt; + var sl = t.getSubStringLength(0, txt.length); + // check if only whitespace or if we can fit the entire string into width w + if (/^ *$/.test(txt) || sl < w) + return; + + // this isn't perfect, but gives a good starting point + // and avoids calling getSubStringLength too often + var start = Math.floor((w/sl) * txt.length); + for (var x = start; x > 0; x = x-2) { + if (t.getSubStringLength(0, x + 2) <= w) { + t.textContent = txt.substring(0, x) + ".."; + return; + } + } + t.textContent = ""; + } + + // zoom + function zoom_reset(e) { + if (e.attributes != undefined) { + orig_load(e, "x"); + orig_load(e, "width"); + } + if (e.childNodes == undefined) return; + for (var i = 0, c = e.childNodes; i < c.length; i++) { + zoom_reset(c[i]); + } + } + function zoom_child(e, x, ratio) { + if (e.attributes != undefined) { + if (e.attributes.x != undefined) { + orig_save(e, "x"); + e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10; + if (e.tagName == "text") + e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3; + } + if (e.attributes.width != undefined) { + orig_save(e, "width"); + e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio; + } + } + + if (e.childNodes == undefined) return; + for (var i = 0, c = e.childNodes; i < c.length; i++) { + zoom_child(c[i], x - 10, ratio); + } + } + function zoom_parent(e) { + if (e.attributes) { + if (e.attributes.x != undefined) { + orig_save(e, "x"); + e.attributes.x.value = 10; + } + if (e.attributes.width != undefined) { + orig_save(e, "width"); + e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2); + } + } + if (e.childNodes == undefined) return; + for (var i = 0, c = e.childNodes; i < c.length; i++) { + zoom_parent(c[i]); + } + } + function zoom(node) { + var attr = find_child(node, "rect").attributes; + var width = parseFloat(attr.width.value); + var xmin = parseFloat(attr.x.value); + var xmax = parseFloat(xmin + width); + var ymin = parseFloat(attr.y.value); + var ratio = (svg.width.baseVal.value - 2 * 10) / width; + + // XXX: Workaround for JavaScript float issues (fix me) + var fudge = 0.0001; + + unzoombtn.classList.remove("hide"); + + var el = document.getElementById("frames").children; + for (var i = 0; i < el.length; i++) { + var e = el[i]; + var a = find_child(e, "rect").attributes; + var ex = parseFloat(a.x.value); + var ew = parseFloat(a.width.value); + var upstack; + // Is it an ancestor + if (0 == 0) { + upstack = parseFloat(a.y.value) > ymin; + } else { + upstack = parseFloat(a.y.value) < ymin; + } + if (upstack) { + // Direct ancestor + if (ex <= xmin && (ex+ew+fudge) >= xmax) { + e.classList.add("parent"); + zoom_parent(e); + update_text(e); + } + // not in current path + else + e.classList.add("hide"); + } + // Children maybe + else { + // no common path + if (ex < xmin || ex + fudge >= xmax) { + e.classList.add("hide"); + } + else { + zoom_child(e, xmin, ratio); + update_text(e); + } + } + } + search(); + } + function unzoom(dont_update_text) { + unzoombtn.classList.add("hide"); + var el = document.getElementById("frames").children; + for(var i = 0; i < el.length; i++) { + el[i].classList.remove("parent"); + el[i].classList.remove("hide"); + zoom_reset(el[i]); + if(!dont_update_text) update_text(el[i]); + } + search(); + } + function clearzoom() { + unzoom(); + + // remove zoom state + var params = get_params(); + if (params.x) delete params.x; + if (params.y) delete params.y; + history.replaceState(null, null, parse_params(params)); + } + + // search + function toggle_ignorecase() { + ignorecase = !ignorecase; + if (ignorecase) { + ignorecaseBtn.classList.add("show"); + } else { + ignorecaseBtn.classList.remove("show"); + } + reset_search(); + search(); + } + function reset_search() { + var el = document.querySelectorAll("#frames rect"); + for (var i = 0; i < el.length; i++) { + orig_load(el[i], "fill") + } + var params = get_params(); + delete params.s; + history.replaceState(null, null, parse_params(params)); + } + function search_prompt() { + if (!searching) { + var term = prompt("Enter a search term (regexp " + + "allowed, eg: ^ext4_)" + + (ignorecase ? ", ignoring case" : "") + + "\nPress Ctrl-i to toggle case sensitivity", ""); + if (term != null) search(term); + } else { + reset_search(); + searching = 0; + currentSearchTerm = null; + searchbtn.classList.remove("show"); + searchbtn.firstChild.nodeValue = "Search" + matchedtxt.classList.add("hide"); + matchedtxt.firstChild.nodeValue = "" + } + } + function search(term) { + if (term) currentSearchTerm = term; + if (currentSearchTerm === null) return; + + var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : ''); + var el = document.getElementById("frames").children; + var matches = new Object(); + var maxwidth = 0; + for (var i = 0; i < el.length; i++) { + var e = el[i]; + var func = g_to_func(e); + var rect = find_child(e, "rect"); + if (func == null || rect == null) + continue; + + // Save max width. Only works as we have a root frame + var w = parseFloat(rect.attributes.width.value); + if (w > maxwidth) + maxwidth = w; + + if (func.match(re)) { + // highlight + var x = parseFloat(rect.attributes.x.value); + orig_save(rect, "fill"); + rect.attributes.fill.value = "rgb(230,0,230)"; + + // remember matches + if (matches[x] == undefined) { + matches[x] = w; + } else { + if (w > matches[x]) { + // overwrite with parent + matches[x] = w; + } + } + searching = 1; + } + } + if (!searching) + return; + var params = get_params(); + params.s = currentSearchTerm; + history.replaceState(null, null, parse_params(params)); + + searchbtn.classList.add("show"); + searchbtn.firstChild.nodeValue = "Reset Search"; + + // calculate percent matched, excluding vertical overlap + var count = 0; + var lastx = -1; + var lastw = 0; + var keys = Array(); + for (k in matches) { + if (matches.hasOwnProperty(k)) + keys.push(k); + } + // sort the matched frames by their x location + // ascending, then width descending + keys.sort(function(a, b){ + return a - b; + }); + // Step through frames saving only the biggest bottom-up frames + // thanks to the sort order. This relies on the tree property + // where children are always smaller than their parents. + var fudge = 0.0001; // JavaScript floating point + for (var k in keys) { + var x = parseFloat(keys[k]); + var w = matches[keys[k]]; + if (x >= lastx + lastw - fudge) { + count += w; + lastx = x; + lastw = w; + } + } + // display matched percent + matchedtxt.classList.remove("hide"); + var pct = 100 * count / maxwidth; + if (pct != 100) pct = pct.toFixed(1) + matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%"; + } +]]> +</script> +<rect x="0.0" y="0" width="1200.0" height="310.0" fill="url(#background)" /> +<text id="title" x="600.00" y="24" >I/O Traces (pid,path,tracepoint by count)</text> +<text id="details" x="10.00" y="293" > </text> +<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text> +<text id="search" x="1090.00" y="24" >Search</text> +<text id="ignorecase" x="1174.00" y="24" >ic</text> +<text id="matched" x="1090.00" y="293" > </text> +<g id="frames"> +<g > +<title>/x86_64-redhat-linux (22,150 samples, 2.29%)</title><rect x="1114.7" y="165" width="27.1" height="15.0" fill="rgb(245,97,45)" rx="2" ry="2" /> +<text x="1117.72" y="175.5" >/..</text> +</g> +<g > +<title>enter_newfstat (87 samples, 0.01%)</title><rect x="1179.4" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1182.37" y="143.5" ></text> +</g> +<g > +<title> (367 samples, 0.04%)</title><rect x="1093.1" y="229" width="0.5" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1096.14" y="239.5" ></text> +</g> +<g > +<title>/home (380 samples, 0.04%)</title><rect x="681.6" y="213" width="0.4" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="684.56" y="223.5" ></text> +</g> +<g > +<title>/var (86 samples, 0.01%)</title><rect x="777.2" y="213" width="0.1" height="15.0" fill="rgb(231,130,28)" rx="2" ry="2" /> +<text x="780.17" y="223.5" ></text> +</g> +<g > +<title>/gcc (697 samples, 0.07%)</title><rect x="1090.1" y="181" width="0.9" height="15.0" fill="rgb(234,144,32)" rx="2" ry="2" /> +<text x="1093.10" y="191.5" ></text> +</g> +<g > +<title>/a.out (4,987 samples, 0.52%)</title><rect x="1096.8" y="149" width="6.1" height="15.0" fill="rgb(234,96,32)" rx="2" ry="2" /> +<text x="1099.78" y="159.5" ></text> +</g> +<g > +<title>10802 (117 samples, 0.01%)</title><rect x="98.8" y="245" width="0.2" height="15.0" fill="rgb(245,112,44)" rx="2" ry="2" /> +<text x="101.84" y="255.5" ></text> +</g> +<g > +<title>enter_mmap (190 samples, 0.02%)</title><rect x="879.5" y="213" width="0.3" height="15.0" fill="rgb(240,196,39)" rx="2" ry="2" /> +<text x="882.53" y="223.5" ></text> +</g> +<g > +<title>/share (3,643 samples, 0.38%)</title><rect x="392.0" y="197" width="4.4" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="394.98" y="207.5" ></text> +</g> +<g > +<title>/f4 (82 samples, 0.01%)</title><rect x="1068.1" y="149" width="0.1" height="15.0" fill="rgb(240,145,39)" rx="2" ry="2" /> +<text x="1071.13" y="159.5" ></text> +</g> +<g > +<title>enter_ioctl (92 samples, 0.01%)</title><rect x="758.1" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="761.10" y="79.5" ></text> +</g> +<g > +<title>/memory.pressure (315 samples, 0.03%)</title><rect x="731.5" y="85" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="734.50" y="95.5" ></text> +</g> +<g > +<title>enter_read (606 samples, 0.06%)</title><rect x="29.7" y="165" width="0.8" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="32.75" y="175.5" ></text> +</g> +<g > +<title>enter_newfstat (95 samples, 0.01%)</title><rect x="1180.1" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1183.10" y="143.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="744.9" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="747.92" y="79.5" ></text> +</g> +<g > +<title>/fontconfig (282 samples, 0.03%)</title><rect x="865.7" y="181" width="0.3" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="868.68" y="191.5" ></text> +</g> +<g > +<title>/64 (87 samples, 0.01%)</title><rect x="1050.7" y="149" width="0.1" height="15.0" fill="rgb(232,110,30)" rx="2" ry="2" /> +<text x="1053.68" y="159.5" ></text> +</g> +<g > +<title>/81 (83 samples, 0.01%)</title><rect x="1054.2" y="149" width="0.1" height="15.0" fill="rgb(230,165,28)" rx="2" ry="2" /> +<text x="1057.15" y="159.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="733.4" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="736.43" y="79.5" ></text> +</g> +<g > +<title>/lib (239 samples, 0.02%)</title><rect x="862.4" y="197" width="0.3" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="865.37" y="207.5" ></text> +</g> +<g > +<title>/fortune (1,884 samples, 0.19%)</title><rect x="39.9" y="165" width="2.3" height="15.0" fill="rgb(246,149,46)" rx="2" ry="2" /> +<text x="42.88" y="175.5" ></text> +</g> +<g > +<title>enter_newfstat (87 samples, 0.01%)</title><rect x="1182.2" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1185.20" y="143.5" ></text> +</g> +<g > +<title>/lib (656 samples, 0.07%)</title><rect x="1175.4" y="197" width="0.8" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="1178.39" y="207.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Identity.slice (1,672 samples, 0.17%)</title><rect x="716.4" y="101" width="2.0" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="719.40" y="111.5" ></text> +</g> +<g > +<title>/transactions.db-wal (191 samples, 0.02%)</title><rect x="813.5" y="165" width="0.3" height="15.0" fill="rgb(223,124,20)" rx="2" ry="2" /> +<text x="816.53" y="175.5" ></text> +</g> +<g > +<title>/event3 (98 samples, 0.01%)</title><rect x="774.7" y="181" width="0.1" height="15.0" fill="rgb(245,131,44)" rx="2" ry="2" /> +<text x="777.67" y="191.5" ></text> +</g> +<g > +<title>. (143 samples, 0.01%)</title><rect x="117.4" y="229" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> +<text x="120.43" y="239.5" ></text> +</g> +<g > +<title>/libbpf.a (2,384 samples, 0.25%)</title><rect x="1093.8" y="85" width="2.9" height="15.0" fill="rgb(236,99,34)" rx="2" ry="2" /> +<text x="1096.79" y="95.5" ></text> +</g> +<g > +<title>enter_newfstat (116 samples, 0.01%)</title><rect x="485.0" y="165" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="487.96" y="175.5" ></text> +</g> +<g > +<title>enter_newfstat (88 samples, 0.01%)</title><rect x="1180.4" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1183.43" y="143.5" ></text> +</g> +<g > +<title>/memory.pressure (315 samples, 0.03%)</title><rect x="691.0" y="85" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="693.97" y="95.5" ></text> +</g> +<g > +<title>/f2 (92 samples, 0.01%)</title><rect x="1081.0" y="149" width="0.1" height="15.0" fill="rgb(244,152,42)" rx="2" ry="2" /> +<text x="1083.97" y="159.5" ></text> +</g> +<g > +<title>/usr (726 samples, 0.08%)</title><rect x="1142.9" y="213" width="0.8" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="1145.85" y="223.5" ></text> +</g> +<g > +<title>/libgcc.a (137 samples, 0.01%)</title><rect x="1141.4" y="133" width="0.1" height="15.0" fill="rgb(238,99,36)" rx="2" ry="2" /> +<text x="1144.38" y="143.5" ></text> +</g> +<g > +<title>/smaps (464 samples, 0.05%)</title><rect x="800.1" y="181" width="0.6" height="15.0" fill="rgb(243,145,42)" rx="2" ry="2" /> +<text x="803.10" y="191.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="725.7" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="728.68" y="79.5" ></text> +</g> +<g > +<title>/memory.pressure (315 samples, 0.03%)</title><rect x="756.0" y="85" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="758.99" y="95.5" ></text> +</g> +<g > +<title>/1e (86 samples, 0.01%)</title><rect x="1042.3" y="149" width="0.1" height="15.0" fill="rgb(240,132,38)" rx="2" ry="2" /> +<text x="1045.31" y="159.5" ></text> +</g> +<g > +<title>enter_read (301 samples, 0.03%)</title><rect x="542.1" y="133" width="0.3" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="545.06" y="143.5" ></text> +</g> +<g > +<title>.git (229 samples, 0.02%)</title><rect x="872.7" y="229" width="0.3" height="15.0" fill="rgb(233,132,30)" rx="2" ry="2" /> +<text x="875.73" y="239.5" ></text> +</g> +<g > +<title>/4e (89 samples, 0.01%)</title><rect x="1048.1" y="149" width="0.1" height="15.0" fill="rgb(236,117,34)" rx="2" ry="2" /> +<text x="1051.08" y="159.5" ></text> +</g> +<g > +<title>/memory.min (270 samples, 0.03%)</title><rect x="702.6" y="85" width="0.4" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="705.63" y="95.5" ></text> +</g> +<g > +<title>/null (98 samples, 0.01%)</title><rect x="776.8" y="197" width="0.1" height="15.0" fill="rgb(224,145,21)" rx="2" ry="2" /> +<text x="779.75" y="207.5" ></text> +</g> +<g > +<title>/proc (9,141 samples, 0.95%)</title><rect x="784.4" y="213" width="11.2" height="15.0" fill="rgb(234,144,31)" rx="2" ry="2" /> +<text x="787.42" y="223.5" ></text> +</g> +<g > +<title>/libgcc.a (88 samples, 0.01%)</title><rect x="1090.5" y="133" width="0.1" height="15.0" fill="rgb(238,99,36)" rx="2" ry="2" /> +<text x="1093.53" y="143.5" ></text> +</g> +<g > +<title>/memory.stat (265 samples, 0.03%)</title><rect x="737.9" y="85" width="0.4" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="740.93" y="95.5" ></text> +</g> +<g > +<title>enter_ioctl (548 samples, 0.06%)</title><rect x="391.3" y="37" width="0.7" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="394.31" y="47.5" ></text> +</g> +<g > +<title>/styles (706 samples, 0.07%)</title><rect x="835.3" y="181" width="0.8" height="15.0" fill="rgb(244,122,43)" rx="2" ry="2" /> +<text x="838.28" y="191.5" ></text> +</g> +<g > +<title>enter_read (106 samples, 0.01%)</title><rect x="328.0" y="213" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="331.01" y="223.5" ></text> +</g> +<g > +<title>/eb (102 samples, 0.01%)</title><rect x="1067.0" y="149" width="0.2" height="15.0" fill="rgb(231,157,28)" rx="2" ry="2" /> +<text x="1070.05" y="159.5" ></text> +</g> +<g > +<title>/go-link-2935705061 (175 samples, 0.02%)</title><rect x="1089.8" y="197" width="0.2" height="15.0" fill="rgb(228,144,25)" rx="2" ry="2" /> +<text x="1092.80" y="207.5" ></text> +</g> +<g > +<title>/io.github.seadve.Kooha (106 samples, 0.01%)</title><rect x="218.8" y="149" width="0.1" height="15.0" fill="rgb(235,134,33)" rx="2" ry="2" /> +<text x="221.77" y="159.5" ></text> +</g> +<g > +<title>627547 (1,235 samples, 0.13%)</title><rect x="1087.3" y="245" width="1.5" height="15.0" fill="rgb(234,145,31)" rx="2" ry="2" /> +<text x="1090.32" y="255.5" ></text> +</g> +<g > +<title>/8c (109 samples, 0.01%)</title><rect x="1055.5" y="149" width="0.1" height="15.0" fill="rgb(230,159,28)" rx="2" ry="2" /> +<text x="1058.47" y="159.5" ></text> +</g> +<g > +<title>enter_close (621 samples, 0.06%)</title><rect x="463.5" y="213" width="0.8" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="466.52" y="223.5" ></text> +</g> +<g > +<title>enter_write (123,494 samples, 12.78%)</title><rect x="883.9" y="213" width="150.8" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="886.94" y="223.5" >enter_write</text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="753.5" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="756.50" y="79.5" ></text> +</g> +<g > +<title>/usr (4,347 samples, 0.45%)</title><rect x="391.1" y="213" width="5.3" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="394.12" y="223.5" ></text> +</g> +<g > +<title>/share (1,583 samples, 0.16%)</title><rect x="866.0" y="197" width="2.0" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="869.04" y="207.5" ></text> +</g> +<g > +<title>/dnf (117 samples, 0.01%)</title><rect x="1176.0" y="181" width="0.1" height="15.0" fill="rgb(248,162,48)" rx="2" ry="2" /> +<text x="1179.00" y="191.5" ></text> +</g> +<g > +<title>/memory.swap.current (264 samples, 0.03%)</title><rect x="701.6" y="85" width="0.4" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="704.65" y="95.5" ></text> +</g> +<g > +<title>/tmp (223 samples, 0.02%)</title><rect x="1089.8" y="213" width="0.3" height="15.0" fill="rgb(234,140,32)" rx="2" ry="2" /> +<text x="1092.80" y="223.5" ></text> +</g> +<g > +<title>/601475 (168 samples, 0.02%)</title><rect x="779.8" y="197" width="0.2" height="15.0" fill="rgb(246,123,46)" rx="2" ry="2" /> +<text x="782.82" y="207.5" ></text> +</g> +<g > +<title>enter_read (381 samples, 0.04%)</title><rect x="623.4" y="133" width="0.5" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="626.40" y="143.5" ></text> +</g> +<g > +<title> (4,998 samples, 0.52%)</title><rect x="673.9" y="229" width="6.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="676.93" y="239.5" ></text> +</g> +<g > +<title> (886 samples, 0.09%)</title><rect x="804.6" y="229" width="1.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="807.62" y="239.5" ></text> +</g> +<g > +<title>/68 (92 samples, 0.01%)</title><rect x="1051.2" y="149" width="0.1" height="15.0" fill="rgb(225,97,22)" rx="2" ry="2" /> +<text x="1054.19" y="159.5" ></text> +</g> +<g > +<title>enter_read (1,721 samples, 0.18%)</title><rect x="1112.4" y="165" width="2.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="1115.36" y="175.5" ></text> +</g> +<g > +<title>/memory.swap.current (270 samples, 0.03%)</title><rect x="732.2" y="85" width="0.4" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="735.22" y="95.5" ></text> +</g> +<g > +<title>enter_mmap (102 samples, 0.01%)</title><rect x="861.0" y="213" width="0.1" height="15.0" fill="rgb(240,196,39)" rx="2" ry="2" /> +<text x="863.99" y="223.5" ></text> +</g> +<g > +<title>enter_openat (236 samples, 0.02%)</title><rect x="673.3" y="213" width="0.2" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="676.26" y="223.5" ></text> +</g> +<g > +<title>/memory.min (264 samples, 0.03%)</title><rect x="739.2" y="85" width="0.4" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="742.24" y="95.5" ></text> +</g> +<g > +<title>/user-1001@a76544c2185a4e0d95d841276470efd6-00000000004ff7a8-0006208fd10774d5.journal (91 samples, 0.01%)</title><rect x="1185.0" y="149" width="0.1" height="15.0" fill="rgb(229,116,27)" rx="2" ry="2" /> +<text x="1187.99" y="159.5" ></text> +</g> +<g > +<title>/lib64 (1,537 samples, 0.16%)</title><rect x="1035.1" y="197" width="1.9" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="1038.09" y="207.5" ></text> +</g> +<g > +<title>/functions (160 samples, 0.02%)</title><rect x="681.8" y="101" width="0.2" height="15.0" fill="rgb(244,129,43)" rx="2" ry="2" /> +<text x="684.76" y="111.5" ></text> +</g> +<g > +<title>613221 (85 samples, 0.01%)</title><rect x="783.9" y="245" width="0.1" height="15.0" fill="rgb(231,163,28)" rx="2" ry="2" /> +<text x="786.86" y="255.5" ></text> +</g> +<g > +<title>enter_ioctl (91 samples, 0.01%)</title><rect x="727.5" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="730.50" y="79.5" ></text> +</g> +<g > +<title>enter_read (1,144 samples, 0.12%)</title><rect x="784.4" y="165" width="1.4" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="787.43" y="175.5" ></text> +</g> +<g > +<title>/status (638 samples, 0.07%)</title><rect x="484.0" y="181" width="0.8" height="15.0" fill="rgb(233,122,30)" rx="2" ry="2" /> +<text x="487.04" y="191.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="757.3" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="760.26" y="79.5" ></text> +</g> +<g > +<title>enter_newfstat (621 samples, 0.06%)</title><rect x="251.8" y="213" width="0.7" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="254.76" y="223.5" ></text> +</g> +<g > +<title>/lib (101 samples, 0.01%)</title><rect x="676.8" y="197" width="0.1" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="679.82" y="207.5" ></text> +</g> +<g > +<title>/transactions.db (343 samples, 0.04%)</title><rect x="463.1" y="165" width="0.4" height="15.0" fill="rgb(232,124,30)" rx="2" ry="2" /> +<text x="466.06" y="175.5" ></text> +</g> +<g > +<title>enter_writev (570 samples, 0.06%)</title><rect x="444.6" y="213" width="0.7" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="447.63" y="223.5" ></text> +</g> +<g > +<title>enter_read (222 samples, 0.02%)</title><rect x="215.4" y="133" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="218.35" y="143.5" ></text> +</g> +<g > +<title>/stat (406 samples, 0.04%)</title><rect x="483.5" y="181" width="0.5" height="15.0" fill="rgb(229,122,26)" rx="2" ry="2" /> +<text x="486.54" y="191.5" ></text> +</g> +<g > +<title>/dev (971 samples, 0.10%)</title><rect x="1173.8" y="213" width="1.1" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" /> +<text x="1176.75" y="223.5" ></text> +</g> +<g > +<title>/tmp (14,658 samples, 1.52%)</title><rect x="1096.8" y="213" width="17.9" height="15.0" fill="rgb(234,140,32)" rx="2" ry="2" /> +<text x="1099.78" y="223.5" ></text> +</g> +<g > +<title>enter_newfstat (94 samples, 0.01%)</title><rect x="1182.7" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1185.73" y="143.5" ></text> +</g> +<g > +<title>enter_newfstat (85 samples, 0.01%)</title><rect x="1184.3" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1187.31" y="143.5" ></text> +</g> +<g > +<title> (10,406 samples, 1.08%)</title><rect x="1173.8" y="229" width="12.7" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1176.75" y="239.5" ></text> +</g> +<g > +<title>enter_pread64 (600 samples, 0.06%)</title><rect x="798.0" y="53" width="0.7" height="15.0" fill="rgb(237,196,36)" rx="2" ry="2" /> +<text x="801.00" y="63.5" ></text> +</g> +<g > +<title>enter_read (12,021 samples, 1.24%)</title><rect x="630.6" y="213" width="14.6" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="633.56" y="223.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="693.9" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="696.89" y="79.5" ></text> +</g> +<g > +<title>/card1 (107 samples, 0.01%)</title><rect x="617.9" y="181" width="0.2" height="15.0" fill="rgb(234,170,31)" rx="2" ry="2" /> +<text x="620.94" y="191.5" ></text> +</g> +<g > +<title>/memory.pressure (315 samples, 0.03%)</title><rect x="762.2" y="101" width="0.3" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="765.16" y="111.5" ></text> +</g> +<g > +<title>enter_newfstat (89 samples, 0.01%)</title><rect x="1182.3" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1185.31" y="143.5" ></text> +</g> +<g > +<title>/user-1001@91732938d5e8417da6f3e8bd5b2a5bdf-0000000000540a2d-0006231483066361.journal (88 samples, 0.01%)</title><rect x="1184.9" y="149" width="0.1" height="15.0" fill="rgb(229,116,27)" rx="2" ry="2" /> +<text x="1187.88" y="159.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="730.1" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="733.07" y="79.5" ></text> +</g> +<g > +<title>/sbin (226 samples, 0.02%)</title><rect x="35.7" y="165" width="0.3" height="15.0" fill="rgb(247,142,46)" rx="2" ry="2" /> +<text x="38.73" y="175.5" ></text> +</g> +<g > +<title>/cc (93 samples, 0.01%)</title><rect x="1063.3" y="149" width="0.1" height="15.0" fill="rgb(231,164,29)" rx="2" ry="2" /> +<text x="1066.31" y="159.5" ></text> +</g> +<g > +<title>/x86_64-redhat-linux (692 samples, 0.07%)</title><rect x="1090.1" y="165" width="0.8" height="15.0" fill="rgb(245,97,45)" rx="2" ry="2" /> +<text x="1093.10" y="175.5" ></text> +</g> +<g > +<title>/lib (95 samples, 0.01%)</title><rect x="677.6" y="197" width="0.1" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="680.56" y="207.5" ></text> +</g> +<g > +<title>me.ahola.aphototoollibre (92 samples, 0.01%)</title><rect x="308.9" y="229" width="0.1" height="15.0" fill="rgb(247,115,46)" rx="2" ry="2" /> +<text x="311.87" y="239.5" ></text> +</g> +<g > +<title>/Microsoft (388 samples, 0.04%)</title><rect x="869.5" y="165" width="0.4" height="15.0" fill="rgb(239,145,37)" rx="2" ry="2" /> +<text x="872.47" y="175.5" ></text> +</g> +<g > +<title>/0d (108 samples, 0.01%)</title><rect x="1040.3" y="149" width="0.1" height="15.0" fill="rgb(242,140,41)" rx="2" ry="2" /> +<text x="1043.31" y="159.5" ></text> +</g> +<g > +<title>627307 (877 samples, 0.09%)</title><rect x="870.4" y="245" width="1.1" height="15.0" fill="rgb(239,145,38)" rx="2" ry="2" /> +<text x="873.42" y="255.5" ></text> +</g> +<g > +<title>/smaps (131 samples, 0.01%)</title><rect x="799.6" y="181" width="0.1" height="15.0" fill="rgb(243,145,42)" rx="2" ry="2" /> +<text x="802.57" y="191.5" ></text> +</g> +<g > +<title>/15 (548 samples, 0.06%)</title><rect x="391.3" y="149" width="0.7" height="15.0" fill="rgb(236,132,34)" rx="2" ry="2" /> +<text x="394.31" y="159.5" ></text> +</g> +<g > +<title>enter_ioctl (90 samples, 0.01%)</title><rect x="731.6" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="734.56" y="79.5" ></text> +</g> +<g > +<title>/lib (332 samples, 0.03%)</title><rect x="624.7" y="197" width="0.4" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="627.70" y="207.5" ></text> +</g> +<g > +<title>/paul (82 samples, 0.01%)</title><rect x="782.1" y="197" width="0.1" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="785.13" y="207.5" ></text> +</g> +<g > +<title>/451c975916dc4536919a44482a914925 (94 samples, 0.01%)</title><rect x="776.6" y="165" width="0.1" height="15.0" fill="rgb(236,117,35)" rx="2" ry="2" /> +<text x="779.57" y="175.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="720.3" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="723.32" y="79.5" ></text> +</g> +<g > +<title>/a7 (90 samples, 0.01%)</title><rect x="1058.8" y="149" width="0.1" height="15.0" fill="rgb(228,106,26)" rx="2" ry="2" /> +<text x="1061.75" y="159.5" ></text> +</g> +<g > +<title>enter_read (526 samples, 0.05%)</title><rect x="801.0" y="213" width="0.7" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="804.04" y="223.5" ></text> +</g> +<g > +<title>/13 (138 samples, 0.01%)</title><rect x="620.6" y="197" width="0.2" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="623.59" y="207.5" ></text> +</g> +<g > +<title>627269 (296 samples, 0.03%)</title><rect x="868.9" y="245" width="0.3" height="15.0" fill="rgb(230,145,27)" rx="2" ry="2" /> +<text x="871.88" y="255.5" ></text> +</g> +<g > +<title>/org.freedesktop.Platform.VAAPI.Intel (438 samples, 0.05%)</title><rect x="239.9" y="149" width="0.5" height="15.0" fill="rgb(233,149,31)" rx="2" ry="2" /> +<text x="242.90" y="159.5" ></text> +</g> +<g > +<title>/52 (1,450 samples, 0.15%)</title><rect x="480.0" y="197" width="1.8" height="15.0" fill="rgb(237,122,35)" rx="2" ry="2" /> +<text x="483.00" y="207.5" ></text> +</g> +<g > +<title>enter_ioctl (152 samples, 0.02%)</title><rect x="683.5" y="213" width="0.2" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="686.52" y="223.5" ></text> +</g> +<g > +<title>/622362 (128 samples, 0.01%)</title><rect x="799.9" y="197" width="0.1" height="15.0" fill="rgb(241,117,40)" rx="2" ry="2" /> +<text x="802.88" y="207.5" ></text> +</g> +<g > +<title>/exports (1,137 samples, 0.12%)</title><rect x="221.9" y="165" width="1.4" height="15.0" fill="rgb(235,163,33)" rx="2" ry="2" /> +<text x="224.93" y="175.5" ></text> +</g> +<g > +<title> (86 samples, 0.01%)</title><rect x="1141.9" y="229" width="0.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1144.90" y="239.5" ></text> +</g> +<g > +<title>/proc (1,870 samples, 0.19%)</title><rect x="1186.6" y="213" width="2.3" height="15.0" fill="rgb(234,144,31)" rx="2" ry="2" /> +<text x="1189.64" y="223.5" ></text> +</g> +<g > +<title>/f6 (93 samples, 0.01%)</title><rect x="1068.4" y="149" width="0.1" height="15.0" fill="rgb(237,139,35)" rx="2" ry="2" /> +<text x="1071.37" y="159.5" ></text> +</g> +<g > +<title>/usr (4,874 samples, 0.50%)</title><rect x="541.8" y="213" width="6.0" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="544.85" y="223.5" ></text> +</g> +<g > +<title>enter_newfstat (89 samples, 0.01%)</title><rect x="1180.3" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1183.32" y="143.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="709.0" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="712.00" y="79.5" ></text> +</g> +<g > +<title>enter_openat (116 samples, 0.01%)</title><rect x="484.4" y="165" width="0.1" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="487.39" y="175.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="726.3" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="729.32" y="79.5" ></text> +</g> +<g > +<title>/50 (97 samples, 0.01%)</title><rect x="1048.3" y="149" width="0.1" height="15.0" fill="rgb(223,128,20)" rx="2" ry="2" /> +<text x="1051.30" y="159.5" ></text> +</g> +<g > +<title>enter_read (196 samples, 0.02%)</title><rect x="342.5" y="213" width="0.3" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="345.55" y="223.5" ></text> +</g> +<g > +<title>enter_write (191 samples, 0.02%)</title><rect x="342.2" y="181" width="0.2" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="345.19" y="191.5" ></text> +</g> +<g > +<title>/dri (15,905 samples, 1.65%)</title><rect x="10.3" y="197" width="19.4" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="13.33" y="207.5" ></text> +</g> +<g > +<title>/memory.current (264 samples, 0.03%)</title><rect x="736.6" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="739.58" y="95.5" ></text> +</g> +<g > +<title>/memory.low (270 samples, 0.03%)</title><rect x="761.5" y="101" width="0.3" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="764.49" y="111.5" ></text> +</g> +<g > +<title>enter_read (100 samples, 0.01%)</title><rect x="769.3" y="181" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="772.26" y="191.5" ></text> +</g> +<g > +<title>/journal (94 samples, 0.01%)</title><rect x="776.6" y="181" width="0.1" height="15.0" fill="rgb(229,128,27)" rx="2" ry="2" /> +<text x="779.57" y="191.5" ></text> +</g> +<g > +<title>/1 (204 samples, 0.02%)</title><rect x="774.8" y="197" width="0.3" height="15.0" fill="rgb(232,133,30)" rx="2" ry="2" /> +<text x="777.82" y="207.5" ></text> +</g> +<g > +<title>/maps (100 samples, 0.01%)</title><rect x="778.5" y="181" width="0.2" height="15.0" fill="rgb(243,120,42)" rx="2" ry="2" /> +<text x="781.55" y="191.5" ></text> +</g> +<g > +<title>enter_newfstat (92 samples, 0.01%)</title><rect x="1182.6" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1185.58" y="143.5" ></text> +</g> +<g > +<title>/maps (144 samples, 0.01%)</title><rect x="779.4" y="181" width="0.1" height="15.0" fill="rgb(243,120,42)" rx="2" ry="2" /> +<text x="782.35" y="191.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.freedesktop.portal.IBus.slice (1,628 samples, 0.17%)</title><rect x="698.0" y="101" width="2.0" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="700.99" y="111.5" ></text> +</g> +<g > +<title>/device:1b (146 samples, 0.02%)</title><rect x="775.9" y="133" width="0.2" height="15.0" fill="rgb(228,152,25)" rx="2" ry="2" /> +<text x="778.95" y="143.5" ></text> +</g> +<g > +<title>/system@3b5754079473424484fc77ea08f3c475-000000000051164f-0006210ff718ca8a.journal (88 samples, 0.01%)</title><rect x="1178.6" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1181.56" y="159.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="736.8" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="739.80" y="79.5" ></text> +</g> +<g > +<title>/org.freedesktop.Platform.Locale (312 samples, 0.03%)</title><rect x="239.5" y="149" width="0.4" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="242.51" y="159.5" ></text> +</g> +<g > +<title>/c6 (112 samples, 0.01%)</title><rect x="1062.6" y="149" width="0.1" height="15.0" fill="rgb(240,154,38)" rx="2" ry="2" /> +<text x="1065.57" y="159.5" ></text> +</g> +<g > +<title>/paul (1,165 samples, 0.12%)</title><rect x="36.0" y="197" width="1.4" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="39.00" y="207.5" ></text> +</g> +<g > +<title>627545 (294 samples, 0.03%)</title><rect x="1086.8" y="245" width="0.3" height="15.0" fill="rgb(237,145,35)" rx="2" ry="2" /> +<text x="1089.77" y="255.5" ></text> +</g> +<g > +<title>anon_inode:[eventfd] (88 samples, 0.01%)</title><rect x="444.5" y="229" width="0.1" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="447.52" y="239.5" ></text> +</g> +<g > +<title> (1,318 samples, 0.14%)</title><rect x="1085.2" y="229" width="1.6" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1088.16" y="239.5" ></text> +</g> +<g > +<title>/com.github.wwmm.pulseeffects (123 samples, 0.01%)</title><rect x="216.7" y="149" width="0.1" height="15.0" fill="rgb(237,164,35)" rx="2" ry="2" /> +<text x="219.70" y="159.5" ></text> +</g> +<g > +<title>enter_write (85 samples, 0.01%)</title><rect x="625.0" y="149" width="0.1" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="628.00" y="159.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="746.3" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="749.28" y="79.5" ></text> +</g> +<g > +<title>/memory.current (264 samples, 0.03%)</title><rect x="698.0" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="700.99" y="95.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="703.6" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="706.56" y="79.5" ></text> +</g> +<g > +<title>/libgcc_s.so.1 (106 samples, 0.01%)</title><rect x="1085.5" y="197" width="0.1" height="15.0" fill="rgb(235,99,33)" rx="2" ry="2" /> +<text x="1088.46" y="207.5" ></text> +</g> +<g > +<title>/system@38ed2805b6204d9b80417a97296c48b0-0000000000549499-0006232fccb39857.journal (86 samples, 0.01%)</title><rect x="1178.5" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1181.46" y="159.5" ></text> +</g> +<g > +<title>/cache (100 samples, 0.01%)</title><rect x="215.7" y="197" width="0.1" height="15.0" fill="rgb(245,170,44)" rx="2" ry="2" /> +<text x="218.72" y="207.5" ></text> +</g> +<g > +<title>/memory.stat (284 samples, 0.03%)</title><rect x="748.1" y="85" width="0.4" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="751.14" y="95.5" ></text> +</g> +<g > +<title>/x86_64 (158 samples, 0.02%)</title><rect x="305.5" y="181" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="308.47" y="191.5" ></text> +</g> +<g > +<title>enter_newfstat (86 samples, 0.01%)</title><rect x="1183.3" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1186.30" y="143.5" ></text> +</g> +<g > +<title>/BAT0 (146 samples, 0.02%)</title><rect x="775.9" y="69" width="0.2" height="15.0" fill="rgb(229,157,27)" rx="2" ry="2" /> +<text x="778.95" y="79.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="691.2" y="69" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="694.24" y="79.5" ></text> +</g> +<g > +<title>enter_read (183 samples, 0.02%)</title><rect x="488.2" y="213" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="491.22" y="223.5" ></text> +</g> +<g > +<title>/pkg (240 samples, 0.02%)</title><rect x="681.7" y="133" width="0.3" height="15.0" fill="rgb(238,128,36)" rx="2" ry="2" /> +<text x="684.68" y="143.5" ></text> +</g> +<g > +<title>socket:[1154081] (226 samples, 0.02%)</title><rect x="673.5" y="229" width="0.3" height="15.0" fill="rgb(238,175,37)" rx="2" ry="2" /> +<text x="676.55" y="239.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="702.5" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="705.52" y="79.5" ></text> +</g> +<g > +<title>enter_close (196 samples, 0.02%)</title><rect x="876.1" y="197" width="0.2" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="879.05" y="207.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="751.1" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="754.11" y="79.5" ></text> +</g> +<g > +<title>/user-1001@00062bf70dcc8696-aa0455324e7840b7.journal~ (88 samples, 0.01%)</title><rect x="1183.5" y="149" width="0.1" height="15.0" fill="rgb(233,116,31)" rx="2" ry="2" /> +<text x="1186.51" y="159.5" ></text> +</g> +<g > +<title>/74 (121 samples, 0.01%)</title><rect x="1052.5" y="149" width="0.2" height="15.0" fill="rgb(243,161,42)" rx="2" ry="2" /> +<text x="1055.51" y="159.5" ></text> +</g> +<g > +<title>/PackageKit (3,534 samples, 0.37%)</title><rect x="812.8" y="181" width="4.3" height="15.0" fill="rgb(235,155,33)" rx="2" ry="2" /> +<text x="815.76" y="191.5" ></text> +</g> +<g > +<title>/org.gnome.gThumb (100 samples, 0.01%)</title><rect x="220.4" y="149" width="0.1" height="15.0" fill="rgb(223,149,20)" rx="2" ry="2" /> +<text x="223.41" y="159.5" ></text> +</g> +<g > +<title>627433 (2,386 samples, 0.25%)</title><rect x="1034.7" y="245" width="3.0" height="15.0" fill="rgb(242,145,41)" rx="2" ry="2" /> +<text x="1037.74" y="255.5" ></text> +</g> +<g > +<title>/org.kde.KStyle.Adwaita (260 samples, 0.03%)</title><rect x="246.1" y="149" width="0.3" height="15.0" fill="rgb(229,149,27)" rx="2" ry="2" /> +<text x="249.13" y="159.5" ></text> +</g> +<g > +<title>enter_read (7,994 samples, 0.83%)</title><rect x="148.0" y="37" width="9.7" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="150.96" y="47.5" ></text> +</g> +<g > +<title>/cmdline (88 samples, 0.01%)</title><rect x="447.7" y="181" width="0.1" height="15.0" fill="rgb(246,170,46)" rx="2" ry="2" /> +<text x="450.74" y="191.5" ></text> +</g> +<g > +<title>/proselint (316 samples, 0.03%)</title><rect x="835.8" y="165" width="0.3" height="15.0" fill="rgb(238,144,36)" rx="2" ry="2" /> +<text x="838.76" y="175.5" ></text> +</g> +<g > +<title>/memory.stat (270 samples, 0.03%)</title><rect x="717.8" y="85" width="0.3" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="720.78" y="95.5" ></text> +</g> +<g > +<title>/libc.so.6 (97 samples, 0.01%)</title><rect x="1085.3" y="197" width="0.2" height="15.0" fill="rgb(243,99,42)" rx="2" ry="2" /> +<text x="1088.33" y="207.5" ></text> +</g> +<g > +<title>enter_newfstat (85 samples, 0.01%)</title><rect x="1184.2" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1187.20" y="143.5" ></text> +</g> +<g > +<title>/fontconfig (1,359 samples, 0.14%)</title><rect x="1170.6" y="181" width="1.6" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="1173.55" y="191.5" ></text> +</g> +<g > +<title>/memory.stat (270 samples, 0.03%)</title><rect x="709.5" y="85" width="0.3" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="712.50" y="95.5" ></text> +</g> +<g > +<title>/40 (107 samples, 0.01%)</title><rect x="1046.4" y="149" width="0.1" height="15.0" fill="rgb(224,133,21)" rx="2" ry="2" /> +<text x="1049.40" y="159.5" ></text> +</g> +<g > +<title>enter_newfstat (87 samples, 0.01%)</title><rect x="1178.7" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1181.67" y="143.5" ></text> +</g> +<g > +<title>/08 (111 samples, 0.01%)</title><rect x="1039.6" y="149" width="0.2" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> +<text x="1042.64" y="159.5" ></text> +</g> +<g > +<title>anon_inode:[eventfd] (130 samples, 0.01%)</title><rect x="331.1" y="229" width="0.1" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="334.08" y="239.5" ></text> +</g> +<g > +<title>627407 (1,378 samples, 0.14%)</title><rect x="878.2" y="245" width="1.7" height="15.0" fill="rgb(239,145,37)" rx="2" ry="2" /> +<text x="881.22" y="255.5" ></text> +</g> +<g > +<title>enter_fcntl (2,585 samples, 0.27%)</title><rect x="769.5" y="165" width="3.2" height="15.0" fill="rgb(233,196,30)" rx="2" ry="2" /> +<text x="772.51" y="175.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="728.4" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="731.40" y="79.5" ></text> +</g> +<g > +<title>/rpmdb.sqlite-wal (112 samples, 0.01%)</title><rect x="810.5" y="149" width="0.1" height="15.0" fill="rgb(223,140,20)" rx="2" ry="2" /> +<text x="813.48" y="159.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Shell.Notifications.slice (1,642 samples, 0.17%)</title><rect x="736.6" y="101" width="2.0" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="739.58" y="111.5" ></text> +</g> +<g > +<title>socket:[1154081] (36,516 samples, 3.78%)</title><rect x="397.9" y="229" width="44.6" height="15.0" fill="rgb(238,175,37)" rx="2" ry="2" /> +<text x="400.89" y="239.5" >sock..</text> +</g> +<g > +<title>627245 (19,555 samples, 2.02%)</title><rect x="837.4" y="245" width="23.9" height="15.0" fill="rgb(239,145,38)" rx="2" ry="2" /> +<text x="840.42" y="255.5" >6..</text> +</g> +<g > +<title>N:file (250 samples, 0.03%)</title><rect x="465.9" y="229" width="0.3" height="15.0" fill="rgb(237,131,35)" rx="2" ry="2" /> +<text x="468.90" y="239.5" ></text> +</g> +<g > +<title>/proc (263 samples, 0.03%)</title><rect x="1189.0" y="213" width="0.3" height="15.0" fill="rgb(234,144,31)" rx="2" ry="2" /> +<text x="1192.00" y="223.5" ></text> +</g> +<g > +<title>/vmlinux (1,600 samples, 0.17%)</title><rect x="881.9" y="165" width="2.0" height="15.0" fill="rgb(245,130,45)" rx="2" ry="2" /> +<text x="884.94" y="175.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="722.3" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="725.31" y="79.5" ></text> +</g> +<g > +<title>/system@00061efde1867e53-6dec804b92c9898f.journal~ (93 samples, 0.01%)</title><rect x="1176.5" y="149" width="0.1" height="15.0" fill="rgb(233,145,31)" rx="2" ry="2" /> +<text x="1179.49" y="159.5" ></text> +</g> +<g > +<title>/org.gnome.Lollypop (119 samples, 0.01%)</title><rect x="219.6" y="149" width="0.1" height="15.0" fill="rgb(247,149,46)" rx="2" ry="2" /> +<text x="222.59" y="159.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="697.2" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="700.24" y="79.5" ></text> +</g> +<g > +<title>/humorix-stories (2,162 samples, 0.22%)</title><rect x="542.7" y="149" width="2.6" height="15.0" fill="rgb(237,119,36)" rx="2" ry="2" /> +<text x="545.70" y="159.5" ></text> +</g> +<g > +<title>enter_lseek (98 samples, 0.01%)</title><rect x="1090.3" y="37" width="0.1" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="1093.27" y="47.5" ></text> +</g> +<g > +<title>enter_newfstat (86 samples, 0.01%)</title><rect x="1178.5" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1181.46" y="143.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="731.4" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="734.39" y="79.5" ></text> +</g> +<g > +<title>/org.freedesktop.Platform.GL.default (872 samples, 0.09%)</title><rect x="234.6" y="149" width="1.0" height="15.0" fill="rgb(228,149,25)" rx="2" ry="2" /> +<text x="237.55" y="159.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="737.1" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="740.13" y="79.5" ></text> +</g> +<g > +<title>/dev (123 samples, 0.01%)</title><rect x="864.5" y="213" width="0.2" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" /> +<text x="867.54" y="223.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="714.6" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="717.58" y="79.5" ></text> +</g> +<g > +<title>/memory.pressure (329 samples, 0.03%)</title><rect x="764.2" y="101" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="767.21" y="111.5" ></text> +</g> +<g > +<title>/libgcc_s.so.1 (106 samples, 0.01%)</title><rect x="1083.3" y="197" width="0.2" height="15.0" fill="rgb(235,99,33)" rx="2" ry="2" /> +<text x="1086.34" y="207.5" ></text> +</g> +<g > +<title>enter_ioctl (88 samples, 0.01%)</title><rect x="729.5" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="732.53" y="79.5" ></text> +</g> +<g > +<title>.git (263 samples, 0.03%)</title><rect x="873.7" y="229" width="0.3" height="15.0" fill="rgb(233,132,30)" rx="2" ry="2" /> +<text x="876.67" y="239.5" ></text> +</g> +<g > +<title>/user-1001@e787b310a4d743b4a3376463d97f0ded-000000000052342d-000621d2b17590db.journal (89 samples, 0.01%)</title><rect x="1185.7" y="149" width="0.1" height="15.0" fill="rgb(229,116,27)" rx="2" ry="2" /> +<text x="1188.72" y="159.5" ></text> +</g> +<g > +<title> (89 samples, 0.01%)</title><rect x="881.3" y="229" width="0.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="884.28" y="239.5" ></text> +</g> +<g > +<title>/memory.pressure (323 samples, 0.03%)</title><rect x="733.5" y="85" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="736.54" y="95.5" ></text> +</g> +<g > +<title>/org.fedoraproject.Platform (174 samples, 0.02%)</title><rect x="234.3" y="149" width="0.2" height="15.0" fill="rgb(232,149,30)" rx="2" ry="2" /> +<text x="237.31" y="159.5" ></text> +</g> +<g > +<title>enter_write (27,422 samples, 2.84%)</title><rect x="264.2" y="213" width="33.5" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="267.23" y="223.5" >en..</text> +</g> +<g > +<title>enter_close (2,096 samples, 0.22%)</title><rect x="94.8" y="213" width="2.6" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="97.82" y="223.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="697.6" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="700.56" y="79.5" ></text> +</g> +<g > +<title> (603 samples, 0.06%)</title><rect x="1143.8" y="229" width="0.7" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1146.77" y="239.5" ></text> +</g> +<g > +<title>/org.gnome.Decibels (120 samples, 0.01%)</title><rect x="219.2" y="149" width="0.1" height="15.0" fill="rgb(232,149,30)" rx="2" ry="2" /> +<text x="222.18" y="159.5" ></text> +</g> +<g > +<title>enter_read (93 samples, 0.01%)</title><rect x="705.3" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="708.27" y="79.5" ></text> +</g> +<g > +<title>/sbin (124 samples, 0.01%)</title><rect x="677.4" y="197" width="0.1" height="15.0" fill="rgb(247,142,46)" rx="2" ry="2" /> +<text x="680.37" y="207.5" ></text> +</g> +<g > +<title>/10887 (234 samples, 0.02%)</title><rect x="808.3" y="197" width="0.3" height="15.0" fill="rgb(239,148,38)" rx="2" ry="2" /> +<text x="811.32" y="207.5" ></text> +</g> +<g > +<title>enter_read (8,105 samples, 0.84%)</title><rect x="254.3" y="213" width="9.9" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="257.33" y="223.5" ></text> +</g> +<g > +<title>/memory.stat (270 samples, 0.03%)</title><rect x="756.4" y="85" width="0.3" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="759.37" y="95.5" ></text> +</g> +<g > +<title>/libc.so (122 samples, 0.01%)</title><rect x="1092.4" y="53" width="0.2" height="15.0" fill="rgb(240,99,39)" rx="2" ry="2" /> +<text x="1095.41" y="63.5" ></text> +</g> +<g > +<title>/.config (478 samples, 0.05%)</title><rect x="1143.8" y="181" width="0.6" height="15.0" fill="rgb(239,154,37)" rx="2" ry="2" /> +<text x="1146.82" y="191.5" ></text> +</g> +<g > +<title>enter_openat (116 samples, 0.01%)</title><rect x="482.3" y="165" width="0.2" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="485.34" y="175.5" ></text> +</g> +<g > +<title>enter_write (134 samples, 0.01%)</title><rect x="806.4" y="213" width="0.2" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="809.39" y="223.5" ></text> +</g> +<g > +<title>anon_inode:[eventfd] (2,327 samples, 0.24%)</title><rect x="332.3" y="229" width="2.8" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="335.28" y="239.5" ></text> +</g> +<g > +<title> (19,502 samples, 2.02%)</title><rect x="837.5" y="229" width="23.8" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="840.48" y="239.5" ></text> +</g> +<g > +<title>enter_ioctl (731 samples, 0.08%)</title><rect x="41.2" y="133" width="0.9" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="44.25" y="143.5" ></text> +</g> +<g > +<title>usr (145 samples, 0.02%)</title><rect x="835.0" y="229" width="0.1" height="15.0" fill="rgb(236,129,34)" rx="2" ry="2" /> +<text x="837.97" y="239.5" ></text> +</g> +<g > +<title>/b6 (91 samples, 0.01%)</title><rect x="1060.6" y="149" width="0.1" height="15.0" fill="rgb(229,104,26)" rx="2" ry="2" /> +<text x="1063.56" y="159.5" ></text> +</g> +<g > +<title>/.. (252 samples, 0.03%)</title><rect x="1083.7" y="101" width="0.3" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1086.74" y="111.5" ></text> +</g> +<g > +<title>/6e (106 samples, 0.01%)</title><rect x="1051.8" y="149" width="0.2" height="15.0" fill="rgb(234,107,32)" rx="2" ry="2" /> +<text x="1054.83" y="159.5" ></text> +</g> +<g > +<title>/applications (1,126 samples, 0.12%)</title><rect x="221.9" y="133" width="1.4" height="15.0" fill="rgb(244,115,43)" rx="2" ry="2" /> +<text x="224.93" y="143.5" ></text> +</g> +<g > +<title>/variety (505 samples, 0.05%)</title><rect x="836.4" y="165" width="0.6" height="15.0" fill="rgb(243,130,42)" rx="2" ry="2" /> +<text x="839.39" y="175.5" ></text> +</g> +<g > +<title>/122 (1,450 samples, 0.15%)</title><rect x="476.5" y="197" width="1.7" height="15.0" fill="rgb(247,142,46)" rx="2" ry="2" /> +<text x="479.46" y="207.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="727.3" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="730.33" y="79.5" ></text> +</g> +<g > +<title>enter_openat (109 samples, 0.01%)</title><rect x="619.5" y="181" width="0.1" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="622.46" y="191.5" ></text> +</g> +<g > +<title>/org.fedoraproject.Platform.GL.default (266 samples, 0.03%)</title><rect x="233.3" y="149" width="0.3" height="15.0" fill="rgb(228,149,25)" rx="2" ry="2" /> +<text x="236.25" y="159.5" ></text> +</g> +<g > +<title>enter_newfstat (90 samples, 0.01%)</title><rect x="1180.5" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1183.54" y="143.5" ></text> +</g> +<g > +<title>enter_newfstat (92 samples, 0.01%)</title><rect x="731.9" y="69" width="0.2" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="734.94" y="79.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="743.5" y="69" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="746.55" y="79.5" ></text> +</g> +<g > +<title>/group (91 samples, 0.01%)</title><rect x="878.3" y="197" width="0.1" height="15.0" fill="rgb(241,134,40)" rx="2" ry="2" /> +<text x="881.30" y="207.5" ></text> +</g> +<g > +<title>enter_ioctl (92 samples, 0.01%)</title><rect x="741.6" y="69" width="0.2" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="744.64" y="79.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.ScreenSaver.slice (1,705 samples, 0.18%)</title><rect x="726.4" y="101" width="2.1" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="729.43" y="111.5" ></text> +</g> +<g > +<title>/46 (94 samples, 0.01%)</title><rect x="1047.1" y="149" width="0.1" height="15.0" fill="rgb(231,114,29)" rx="2" ry="2" /> +<text x="1050.12" y="159.5" ></text> +</g> +<g > +<title>/fedora (290 samples, 0.03%)</title><rect x="315.1" y="197" width="0.3" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" /> +<text x="318.07" y="207.5" ></text> +</g> +<g > +<title>/d9 (107 samples, 0.01%)</title><rect x="1064.9" y="149" width="0.1" height="15.0" fill="rgb(234,139,31)" rx="2" ry="2" /> +<text x="1067.86" y="159.5" ></text> +</g> +<g > +<title>enter_newfstat (113 samples, 0.01%)</title><rect x="830.4" y="197" width="0.2" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="833.44" y="207.5" ></text> +</g> +<g > +<title>enter_read (91 samples, 0.01%)</title><rect x="685.5" y="133" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="688.45" y="143.5" ></text> +</g> +<g > +<title>/dri (709 samples, 0.07%)</title><rect x="617.9" y="197" width="0.9" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="620.94" y="207.5" ></text> +</g> +<g > +<title>/fs (100 samples, 0.01%)</title><rect x="445.5" y="197" width="0.1" height="15.0" fill="rgb(235,136,33)" rx="2" ry="2" /> +<text x="448.49" y="207.5" ></text> +</g> +<g > +<title>enter_close (99 samples, 0.01%)</title><rect x="618.8" y="181" width="0.2" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="621.85" y="191.5" ></text> +</g> +<g > +<title>enter_write (129 samples, 0.01%)</title><rect x="774.5" y="213" width="0.1" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="777.48" y="223.5" ></text> +</g> +<g > +<title>/65 (103 samples, 0.01%)</title><rect x="1050.8" y="149" width="0.1" height="15.0" fill="rgb(231,107,28)" rx="2" ry="2" /> +<text x="1053.79" y="159.5" ></text> +</g> +<g > +<title>/userdb (197 samples, 0.02%)</title><rect x="767.3" y="181" width="0.2" height="15.0" fill="rgb(235,116,33)" rx="2" ry="2" /> +<text x="770.25" y="191.5" ></text> +</g> +<g > +<title>4853 (1,046 samples, 0.11%)</title><rect x="682.6" y="245" width="1.2" height="15.0" fill="rgb(237,192,36)" rx="2" ry="2" /> +<text x="685.55" y="255.5" ></text> +</g> +<g > +<title>org.gnome.Platform.Locale (114 samples, 0.01%)</title><rect x="312.3" y="229" width="0.1" height="15.0" fill="rgb(242,179,41)" rx="2" ry="2" /> +<text x="315.28" y="239.5" ></text> +</g> +<g > +<title>/memory.low (264 samples, 0.03%)</title><rect x="738.9" y="85" width="0.3" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="741.92" y="95.5" ></text> +</g> +<g > +<title> (150 samples, 0.02%)</title><rect x="1082.9" y="229" width="0.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1085.86" y="239.5" ></text> +</g> +<g > +<title>enter_read (94 samples, 0.01%)</title><rect x="713.9" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="716.90" y="79.5" ></text> +</g> +<g > +<title>/memory.min (264 samples, 0.03%)</title><rect x="698.6" y="85" width="0.4" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="701.64" y="95.5" ></text> +</g> +<g > +<title>/os (326 samples, 0.03%)</title><rect x="1072.4" y="149" width="0.4" height="15.0" fill="rgb(237,146,35)" rx="2" ry="2" /> +<text x="1075.43" y="159.5" ></text> +</g> +<g > +<title>/memory.stat (264 samples, 0.03%)</title><rect x="697.3" y="85" width="0.4" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="700.35" y="95.5" ></text> +</g> +<g > +<title>/156 (119 samples, 0.01%)</title><rect x="620.8" y="197" width="0.1" height="15.0" fill="rgb(237,132,35)" rx="2" ry="2" /> +<text x="623.75" y="207.5" ></text> +</g> +<g > +<title>5171 (66,867 samples, 6.92%)</title><rect x="683.8" y="245" width="81.7" height="15.0" fill="rgb(238,158,36)" rx="2" ry="2" /> +<text x="686.83" y="255.5" >5171</text> +</g> +<g > +<title>/.. (101 samples, 0.01%)</title><rect x="676.8" y="133" width="0.1" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="679.82" y="143.5" ></text> +</g> +<g > +<title>/lib (22,179 samples, 2.30%)</title><rect x="1114.7" y="197" width="27.1" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="1117.72" y="207.5" >/..</text> +</g> +<g > +<title>anon_inode:[eventfd] (8,011 samples, 0.83%)</title><rect x="466.2" y="229" width="9.8" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="469.21" y="239.5" ></text> +</g> +<g > +<title>anon_inode:[eventfd] (11,444 samples, 1.18%)</title><rect x="101.9" y="229" width="14.0" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="104.89" y="239.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="710.4" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="713.38" y="79.5" ></text> +</g> +<g > +<title>/memory.stat (265 samples, 0.03%)</title><rect x="744.1" y="85" width="0.3" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="747.05" y="95.5" ></text> +</g> +<g > +<title>/7f (123 samples, 0.01%)</title><rect x="1053.9" y="149" width="0.2" height="15.0" fill="rgb(243,154,42)" rx="2" ry="2" /> +<text x="1056.91" y="159.5" ></text> +</g> +<g > +<title>/573bf24f21b75fcd4da47ac69b5a4d146985a9c769222a812024faaad42fb3b0 (148 samples, 0.02%)</title><rect x="234.9" y="101" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> +<text x="237.90" y="111.5" ></text> +</g> +<g > +<title>627548 (294 samples, 0.03%)</title><rect x="1088.8" y="245" width="0.4" height="15.0" fill="rgb(232,145,30)" rx="2" ry="2" /> +<text x="1091.82" y="255.5" ></text> +</g> +<g > +<title>/lib64 (357 samples, 0.04%)</title><rect x="336.2" y="213" width="0.5" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="339.22" y="223.5" ></text> +</g> +<g > +<title>/000047.o (88 samples, 0.01%)</title><rect x="1105.9" y="181" width="0.1" height="15.0" fill="rgb(246,153,45)" rx="2" ry="2" /> +<text x="1108.92" y="191.5" ></text> +</g> +<g > +<title>/stat (812 samples, 0.08%)</title><rect x="480.0" y="181" width="1.0" height="15.0" fill="rgb(229,122,26)" rx="2" ry="2" /> +<text x="483.00" y="191.5" ></text> +</g> +<g > +<title>enter_writev (82 samples, 0.01%)</title><rect x="397.6" y="213" width="0.1" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="400.64" y="223.5" ></text> +</g> +<g > +<title>enter_openat (116 samples, 0.01%)</title><rect x="483.1" y="165" width="0.2" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="486.12" y="175.5" ></text> +</g> +<g > +<title>/fs (66,710 samples, 6.90%)</title><rect x="683.8" y="197" width="81.5" height="15.0" fill="rgb(235,136,33)" rx="2" ry="2" /> +<text x="686.84" y="207.5" >/fs</text> +</g> +<g > +<title>enter_read (302 samples, 0.03%)</title><rect x="799.2" y="165" width="0.4" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="802.20" y="175.5" ></text> +</g> +<g > +<title>enter_newfstat (115 samples, 0.01%)</title><rect x="823.8" y="149" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="826.76" y="159.5" ></text> +</g> +<g > +<title>/dev (118 samples, 0.01%)</title><rect x="1165.9" y="213" width="0.1" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" /> +<text x="1168.88" y="223.5" ></text> +</g> +<g > +<title>anon_inode:[eventfd] (522 samples, 0.05%)</title><rect x="342.5" y="229" width="0.7" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="345.54" y="239.5" ></text> +</g> +<g > +<title>/paul (488 samples, 0.05%)</title><rect x="1143.8" y="197" width="0.6" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="1146.82" y="207.5" ></text> +</g> +<g > +<title>/memory.stat (264 samples, 0.03%)</title><rect x="746.1" y="85" width="0.3" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="749.07" y="95.5" ></text> +</g> +<g > +<title>enter_pread64 (621 samples, 0.06%)</title><rect x="825.3" y="165" width="0.8" height="15.0" fill="rgb(237,196,36)" rx="2" ry="2" /> +<text x="828.34" y="175.5" ></text> +</g> +<g > +<title>/user-1001.slice (101 samples, 0.01%)</title><rect x="462.1" y="149" width="0.1" height="15.0" fill="rgb(246,116,46)" rx="2" ry="2" /> +<text x="465.07" y="159.5" ></text> +</g> +<g > +<title>enter_newfstat (95 samples, 0.01%)</title><rect x="1176.2" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1179.22" y="143.5" ></text> +</g> +<g > +<title> (236 samples, 0.02%)</title><rect x="802.3" y="229" width="0.3" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="805.33" y="239.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="696.2" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="699.22" y="79.5" ></text> +</g> +<g > +<title>enter_read (98 samples, 0.01%)</title><rect x="774.7" y="165" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="777.67" y="175.5" ></text> +</g> +<g > +<title>/user-1001@00062cef3df3933f-5d3d7602c109231b.journal~ (89 samples, 0.01%)</title><rect x="1183.6" y="149" width="0.1" height="15.0" fill="rgb(233,116,31)" rx="2" ry="2" /> +<text x="1186.62" y="159.5" ></text> +</g> +<g > +<title>/af (98 samples, 0.01%)</title><rect x="1059.7" y="149" width="0.1" height="15.0" fill="rgb(233,109,31)" rx="2" ry="2" /> +<text x="1062.71" y="159.5" ></text> +</g> +<g > +<title>/org.gnome.Geary (115 samples, 0.01%)</title><rect x="219.4" y="149" width="0.2" height="15.0" fill="rgb(248,149,47)" rx="2" ry="2" /> +<text x="222.45" y="159.5" ></text> +</g> +<g > +<title>/paul (758 samples, 0.08%)</title><rect x="835.2" y="197" width="1.0" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="838.25" y="207.5" ></text> +</g> +<g > +<title>/f5f72d3edd7c69903cb183a950ed24b831c0bbac8beffc77f619cd8508be8b3e-d (172 samples, 0.02%)</title><rect x="1081.1" y="133" width="0.2" height="15.0" fill="rgb(250,142,49)" rx="2" ry="2" /> +<text x="1084.08" y="143.5" ></text> +</g> +<g > +<title>/conf.avail (1,234 samples, 0.13%)</title><rect x="862.7" y="165" width="1.5" height="15.0" fill="rgb(233,164,31)" rx="2" ry="2" /> +<text x="865.67" y="175.5" ></text> +</g> +<g > +<title>/0b (114 samples, 0.01%)</title><rect x="1040.0" y="149" width="0.2" height="15.0" fill="rgb(228,147,26)" rx="2" ry="2" /> +<text x="1043.04" y="159.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="737.8" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="740.83" y="79.5" ></text> +</g> +<g > +<title>/memory.low (274 samples, 0.03%)</title><rect x="694.3" y="85" width="0.4" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="697.32" y="95.5" ></text> +</g> +<g > +<title>/transactions.db (1,040 samples, 0.11%)</title><rect x="547.8" y="165" width="1.3" height="15.0" fill="rgb(232,124,30)" rx="2" ry="2" /> +<text x="550.80" y="175.5" ></text> +</g> +<g > +<title>enter_write (270 samples, 0.03%)</title><rect x="331.8" y="181" width="0.3" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="334.80" y="191.5" ></text> +</g> +<g > +<title>/dev (1,851 samples, 0.19%)</title><rect x="617.9" y="213" width="2.3" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" /> +<text x="620.94" y="223.5" ></text> +</g> +<g > +<title>/gcc (22,155 samples, 2.29%)</title><rect x="1114.7" y="181" width="27.1" height="15.0" fill="rgb(234,144,32)" rx="2" ry="2" /> +<text x="1117.72" y="191.5" >/..</text> +</g> +<g > +<title>/17 (97 samples, 0.01%)</title><rect x="1041.5" y="149" width="0.1" height="15.0" fill="rgb(233,126,30)" rx="2" ry="2" /> +<text x="1044.46" y="159.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="740.5" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="743.47" y="79.5" ></text> +</g> +<g > +<title>/.cache (125 samples, 0.01%)</title><rect x="1170.1" y="181" width="0.1" height="15.0" fill="rgb(245,154,44)" rx="2" ry="2" /> +<text x="1173.07" y="191.5" ></text> +</g> +<g > +<title>/org.kde.Platform (217 samples, 0.02%)</title><rect x="246.8" y="149" width="0.2" height="15.0" fill="rgb(232,149,30)" rx="2" ry="2" /> +<text x="249.77" y="159.5" ></text> +</g> +<g > +<title>/b001 (571 samples, 0.06%)</title><rect x="1071.1" y="181" width="0.7" height="15.0" fill="rgb(234,123,32)" rx="2" ry="2" /> +<text x="1074.11" y="191.5" ></text> +</g> +<g > +<title>/wallpaper (2,146 samples, 0.22%)</title><rect x="837.6" y="149" width="2.6" height="15.0" fill="rgb(243,125,41)" rx="2" ry="2" /> +<text x="840.61" y="159.5" ></text> +</g> +<g > +<title>/share (111 samples, 0.01%)</title><rect x="812.6" y="197" width="0.1" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="815.55" y="207.5" ></text> +</g> +<g > +<title>/proc (1,602 samples, 0.17%)</title><rect x="798.7" y="213" width="2.0" height="15.0" fill="rgb(234,144,31)" rx="2" ry="2" /> +<text x="801.74" y="223.5" ></text> +</g> +<g > +<title>11234 (110 samples, 0.01%)</title><rect x="331.3" y="245" width="0.1" height="15.0" fill="rgb(242,126,41)" rx="2" ry="2" /> +<text x="334.31" y="255.5" ></text> +</g> +<g > +<title>/fortune (16,353 samples, 1.69%)</title><rect x="194.9" y="165" width="19.9" height="15.0" fill="rgb(246,149,46)" rx="2" ry="2" /> +<text x="197.87" y="175.5" ></text> +</g> +<g > +<title>/go (555 samples, 0.06%)</title><rect x="141.5" y="181" width="0.6" height="15.0" fill="rgb(241,144,39)" rx="2" ry="2" /> +<text x="144.46" y="191.5" ></text> +</g> +<g > +<title>enter_newfstat (91 samples, 0.01%)</title><rect x="1180.2" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1183.21" y="143.5" ></text> +</g> +<g > +<title>/memory.stat (270 samples, 0.03%)</title><rect x="703.3" y="85" width="0.4" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="706.34" y="95.5" ></text> +</g> +<g > +<title>/c2 (131 samples, 0.01%)</title><rect x="1062.1" y="149" width="0.1" height="15.0" fill="rgb(247,167,46)" rx="2" ry="2" /> +<text x="1065.05" y="159.5" ></text> +</g> +<g > +<title>/cgroup (66,710 samples, 6.90%)</title><rect x="683.8" y="181" width="81.5" height="15.0" fill="rgb(241,151,40)" rx="2" ry="2" /> +<text x="686.84" y="191.5" >/cgroup</text> +</g> +<g > +<title> (101 samples, 0.01%)</title><rect x="874.7" y="229" width="0.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="877.70" y="239.5" ></text> +</g> +<g > +<title>627539 (294 samples, 0.03%)</title><rect x="1082.5" y="245" width="0.4" height="15.0" fill="rgb(231,145,29)" rx="2" ry="2" /> +<text x="1085.50" y="255.5" ></text> +</g> +<g > +<title>/libelf.a (33,179 samples, 3.43%)</title><rect x="148.0" y="53" width="40.5" height="15.0" fill="rgb(236,99,34)" rx="2" ry="2" /> +<text x="150.96" y="63.5" >/li..</text> +</g> +<g > +<title>/crti.o (2,151 samples, 0.22%)</title><rect x="145.3" y="53" width="2.7" height="15.0" fill="rgb(244,154,43)" rx="2" ry="2" /> +<text x="148.33" y="63.5" ></text> +</g> +<g > +<title>/15 (204 samples, 0.02%)</title><rect x="38.7" y="149" width="0.2" height="15.0" fill="rgb(236,132,34)" rx="2" ry="2" /> +<text x="41.67" y="159.5" ></text> +</g> +<g > +<title>/paul (442 samples, 0.05%)</title><rect x="99.0" y="197" width="0.5" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="101.99" y="207.5" ></text> +</g> +<g > +<title>enter_read (232 samples, 0.02%)</title><rect x="477.2" y="165" width="0.3" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="480.17" y="175.5" ></text> +</g> +<g > +<title>/6c (91 samples, 0.01%)</title><rect x="1051.6" y="149" width="0.1" height="15.0" fill="rgb(220,113,17)" rx="2" ry="2" /> +<text x="1054.63" y="159.5" ></text> +</g> +<g > +<title>/53 (85 samples, 0.01%)</title><rect x="1048.7" y="149" width="0.1" height="15.0" fill="rgb(235,118,33)" rx="2" ry="2" /> +<text x="1051.68" y="159.5" ></text> +</g> +<g > +<title>/libc.a (16,576 samples, 1.72%)</title><rect x="1114.9" y="53" width="20.2" height="15.0" fill="rgb(238,99,36)" rx="2" ry="2" /> +<text x="1117.90" y="63.5" ></text> +</g> +<g > +<title>/system@d62e597f0e2949bda5784759a1e3ccf2-00000000007dd167-000633084a43af72.journal (87 samples, 0.01%)</title><rect x="1181.7" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1184.66" y="159.5" ></text> +</g> +<g > +<title>/com.github.artemanufrij.playmymusic.Locale (173 samples, 0.02%)</title><rect x="231.9" y="149" width="0.2" height="15.0" fill="rgb(242,164,41)" rx="2" ry="2" /> +<text x="234.88" y="159.5" ></text> +</g> +<g > +<title>/remotes (395 samples, 0.04%)</title><rect x="230.9" y="133" width="0.4" height="15.0" fill="rgb(238,137,36)" rx="2" ry="2" /> +<text x="233.86" y="143.5" ></text> +</g> +<g > +<title>/memory.current (270 samples, 0.03%)</title><rect x="716.4" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="719.40" y="95.5" ></text> +</g> +<g > +<title>/maps (88 samples, 0.01%)</title><rect x="780.0" y="181" width="0.1" height="15.0" fill="rgb(243,120,42)" rx="2" ry="2" /> +<text x="783.04" y="191.5" ></text> +</g> +<g > +<title>enter_newfstat (88 samples, 0.01%)</title><rect x="693.4" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="696.41" y="79.5" ></text> +</g> +<g > +<title>/fonts (188 samples, 0.02%)</title><rect x="864.2" y="181" width="0.2" height="15.0" fill="rgb(238,149,36)" rx="2" ry="2" /> +<text x="867.18" y="191.5" ></text> +</g> +<g > +<title>/bin (553 samples, 0.06%)</title><rect x="133.1" y="165" width="0.6" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="136.06" y="175.5" ></text> +</g> +<g > +<title> (28,864 samples, 2.99%)</title><rect x="10.3" y="229" width="35.2" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="13.30" y="239.5" ></text> +</g> +<g > +<title>/.linuxbrew (1,172 samples, 0.12%)</title><rect x="119.3" y="181" width="1.4" height="15.0" fill="rgb(232,163,30)" rx="2" ry="2" /> +<text x="122.30" y="191.5" ></text> +</g> +<g > +<title>/bin (217 samples, 0.02%)</title><rect x="38.9" y="181" width="0.3" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="41.93" y="191.5" ></text> +</g> +<g > +<title>/usr (204 samples, 0.02%)</title><rect x="117.0" y="213" width="0.3" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="120.01" y="223.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Photos.slice (1,635 samples, 0.17%)</title><rect x="724.4" y="101" width="2.0" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="727.43" y="111.5" ></text> +</g> +<g > +<title>/system@38ed2805b6204d9b80417a97296c48b0-0000000000548c2f-0006232fc6538dab.journal (86 samples, 0.01%)</title><rect x="1178.4" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1181.35" y="159.5" ></text> +</g> +<g > +<title>enter_read (93 samples, 0.01%)</title><rect x="733.8" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="736.82" y="79.5" ></text> +</g> +<g > +<title>ior (268 samples, 0.03%)</title><rect x="1074.9" y="229" width="0.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" /> +<text x="1077.95" y="239.5" ></text> +</g> +<g > +<title>/proc (9,570 samples, 0.99%)</title><rect x="476.5" y="213" width="11.6" height="15.0" fill="rgb(234,144,31)" rx="2" ry="2" /> +<text x="479.46" y="223.5" ></text> +</g> +<g > +<title>/bofh-excuses (16,269 samples, 1.68%)</title><rect x="194.9" y="149" width="19.8" height="15.0" fill="rgb(239,113,37)" rx="2" ry="2" /> +<text x="197.88" y="159.5" ></text> +</g> +<g > +<title>enter_newfstat (87 samples, 0.01%)</title><rect x="1177.5" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1180.48" y="143.5" ></text> +</g> +<g > +<title> (95 samples, 0.01%)</title><rect x="881.4" y="229" width="0.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="884.42" y="239.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Calculator.SearchProvider.slice (1,675 samples, 0.17%)</title><rect x="704.0" y="101" width="2.0" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="707.00" y="111.5" ></text> +</g> +<g > +<title>enter_ioctl (88 samples, 0.01%)</title><rect x="701.0" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="704.00" y="79.5" ></text> +</g> +<g > +<title>socket:[1153176] (30,584 samples, 3.16%)</title><rect x="580.3" y="229" width="37.3" height="15.0" fill="rgb(233,175,31)" rx="2" ry="2" /> +<text x="583.29" y="239.5" >soc..</text> +</g> +<g > +<title>11284 (819 samples, 0.08%)</title><rect x="335.2" y="245" width="1.0" height="15.0" fill="rgb(249,126,48)" rx="2" ry="2" /> +<text x="338.20" y="255.5" ></text> +</g> +<g > +<title>/2c (88 samples, 0.01%)</title><rect x="1044.1" y="149" width="0.1" height="15.0" fill="rgb(225,134,22)" rx="2" ry="2" /> +<text x="1047.08" y="159.5" ></text> +</g> +<g > +<title>dev.bragefuglseth.Keypunch.Locale (97 samples, 0.01%)</title><rect x="306.6" y="229" width="0.1" height="15.0" fill="rgb(242,187,41)" rx="2" ry="2" /> +<text x="309.57" y="239.5" ></text> +</g> +<g > +<title>/.. (548 samples, 0.06%)</title><rect x="391.3" y="133" width="0.7" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="394.31" y="143.5" ></text> +</g> +<g > +<title>/tmp (318 samples, 0.03%)</title><rect x="541.5" y="213" width="0.3" height="15.0" fill="rgb(234,140,32)" rx="2" ry="2" /> +<text x="544.46" y="223.5" ></text> +</g> +<g > +<title>/gcc (147 samples, 0.02%)</title><rect x="1175.0" y="181" width="0.2" height="15.0" fill="rgb(234,144,32)" rx="2" ry="2" /> +<text x="1178.05" y="191.5" ></text> +</g> +<g > +<title>/memory.pressure (315 samples, 0.03%)</title><rect x="688.9" y="85" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="691.94" y="95.5" ></text> +</g> +<g > +<title>/627407 (93 samples, 0.01%)</title><rect x="775.3" y="197" width="0.1" height="15.0" fill="rgb(239,117,37)" rx="2" ry="2" /> +<text x="778.28" y="207.5" ></text> +</g> +<g > +<title>/user-1001.slice (354 samples, 0.04%)</title><rect x="622.4" y="149" width="0.5" height="15.0" fill="rgb(246,116,46)" rx="2" ry="2" /> +<text x="625.44" y="159.5" ></text> +</g> +<g > +<title>/conf.avail (1,359 samples, 0.14%)</title><rect x="1170.6" y="165" width="1.6" height="15.0" fill="rgb(233,164,31)" rx="2" ry="2" /> +<text x="1173.55" y="175.5" ></text> +</g> +<g > +<title>/65 (237 samples, 0.02%)</title><rect x="1078.6" y="149" width="0.3" height="15.0" fill="rgb(231,107,28)" rx="2" ry="2" /> +<text x="1081.60" y="159.5" ></text> +</g> +<g > +<title>/.. (147 samples, 0.02%)</title><rect x="1175.0" y="85" width="0.2" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1178.05" y="95.5" ></text> +</g> +<g > +<title>enter_newfstat (88 samples, 0.01%)</title><rect x="721.8" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="724.83" y="79.5" ></text> +</g> +<g > +<title>627367 (130 samples, 0.01%)</title><rect x="875.2" y="245" width="0.2" height="15.0" fill="rgb(233,145,31)" rx="2" ry="2" /> +<text x="878.23" y="255.5" ></text> +</g> +<g > +<title>/622059 (131 samples, 0.01%)</title><rect x="799.6" y="197" width="0.1" height="15.0" fill="rgb(232,117,30)" rx="2" ry="2" /> +<text x="802.57" y="207.5" ></text> +</g> +<g > +<title>/memory.low (282 samples, 0.03%)</title><rect x="747.1" y="85" width="0.3" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="750.06" y="95.5" ></text> +</g> +<g > +<title>/1 (90 samples, 0.01%)</title><rect x="621.4" y="197" width="0.1" height="15.0" fill="rgb(232,133,30)" rx="2" ry="2" /> +<text x="624.41" y="207.5" ></text> +</g> +<g > +<title>/run (134 samples, 0.01%)</title><rect x="775.5" y="197" width="0.2" height="15.0" fill="rgb(243,124,41)" rx="2" ry="2" /> +<text x="778.54" y="207.5" ></text> +</g> +<g > +<title>enter_ioctl (94 samples, 0.01%)</title><rect x="711.2" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="714.23" y="79.5" ></text> +</g> +<g > +<title>/memory.pressure (328 samples, 0.03%)</title><rect x="749.8" y="85" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="752.82" y="95.5" ></text> +</g> +<g > +<title>/app (210 samples, 0.02%)</title><rect x="315.1" y="181" width="0.2" height="15.0" fill="rgb(248,115,47)" rx="2" ry="2" /> +<text x="318.07" y="191.5" ></text> +</g> +<g > +<title>enter_newfstat (93 samples, 0.01%)</title><rect x="1177.9" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1180.89" y="143.5" ></text> +</g> +<g > +<title>/a.out (169 samples, 0.02%)</title><rect x="1085.6" y="181" width="0.2" height="15.0" fill="rgb(234,96,32)" rx="2" ry="2" /> +<text x="1088.60" y="191.5" ></text> +</g> +<g > +<title>/variety (572 samples, 0.06%)</title><rect x="116.3" y="165" width="0.7" height="15.0" fill="rgb(243,130,42)" rx="2" ry="2" /> +<text x="119.30" y="175.5" ></text> +</g> +<g > +<title>/usr (1,343 samples, 0.14%)</title><rect x="623.1" y="213" width="1.6" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="626.06" y="223.5" ></text> +</g> +<g > +<title>/fonts (16,622 samples, 1.72%)</title><rect x="1145.4" y="181" width="20.3" height="15.0" fill="rgb(238,149,36)" rx="2" ry="2" /> +<text x="1148.41" y="191.5" ></text> +</g> +<g > +<title> (4,697 samples, 0.49%)</title><rect x="768.7" y="229" width="5.7" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="771.66" y="239.5" ></text> +</g> +<g > +<title>enter_newfstat (92 samples, 0.01%)</title><rect x="1178.2" y="133" width="0.2" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1181.24" y="143.5" ></text> +</g> +<g > +<title>/home (336 samples, 0.03%)</title><rect x="1144.7" y="213" width="0.5" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="1147.75" y="223.5" ></text> +</g> +<g > +<title>/lib64 (160 samples, 0.02%)</title><rect x="1145.2" y="213" width="0.2" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="1148.16" y="223.5" ></text> +</g> +<g > +<title>/home (1,619 samples, 0.17%)</title><rect x="35.4" y="213" width="2.0" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="38.45" y="223.5" ></text> +</g> +<g > +<title>/fedora (143 samples, 0.01%)</title><rect x="215.2" y="149" width="0.1" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" /> +<text x="218.17" y="159.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="735.1" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="738.13" y="79.5" ></text> +</g> +<g > +<title>enter_faccessat2 (107 samples, 0.01%)</title><rect x="248.4" y="149" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> +<text x="251.42" y="159.5" ></text> +</g> +<g > +<title>/importlib (140 samples, 0.01%)</title><rect x="1036.1" y="165" width="0.1" height="15.0" fill="rgb(234,140,32)" rx="2" ry="2" /> +<text x="1039.07" y="175.5" ></text> +</g> +<g > +<title>11398 (338 samples, 0.03%)</title><rect x="341.4" y="245" width="0.5" height="15.0" fill="rgb(240,123,38)" rx="2" ry="2" /> +<text x="344.45" y="255.5" ></text> +</g> +<g > +<title>org.kde.KStyle.Adwaita (96 samples, 0.01%)</title><rect x="313.2" y="229" width="0.1" height="15.0" fill="rgb(229,179,27)" rx="2" ry="2" /> +<text x="316.23" y="239.5" ></text> +</g> +<g > +<title>/lib (702 samples, 0.07%)</title><rect x="1092.3" y="197" width="0.8" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="1095.26" y="207.5" ></text> +</g> +<g > +<title>/transactions.db (507 samples, 0.05%)</title><rect x="1175.4" y="165" width="0.6" height="15.0" fill="rgb(232,124,30)" rx="2" ry="2" /> +<text x="1178.39" y="175.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="718.0" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="721.00" y="79.5" ></text> +</g> +<g > +<title>/omf (160 samples, 0.02%)</title><rect x="681.8" y="117" width="0.2" height="15.0" fill="rgb(238,165,36)" rx="2" ry="2" /> +<text x="684.76" y="127.5" ></text> +</g> +<g > +<title>/xml (277 samples, 0.03%)</title><rect x="215.3" y="165" width="0.4" height="15.0" fill="rgb(230,120,27)" rx="2" ry="2" /> +<text x="218.35" y="175.5" ></text> +</g> +<g > +<title>enter_read (5,443 samples, 0.56%)</title><rect x="1128.5" y="37" width="6.6" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="1131.49" y="47.5" ></text> +</g> +<g > +<title>/fe (99 samples, 0.01%)</title><rect x="1069.3" y="149" width="0.1" height="15.0" fill="rgb(242,142,41)" rx="2" ry="2" /> +<text x="1072.31" y="159.5" ></text> +</g> +<g > +<title>/memory.stat (264 samples, 0.03%)</title><rect x="725.8" y="85" width="0.3" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="728.78" y="95.5" ></text> +</g> +<g > +<title>/null (123 samples, 0.01%)</title><rect x="864.5" y="197" width="0.2" height="15.0" fill="rgb(224,145,21)" rx="2" ry="2" /> +<text x="867.54" y="207.5" ></text> +</g> +<g > +<title>/gcc (697 samples, 0.07%)</title><rect x="1083.7" y="181" width="0.9" height="15.0" fill="rgb(234,144,32)" rx="2" ry="2" /> +<text x="1086.74" y="191.5" ></text> +</g> +<g > +<title> (126 samples, 0.01%)</title><rect x="874.0" y="229" width="0.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="876.99" y="239.5" ></text> +</g> +<g > +<title>/bd (94 samples, 0.01%)</title><rect x="1061.4" y="149" width="0.1" height="15.0" fill="rgb(236,110,34)" rx="2" ry="2" /> +<text x="1064.43" y="159.5" ></text> +</g> +<g > +<title>/share (122 samples, 0.01%)</title><rect x="332.1" y="197" width="0.2" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="335.13" y="207.5" ></text> +</g> +<g > +<title>/memory.stat (267 samples, 0.03%)</title><rect x="760.5" y="101" width="0.3" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="763.50" y="111.5" ></text> +</g> +<g > +<title>/04 (86 samples, 0.01%)</title><rect x="1039.2" y="149" width="0.1" height="15.0" fill="rgb(239,140,37)" rx="2" ry="2" /> +<text x="1042.18" y="159.5" ></text> +</g> +<g > +<title>/x86_64 (724 samples, 0.07%)</title><rect x="234.6" y="133" width="0.8" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="237.55" y="143.5" ></text> +</g> +<g > +<title>/firefox (778 samples, 0.08%)</title><rect x="797.8" y="165" width="0.9" height="15.0" fill="rgb(249,129,49)" rx="2" ry="2" /> +<text x="800.79" y="175.5" ></text> +</g> +<g > +<title>/fontconfig (125 samples, 0.01%)</title><rect x="1170.1" y="165" width="0.1" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="1173.07" y="175.5" ></text> +</g> +<g > +<title>enter_newfstat (85 samples, 0.01%)</title><rect x="1183.8" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1186.84" y="143.5" ></text> +</g> +<g > +<title>org.kde.PlatformTheme.QGnomePlatform (89 samples, 0.01%)</title><rect x="313.6" y="229" width="0.1" height="15.0" fill="rgb(232,179,30)" rx="2" ry="2" /> +<text x="316.59" y="239.5" ></text> +</g> +<g > +<title>/memory.low (270 samples, 0.03%)</title><rect x="704.3" y="85" width="0.4" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="707.33" y="95.5" ></text> +</g> +<g > +<title>enter_access (347 samples, 0.04%)</title><rect x="143.5" y="165" width="0.4" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="146.50" y="175.5" ></text> +</g> +<g > +<title>11039 (2,507 samples, 0.26%)</title><rect x="328.0" y="245" width="3.1" height="15.0" fill="rgb(235,132,33)" rx="2" ry="2" /> +<text x="331.01" y="255.5" ></text> +</g> +<g > +<title>627262 (82 samples, 0.01%)</title><rect x="868.4" y="245" width="0.1" height="15.0" fill="rgb(242,145,41)" rx="2" ry="2" /> +<text x="871.40" y="255.5" ></text> +</g> +<g > +<title>/73 (104 samples, 0.01%)</title><rect x="1052.4" y="149" width="0.1" height="15.0" fill="rgb(245,164,44)" rx="2" ry="2" /> +<text x="1055.38" y="159.5" ></text> +</g> +<g > +<title>/memory.min (270 samples, 0.03%)</title><rect x="708.8" y="85" width="0.3" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="711.78" y="95.5" ></text> +</g> +<g > +<title>/.. (252 samples, 0.03%)</title><rect x="1092.3" y="101" width="0.3" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1095.26" y="111.5" ></text> +</g> +<g > +<title>/system.slice (1,688 samples, 0.17%)</title><rect x="683.8" y="165" width="2.1" height="15.0" fill="rgb(246,145,46)" rx="2" ry="2" /> +<text x="686.84" y="175.5" ></text> +</g> +<g > +<title> (2,866 samples, 0.30%)</title><rect x="864.5" y="229" width="3.5" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="867.54" y="239.5" ></text> +</g> +<g > +<title>pipe:[2415989] (1,052 samples, 0.11%)</title><rect x="801.0" y="229" width="1.3" height="15.0" fill="rgb(241,170,40)" rx="2" ry="2" /> +<text x="804.04" y="239.5" ></text> +</g> +<g > +<title>/8fdf8f8889f8fdc86da63648afa769dcf3dc1ad952abbb201d8a0b6bdffb640f (117 samples, 0.01%)</title><rect x="235.2" y="101" width="0.1" height="15.0" fill="rgb(244,149,43)" rx="2" ry="2" /> +<text x="238.16" y="111.5" ></text> +</g> +<g > +<title>/memory.stat (258 samples, 0.03%)</title><rect x="735.9" y="85" width="0.4" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="738.95" y="95.5" ></text> +</g> +<g > +<title>org.gnome.Geary (88 samples, 0.01%)</title><rect x="312.0" y="229" width="0.1" height="15.0" fill="rgb(248,179,47)" rx="2" ry="2" /> +<text x="315.00" y="239.5" ></text> +</g> +<g > +<title>/memory.min (270 samples, 0.03%)</title><rect x="721.1" y="85" width="0.3" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="724.07" y="95.5" ></text> +</g> +<g > +<title>enter_newfstat (98 samples, 0.01%)</title><rect x="1179.9" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1182.92" y="143.5" ></text> +</g> +<g > +<title>/var (94 samples, 0.01%)</title><rect x="776.6" y="213" width="0.1" height="15.0" fill="rgb(231,130,28)" rx="2" ry="2" /> +<text x="779.57" y="223.5" ></text> +</g> +<g > +<title>/b5 (97 samples, 0.01%)</title><rect x="1060.4" y="149" width="0.2" height="15.0" fill="rgb(231,107,28)" rx="2" ry="2" /> +<text x="1063.44" y="159.5" ></text> +</g> +<g > +<title>/lib-dynload (145 samples, 0.02%)</title><rect x="1036.3" y="165" width="0.1" height="15.0" fill="rgb(243,99,41)" rx="2" ry="2" /> +<text x="1039.26" y="175.5" ></text> +</g> +<g > +<title>/home (82 samples, 0.01%)</title><rect x="782.1" y="213" width="0.1" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="785.13" y="223.5" ></text> +</g> +<g > +<title>enter_openat (116 samples, 0.01%)</title><rect x="479.6" y="165" width="0.1" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="482.58" y="175.5" ></text> +</g> +<g > +<title>/f2 (88 samples, 0.01%)</title><rect x="1067.9" y="149" width="0.1" height="15.0" fill="rgb(244,152,42)" rx="2" ry="2" /> +<text x="1070.93" y="159.5" ></text> +</g> +<g > +<title>/x86_64 (88 samples, 0.01%)</title><rect x="233.8" y="133" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="236.83" y="143.5" ></text> +</g> +<g > +<title>/memory.min (276 samples, 0.03%)</title><rect x="706.7" y="85" width="0.4" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="709.72" y="95.5" ></text> +</g> +<g > +<title>11311 (3,361 samples, 0.35%)</title><rect x="336.2" y="245" width="4.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> +<text x="339.20" y="255.5" ></text> +</g> +<g > +<title>/memory.pressure (321 samples, 0.03%)</title><rect x="751.9" y="85" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="754.88" y="95.5" ></text> +</g> +<g > +<title>/usr (16,676 samples, 1.73%)</title><rect x="1145.4" y="213" width="20.3" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="1148.35" y="223.5" ></text> +</g> +<g > +<title>/user@1001.service (63,345 samples, 6.56%)</title><rect x="687.9" y="133" width="77.4" height="15.0" fill="rgb(246,116,46)" rx="2" ry="2" /> +<text x="690.95" y="143.5" >/user@10..</text> +</g> +<g > +<title>/libgcc_s.so (244 samples, 0.03%)</title><rect x="1092.8" y="133" width="0.3" height="15.0" fill="rgb(240,99,39)" rx="2" ry="2" /> +<text x="1095.79" y="143.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="754.2" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="757.22" y="79.5" ></text> +</g> +<g > +<title>enter_write (93 samples, 0.01%)</title><rect x="776.3" y="213" width="0.1" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="779.25" y="223.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="689.2" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="692.21" y="79.5" ></text> +</g> +<g > +<title>/.cache (10,100 samples, 1.05%)</title><rect x="120.7" y="181" width="12.4" height="15.0" fill="rgb(245,154,44)" rx="2" ry="2" /> +<text x="123.73" y="191.5" ></text> +</g> +<g > +<title>enter_read (1,136 samples, 0.12%)</title><rect x="1099.6" y="133" width="1.4" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="1102.63" y="143.5" ></text> +</g> +<g > +<title>enter_mmap (102 samples, 0.01%)</title><rect x="1165.7" y="213" width="0.1" height="15.0" fill="rgb(240,196,39)" rx="2" ry="2" /> +<text x="1168.72" y="223.5" ></text> +</g> +<g > +<title>627606 (2,544 samples, 0.26%)</title><rect x="1169.4" y="245" width="3.1" height="15.0" fill="rgb(239,145,37)" rx="2" ry="2" /> +<text x="1172.38" y="255.5" ></text> +</g> +<g > +<title>/83 (119 samples, 0.01%)</title><rect x="1054.4" y="149" width="0.1" height="15.0" fill="rgb(244,159,43)" rx="2" ry="2" /> +<text x="1057.36" y="159.5" ></text> +</g> +<g > +<title>enter_close (520 samples, 0.05%)</title><rect x="677.7" y="213" width="0.6" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="680.67" y="223.5" ></text> +</g> +<g > +<title> (2,543 samples, 0.26%)</title><rect x="1169.4" y="229" width="3.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1172.38" y="239.5" ></text> +</g> +<g > +<title>21394 (1,992 samples, 0.21%)</title><rect x="445.8" y="245" width="2.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> +<text x="448.75" y="255.5" ></text> +</g> +<g > +<title>/paul (331 samples, 0.03%)</title><rect x="1144.8" y="197" width="0.4" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="1147.75" y="207.5" ></text> +</g> +<g > +<title>/Microsoft (388 samples, 0.04%)</title><rect x="871.6" y="165" width="0.5" height="15.0" fill="rgb(239,145,37)" rx="2" ry="2" /> +<text x="874.61" y="175.5" ></text> +</g> +<g > +<title>enter_read (94 samples, 0.01%)</title><rect x="750.1" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="753.11" y="79.5" ></text> +</g> +<g > +<title>enter_newfstat (222 samples, 0.02%)</title><rect x="815.0" y="149" width="0.3" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="818.00" y="159.5" ></text> +</g> +<g > +<title>/var (376 samples, 0.04%)</title><rect x="396.4" y="213" width="0.5" height="15.0" fill="rgb(231,130,28)" rx="2" ry="2" /> +<text x="399.42" y="223.5" ></text> +</g> +<g > +<title>/.. (122 samples, 0.01%)</title><rect x="541.9" y="133" width="0.1" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="544.87" y="143.5" ></text> +</g> +<g > +<title>/memory.min (282 samples, 0.03%)</title><rect x="747.4" y="85" width="0.3" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="750.40" y="95.5" ></text> +</g> +<g > +<title>/user-1001@00061efde1b078bd-27cb76cbbc8326b3.journal~ (94 samples, 0.01%)</title><rect x="1183.0" y="149" width="0.1" height="15.0" fill="rgb(233,116,31)" rx="2" ry="2" /> +<text x="1185.99" y="159.5" ></text> +</g> +<g > +<title>/history.sqlite-shm (156 samples, 0.02%)</title><rect x="624.7" y="165" width="0.2" height="15.0" fill="rgb(228,119,26)" rx="2" ry="2" /> +<text x="627.71" y="175.5" ></text> +</g> +<g > +<title>/aquasecurity (193 samples, 0.02%)</title><rect x="1070.8" y="117" width="0.3" height="15.0" fill="rgb(240,112,38)" rx="2" ry="2" /> +<text x="1073.85" y="127.5" ></text> +</g> +<g > +<title>anon_inode:[eventfd] (140 samples, 0.01%)</title><rect x="343.4" y="229" width="0.2" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="346.41" y="239.5" ></text> +</g> +<g > +<title>enter_read (94 samples, 0.01%)</title><rect x="712.5" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="715.48" y="79.5" ></text> +</g> +<g > +<title>/org.kde.KStyle.Adwaita (120 samples, 0.01%)</title><rect x="305.7" y="197" width="0.1" height="15.0" fill="rgb(229,149,27)" rx="2" ry="2" /> +<text x="308.66" y="207.5" ></text> +</g> +<g > +<title>/lib64 (186 samples, 0.02%)</title><rect x="38.7" y="69" width="0.2" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="41.67" y="79.5" ></text> +</g> +<g > +<title>/45 (91 samples, 0.01%)</title><rect x="1047.0" y="149" width="0.1" height="15.0" fill="rgb(233,117,31)" rx="2" ry="2" /> +<text x="1050.00" y="159.5" ></text> +</g> +<g > +<title>/libgcc.a (88 samples, 0.01%)</title><rect x="1086.3" y="133" width="0.1" height="15.0" fill="rgb(238,99,36)" rx="2" ry="2" /> +<text x="1089.32" y="143.5" ></text> +</g> +<g > +<title>/app (325 samples, 0.03%)</title><rect x="315.4" y="181" width="0.4" height="15.0" fill="rgb(248,115,47)" rx="2" ry="2" /> +<text x="318.42" y="191.5" ></text> +</g> +<g > +<title>/fdinfo (146 samples, 0.02%)</title><rect x="767.0" y="181" width="0.2" height="15.0" fill="rgb(248,145,47)" rx="2" ry="2" /> +<text x="770.03" y="191.5" ></text> +</g> +<g > +<title>/system@a8954016c5ba413ab48db302723d4801-00000000004c324d-00061d8bc1c54535.journal (98 samples, 0.01%)</title><rect x="1179.9" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1182.92" y="159.5" ></text> +</g> +<g > +<title>/pets (631 samples, 0.07%)</title><rect x="546.3" y="149" width="0.7" height="15.0" fill="rgb(236,147,34)" rx="2" ry="2" /> +<text x="549.26" y="159.5" ></text> +</g> +<g > +<title>/dconf (96 samples, 0.01%)</title><rect x="36.3" y="165" width="0.1" height="15.0" fill="rgb(249,159,48)" rx="2" ry="2" /> +<text x="39.27" y="175.5" ></text> +</g> +<g > +<title>/memory.stat (264 samples, 0.03%)</title><rect x="723.8" y="85" width="0.3" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="726.79" y="95.5" ></text> +</g> +<g > +<title>enter_write (255 samples, 0.03%)</title><rect x="1075.0" y="213" width="0.3" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="1077.96" y="223.5" ></text> +</g> +<g > +<title> (110,712 samples, 11.46%)</title><rect x="119.1" y="229" width="135.2" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="122.08" y="239.5" ></text> +</g> +<g > +<title>/memory.low (264 samples, 0.03%)</title><rect x="700.3" y="85" width="0.3" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="703.30" y="95.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Characters.slice (1,678 samples, 0.17%)</title><rect x="708.1" y="101" width="2.1" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="711.11" y="111.5" ></text> +</g> +<g > +<title>/a.out (145 samples, 0.02%)</title><rect x="1083.5" y="181" width="0.2" height="15.0" fill="rgb(234,96,32)" rx="2" ry="2" /> +<text x="1086.48" y="191.5" ></text> +</g> +<g > +<title>anon_inode:[eventfd] (35,532 samples, 3.68%)</title><rect x="254.3" y="229" width="43.4" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="257.33" y="239.5" >anon..</text> +</g> +<g > +<title>/x86_64 (103 samples, 0.01%)</title><rect x="305.0" y="181" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="308.02" y="191.5" ></text> +</g> +<g > +<title>/000049.o (89 samples, 0.01%)</title><rect x="1106.1" y="181" width="0.1" height="15.0" fill="rgb(244,153,43)" rx="2" ry="2" /> +<text x="1109.11" y="191.5" ></text> +</g> +<g > +<title>/system@00061c9741af4594-5b31eb6a6ca5fdd4.journal~ (120 samples, 0.01%)</title><rect x="1176.3" y="149" width="0.2" height="15.0" fill="rgb(233,145,31)" rx="2" ry="2" /> +<text x="1179.35" y="159.5" ></text> +</g> +<g > +<title>5587 (236 samples, 0.02%)</title><rect x="776.5" y="245" width="0.3" height="15.0" fill="rgb(241,134,40)" rx="2" ry="2" /> +<text x="779.46" y="255.5" ></text> +</g> +<g > +<title>enter_newfstat (93 samples, 0.01%)</title><rect x="1185.6" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1188.61" y="143.5" ></text> +</g> +<g > +<title>/ac (102 samples, 0.01%)</title><rect x="1059.3" y="149" width="0.2" height="15.0" fill="rgb(221,118,18)" rx="2" ry="2" /> +<text x="1062.33" y="159.5" ></text> +</g> +<g > +<title>enter_statx (104 samples, 0.01%)</title><rect x="240.7" y="133" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> +<text x="243.73" y="143.5" ></text> +</g> +<g > +<title>/memory.current (264 samples, 0.03%)</title><rect x="720.4" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="723.43" y="95.5" ></text> +</g> +<g > +<title>enter_newfstat (90 samples, 0.01%)</title><rect x="707.5" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="710.50" y="79.5" ></text> +</g> +<g > +<title>anon_inode:[timerfd] (170 samples, 0.02%)</title><rect x="807.2" y="229" width="0.2" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="810.18" y="239.5" ></text> +</g> +<g > +<title>/memory.low (276 samples, 0.03%)</title><rect x="740.9" y="85" width="0.4" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="743.92" y="95.5" ></text> +</g> +<g > +<title>enter_lseek (86 samples, 0.01%)</title><rect x="1141.5" y="117" width="0.2" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="1144.55" y="127.5" ></text> +</g> +<g > +<title>enter_write (119 samples, 0.01%)</title><rect x="624.5" y="133" width="0.1" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="627.48" y="143.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="692.5" y="69" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="695.55" y="79.5" ></text> +</g> +<g > +<title>/82 (89 samples, 0.01%)</title><rect x="1054.3" y="149" width="0.1" height="15.0" fill="rgb(246,162,45)" rx="2" ry="2" /> +<text x="1057.25" y="159.5" ></text> +</g> +<g > +<title>/x86_64 (93 samples, 0.01%)</title><rect x="316.8" y="197" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="319.83" y="207.5" ></text> +</g> +<g > +<title>11261 (3,009 samples, 0.31%)</title><rect x="331.4" y="245" width="3.7" height="15.0" fill="rgb(226,126,24)" rx="2" ry="2" /> +<text x="334.45" y="255.5" ></text> +</g> +<g > +<title>/com.sweethome3d.Sweethome3d (103 samples, 0.01%)</title><rect x="217.5" y="149" width="0.1" height="15.0" fill="rgb(243,164,42)" rx="2" ry="2" /> +<text x="220.50" y="159.5" ></text> +</g> +<g > +<title>/var (27,418 samples, 2.84%)</title><rect x="215.7" y="213" width="33.5" height="15.0" fill="rgb(231,130,28)" rx="2" ry="2" /> +<text x="218.72" y="223.5" >/var</text> +</g> +<g > +<title> (1,234 samples, 0.13%)</title><rect x="1087.3" y="229" width="1.5" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1090.32" y="239.5" ></text> +</g> +<g > +<title>enter_read (103 samples, 0.01%)</title><rect x="768.1" y="213" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="771.11" y="223.5" ></text> +</g> +<g > +<title>/fortune (4,693 samples, 0.49%)</title><rect x="542.1" y="165" width="5.7" height="15.0" fill="rgb(246,149,46)" rx="2" ry="2" /> +<text x="545.06" y="175.5" ></text> +</g> +<g > +<title>enter_read (837 samples, 0.09%)</title><rect x="93.8" y="213" width="1.0" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="96.77" y="223.5" ></text> +</g> +<g > +<title> (249 samples, 0.03%)</title><rect x="1189.7" y="229" width="0.3" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1192.68" y="239.5" ></text> +</g> +<g > +<title>/3 (89 samples, 0.01%)</title><rect x="621.7" y="197" width="0.1" height="15.0" fill="rgb(249,122,48)" rx="2" ry="2" /> +<text x="624.74" y="207.5" ></text> +</g> +<g > +<title>/lib64 (548 samples, 0.06%)</title><rect x="391.3" y="69" width="0.7" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="394.31" y="79.5" ></text> +</g> +<g > +<title>627363 (168 samples, 0.02%)</title><rect x="875.0" y="245" width="0.2" height="15.0" fill="rgb(240,145,38)" rx="2" ry="2" /> +<text x="878.02" y="255.5" ></text> +</g> +<g > +<title>enter_newfstat (90 samples, 0.01%)</title><rect x="703.4" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="706.40" y="79.5" ></text> +</g> +<g > +<title>/cgroup (234 samples, 0.02%)</title><rect x="808.3" y="181" width="0.3" height="15.0" fill="rgb(241,151,40)" rx="2" ry="2" /> +<text x="811.32" y="191.5" ></text> +</g> +<g > +<title>/lib (703 samples, 0.07%)</title><rect x="1085.9" y="197" width="0.9" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="1088.89" y="207.5" ></text> +</g> +<g > +<title>enter_read (94 samples, 0.01%)</title><rect x="711.5" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="714.46" y="79.5" ></text> +</g> +<g > +<title>enter_newfstat (85 samples, 0.01%)</title><rect x="1177.6" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1180.58" y="143.5" ></text> +</g> +<g > +<title>/runtime (14,604 samples, 1.51%)</title><rect x="231.4" y="165" width="17.8" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" /> +<text x="234.35" y="175.5" ></text> +</g> +<g > +<title>/libc.so (123 samples, 0.01%)</title><rect x="1086.1" y="53" width="0.1" height="15.0" fill="rgb(240,99,39)" rx="2" ry="2" /> +<text x="1089.05" y="63.5" ></text> +</g> +<g > +<title>/system@d62e597f0e2949bda5784759a1e3ccf2-00000000006bf60a-00062bf70d0a513f.journal (85 samples, 0.01%)</title><rect x="1180.9" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1183.93" y="159.5" ></text> +</g> +<g > +<title>627352 (198 samples, 0.02%)</title><rect x="874.6" y="245" width="0.2" height="15.0" fill="rgb(243,145,41)" rx="2" ry="2" /> +<text x="877.58" y="255.5" ></text> +</g> +<g > +<title>/stat (812 samples, 0.08%)</title><rect x="478.2" y="181" width="1.0" height="15.0" fill="rgb(229,122,26)" rx="2" ry="2" /> +<text x="481.23" y="191.5" ></text> +</g> +<g > +<title>/paul (2,156 samples, 0.22%)</title><rect x="837.6" y="197" width="2.6" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="840.61" y="207.5" ></text> +</g> +<g > +<title>enter_readlink (87 samples, 0.01%)</title><rect x="1114.5" y="181" width="0.1" height="15.0" fill="rgb(236,196,34)" rx="2" ry="2" /> +<text x="1117.46" y="191.5" ></text> +</g> +<g > +<title>/user.slice (111 samples, 0.01%)</title><rect x="462.1" y="165" width="0.1" height="15.0" fill="rgb(246,116,46)" rx="2" ry="2" /> +<text x="465.05" y="175.5" ></text> +</g> +<g > +<title>/system@c4761a27c8514e1fbb7c5fc6bfca8b84-00000000005097b0-000620e0ef6ede41.journal (89 samples, 0.01%)</title><rect x="1180.3" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1183.32" y="159.5" ></text> +</g> +<g > +<title>625682 (546 samples, 0.06%)</title><rect x="806.7" y="245" width="0.7" height="15.0" fill="rgb(249,151,49)" rx="2" ry="2" /> +<text x="809.74" y="255.5" ></text> +</g> +<g > +<title>/objects (167 samples, 0.02%)</title><rect x="872.8" y="213" width="0.2" height="15.0" fill="rgb(237,162,35)" rx="2" ry="2" /> +<text x="875.77" y="223.5" ></text> +</g> +<g > +<title>/x86_64 (292 samples, 0.03%)</title><rect x="304.0" y="181" width="0.4" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="307.03" y="191.5" ></text> +</g> +<g > +<title>enter_openat (1,233 samples, 0.13%)</title><rect x="326.4" y="213" width="1.5" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="329.40" y="223.5" ></text> +</g> +<g > +<title>/bc (92 samples, 0.01%)</title><rect x="1061.3" y="149" width="0.1" height="15.0" fill="rgb(220,113,17)" rx="2" ry="2" /> +<text x="1064.31" y="159.5" ></text> +</g> +<g > +<title>/paul (370 samples, 0.04%)</title><rect x="681.6" y="197" width="0.4" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="684.57" y="207.5" ></text> +</g> +<g > +<title>/memory.current (282 samples, 0.03%)</title><rect x="712.2" y="85" width="0.4" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="715.25" y="95.5" ></text> +</g> +<g > +<title>/memory.min (270 samples, 0.03%)</title><rect x="733.2" y="85" width="0.3" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="736.21" y="95.5" ></text> +</g> +<g > +<title> (157 samples, 0.02%)</title><rect x="617.6" y="229" width="0.2" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="620.64" y="239.5" ></text> +</g> +<g > +<title>/ae (99 samples, 0.01%)</title><rect x="1059.6" y="149" width="0.1" height="15.0" fill="rgb(235,112,33)" rx="2" ry="2" /> +<text x="1062.59" y="159.5" ></text> +</g> +<g > +<title>/cgroup (392 samples, 0.04%)</title><rect x="622.4" y="181" width="0.5" height="15.0" fill="rgb(241,151,40)" rx="2" ry="2" /> +<text x="625.40" y="191.5" ></text> +</g> +<g > +<title>/memory.current (264 samples, 0.03%)</title><rect x="692.0" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="695.01" y="95.5" ></text> +</g> +<g > +<title>/wallpaper-auto-rotated-a8cee8b7b10d114af95614cdd1bdd41a.jpg (480 samples, 0.05%)</title><rect x="836.4" y="133" width="0.6" height="15.0" fill="rgb(240,125,39)" rx="2" ry="2" /> +<text x="839.41" y="143.5" ></text> +</g> +<g > +<title>/com.bitwarden.desktop (107 samples, 0.01%)</title><rect x="216.0" y="149" width="0.2" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="219.04" y="159.5" ></text> +</g> +<g > +<title>enter_openat (116 samples, 0.01%)</title><rect x="478.8" y="165" width="0.1" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="481.80" y="175.5" ></text> +</g> +<g > +<title>pipe:[1143756] (397 samples, 0.04%)</title><rect x="488.7" y="229" width="0.5" height="15.0" fill="rgb(235,170,33)" rx="2" ry="2" /> +<text x="491.68" y="239.5" ></text> +</g> +<g > +<title>/.cargo (125 samples, 0.01%)</title><rect x="674.5" y="181" width="0.2" height="15.0" fill="rgb(244,154,43)" rx="2" ry="2" /> +<text x="677.55" y="191.5" ></text> +</g> +<g > +<title>io.github.ltiber.Pwall (86 samples, 0.01%)</title><rect x="308.4" y="229" width="0.1" height="15.0" fill="rgb(230,152,28)" rx="2" ry="2" /> +<text x="311.38" y="239.5" ></text> +</g> +<g > +<title>enter_newfstat (90 samples, 0.01%)</title><rect x="760.6" y="85" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="763.55" y="95.5" ></text> +</g> +<g > +<title>enter_fcntl (892 samples, 0.09%)</title><rect x="809.1" y="133" width="1.1" height="15.0" fill="rgb(233,196,30)" rx="2" ry="2" /> +<text x="812.11" y="143.5" ></text> +</g> +<g > +<title>/memory.min (272 samples, 0.03%)</title><rect x="723.1" y="85" width="0.3" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="726.08" y="95.5" ></text> +</g> +<g > +<title>/ld-linux-x86-64.so.2 (107 samples, 0.01%)</title><rect x="1083.1" y="197" width="0.1" height="15.0" fill="rgb(250,115,50)" rx="2" ry="2" /> +<text x="1086.08" y="207.5" ></text> +</g> +<g > +<title>/user-1001@000627a4f2b41aa9-f38c91c8c439c993.journal~ (86 samples, 0.01%)</title><rect x="1183.3" y="149" width="0.1" height="15.0" fill="rgb(233,116,31)" rx="2" ry="2" /> +<text x="1186.30" y="159.5" ></text> +</g> +<g > +<title>/system@6d19fc5cd4824ff2bb405e75f6f3cd03-00000000004fd186-00062088a964e077.journal (90 samples, 0.01%)</title><rect x="1179.2" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1182.16" y="159.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="687.5" y="85" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="690.50" y="95.5" ></text> +</g> +<g > +<title>anon_inode:sync_file (3,017 samples, 0.31%)</title><rect x="94.8" y="229" width="3.7" height="15.0" fill="rgb(237,164,35)" rx="2" ry="2" /> +<text x="97.82" y="239.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Settings.GlobalShortcutsProvider.slice (1,683 samples, 0.17%)</title><rect x="730.5" y="101" width="2.1" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="733.50" y="111.5" ></text> +</g> +<g > +<title>/613221 (264 samples, 0.03%)</title><rect x="780.2" y="197" width="0.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" /> +<text x="783.25" y="207.5" ></text> +</g> +<g > +<title>/memory.low (276 samples, 0.03%)</title><rect x="684.2" y="149" width="0.3" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="687.17" y="159.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="685.8" y="133" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="688.79" y="143.5" ></text> +</g> +<g > +<title>/org.gnome.Showtime (102 samples, 0.01%)</title><rect x="220.1" y="149" width="0.2" height="15.0" fill="rgb(236,149,34)" rx="2" ry="2" /> +<text x="223.15" y="159.5" ></text> +</g> +<g > +<title>/34 (92 samples, 0.01%)</title><rect x="1045.0" y="149" width="0.1" height="15.0" fill="rgb(236,125,34)" rx="2" ry="2" /> +<text x="1048.03" y="159.5" ></text> +</g> +<g > +<title>/var (384 samples, 0.04%)</title><rect x="42.3" y="213" width="0.5" height="15.0" fill="rgb(231,130,28)" rx="2" ry="2" /> +<text x="45.28" y="223.5" ></text> +</g> +<g > +<title>/15 (101 samples, 0.01%)</title><rect x="676.8" y="149" width="0.1" height="15.0" fill="rgb(236,132,34)" rx="2" ry="2" /> +<text x="679.82" y="159.5" ></text> +</g> +<g > +<title>pipe:[2412989] (750 samples, 0.08%)</title><rect x="802.6" y="229" width="0.9" height="15.0" fill="rgb(241,170,40)" rx="2" ry="2" /> +<text x="805.62" y="239.5" ></text> +</g> +<g > +<title>/variety (114 samples, 0.01%)</title><rect x="36.4" y="165" width="0.1" height="15.0" fill="rgb(243,130,42)" rx="2" ry="2" /> +<text x="39.40" y="175.5" ></text> +</g> +<g > +<title>/go (221 samples, 0.02%)</title><rect x="36.9" y="181" width="0.3" height="15.0" fill="rgb(241,144,39)" rx="2" ry="2" /> +<text x="39.88" y="191.5" ></text> +</g> +<g > +<title>/ed (106 samples, 0.01%)</title><rect x="1067.3" y="149" width="0.2" height="15.0" fill="rgb(245,150,44)" rx="2" ry="2" /> +<text x="1070.32" y="159.5" ></text> +</g> +<g > +<title>/memory.current (276 samples, 0.03%)</title><rect x="746.7" y="85" width="0.4" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="749.72" y="95.5" ></text> +</g> +<g > +<title>/13 (143 samples, 0.01%)</title><rect x="674.1" y="181" width="0.1" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="677.07" y="191.5" ></text> +</g> +<g > +<title>enter_write (4,035 samples, 0.42%)</title><rect x="575.4" y="213" width="4.9" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="578.36" y="223.5" ></text> +</g> +<g > +<title>enter_newfstat (88 samples, 0.01%)</title><rect x="744.1" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="747.11" y="79.5" ></text> +</g> +<g > +<title>/4a (94 samples, 0.01%)</title><rect x="1047.6" y="149" width="0.1" height="15.0" fill="rgb(226,130,23)" rx="2" ry="2" /> +<text x="1050.61" y="159.5" ></text> +</g> +<g > +<title>/dev (461 samples, 0.05%)</title><rect x="781.4" y="213" width="0.5" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" /> +<text x="784.37" y="223.5" ></text> +</g> +<g > +<title>/system@d62e597f0e2949bda5784759a1e3ccf2-00000000008260e0-0006344c36c0b746.journal (86 samples, 0.01%)</title><rect x="1181.8" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1184.82" y="159.5" ></text> +</g> +<g > +<title>/ior (128 samples, 0.01%)</title><rect x="331.4" y="165" width="0.2" height="15.0" fill="rgb(240,134,39)" rx="2" ry="2" /> +<text x="334.45" y="175.5" ></text> +</g> +<g > +<title>/fontconfig (236 samples, 0.02%)</title><rect x="862.4" y="181" width="0.3" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="865.37" y="191.5" ></text> +</g> +<g > +<title>627557 (130 samples, 0.01%)</title><rect x="1141.8" y="245" width="0.2" height="15.0" fill="rgb(232,145,30)" rx="2" ry="2" /> +<text x="1144.84" y="255.5" ></text> +</g> +<g > +<title>/icons (649 samples, 0.07%)</title><rect x="221.1" y="101" width="0.8" height="15.0" fill="rgb(244,134,43)" rx="2" ry="2" /> +<text x="224.14" y="111.5" ></text> +</g> +<g > +<title>/e2 (96 samples, 0.01%)</title><rect x="1065.9" y="149" width="0.1" height="15.0" fill="rgb(245,157,44)" rx="2" ry="2" /> +<text x="1068.86" y="159.5" ></text> +</g> +<g > +<title>/run (247 samples, 0.03%)</title><rect x="683.1" y="213" width="0.3" height="15.0" fill="rgb(243,124,41)" rx="2" ry="2" /> +<text x="686.12" y="223.5" ></text> +</g> +<g > +<title>enter_read (10,648 samples, 1.10%)</title><rect x="45.5" y="213" width="13.0" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="48.54" y="223.5" ></text> +</g> +<g > +<title>/.. (252 samples, 0.03%)</title><rect x="1090.1" y="133" width="0.3" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1093.10" y="143.5" ></text> +</g> +<g > +<title>/home (442 samples, 0.05%)</title><rect x="99.0" y="213" width="0.5" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="101.99" y="223.5" ></text> +</g> +<g > +<title>621654 (4,047 samples, 0.42%)</title><rect x="797.4" y="245" width="4.9" height="15.0" fill="rgb(237,164,35)" rx="2" ry="2" /> +<text x="800.39" y="255.5" ></text> +</g> +<g > +<title>/lib64 (330 samples, 0.03%)</title><rect x="1085.2" y="213" width="0.4" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="1088.20" y="223.5" ></text> +</g> +<g > +<title>/20 (112 samples, 0.01%)</title><rect x="1042.6" y="149" width="0.1" height="15.0" fill="rgb(226,143,23)" rx="2" ry="2" /> +<text x="1045.55" y="159.5" ></text> +</g> +<g > +<title>enter_ioctl (549 samples, 0.06%)</title><rect x="397.0" y="213" width="0.6" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="399.96" y="223.5" ></text> +</g> +<g > +<title>/memory.swap.current (282 samples, 0.03%)</title><rect x="714.0" y="85" width="0.4" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="717.02" y="95.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="701.9" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="704.86" y="79.5" ></text> +</g> +<g > +<title>/home (758 samples, 0.08%)</title><rect x="835.2" y="213" width="1.0" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="838.25" y="223.5" ></text> +</g> +<g > +<title>enter_write (314 samples, 0.03%)</title><rect x="680.4" y="213" width="0.4" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="683.39" y="223.5" ></text> +</g> +<g > +<title>/knghtbrd (242 samples, 0.03%)</title><rect x="624.3" y="149" width="0.3" height="15.0" fill="rgb(249,127,48)" rx="2" ry="2" /> +<text x="627.33" y="159.5" ></text> +</g> +<g > +<title>10839 (108 samples, 0.01%)</title><rect x="115.9" y="245" width="0.1" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" /> +<text x="118.90" y="255.5" ></text> +</g> +<g > +<title>/platforms (159 samples, 0.02%)</title><rect x="782.6" y="101" width="0.2" height="15.0" fill="rgb(231,163,28)" rx="2" ry="2" /> +<text x="785.64" y="111.5" ></text> +</g> +<g > +<title>/stat (812 samples, 0.08%)</title><rect x="481.8" y="181" width="1.0" height="15.0" fill="rgb(229,122,26)" rx="2" ry="2" /> +<text x="484.77" y="191.5" ></text> +</g> +<g > +<title>enter_io_uring_enter (107 samples, 0.01%)</title><rect x="476.2" y="213" width="0.1" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="479.20" y="223.5" ></text> +</g> +<g > +<title>enter_newfstat (86 samples, 0.01%)</title><rect x="1176.7" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1179.71" y="143.5" ></text> +</g> +<g > +<title>enter_write (25,182 samples, 2.61%)</title><rect x="157.7" y="37" width="30.8" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="160.72" y="47.5" >en..</text> +</g> +<g > +<title>.git (97 samples, 0.01%)</title><rect x="875.4" y="229" width="0.1" height="15.0" fill="rgb(233,132,30)" rx="2" ry="2" /> +<text x="878.39" y="239.5" ></text> +</g> +<g > +<title>/memory.pressure (322 samples, 0.03%)</title><rect x="709.1" y="85" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="712.11" y="95.5" ></text> +</g> +<g > +<title>/fontconfig (1,234 samples, 0.13%)</title><rect x="862.7" y="181" width="1.5" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="865.67" y="191.5" ></text> +</g> +<g > +<title>/history.sqlite-shm (470 samples, 0.05%)</title><rect x="549.1" y="165" width="0.5" height="15.0" fill="rgb(228,119,26)" rx="2" ry="2" /> +<text x="552.07" y="175.5" ></text> +</g> +<g > +<title>/tmp (197 samples, 0.02%)</title><rect x="390.9" y="213" width="0.2" height="15.0" fill="rgb(234,140,32)" rx="2" ry="2" /> +<text x="393.87" y="223.5" ></text> +</g> +<g > +<title>io.github.Hexchat (102 samples, 0.01%)</title><rect x="307.7" y="229" width="0.1" height="15.0" fill="rgb(229,152,26)" rx="2" ry="2" /> +<text x="310.70" y="239.5" ></text> +</g> +<g > +<title>enter_openat (140 samples, 0.01%)</title><rect x="829.9" y="213" width="0.1" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="832.86" y="223.5" ></text> +</g> +<g > +<title>/x86_64 (250 samples, 0.03%)</title><rect x="242.9" y="133" width="0.3" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="245.86" y="143.5" ></text> +</g> +<g > +<title>enter_newfstat (85 samples, 0.01%)</title><rect x="1181.4" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1184.35" y="143.5" ></text> +</g> +<g > +<title>/e5 (96 samples, 0.01%)</title><rect x="1066.4" y="149" width="0.1" height="15.0" fill="rgb(239,147,38)" rx="2" ry="2" /> +<text x="1069.39" y="159.5" ></text> +</g> +<g > +<title>/c4 (102 samples, 0.01%)</title><rect x="1062.3" y="149" width="0.2" height="15.0" fill="rgb(243,161,42)" rx="2" ry="2" /> +<text x="1065.33" y="159.5" ></text> +</g> +<g > +<title>/com.mastermindzh.tidal-hifi (123 samples, 0.01%)</title><rect x="217.1" y="149" width="0.2" height="15.0" fill="rgb(236,164,34)" rx="2" ry="2" /> +<text x="220.10" y="159.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="745.3" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="748.25" y="79.5" ></text> +</g> +<g > +<title>/cb (86 samples, 0.01%)</title><rect x="1063.2" y="149" width="0.1" height="15.0" fill="rgb(233,167,31)" rx="2" ry="2" /> +<text x="1066.21" y="159.5" ></text> +</g> +<g > +<title>/memory.stat (270 samples, 0.03%)</title><rect x="707.4" y="85" width="0.4" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="710.45" y="95.5" ></text> +</g> +<g > +<title>/19 (95 samples, 0.01%)</title><rect x="1041.7" y="149" width="0.1" height="15.0" fill="rgb(229,119,27)" rx="2" ry="2" /> +<text x="1044.70" y="159.5" ></text> +</g> +<g > +<title> (639 samples, 0.07%)</title><rect x="340.4" y="229" width="0.8" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="343.43" y="239.5" ></text> +</g> +<g > +<title>/d7 (96 samples, 0.01%)</title><rect x="1064.6" y="149" width="0.1" height="15.0" fill="rgb(237,146,35)" rx="2" ry="2" /> +<text x="1067.60" y="159.5" ></text> +</g> +<g > +<title>/15 (688 samples, 0.07%)</title><rect x="1085.9" y="149" width="0.8" height="15.0" fill="rgb(236,132,34)" rx="2" ry="2" /> +<text x="1088.89" y="159.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Nautilus.slice (1,628 samples, 0.17%)</title><rect x="718.4" y="101" width="2.0" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="721.44" y="111.5" ></text> +</g> +<g > +<title>16740 (92 samples, 0.01%)</title><rect x="444.5" y="245" width="0.1" height="15.0" fill="rgb(227,84,24)" rx="2" ry="2" /> +<text x="447.52" y="255.5" ></text> +</g> +<g > +<title>/wallpaper (478 samples, 0.05%)</title><rect x="1143.8" y="149" width="0.6" height="15.0" fill="rgb(243,125,41)" rx="2" ry="2" /> +<text x="1146.82" y="159.5" ></text> +</g> +<g > +<title>enter_write (629 samples, 0.07%)</title><rect x="547.0" y="133" width="0.8" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="550.03" y="143.5" ></text> +</g> +<g > +<title>/fonts (143 samples, 0.01%)</title><rect x="1172.2" y="181" width="0.2" height="15.0" fill="rgb(238,149,36)" rx="2" ry="2" /> +<text x="1175.21" y="191.5" ></text> +</g> +<g > +<title> (1,874 samples, 0.19%)</title><rect x="1186.6" y="229" width="2.3" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1189.64" y="239.5" ></text> +</g> +<g > +<title>/kernel (1,600 samples, 0.17%)</title><rect x="881.9" y="197" width="2.0" height="15.0" fill="rgb(237,117,35)" rx="2" ry="2" /> +<text x="884.94" y="207.5" ></text> +</g> +<g > +<title>/.. (21,728 samples, 2.25%)</title><rect x="1114.7" y="117" width="26.5" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1117.72" y="127.5" >/..</text> +</g> +<g > +<title>enter_newfstat (94 samples, 0.01%)</title><rect x="1178.0" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1181.01" y="143.5" ></text> +</g> +<g > +<title>/actions (248 samples, 0.03%)</title><rect x="795.6" y="133" width="0.3" height="15.0" fill="rgb(244,118,43)" rx="2" ry="2" /> +<text x="798.59" y="143.5" ></text> +</g> +<g > +<title>/f5 (112 samples, 0.01%)</title><rect x="1068.2" y="149" width="0.2" height="15.0" fill="rgb(238,142,37)" rx="2" ry="2" /> +<text x="1071.23" y="159.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="724.3" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="727.32" y="79.5" ></text> +</g> +<g > +<title>enter_newfstat (98 samples, 0.01%)</title><rect x="1182.0" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1185.02" y="143.5" ></text> +</g> +<g > +<title>enter_newfstat (83 samples, 0.01%)</title><rect x="1180.8" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1183.82" y="143.5" ></text> +</g> +<g > +<title>/local (1,135 samples, 0.12%)</title><rect x="188.5" y="197" width="1.4" height="15.0" fill="rgb(229,118,26)" rx="2" ry="2" /> +<text x="191.49" y="207.5" ></text> +</g> +<g > +<title>enter_read (160 samples, 0.02%)</title><rect x="780.3" y="165" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="783.27" y="175.5" ></text> +</g> +<g > +<title>/go-link-2935705061 (176 samples, 0.02%)</title><rect x="1092.0" y="197" width="0.2" height="15.0" fill="rgb(228,144,25)" rx="2" ry="2" /> +<text x="1094.96" y="207.5" ></text> +</g> +<g > +<title>/5c (102 samples, 0.01%)</title><rect x="1049.7" y="149" width="0.1" height="15.0" fill="rgb(221,118,18)" rx="2" ry="2" /> +<text x="1052.70" y="159.5" ></text> +</g> +<g > +<title>/memory.current (270 samples, 0.03%)</title><rect x="744.7" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="747.70" y="95.5" ></text> +</g> +<g > +<title>enter_close (334 samples, 0.03%)</title><rect x="830.0" y="197" width="0.4" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="833.03" y="207.5" ></text> +</g> +<g > +<title>/git (442 samples, 0.05%)</title><rect x="99.0" y="181" width="0.5" height="15.0" fill="rgb(233,124,30)" rx="2" ry="2" /> +<text x="101.99" y="191.5" ></text> +</g> +<g > +<title>/.. (147 samples, 0.02%)</title><rect x="1175.0" y="117" width="0.2" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1178.05" y="127.5" ></text> +</g> +<g > +<title>/go-build (4,150 samples, 0.43%)</title><rect x="1076.5" y="165" width="5.1" height="15.0" fill="rgb(238,144,37)" rx="2" ry="2" /> +<text x="1079.52" y="175.5" ></text> +</g> +<g > +<title>/2b (101 samples, 0.01%)</title><rect x="1044.0" y="149" width="0.1" height="15.0" fill="rgb(226,137,23)" rx="2" ry="2" /> +<text x="1046.96" y="159.5" ></text> +</g> +<g > +<title>/24.08 (220 samples, 0.02%)</title><rect x="234.9" y="117" width="0.3" height="15.0" fill="rgb(233,130,30)" rx="2" ry="2" /> +<text x="237.90" y="127.5" ></text> +</g> +<g > +<title>/null (971 samples, 0.10%)</title><rect x="1173.8" y="197" width="1.1" height="15.0" fill="rgb(224,145,21)" rx="2" ry="2" /> +<text x="1176.75" y="207.5" ></text> +</g> +<g > +<title>/621836 (114 samples, 0.01%)</title><rect x="802.3" y="197" width="0.2" height="15.0" fill="rgb(234,117,32)" rx="2" ry="2" /> +<text x="805.33" y="207.5" ></text> +</g> +<g > +<title>enter_statx (90 samples, 0.01%)</title><rect x="242.8" y="133" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> +<text x="245.75" y="143.5" ></text> +</g> +<g > +<title>11330 (106 samples, 0.01%)</title><rect x="340.3" y="245" width="0.1" height="15.0" fill="rgb(231,123,28)" rx="2" ry="2" /> +<text x="343.30" y="255.5" ></text> +</g> +<g > +<title>/x86_64 (120 samples, 0.01%)</title><rect x="247.3" y="133" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="250.32" y="143.5" ></text> +</g> +<g > +<title> (527 samples, 0.05%)</title><rect x="680.8" y="229" width="0.6" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="683.78" y="239.5" ></text> +</g> +<g > +<title>/d2 (89 samples, 0.01%)</title><rect x="1064.0" y="149" width="0.1" height="15.0" fill="rgb(246,162,45)" rx="2" ry="2" /> +<text x="1067.02" y="159.5" ></text> +</g> +<g > +<title>/x86_64 (303 samples, 0.03%)</title><rect x="239.9" y="133" width="0.4" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="242.90" y="143.5" ></text> +</g> +<g > +<title>/lib (168 samples, 0.02%)</title><rect x="1170.3" y="197" width="0.2" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="1173.34" y="207.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dapp.drey.Dialect.SearchProvider.slice (1,662 samples, 0.17%)</title><rect x="690.0" y="101" width="2.0" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="692.98" y="111.5" ></text> +</g> +<g > +<title>/03 (104 samples, 0.01%)</title><rect x="1039.1" y="149" width="0.1" height="15.0" fill="rgb(241,144,39)" rx="2" ry="2" /> +<text x="1042.06" y="159.5" ></text> +</g> +<g > +<title>enter_newfstat (120 samples, 0.01%)</title><rect x="1176.3" y="133" width="0.2" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1179.35" y="143.5" ></text> +</g> +<g > +<title>enter_close (510 samples, 0.05%)</title><rect x="459.5" y="197" width="0.6" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="462.46" y="207.5" ></text> +</g> +<g > +<title>/go-link-2935705061 (175 samples, 0.02%)</title><rect x="1087.6" y="197" width="0.3" height="15.0" fill="rgb(228,144,25)" rx="2" ry="2" /> +<text x="1090.64" y="207.5" ></text> +</g> +<g > +<title>enter_lseek (196 samples, 0.02%)</title><rect x="1086.5" y="117" width="0.2" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="1089.45" y="127.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="752.5" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="755.49" y="79.5" ></text> +</g> +<g > +<title>/user-1001@1dc65c17c94c402f938934dc3d68c3ab-00000000004e0690-00061f0691ee3c45.journal (89 samples, 0.01%)</title><rect x="1184.5" y="149" width="0.1" height="15.0" fill="rgb(229,116,27)" rx="2" ry="2" /> +<text x="1187.53" y="159.5" ></text> +</g> +<g > +<title>enter_read (89 samples, 0.01%)</title><rect x="725.0" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="727.98" y="79.5" ></text> +</g> +<g > +<title>/system@d62e597f0e2949bda5784759a1e3ccf2-0000000000734665-00062efc19b15696.journal (88 samples, 0.01%)</title><rect x="1181.1" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1184.14" y="159.5" ></text> +</g> +<g > +<title>/utmp (132 samples, 0.01%)</title><rect x="775.5" y="181" width="0.2" height="15.0" fill="rgb(234,112,32)" rx="2" ry="2" /> +<text x="778.54" y="191.5" ></text> +</g> +<g > +<title>/x86_64 (115 samples, 0.01%)</title><rect x="247.0" y="133" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="250.04" y="143.5" ></text> +</g> +<g > +<title>enter_writev (118 samples, 0.01%)</title><rect x="446.7" y="181" width="0.1" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="449.70" y="191.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="742.5" y="69" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="745.54" y="79.5" ></text> +</g> +<g > +<title>/cgroup (100 samples, 0.01%)</title><rect x="445.5" y="181" width="0.1" height="15.0" fill="rgb(241,151,40)" rx="2" ry="2" /> +<text x="448.49" y="191.5" ></text> +</g> +<g > +<title>/2e (107 samples, 0.01%)</title><rect x="1044.3" y="149" width="0.1" height="15.0" fill="rgb(238,127,37)" rx="2" ry="2" /> +<text x="1047.30" y="159.5" ></text> +</g> +<g > +<title>/statm (116 samples, 0.01%)</title><rect x="806.8" y="181" width="0.1" height="15.0" fill="rgb(232,122,29)" rx="2" ry="2" /> +<text x="809.80" y="191.5" ></text> +</g> +<g > +<title>/0 (541 samples, 0.06%)</title><rect x="446.8" y="181" width="0.7" height="15.0" fill="rgb(234,139,32)" rx="2" ry="2" /> +<text x="449.84" y="191.5" ></text> +</g> +<g > +<title>/memory.swap.current (270 samples, 0.03%)</title><rect x="760.8" y="101" width="0.4" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="763.83" y="111.5" ></text> +</g> +<g > +<title>enter_newfstat (88 samples, 0.01%)</title><rect x="699.4" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="702.39" y="79.5" ></text> +</g> +<g > +<title>/4imrokjd.default-release-1736024643281 (778 samples, 0.08%)</title><rect x="797.8" y="149" width="0.9" height="15.0" fill="rgb(236,104,35)" rx="2" ry="2" /> +<text x="800.79" y="159.5" ></text> +</g> +<g > +<title>/system@d62e597f0e2949bda5784759a1e3ccf2-00000000007b4662-00063193963b50a4.journal (86 samples, 0.01%)</title><rect x="1181.6" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1184.56" y="159.5" ></text> +</g> +<g > +<title>enter_read (95 samples, 0.01%)</title><rect x="748.4" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="751.37" y="79.5" ></text> +</g> +<g > +<title>/cache (165 samples, 0.02%)</title><rect x="1170.3" y="165" width="0.2" height="15.0" fill="rgb(245,170,44)" rx="2" ry="2" /> +<text x="1173.34" y="175.5" ></text> +</g> +<g > +<title>/GosDir (490 samples, 0.05%)</title><rect x="782.6" y="133" width="0.6" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" /> +<text x="785.62" y="143.5" ></text> +</g> +<g > +<title> (127 samples, 0.01%)</title><rect x="1075.3" y="229" width="0.2" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1078.32" y="239.5" ></text> +</g> +<g > +<title>/cache (236 samples, 0.02%)</title><rect x="862.4" y="165" width="0.3" height="15.0" fill="rgb(245,170,44)" rx="2" ry="2" /> +<text x="865.37" y="175.5" ></text> +</g> +<g > +<title>/37 (113 samples, 0.01%)</title><rect x="1045.4" y="149" width="0.1" height="15.0" fill="rgb(230,116,28)" rx="2" ry="2" /> +<text x="1048.36" y="159.5" ></text> +</g> +<g > +<title> (87 samples, 0.01%)</title><rect x="872.6" y="229" width="0.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="875.62" y="239.5" ></text> +</g> +<g > +<title>/.. (35,331 samples, 3.66%)</title><rect x="145.3" y="117" width="43.2" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="148.33" y="127.5" >/..</text> +</g> +<g > +<title>/625682 (116 samples, 0.01%)</title><rect x="806.8" y="197" width="0.1" height="15.0" fill="rgb(249,117,49)" rx="2" ry="2" /> +<text x="809.80" y="207.5" ></text> +</g> +<g > +<title>enter_statx (247 samples, 0.03%)</title><rect x="833.9" y="213" width="0.3" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> +<text x="836.95" y="223.5" ></text> +</g> +<g > +<title>/org.freedesktop.Platform.openh264 (192 samples, 0.02%)</title><rect x="304.8" y="197" width="0.2" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="307.78" y="207.5" ></text> +</g> +<g > +<title>/memory.stat (269 samples, 0.03%)</title><rect x="691.4" y="85" width="0.3" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="694.35" y="95.5" ></text> +</g> +<g > +<title>/cgroup (204 samples, 0.02%)</title><rect x="774.8" y="181" width="0.3" height="15.0" fill="rgb(241,151,40)" rx="2" ry="2" /> +<text x="777.82" y="191.5" ></text> +</g> +<g > +<title>/90 (103 samples, 0.01%)</title><rect x="1056.0" y="149" width="0.1" height="15.0" fill="rgb(231,163,28)" rx="2" ry="2" /> +<text x="1058.97" y="159.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="712.1" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="715.13" y="79.5" ></text> +</g> +<g > +<title>enter_ioctl (276 samples, 0.03%)</title><rect x="458.4" y="181" width="0.3" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="461.39" y="191.5" ></text> +</g> +<g > +<title>/education (743 samples, 0.08%)</title><rect x="39.9" y="149" width="0.9" height="15.0" fill="rgb(247,150,46)" rx="2" ry="2" /> +<text x="42.91" y="159.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="684.1" y="133" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="687.06" y="143.5" ></text> +</g> +<g > +<title>/transactions.db (2,658 samples, 0.28%)</title><rect x="813.8" y="165" width="3.2" height="15.0" fill="rgb(232,124,30)" rx="2" ry="2" /> +<text x="816.76" y="175.5" ></text> +</g> +<g > +<title>/b7 (108 samples, 0.01%)</title><rect x="1060.7" y="149" width="0.1" height="15.0" fill="rgb(227,100,24)" rx="2" ry="2" /> +<text x="1063.67" y="159.5" ></text> +</g> +<g > +<title>enter_ioctl (103 samples, 0.01%)</title><rect x="541.7" y="165" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="544.72" y="175.5" ></text> +</g> +<g > +<title>enter_read (104 samples, 0.01%)</title><rect x="341.6" y="213" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="344.61" y="223.5" ></text> +</g> +<g > +<title>de.haeckerfelix.Shortwave.Locale (92 samples, 0.01%)</title><rect x="301.8" y="229" width="0.1" height="15.0" fill="rgb(242,187,41)" rx="2" ry="2" /> +<text x="304.81" y="239.5" ></text> +</g> +<g > +<title>enter_write (122 samples, 0.01%)</title><rect x="674.1" y="165" width="0.1" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="677.10" y="175.5" ></text> +</g> +<g > +<title>/runtime (159 samples, 0.02%)</title><rect x="230.5" y="101" width="0.2" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" /> +<text x="233.48" y="111.5" ></text> +</g> +<g > +<title>/51 (119 samples, 0.01%)</title><rect x="1048.4" y="149" width="0.2" height="15.0" fill="rgb(221,125,18)" rx="2" ry="2" /> +<text x="1051.41" y="159.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Settings.SearchProvider.slice (1,673 samples, 0.17%)</title><rect x="732.6" y="101" width="2.0" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="735.55" y="111.5" ></text> +</g> +<g > +<title>625663 (471 samples, 0.05%)</title><rect x="804.0" y="245" width="0.6" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" /> +<text x="807.04" y="255.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="691.9" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="694.90" y="79.5" ></text> +</g> +<g > +<title>/stable (86 samples, 0.01%)</title><rect x="242.1" y="117" width="0.1" height="15.0" fill="rgb(241,122,40)" rx="2" ry="2" /> +<text x="245.14" y="127.5" ></text> +</g> +<g > +<title>/f2d70db0e77989b39062f2ed4a09f6fba8ba19cdefcd750898c66b4f6cd480e6-d (92 samples, 0.01%)</title><rect x="1081.0" y="133" width="0.1" height="15.0" fill="rgb(249,152,49)" rx="2" ry="2" /> +<text x="1083.97" y="143.5" ></text> +</g> +<g > +<title>/org.kde.Platform (112 samples, 0.01%)</title><rect x="305.9" y="197" width="0.2" height="15.0" fill="rgb(232,149,30)" rx="2" ry="2" /> +<text x="308.94" y="207.5" ></text> +</g> +<g > +<title>enter_ioctl (94 samples, 0.01%)</title><rect x="713.3" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="716.33" y="79.5" ></text> +</g> +<g > +<title>/memory.swap.current (270 samples, 0.03%)</title><rect x="754.7" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="757.66" y="95.5" ></text> +</g> +<g > +<title>/x86_64 (87 samples, 0.01%)</title><rect x="241.7" y="133" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="244.73" y="143.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="727.0" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="730.00" y="79.5" ></text> +</g> +<g > +<title>enter_writev (261 samples, 0.03%)</title><rect x="98.5" y="213" width="0.3" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="101.52" y="223.5" ></text> +</g> +<g > +<title>/usr (3,549 samples, 0.37%)</title><rect x="37.9" y="213" width="4.4" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="40.95" y="223.5" ></text> +</g> +<g > +<title>/memory.swap.current (276 samples, 0.03%)</title><rect x="685.6" y="149" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="688.56" y="159.5" ></text> +</g> +<g > +<title>/9e (96 samples, 0.01%)</title><rect x="1057.6" y="149" width="0.2" height="15.0" fill="rgb(243,147,42)" rx="2" ry="2" /> +<text x="1060.65" y="159.5" ></text> +</g> +<g > +<title>/app-org.gnome.Terminal.slice (1,705 samples, 0.18%)</title><rect x="757.0" y="101" width="2.1" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="760.03" y="111.5" ></text> +</g> +<g > +<title>/usr (1,879 samples, 0.19%)</title><rect x="865.7" y="213" width="2.3" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="868.68" y="223.5" ></text> +</g> +<g > +<title>/memory.current (264 samples, 0.03%)</title><rect x="722.4" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="725.42" y="95.5" ></text> +</g> +<g > +<title>org.gnome.Decibels (89 samples, 0.01%)</title><rect x="311.8" y="229" width="0.1" height="15.0" fill="rgb(232,179,30)" rx="2" ry="2" /> +<text x="314.79" y="239.5" ></text> +</g> +<g > +<title>/usr (1,947 samples, 0.20%)</title><rect x="1035.0" y="213" width="2.3" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="1037.96" y="223.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="718.3" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="721.33" y="79.5" ></text> +</g> +<g > +<title>enter_newfstat (88 samples, 0.01%)</title><rect x="1183.7" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1186.73" y="143.5" ></text> +</g> +<g > +<title>/.. (548 samples, 0.06%)</title><rect x="391.3" y="85" width="0.7" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="394.31" y="95.5" ></text> +</g> +<g > +<title>/.. (252 samples, 0.03%)</title><rect x="1092.3" y="133" width="0.3" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1095.26" y="143.5" ></text> +</g> +<g > +<title>/memory.pressure (322 samples, 0.03%)</title><rect x="747.7" y="85" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="750.75" y="95.5" ></text> +</g> +<g > +<title>/memory.stat (282 samples, 0.03%)</title><rect x="713.7" y="85" width="0.3" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="716.67" y="95.5" ></text> +</g> +<g > +<title>/ee (103 samples, 0.01%)</title><rect x="1067.5" y="149" width="0.1" height="15.0" fill="rgb(243,147,42)" rx="2" ry="2" /> +<text x="1070.45" y="159.5" ></text> +</g> +<g > +<title>/15 (83 samples, 0.01%)</title><rect x="1041.2" y="149" width="0.1" height="15.0" fill="rgb(236,132,34)" rx="2" ry="2" /> +<text x="1044.24" y="159.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="748.0" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="751.03" y="79.5" ></text> +</g> +<g > +<title>/df (101 samples, 0.01%)</title><rect x="1065.5" y="149" width="0.2" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="1068.54" y="159.5" ></text> +</g> +<g > +<title>/usr (103 samples, 0.01%)</title><rect x="1173.1" y="213" width="0.2" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="1176.13" y="223.5" ></text> +</g> +<g > +<title>627612 (225 samples, 0.02%)</title><rect x="1172.6" y="245" width="0.3" height="15.0" fill="rgb(245,145,44)" rx="2" ry="2" /> +<text x="1175.58" y="255.5" ></text> +</g> +<g > +<title>enter_lseek (1,843 samples, 0.19%)</title><rect x="837.6" y="117" width="2.3" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="840.61" y="127.5" ></text> +</g> +<g > +<title>/user-1002.journal (86 samples, 0.01%)</title><rect x="1186.0" y="149" width="0.1" height="15.0" fill="rgb(229,116,27)" rx="2" ry="2" /> +<text x="1189.02" y="159.5" ></text> +</g> +<g > +<title>/sys (392 samples, 0.04%)</title><rect x="622.4" y="213" width="0.5" height="15.0" fill="rgb(241,145,40)" rx="2" ry="2" /> +<text x="625.40" y="223.5" ></text> +</g> +<g > +<title>/gcc (548 samples, 0.06%)</title><rect x="391.3" y="181" width="0.7" height="15.0" fill="rgb(234,144,32)" rx="2" ry="2" /> +<text x="394.31" y="191.5" ></text> +</g> +<g > +<title>enter_read (232 samples, 0.02%)</title><rect x="479.7" y="165" width="0.3" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="482.72" y="175.5" ></text> +</g> +<g > +<title>org.kde.digikam (98 samples, 0.01%)</title><rect x="314.1" y="229" width="0.1" height="15.0" fill="rgb(221,179,18)" rx="2" ry="2" /> +<text x="317.12" y="239.5" ></text> +</g> +<g > +<title>/journal (97 samples, 0.01%)</title><rect x="776.9" y="181" width="0.1" height="15.0" fill="rgb(229,128,27)" rx="2" ry="2" /> +<text x="779.88" y="191.5" ></text> +</g> +<g > +<title>/614631 (152 samples, 0.02%)</title><rect x="780.8" y="197" width="0.1" height="15.0" fill="rgb(227,120,24)" rx="2" ry="2" /> +<text x="783.76" y="207.5" ></text> +</g> +<g > +<title>enter_openat (109 samples, 0.01%)</title><rect x="619.8" y="181" width="0.1" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="622.82" y="191.5" ></text> +</g> +<g > +<title>/system@3b5754079473424484fc77ea08f3c475-0000000000511ee2-0006210ff803f129.journal (87 samples, 0.01%)</title><rect x="1178.7" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1181.67" y="159.5" ></text> +</g> +<g > +<title>/share (126 samples, 0.01%)</title><rect x="800.7" y="197" width="0.1" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="803.69" y="207.5" ></text> +</g> +<g > +<title>/a2 (109 samples, 0.01%)</title><rect x="1058.2" y="149" width="0.1" height="15.0" fill="rgb(237,122,35)" rx="2" ry="2" /> +<text x="1061.17" y="159.5" ></text> +</g> +<g > +<title>301189 (10,487 samples, 1.09%)</title><rect x="476.4" y="245" width="12.8" height="15.0" fill="rgb(241,198,39)" rx="2" ry="2" /> +<text x="479.39" y="255.5" ></text> +</g> +<g > +<title>/tmp (582 samples, 0.06%)</title><rect x="1071.1" y="213" width="0.7" height="15.0" fill="rgb(234,140,32)" rx="2" ry="2" /> +<text x="1074.11" y="223.5" ></text> +</g> +<g > +<title>/memory.swap.current (276 samples, 0.03%)</title><rect x="687.6" y="101" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="690.61" y="111.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="741.9" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="744.87" y="79.5" ></text> +</g> +<g > +<title>/5b (87 samples, 0.01%)</title><rect x="1049.6" y="149" width="0.1" height="15.0" fill="rgb(223,122,20)" rx="2" ry="2" /> +<text x="1052.60" y="159.5" ></text> +</g> +<g > +<title>/a9 (100 samples, 0.01%)</title><rect x="1059.0" y="149" width="0.1" height="15.0" fill="rgb(225,99,22)" rx="2" ry="2" /> +<text x="1061.99" y="159.5" ></text> +</g> +<g > +<title>lib (145 samples, 0.02%)</title><rect x="834.5" y="229" width="0.2" height="15.0" fill="rgb(234,129,32)" rx="2" ry="2" /> +<text x="837.50" y="239.5" ></text> +</g> +<g > +<title>/61 (132 samples, 0.01%)</title><rect x="1050.3" y="149" width="0.2" height="15.0" fill="rgb(220,120,17)" rx="2" ry="2" /> +<text x="1053.30" y="159.5" ></text> +</g> +<g > +<title>5260 (4,919 samples, 0.51%)</title><rect x="768.7" y="245" width="6.0" height="15.0" fill="rgb(228,156,26)" rx="2" ry="2" /> +<text x="771.66" y="255.5" ></text> +</g> +<g > +<title>/7c (118 samples, 0.01%)</title><rect x="1053.5" y="149" width="0.2" height="15.0" fill="rgb(231,164,29)" rx="2" ry="2" /> +<text x="1056.53" y="159.5" ></text> +</g> +<g > +<title>/memory.low (270 samples, 0.03%)</title><rect x="686.2" y="101" width="0.4" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="689.23" y="111.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="695.3" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="698.25" y="79.5" ></text> +</g> +<g > +<title>enter_newfstat (123 samples, 0.01%)</title><rect x="833.2" y="197" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="836.15" y="207.5" ></text> +</g> +<g > +<title>/a.out (174 samples, 0.02%)</title><rect x="1092.0" y="181" width="0.2" height="15.0" fill="rgb(234,96,32)" rx="2" ry="2" /> +<text x="1094.96" y="191.5" ></text> +</g> +<g > +<title>/65afd18368643033b5a4536a6c2edd4f45d178031395564677e7616de9299da2-d (237 samples, 0.02%)</title><rect x="1078.6" y="133" width="0.3" height="15.0" fill="rgb(252,107,52)" rx="2" ry="2" /> +<text x="1081.60" y="143.5" ></text> +</g> +<g > +<title>/.config (218 samples, 0.02%)</title><rect x="36.3" y="181" width="0.2" height="15.0" fill="rgb(239,154,37)" rx="2" ry="2" /> +<text x="39.27" y="191.5" ></text> +</g> +<g > +<title>/21394 (174 samples, 0.02%)</title><rect x="775.1" y="197" width="0.2" height="15.0" fill="rgb(247,140,46)" rx="2" ry="2" /> +<text x="778.07" y="207.5" ></text> +</g> +<g > +<title>/site-packages (251 samples, 0.03%)</title><rect x="1037.0" y="165" width="0.3" height="15.0" fill="rgb(239,119,37)" rx="2" ry="2" /> +<text x="1039.99" y="175.5" ></text> +</g> +<g > +<title>/status (638 samples, 0.07%)</title><rect x="481.0" y="181" width="0.8" height="15.0" fill="rgb(233,122,30)" rx="2" ry="2" /> +<text x="483.99" y="191.5" ></text> +</g> +<g > +<title>/transactions.db (270 samples, 0.03%)</title><rect x="42.3" y="165" width="0.3" height="15.0" fill="rgb(232,124,30)" rx="2" ry="2" /> +<text x="45.29" y="175.5" ></text> +</g> +<g > +<title>/fontconfig (165 samples, 0.02%)</title><rect x="1170.3" y="181" width="0.2" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="1173.34" y="191.5" ></text> +</g> +<g > +<title>enter_lseek (129 samples, 0.01%)</title><rect x="1081.1" y="117" width="0.1" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="1084.09" y="127.5" ></text> +</g> +<g > +<title>enter_newfstat (507 samples, 0.05%)</title><rect x="1175.4" y="149" width="0.6" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1178.39" y="159.5" ></text> +</g> +<g > +<title>/system@8143294b6d9c492db274f426a1308d41-0000000000558f05-000623cd76e2050c.journal (87 samples, 0.01%)</title><rect x="1179.4" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1182.37" y="159.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="778.6" y="165" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="781.55" y="175.5" ></text> +</g> +<g > +<title>enter_statx (134 samples, 0.01%)</title><rect x="877.0" y="213" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> +<text x="879.97" y="223.5" ></text> +</g> +<g > +<title> (150 samples, 0.02%)</title><rect x="1085.0" y="229" width="0.2" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1087.98" y="239.5" ></text> +</g> +<g > +<title>/Vault (666 samples, 0.07%)</title><rect x="782.6" y="149" width="0.8" height="15.0" fill="rgb(228,125,25)" rx="2" ry="2" /> +<text x="785.62" y="159.5" ></text> +</g> +<g > +<title>enter_close (136 samples, 0.01%)</title><rect x="880.3" y="213" width="0.2" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="883.35" y="223.5" ></text> +</g> +<g > +<title>/.linuxbrew (454 samples, 0.05%)</title><rect x="35.4" y="181" width="0.6" height="15.0" fill="rgb(232,163,30)" rx="2" ry="2" /> +<text x="38.45" y="191.5" ></text> +</g> +<g > +<title>/libz.a (136 samples, 0.01%)</title><rect x="38.7" y="53" width="0.2" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="41.71" y="63.5" ></text> +</g> +<g > +<title>enter_newfstat (85 samples, 0.01%)</title><rect x="1177.1" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1180.05" y="143.5" ></text> +</g> +<g > +<title>/memory.current (270 samples, 0.03%)</title><rect x="750.9" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="753.89" y="95.5" ></text> +</g> +<g > +<title>enter_ioctl (747 samples, 0.08%)</title><rect x="545.3" y="133" width="1.0" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="548.34" y="143.5" ></text> +</g> +<g > +<title>/libzstd.a (548 samples, 0.06%)</title><rect x="391.3" y="53" width="0.7" height="15.0" fill="rgb(237,99,36)" rx="2" ry="2" /> +<text x="394.31" y="63.5" ></text> +</g> +<g > +<title>anon_inode:[eventfd] (157 samples, 0.02%)</title><rect x="776.2" y="229" width="0.2" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="779.17" y="239.5" ></text> +</g> +<g > +<title>/libgcc_s.so.1 (106 samples, 0.01%)</title><rect x="1087.5" y="197" width="0.1" height="15.0" fill="rgb(235,99,33)" rx="2" ry="2" /> +<text x="1090.49" y="207.5" ></text> +</g> +<g > +<title>.. (93 samples, 0.01%)</title><rect x="807.4" y="229" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> +<text x="810.40" y="239.5" ></text> +</g> +<g > +<title>/debug (245 samples, 0.03%)</title><rect x="1189.7" y="181" width="0.3" height="15.0" fill="rgb(240,152,39)" rx="2" ry="2" /> +<text x="1192.68" y="191.5" ></text> +</g> +<g > +<title>/tmp (215 samples, 0.02%)</title><rect x="1085.6" y="213" width="0.3" height="15.0" fill="rgb(234,140,32)" rx="2" ry="2" /> +<text x="1088.60" y="223.5" ></text> +</g> +<g > +<title>org.videolan.VLC.Locale (98 samples, 0.01%)</title><rect x="314.8" y="229" width="0.2" height="15.0" fill="rgb(242,179,41)" rx="2" ry="2" /> +<text x="317.84" y="239.5" ></text> +</g> +<g > +<title>/etilqs_4738201599cc599e (1,247 samples, 0.13%)</title><rect x="825.3" y="181" width="1.6" height="15.0" fill="rgb(244,138,43)" rx="2" ry="2" /> +<text x="828.34" y="191.5" ></text> +</g> +<g > +<title>/etc (499 samples, 0.05%)</title><rect x="864.7" y="213" width="0.6" height="15.0" fill="rgb(229,138,26)" rx="2" ry="2" /> +<text x="867.69" y="223.5" ></text> +</g> +<g > +<title>/memory.low (270 samples, 0.03%)</title><rect x="708.4" y="85" width="0.4" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="711.45" y="95.5" ></text> +</g> +<g > +<title>/bin (1,886 samples, 0.20%)</title><rect x="143.0" y="197" width="2.3" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="146.02" y="207.5" ></text> +</g> +<g > +<title>/memory.stat (276 samples, 0.03%)</title><rect x="731.9" y="85" width="0.3" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="734.89" y="95.5" ></text> +</g> +<g > +<title>/memory.current (270 samples, 0.03%)</title><rect x="755.0" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="757.99" y="95.5" ></text> +</g> +<g > +<title>/11 (106 samples, 0.01%)</title><rect x="620.3" y="197" width="0.2" height="15.0" fill="rgb(226,145,23)" rx="2" ry="2" /> +<text x="623.33" y="207.5" ></text> +</g> +<g > +<title>/usr (279 samples, 0.03%)</title><rect x="1175.0" y="213" width="0.4" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="1178.05" y="223.5" ></text> +</g> +<g > +<title>/22 (107 samples, 0.01%)</title><rect x="1042.8" y="149" width="0.1" height="15.0" fill="rgb(240,137,39)" rx="2" ry="2" /> +<text x="1045.80" y="159.5" ></text> +</g> +<g > +<title>/memory.min (264 samples, 0.03%)</title><rect x="700.6" y="85" width="0.3" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="703.63" y="95.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="722.0" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="724.99" y="79.5" ></text> +</g> +<g > +<title>enter_pread64 (738 samples, 0.08%)</title><rect x="811.4" y="133" width="0.9" height="15.0" fill="rgb(237,196,36)" rx="2" ry="2" /> +<text x="814.44" y="143.5" ></text> +</g> +<g > +<title>/output (2,384 samples, 0.25%)</title><rect x="1093.8" y="117" width="2.9" height="15.0" fill="rgb(234,139,31)" rx="2" ry="2" /> +<text x="1096.79" y="127.5" ></text> +</g> +<g > +<title>/memory.stat (270 samples, 0.03%)</title><rect x="715.7" y="85" width="0.4" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="718.74" y="95.5" ></text> +</g> +<g > +<title>enter_write (10,792 samples, 1.12%)</title><rect x="201.6" y="133" width="13.1" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="204.57" y="143.5" ></text> +</g> +<g > +<title>/extension (5,696 samples, 0.59%)</title><rect x="133.8" y="133" width="6.9" height="15.0" fill="rgb(247,163,46)" rx="2" ry="2" /> +<text x="136.78" y="143.5" ></text> +</g> +<g > +<title>627559 (129 samples, 0.01%)</title><rect x="1142.2" y="245" width="0.2" height="15.0" fill="rgb(229,145,26)" rx="2" ry="2" /> +<text x="1145.24" y="255.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="687.2" y="85" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="690.16" y="95.5" ></text> +</g> +<g > +<title>/home (868 samples, 0.09%)</title><rect x="782.6" y="213" width="1.0" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="785.57" y="223.5" ></text> +</g> +<g > +<title>/16 (89 samples, 0.01%)</title><rect x="621.0" y="197" width="0.1" height="15.0" fill="rgb(234,129,32)" rx="2" ry="2" /> +<text x="624.01" y="207.5" ></text> +</g> +<g > +<title>/44 (100 samples, 0.01%)</title><rect x="1046.9" y="149" width="0.1" height="15.0" fill="rgb(235,120,33)" rx="2" ry="2" /> +<text x="1049.88" y="159.5" ></text> +</g> +<g > +<title>/ksm (116 samples, 0.01%)</title><rect x="1189.4" y="165" width="0.2" height="15.0" fill="rgb(226,111,23)" rx="2" ry="2" /> +<text x="1192.43" y="175.5" ></text> +</g> +<g > +<title>/2d (90 samples, 0.01%)</title><rect x="1044.2" y="149" width="0.1" height="15.0" fill="rgb(240,130,39)" rx="2" ry="2" /> +<text x="1047.19" y="159.5" ></text> +</g> +<g > +<title>/x86_64-redhat-linux (101 samples, 0.01%)</title><rect x="676.8" y="165" width="0.1" height="15.0" fill="rgb(245,97,45)" rx="2" ry="2" /> +<text x="679.82" y="175.5" ></text> +</g> +<g > +<title>/active (649 samples, 0.07%)</title><rect x="221.1" y="117" width="0.8" height="15.0" fill="rgb(238,118,36)" rx="2" ry="2" /> +<text x="224.14" y="127.5" ></text> +</g> +<g > +<title> (403 samples, 0.04%)</title><rect x="336.2" y="229" width="0.5" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="339.20" y="239.5" ></text> +</g> +<g > +<title>/share (16,749 samples, 1.73%)</title><rect x="840.5" y="197" width="20.5" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="843.50" y="207.5" ></text> +</g> +<g > +<title>/games (120 samples, 0.01%)</title><rect x="1175.2" y="181" width="0.2" height="15.0" fill="rgb(243,150,42)" rx="2" ry="2" /> +<text x="1178.24" y="191.5" ></text> +</g> +<g > +<title>/x86_64 (311 samples, 0.03%)</title><rect x="240.9" y="133" width="0.3" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="243.86" y="143.5" ></text> +</g> +<g > +<title>/memory.low (282 samples, 0.03%)</title><rect x="712.6" y="85" width="0.3" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="715.59" y="95.5" ></text> +</g> +<g > +<title>/24.08 (154 samples, 0.02%)</title><rect x="240.0" y="117" width="0.2" height="15.0" fill="rgb(233,130,30)" rx="2" ry="2" /> +<text x="243.05" y="127.5" ></text> +</g> +<g > +<title>enter_newfstat (580 samples, 0.06%)</title><rect x="486.0" y="181" width="0.7" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="489.02" y="191.5" ></text> +</g> +<g > +<title>/memory.swap.current (272 samples, 0.03%)</title><rect x="707.8" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="710.78" y="95.5" ></text> +</g> +<g > +<title>10865 (133 samples, 0.01%)</title><rect x="116.1" y="245" width="0.2" height="15.0" fill="rgb(233,112,31)" rx="2" ry="2" /> +<text x="119.10" y="255.5" ></text> +</g> +<g > +<title>enter_lseek (109 samples, 0.01%)</title><rect x="1078.7" y="117" width="0.1" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="1081.69" y="127.5" ></text> +</g> +<g > +<title>enter_io_uring_enter (205 samples, 0.02%)</title><rect x="448.2" y="165" width="0.3" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="451.25" y="175.5" ></text> +</g> +<g > +<title>/session.slice (1,715 samples, 0.18%)</title><rect x="763.2" y="117" width="2.1" height="15.0" fill="rgb(246,132,46)" rx="2" ry="2" /> +<text x="766.20" y="127.5" ></text> +</g> +<g > +<title>enter_write (517 samples, 0.05%)</title><rect x="40.2" y="133" width="0.6" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="43.19" y="143.5" ></text> +</g> +<g > +<title>enter_fcntl (98 samples, 0.01%)</title><rect x="1077.2" y="117" width="0.2" height="15.0" fill="rgb(233,196,30)" rx="2" ry="2" /> +<text x="1080.24" y="127.5" ></text> +</g> +<g > +<title>/user-1001@000633f936b0103a-a2777a75a20b8db0.journal~ (87 samples, 0.01%)</title><rect x="1184.0" y="149" width="0.2" height="15.0" fill="rgb(233,116,31)" rx="2" ry="2" /> +<text x="1187.05" y="159.5" ></text> +</g> +<g > +<title>/org.freedesktop.Platform.ffmpeg-full (307 samples, 0.03%)</title><rect x="240.5" y="149" width="0.4" height="15.0" fill="rgb(224,149,21)" rx="2" ry="2" /> +<text x="243.48" y="159.5" ></text> +</g> +<g > +<title>enter_newfstat (88 samples, 0.01%)</title><rect x="695.4" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="698.41" y="79.5" ></text> +</g> +<g > +<title>/memory.pressure (319 samples, 0.03%)</title><rect x="727.4" y="85" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="730.45" y="95.5" ></text> +</g> +<g > +<title>/63 (84 samples, 0.01%)</title><rect x="1050.6" y="149" width="0.1" height="15.0" fill="rgb(234,113,32)" rx="2" ry="2" /> +<text x="1053.58" y="159.5" ></text> +</g> +<g > +<title>/home (19,266 samples, 1.99%)</title><rect x="119.3" y="213" width="23.5" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="122.30" y="223.5" >/..</text> +</g> +<g > +<title>deploy (3,711 samples, 0.38%)</title><rect x="302.0" y="229" width="4.6" height="15.0" fill="rgb(252,207,51)" rx="2" ry="2" /> +<text x="305.04" y="239.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="710.7" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="713.72" y="79.5" ></text> +</g> +<g > +<title>/paul (315 samples, 0.03%)</title><rect x="461.6" y="197" width="0.4" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="464.57" y="207.5" ></text> +</g> +<g > +<title>/.. (252 samples, 0.03%)</title><rect x="1083.7" y="85" width="0.3" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1086.74" y="95.5" ></text> +</g> +<g > +<title>/18 (89 samples, 0.01%)</title><rect x="621.1" y="197" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> +<text x="624.12" y="207.5" ></text> +</g> +<g > +<title>/libbpfgo (2,384 samples, 0.25%)</title><rect x="1093.8" y="133" width="2.9" height="15.0" fill="rgb(244,99,43)" rx="2" ry="2" /> +<text x="1096.79" y="143.5" ></text> +</g> +<g > +<title>/64x64 (111 samples, 0.01%)</title><rect x="215.2" y="133" width="0.1" height="15.0" fill="rgb(240,110,39)" rx="2" ry="2" /> +<text x="218.21" y="143.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="696.9" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="699.86" y="79.5" ></text> +</g> +<g > +<title>/memory.current (282 samples, 0.03%)</title><rect x="726.4" y="85" width="0.4" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="729.43" y="95.5" ></text> +</g> +<g > +<title>/memory.swap.current (264 samples, 0.03%)</title><rect x="726.1" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="729.11" y="95.5" ></text> +</g> +<g > +<title>enter_ioctl (92 samples, 0.01%)</title><rect x="705.0" y="69" width="0.2" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="708.05" y="79.5" ></text> +</g> +<g > +<title>/home (186 samples, 0.02%)</title><rect x="340.4" y="213" width="0.3" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="343.43" y="223.5" ></text> +</g> +<g > +<title>/.. (101 samples, 0.01%)</title><rect x="676.8" y="117" width="0.1" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="679.82" y="127.5" ></text> +</g> +<g > +<title>/kernelnewbies (766 samples, 0.08%)</title><rect x="623.4" y="149" width="0.9" height="15.0" fill="rgb(237,117,36)" rx="2" ry="2" /> +<text x="626.40" y="159.5" ></text> +</g> +<g > +<title>/09 (122 samples, 0.01%)</title><rect x="1039.8" y="149" width="0.1" height="15.0" fill="rgb(230,124,28)" rx="2" ry="2" /> +<text x="1042.78" y="159.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="688.2" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="691.17" y="79.5" ></text> +</g> +<g > +<title>/usr (2,015 samples, 0.21%)</title><rect x="1071.8" y="213" width="2.5" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="1074.82" y="223.5" ></text> +</g> +<g > +<title>/601294 (240 samples, 0.02%)</title><rect x="779.3" y="197" width="0.3" height="15.0" fill="rgb(247,123,47)" rx="2" ry="2" /> +<text x="782.34" y="207.5" ></text> +</g> +<g > +<title>/lib (273 samples, 0.03%)</title><rect x="1037.0" y="197" width="0.3" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="1039.97" y="207.5" ></text> +</g> +<g > +<title>/var (8,910 samples, 0.92%)</title><rect x="1175.4" y="213" width="10.9" height="15.0" fill="rgb(231,130,28)" rx="2" ry="2" /> +<text x="1178.39" y="223.5" ></text> +</g> +<g > +<title>/meminfo (7,986 samples, 0.83%)</title><rect x="785.8" y="197" width="9.8" height="15.0" fill="rgb(248,107,47)" rx="2" ry="2" /> +<text x="788.83" y="207.5" ></text> +</g> +<g > +<title>/home (130 samples, 0.01%)</title><rect x="805.2" y="213" width="0.1" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="808.15" y="223.5" ></text> +</g> +<g > +<title>/input (2,525 samples, 0.26%)</title><rect x="29.7" y="197" width="3.1" height="15.0" fill="rgb(234,137,31)" rx="2" ry="2" /> +<text x="32.75" y="207.5" ></text> +</g> +<g > +<title>enter_openat (193 samples, 0.02%)</title><rect x="629.5" y="213" width="0.2" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="632.47" y="223.5" ></text> +</g> +<g > +<title>/io.github.seadve.Kooha.Locale (197 samples, 0.02%)</title><rect x="232.8" y="149" width="0.2" height="15.0" fill="rgb(242,134,41)" rx="2" ry="2" /> +<text x="235.79" y="159.5" ></text> +</g> +<g > +<title>/x86_64 (102 samples, 0.01%)</title><rect x="231.4" y="133" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="234.35" y="143.5" ></text> +</g> +<g > +<title>/flatpak (27,255 samples, 2.82%)</title><rect x="215.9" y="181" width="33.3" height="15.0" fill="rgb(230,158,27)" rx="2" ry="2" /> +<text x="218.90" y="191.5" >/f..</text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="760.7" y="85" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="763.72" y="95.5" ></text> +</g> +<g > +<title>enter_fcntl (89 samples, 0.01%)</title><rect x="767.8" y="213" width="0.1" height="15.0" fill="rgb(233,196,30)" rx="2" ry="2" /> +<text x="770.82" y="223.5" ></text> +</g> +<g > +<title>/scripts (221 samples, 0.02%)</title><rect x="37.2" y="181" width="0.2" height="15.0" fill="rgb(236,139,35)" rx="2" ry="2" /> +<text x="40.15" y="191.5" ></text> +</g> +<g > +<title>/fonts (461 samples, 0.05%)</title><rect x="861.4" y="197" width="0.6" height="15.0" fill="rgb(238,149,36)" rx="2" ry="2" /> +<text x="864.43" y="207.5" ></text> +</g> +<g > +<title>enter_newfstat (88 samples, 0.01%)</title><rect x="725.8" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="728.84" y="79.5" ></text> +</g> +<g > +<title>/dev (9,219 samples, 0.95%)</title><rect x="448.2" y="213" width="11.3" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" /> +<text x="451.20" y="223.5" ></text> +</g> +<g > +<title>/.cache (214 samples, 0.02%)</title><rect x="865.3" y="181" width="0.3" height="15.0" fill="rgb(245,154,44)" rx="2" ry="2" /> +<text x="868.30" y="191.5" ></text> +</g> +<g > +<title>/b4 (122 samples, 0.01%)</title><rect x="1060.3" y="149" width="0.1" height="15.0" fill="rgb(232,110,30)" rx="2" ry="2" /> +<text x="1063.30" y="159.5" ></text> +</g> +<g > +<title>enter_ioctl (8,048 samples, 0.83%)</title><rect x="448.5" y="165" width="9.8" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="451.50" y="175.5" ></text> +</g> +<g > +<title>/card1 (15,904 samples, 1.65%)</title><rect x="10.3" y="181" width="19.4" height="15.0" fill="rgb(234,170,31)" rx="2" ry="2" /> +<text x="13.33" y="191.5" ></text> +</g> +<g > +<title>enter_lseek (234 samples, 0.02%)</title><rect x="335.5" y="181" width="0.3" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="338.48" y="191.5" ></text> +</g> +<g > +<title>/x86_64 (112 samples, 0.01%)</title><rect x="305.9" y="181" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="308.94" y="191.5" ></text> +</g> +<g > +<title>/run (374 samples, 0.04%)</title><rect x="795.6" y="213" width="0.4" height="15.0" fill="rgb(243,124,41)" rx="2" ry="2" /> +<text x="798.58" y="223.5" ></text> +</g> +<g > +<title>/memory.swap.current (269 samples, 0.03%)</title><rect x="744.4" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="747.38" y="95.5" ></text> +</g> +<g > +<title>/24.08extra (177 samples, 0.02%)</title><rect x="235.2" y="117" width="0.2" height="15.0" fill="rgb(232,130,30)" rx="2" ry="2" /> +<text x="238.16" y="127.5" ></text> +</g> +<g > +<title>enter_read (5,477 samples, 0.57%)</title><rect x="194.9" y="133" width="6.7" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="197.88" y="143.5" ></text> +</g> +<g > +<title>600428 (131 samples, 0.01%)</title><rect x="782.4" y="245" width="0.1" height="15.0" fill="rgb(235,177,33)" rx="2" ry="2" /> +<text x="785.39" y="255.5" ></text> +</g> +<g > +<title>/share (255 samples, 0.03%)</title><rect x="340.9" y="197" width="0.3" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="343.87" y="207.5" ></text> +</g> +<g > +<title> (315 samples, 0.03%)</title><rect x="445.3" y="229" width="0.4" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="448.33" y="239.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="689.5" y="69" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="692.54" y="79.5" ></text> +</g> +<g > +<title>/etc (585 samples, 0.06%)</title><rect x="768.7" y="213" width="0.7" height="15.0" fill="rgb(229,138,26)" rx="2" ry="2" /> +<text x="771.66" y="223.5" ></text> +</g> +<g > +<title>enter_newfstat (86 samples, 0.01%)</title><rect x="1178.4" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1181.35" y="143.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="734.2" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="737.16" y="79.5" ></text> +</g> +<g > +<title> (878 samples, 0.09%)</title><rect x="869.3" y="229" width="1.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="872.35" y="239.5" ></text> +</g> +<g > +<title>/x86_64 (101 samples, 0.01%)</title><rect x="231.9" y="133" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="234.88" y="143.5" ></text> +</g> +<g > +<title>enter_newfstat (87 samples, 0.01%)</title><rect x="1177.2" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1180.16" y="143.5" ></text> +</g> +<g > +<title>/59 (126 samples, 0.01%)</title><rect x="622.0" y="197" width="0.1" height="15.0" fill="rgb(225,99,22)" rx="2" ry="2" /> +<text x="624.99" y="207.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="746.0" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="748.96" y="79.5" ></text> +</g> +<g > +<title>/be (98 samples, 0.01%)</title><rect x="1061.5" y="149" width="0.2" height="15.0" fill="rgb(234,107,32)" rx="2" ry="2" /> +<text x="1064.54" y="159.5" ></text> +</g> +<g > +<title>/45 (89 samples, 0.01%)</title><rect x="242.4" y="117" width="0.1" height="15.0" fill="rgb(233,117,31)" rx="2" ry="2" /> +<text x="245.37" y="127.5" ></text> +</g> +<g > +<title>/bin (595 samples, 0.06%)</title><rect x="119.3" y="165" width="0.7" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="122.30" y="175.5" ></text> +</g> +<g > +<title>/metainfo (267 samples, 0.03%)</title><rect x="214.8" y="181" width="0.4" height="15.0" fill="rgb(248,107,47)" rx="2" ry="2" /> +<text x="217.84" y="191.5" ></text> +</g> +<g > +<title>/b2 (107 samples, 0.01%)</title><rect x="1060.1" y="149" width="0.1" height="15.0" fill="rgb(236,117,34)" rx="2" ry="2" /> +<text x="1063.06" y="159.5" ></text> +</g> +<g > +<title>enter_read (8,428 samples, 0.87%)</title><rect x="550.0" y="213" width="10.3" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="553.02" y="223.5" ></text> +</g> +<g > +<title>6923 (608 samples, 0.06%)</title><rect x="1188.9" y="245" width="0.8" height="15.0" fill="rgb(240,181,38)" rx="2" ry="2" /> +<text x="1191.94" y="255.5" ></text> +</g> +<g > +<title>enter_read (94 samples, 0.01%)</title><rect x="726.7" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="729.66" y="79.5" ></text> +</g> +<g > +<title>/4f (90 samples, 0.01%)</title><rect x="1048.2" y="149" width="0.1" height="15.0" fill="rgb(235,114,33)" rx="2" ry="2" /> +<text x="1051.19" y="159.5" ></text> +</g> +<g > +<title>/sysimage (105 samples, 0.01%)</title><rect x="796.0" y="181" width="0.2" height="15.0" fill="rgb(248,145,47)" rx="2" ry="2" /> +<text x="799.04" y="191.5" ></text> +</g> +<g > +<title>/06 (108 samples, 0.01%)</title><rect x="1039.4" y="149" width="0.1" height="15.0" fill="rgb(235,134,34)" rx="2" ry="2" /> +<text x="1042.39" y="159.5" ></text> +</g> +<g > +<title>5176 (97 samples, 0.01%)</title><rect x="765.5" y="245" width="0.1" height="15.0" fill="rgb(247,158,46)" rx="2" ry="2" /> +<text x="768.48" y="255.5" ></text> +</g> +<g > +<title>/0f52621e4540863ee86b1fe26216fff78fefa1096f367079692344139228e474 (91 samples, 0.01%)</title><rect x="241.0" y="101" width="0.1" height="15.0" fill="rgb(248,134,48)" rx="2" ry="2" /> +<text x="244.03" y="111.5" ></text> +</g> +<g > +<title>/fonts (494 samples, 0.05%)</title><rect x="1166.0" y="197" width="0.6" height="15.0" fill="rgb(238,149,36)" rx="2" ry="2" /> +<text x="1169.02" y="207.5" ></text> +</g> +<g > +<title>anon_inode:[eventfd] (588 samples, 0.06%)</title><rect x="777.4" y="229" width="0.7" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="780.39" y="239.5" ></text> +</g> +<g > +<title>/paul (433 samples, 0.04%)</title><rect x="804.1" y="197" width="0.5" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="807.05" y="207.5" ></text> +</g> +<g > +<title>/lib64 (101 samples, 0.01%)</title><rect x="676.8" y="69" width="0.1" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="679.82" y="79.5" ></text> +</g> +<g > +<title>/94 (95 samples, 0.01%)</title><rect x="1056.5" y="149" width="0.1" height="15.0" fill="rgb(241,150,40)" rx="2" ry="2" /> +<text x="1059.50" y="159.5" ></text> +</g> +<g > +<title>10877 (955 samples, 0.10%)</title><rect x="116.3" y="245" width="1.1" height="15.0" fill="rgb(240,112,39)" rx="2" ry="2" /> +<text x="119.27" y="255.5" ></text> +</g> +<g > +<title>5588 (245 samples, 0.03%)</title><rect x="776.8" y="245" width="0.2" height="15.0" fill="rgb(239,134,38)" rx="2" ry="2" /> +<text x="779.75" y="255.5" ></text> +</g> +<g > +<title>/15 (147 samples, 0.02%)</title><rect x="1175.0" y="149" width="0.2" height="15.0" fill="rgb(236,132,34)" rx="2" ry="2" /> +<text x="1178.05" y="159.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="762.0" y="85" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="765.05" y="95.5" ></text> +</g> +<g > +<title>/.cache (25,267 samples, 2.61%)</title><rect x="1038.7" y="181" width="30.9" height="15.0" fill="rgb(245,154,44)" rx="2" ry="2" /> +<text x="1041.73" y="191.5" >/...</text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.NautilusPreviewer.slice (1,635 samples, 0.17%)</title><rect x="720.4" y="101" width="2.0" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="723.43" y="111.5" ></text> +</g> +<g > +<title>pipe:[1148912] (117 samples, 0.01%)</title><rect x="660.0" y="229" width="0.2" height="15.0" fill="rgb(242,170,41)" rx="2" ry="2" /> +<text x="663.02" y="239.5" ></text> +</g> +<g > +<title>enter_read (293 samples, 0.03%)</title><rect x="680.0" y="213" width="0.4" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="683.04" y="223.5" ></text> +</g> +<g > +<title>/proc (2,412 samples, 0.25%)</title><rect x="778.2" y="213" width="3.0" height="15.0" fill="rgb(234,144,31)" rx="2" ry="2" /> +<text x="781.23" y="223.5" ></text> +</g> +<g > +<title>/ff (107 samples, 0.01%)</title><rect x="1069.4" y="149" width="0.2" height="15.0" fill="rgb(240,139,39)" rx="2" ry="2" /> +<text x="1072.43" y="159.5" ></text> +</g> +<g > +<title>/conf.d (483 samples, 0.05%)</title><rect x="864.7" y="181" width="0.6" height="15.0" fill="rgb(248,164,47)" rx="2" ry="2" /> +<text x="867.69" y="191.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Screenshot.slice (1,628 samples, 0.17%)</title><rect x="728.5" y="101" width="2.0" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="731.51" y="111.5" ></text> +</g> +<g > +<title>enter_newfstat (90 samples, 0.01%)</title><rect x="734.0" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="736.99" y="79.5" ></text> +</g> +<g > +<title>/memory.low (270 samples, 0.03%)</title><rect x="743.0" y="85" width="0.3" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="745.99" y="95.5" ></text> +</g> +<g > +<title>/fontconfig (1,396 samples, 0.14%)</title><rect x="1167.3" y="181" width="1.7" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="1170.33" y="191.5" ></text> +</g> +<g > +<title>/lib64 (330 samples, 0.03%)</title><rect x="1089.4" y="213" width="0.4" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="1092.40" y="223.5" ></text> +</g> +<g > +<title>enter_read (164 samples, 0.02%)</title><rect x="1074.6" y="213" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="1077.57" y="223.5" ></text> +</g> +<g > +<title>/user.slice (375 samples, 0.04%)</title><rect x="622.4" y="165" width="0.5" height="15.0" fill="rgb(246,116,46)" rx="2" ry="2" /> +<text x="625.42" y="175.5" ></text> +</g> +<g > +<title>enter_read (186 samples, 0.02%)</title><rect x="679.0" y="213" width="0.3" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="682.03" y="223.5" ></text> +</g> +<g > +<title>enter_pwrite64 (229 samples, 0.02%)</title><rect x="813.2" y="149" width="0.3" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="816.19" y="159.5" ></text> +</g> +<g > +<title>enter_newfstatat (127 samples, 0.01%)</title><rect x="815.3" y="149" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="818.27" y="159.5" ></text> +</g> +<g > +<title>/PNP0C0A:00 (146 samples, 0.02%)</title><rect x="775.9" y="101" width="0.2" height="15.0" fill="rgb(229,139,27)" rx="2" ry="2" /> +<text x="778.95" y="111.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dio.github.kotatogram.slice (1,628 samples, 0.17%)</title><rect x="696.0" y="101" width="2.0" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="699.00" y="111.5" ></text> +</g> +<g > +<title>/proselint (316 samples, 0.03%)</title><rect x="872.1" y="165" width="0.4" height="15.0" fill="rgb(238,144,36)" rx="2" ry="2" /> +<text x="875.09" y="175.5" ></text> +</g> +<g > +<title>/memory.current (264 samples, 0.03%)</title><rect x="718.4" y="85" width="0.4" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="721.44" y="95.5" ></text> +</g> +<g > +<title>enter_mmap (83 samples, 0.01%)</title><rect x="877.9" y="213" width="0.1" height="15.0" fill="rgb(240,196,39)" rx="2" ry="2" /> +<text x="880.94" y="223.5" ></text> +</g> +<g > +<title>11077 (137 samples, 0.01%)</title><rect x="331.1" y="245" width="0.1" height="15.0" fill="rgb(246,132,45)" rx="2" ry="2" /> +<text x="334.07" y="255.5" ></text> +</g> +<g > +<title>/linuxbrew (248 samples, 0.03%)</title><rect x="674.2" y="197" width="0.3" height="15.0" fill="rgb(232,99,30)" rx="2" ry="2" /> +<text x="677.25" y="207.5" ></text> +</g> +<g > +<title>enter_ioctl (90 samples, 0.01%)</title><rect x="756.0" y="69" width="0.2" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="759.04" y="79.5" ></text> +</g> +<g > +<title>/ (185 samples, 0.02%)</title><rect x="767.3" y="165" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> +<text x="770.25" y="175.5" ></text> +</g> +<g > +<title>/.config (572 samples, 0.06%)</title><rect x="116.3" y="181" width="0.7" height="15.0" fill="rgb(239,154,37)" rx="2" ry="2" /> +<text x="119.30" y="191.5" ></text> +</g> +<g > +<title>627131 (2,332 samples, 0.24%)</title><rect x="832.3" y="245" width="2.8" height="15.0" fill="rgb(230,145,28)" rx="2" ry="2" /> +<text x="835.30" y="255.5" ></text> +</g> +<g > +<title>/dev (38,725 samples, 4.01%)</title><rect x="343.6" y="213" width="47.3" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" /> +<text x="346.58" y="223.5" >/dev</text> +</g> +<g > +<title>/sys (208 samples, 0.02%)</title><rect x="1189.3" y="213" width="0.3" height="15.0" fill="rgb(241,145,40)" rx="2" ry="2" /> +<text x="1192.32" y="223.5" ></text> +</g> +<g > +<title>enter_ioctl (2,023 samples, 0.21%)</title><rect x="32.9" y="197" width="2.5" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="35.94" y="207.5" ></text> +</g> +<g > +<title>enter_newfstat (114 samples, 0.01%)</title><rect x="1182.9" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1185.85" y="143.5" ></text> +</g> +<g > +<title> (100 samples, 0.01%)</title><rect x="115.9" y="229" width="0.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="118.90" y="239.5" ></text> +</g> +<g > +<title>com.belmoussaoui.ReadItLater.Locale (103 samples, 0.01%)</title><rect x="299.3" y="229" width="0.1" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="302.28" y="239.5" ></text> +</g> +<g > +<title>org.freedesktop.Platform.VAAPI.Intel (100 samples, 0.01%)</title><rect x="311.0" y="229" width="0.2" height="15.0" fill="rgb(233,179,31)" rx="2" ry="2" /> +<text x="314.05" y="239.5" ></text> +</g> +<g > +<title>enter_newfstat (85 samples, 0.01%)</title><rect x="1184.6" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1187.64" y="143.5" ></text> +</g> +<g > +<title>/wallpaper-clock-d79261e7f939791e254926a69b825364.jpg (2,125 samples, 0.22%)</title><rect x="837.6" y="133" width="2.6" height="15.0" fill="rgb(240,125,39)" rx="2" ry="2" /> +<text x="840.61" y="143.5" ></text> +</g> +<g > +<title>/59 (1,450 samples, 0.15%)</title><rect x="481.8" y="197" width="1.7" height="15.0" fill="rgb(225,99,22)" rx="2" ry="2" /> +<text x="484.77" y="207.5" ></text> +</g> +<g > +<title>/451c975916dc4536919a44482a914925 (8,178 samples, 0.85%)</title><rect x="1176.2" y="165" width="10.0" height="15.0" fill="rgb(236,117,35)" rx="2" ry="2" /> +<text x="1179.19" y="175.5" ></text> +</g> +<g > +<title>anon_inode:[eventfd] (24,742 samples, 2.56%)</title><rect x="629.7" y="229" width="30.2" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="632.71" y="239.5" >an..</text> +</g> +<g > +<title>/fedora (100 samples, 0.01%)</title><rect x="230.9" y="117" width="0.1" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" /> +<text x="233.86" y="127.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="758.7" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="761.66" y="79.5" ></text> +</g> +<g > +<title>/622134 (128 samples, 0.01%)</title><rect x="799.7" y="197" width="0.2" height="15.0" fill="rgb(243,117,41)" rx="2" ry="2" /> +<text x="802.73" y="207.5" ></text> +</g> +<g > +<title>enter_close (1,105 samples, 0.11%)</title><rect x="317.9" y="213" width="1.3" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="320.86" y="223.5" ></text> +</g> +<g > +<title>/memory.current (264 samples, 0.03%)</title><rect x="694.0" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="697.00" y="95.5" ></text> +</g> +<g > +<title>/c8 (107 samples, 0.01%)</title><rect x="1062.8" y="149" width="0.2" height="15.0" fill="rgb(236,148,35)" rx="2" ry="2" /> +<text x="1065.84" y="159.5" ></text> +</g> +<g > +<title>371837 (555 samples, 0.06%)</title><rect x="680.8" y="245" width="0.7" height="15.0" fill="rgb(233,218,30)" rx="2" ry="2" /> +<text x="683.78" y="255.5" ></text> +</g> +<g > +<title> (66,822 samples, 6.91%)</title><rect x="683.8" y="229" width="81.6" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="686.83" y="239.5" ></text> +</g> +<g > +<title>/share (436 samples, 0.05%)</title><rect x="101.4" y="197" width="0.5" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="104.36" y="207.5" ></text> +</g> +<g > +<title> (39,511 samples, 4.09%)</title><rect x="1093.6" y="229" width="48.2" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1096.59" y="239.5" ></text> +</g> +<g > +<title>enter_io_uring_enter (458 samples, 0.05%)</title><rect x="466.2" y="213" width="0.6" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="469.22" y="223.5" ></text> +</g> +<g > +<title>/proc (455 samples, 0.05%)</title><rect x="682.6" y="213" width="0.5" height="15.0" fill="rgb(234,144,31)" rx="2" ry="2" /> +<text x="685.56" y="223.5" ></text> +</g> +<g > +<title>/lib64 (21,728 samples, 2.25%)</title><rect x="1114.7" y="69" width="26.5" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="1117.72" y="79.5" >/..</text> +</g> +<g > +<title>/user-1001@38ed2805b6204d9b80417a97296c48b0-0000000000549498-0006232fccb2c5a8.journal (85 samples, 0.01%)</title><rect x="1184.6" y="149" width="0.1" height="15.0" fill="rgb(229,116,27)" rx="2" ry="2" /> +<text x="1187.64" y="159.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="689.9" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="692.87" y="79.5" ></text> +</g> +<g > +<title>/x86_64 (192 samples, 0.02%)</title><rect x="304.8" y="181" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="307.78" y="191.5" ></text> +</g> +<g > +<title>/etc (498 samples, 0.05%)</title><rect x="1166.0" y="213" width="0.6" height="15.0" fill="rgb(229,138,26)" rx="2" ry="2" /> +<text x="1169.02" y="223.5" ></text> +</g> +<g > +<title>enter_fcntl (115 samples, 0.01%)</title><rect x="823.6" y="149" width="0.1" height="15.0" fill="rgb(233,196,30)" rx="2" ry="2" /> +<text x="826.58" y="159.5" ></text> +</g> +<g > +<title>/19 (149 samples, 0.02%)</title><rect x="621.2" y="197" width="0.2" height="15.0" fill="rgb(229,119,27)" rx="2" ry="2" /> +<text x="624.23" y="207.5" ></text> +</g> +<g > +<title>/memory.min (264 samples, 0.03%)</title><rect x="719.1" y="85" width="0.3" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="722.08" y="95.5" ></text> +</g> +<g > +<title>/98 (102 samples, 0.01%)</title><rect x="1056.9" y="149" width="0.2" height="15.0" fill="rgb(234,138,32)" rx="2" ry="2" /> +<text x="1059.94" y="159.5" ></text> +</g> +<g > +<title>/Microsoft (388 samples, 0.04%)</title><rect x="835.3" y="165" width="0.5" height="15.0" fill="rgb(239,145,37)" rx="2" ry="2" /> +<text x="838.29" y="175.5" ></text> +</g> +<g > +<title>/lib64 (432 samples, 0.04%)</title><rect x="331.6" y="213" width="0.5" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="334.60" y="223.5" ></text> +</g> +<g > +<title>run (157 samples, 0.02%)</title><rect x="834.8" y="229" width="0.2" height="15.0" fill="rgb(243,156,41)" rx="2" ry="2" /> +<text x="837.77" y="239.5" ></text> +</g> +<g > +<title>/memory.swap.current (264 samples, 0.03%)</title><rect x="736.3" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="739.26" y="95.5" ></text> +</g> +<g > +<title>/law (726 samples, 0.08%)</title><rect x="796.2" y="149" width="0.9" height="15.0" fill="rgb(229,125,26)" rx="2" ry="2" /> +<text x="799.17" y="159.5" ></text> +</g> +<g > +<title>/memory.pressure (325 samples, 0.03%)</title><rect x="705.0" y="85" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="707.99" y="95.5" ></text> +</g> +<g > +<title>/fedora (83 samples, 0.01%)</title><rect x="221.0" y="149" width="0.1" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" /> +<text x="224.03" y="159.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="715.2" y="69" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="718.24" y="79.5" ></text> +</g> +<g > +<title>anon_inode:[eventfd] (371 samples, 0.04%)</title><rect x="768.0" y="229" width="0.4" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="770.99" y="239.5" ></text> +</g> +<g > +<title>627379 (1,462 samples, 0.15%)</title><rect x="875.8" y="245" width="1.8" height="15.0" fill="rgb(240,145,39)" rx="2" ry="2" /> +<text x="878.83" y="255.5" ></text> +</g> +<g > +<title>/sys (66,710 samples, 6.90%)</title><rect x="683.8" y="213" width="81.5" height="15.0" fill="rgb(241,145,40)" rx="2" ry="2" /> +<text x="686.84" y="223.5" >/sys</text> +</g> +<g > +<title>enter_lseek (1,225 samples, 0.13%)</title><rect x="1093.8" y="69" width="1.5" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="1096.80" y="79.5" ></text> +</g> +<g > +<title>/1d (103 samples, 0.01%)</title><rect x="1042.2" y="149" width="0.1" height="15.0" fill="rgb(241,135,40)" rx="2" ry="2" /> +<text x="1045.18" y="159.5" ></text> +</g> +<g > +<title>socket:[1149478] (82 samples, 0.01%)</title><rect x="397.6" y="229" width="0.1" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" /> +<text x="400.64" y="239.5" ></text> +</g> +<g > +<title>org.gnome.Platform (117 samples, 0.01%)</title><rect x="312.4" y="229" width="0.2" height="15.0" fill="rgb(232,179,30)" rx="2" ry="2" /> +<text x="315.42" y="239.5" ></text> +</g> +<g > +<title>/2f (88 samples, 0.01%)</title><rect x="1044.4" y="149" width="0.1" height="15.0" fill="rgb(237,124,35)" rx="2" ry="2" /> +<text x="1047.43" y="159.5" ></text> +</g> +<g > +<title>/dc (83 samples, 0.01%)</title><rect x="1065.2" y="149" width="0.1" height="15.0" fill="rgb(230,159,28)" rx="2" ry="2" /> +<text x="1068.21" y="159.5" ></text> +</g> +<g > +<title>/computers (417 samples, 0.04%)</title><rect x="101.4" y="149" width="0.5" height="15.0" fill="rgb(238,164,36)" rx="2" ry="2" /> +<text x="104.38" y="159.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="755.2" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="758.21" y="79.5" ></text> +</g> +<g > +<title>/db (108 samples, 0.01%)</title><rect x="1065.1" y="149" width="0.1" height="15.0" fill="rgb(232,162,30)" rx="2" ry="2" /> +<text x="1068.08" y="159.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="752.8" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="755.82" y="79.5" ></text> +</g> +<g > +<title>/usr (732 samples, 0.08%)</title><rect x="1085.9" y="213" width="0.9" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="1088.86" y="223.5" ></text> +</g> +<g > +<title>/dev (18,520 samples, 1.92%)</title><rect x="10.3" y="213" width="22.6" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" /> +<text x="13.33" y="223.5" >/..</text> +</g> +<g > +<title>/share (4,700 samples, 0.49%)</title><rect x="542.1" y="197" width="5.7" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="545.06" y="207.5" ></text> +</g> +<g > +<title>enter_lseek (98 samples, 0.01%)</title><rect x="1092.4" y="37" width="0.1" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="1095.43" y="47.5" ></text> +</g> +<g > +<title>anon_inode:[eventfd] (136 samples, 0.01%)</title><rect x="800.9" y="229" width="0.1" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="803.88" y="239.5" ></text> +</g> +<g > +<title>/ca (89 samples, 0.01%)</title><rect x="1063.1" y="149" width="0.1" height="15.0" fill="rgb(235,170,33)" rx="2" ry="2" /> +<text x="1066.10" y="159.5" ></text> +</g> +<g > +<title>/lib64 (122 samples, 0.01%)</title><rect x="541.9" y="69" width="0.1" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="544.87" y="79.5" ></text> +</g> +<g > +<title>/system@00063555eacaf935-a867d511da51b81a.journal~ (85 samples, 0.01%)</title><rect x="1177.8" y="149" width="0.1" height="15.0" fill="rgb(233,145,31)" rx="2" ry="2" /> +<text x="1180.79" y="159.5" ></text> +</g> +<g > +<title>/dev (112 samples, 0.01%)</title><rect x="1093.6" y="213" width="0.1" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" /> +<text x="1096.59" y="223.5" ></text> +</g> +<g > +<title>enter_read (115 samples, 0.01%)</title><rect x="342.0" y="181" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="345.05" y="191.5" ></text> +</g> +<g > +<title>/18 (96 samples, 0.01%)</title><rect x="1041.6" y="149" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> +<text x="1044.58" y="159.5" ></text> +</g> +<g > +<title>/ec (123 samples, 0.01%)</title><rect x="1067.2" y="149" width="0.1" height="15.0" fill="rgb(229,154,26)" rx="2" ry="2" /> +<text x="1070.17" y="159.5" ></text> +</g> +<g > +<title>/go-link-2935705061 (318 samples, 0.03%)</title><rect x="541.5" y="197" width="0.3" height="15.0" fill="rgb(228,144,25)" rx="2" ry="2" /> +<text x="544.46" y="207.5" ></text> +</g> +<g > +<title>io.github.btpf.alexandria (92 samples, 0.01%)</title><rect x="307.8" y="229" width="0.1" height="15.0" fill="rgb(232,152,29)" rx="2" ry="2" /> +<text x="310.83" y="239.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="690.2" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="693.20" y="79.5" ></text> +</g> +<g > +<title>enter_mmap (128 samples, 0.01%)</title><rect x="1186.3" y="213" width="0.1" height="15.0" fill="rgb(240,196,39)" rx="2" ry="2" /> +<text x="1189.27" y="223.5" ></text> +</g> +<g > +<title>/go-link-2935705061 (87 samples, 0.01%)</title><rect x="1093.3" y="197" width="0.1" height="15.0" fill="rgb(228,144,25)" rx="2" ry="2" /> +<text x="1096.29" y="207.5" ></text> +</g> +<g > +<title>/PackageKit (507 samples, 0.05%)</title><rect x="1175.4" y="181" width="0.6" height="15.0" fill="rgb(235,155,33)" rx="2" ry="2" /> +<text x="1178.39" y="191.5" ></text> +</g> +<g > +<title>/system@0aea203ba61848c3941e879d6c338702-00000000004cfaec-00061dc3f1357407.journal (93 samples, 0.01%)</title><rect x="1177.9" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1180.89" y="159.5" ></text> +</g> +<g > +<title>org.freedesktop.Platform (120 samples, 0.01%)</title><rect x="311.4" y="229" width="0.1" height="15.0" fill="rgb(232,179,30)" rx="2" ry="2" /> +<text x="314.36" y="239.5" ></text> +</g> +<g > +<title>/03 (92 samples, 0.01%)</title><rect x="1076.6" y="149" width="0.1" height="15.0" fill="rgb(241,144,39)" rx="2" ry="2" /> +<text x="1079.55" y="159.5" ></text> +</g> +<g > +<title>/org.freedesktop.Sdk.Locale (173 samples, 0.02%)</title><rect x="241.7" y="149" width="0.2" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="244.73" y="159.5" ></text> +</g> +<g > +<title>/proc (462 samples, 0.05%)</title><rect x="808.3" y="213" width="0.6" height="15.0" fill="rgb(234,144,31)" rx="2" ry="2" /> +<text x="811.32" y="223.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="715.6" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="718.63" y="79.5" ></text> +</g> +<g > +<title>/org.freedesktop.Platform (239 samples, 0.02%)</title><rect x="241.4" y="149" width="0.3" height="15.0" fill="rgb(232,149,30)" rx="2" ry="2" /> +<text x="244.38" y="159.5" ></text> +</g> +<g > +<title>/cgroup (1,155 samples, 0.12%)</title><rect x="784.4" y="181" width="1.4" height="15.0" fill="rgb(241,151,40)" rx="2" ry="2" /> +<text x="787.42" y="191.5" ></text> +</g> +<g > +<title>/122 (107 samples, 0.01%)</title><rect x="620.5" y="197" width="0.1" height="15.0" fill="rgb(247,142,46)" rx="2" ry="2" /> +<text x="623.46" y="207.5" ></text> +</g> +<g > +<title>/libgcc_s.so (244 samples, 0.03%)</title><rect x="1088.5" y="133" width="0.3" height="15.0" fill="rgb(240,99,39)" rx="2" ry="2" /> +<text x="1091.48" y="143.5" ></text> +</g> +<g > +<title>/user@0.service (1,677 samples, 0.17%)</title><rect x="685.9" y="133" width="2.0" height="15.0" fill="rgb(246,116,46)" rx="2" ry="2" /> +<text x="688.90" y="143.5" ></text> +</g> +<g > +<title>/com.jgraph.drawio.desktop (104 samples, 0.01%)</title><rect x="217.0" y="149" width="0.1" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="219.97" y="159.5" ></text> +</g> +<g > +<title>/86 (103 samples, 0.01%)</title><rect x="1054.8" y="149" width="0.1" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="1057.76" y="159.5" ></text> +</g> +<g > +<title>/memory.pressure (315 samples, 0.03%)</title><rect x="686.9" y="101" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="689.89" y="111.5" ></text> +</g> +<g > +<title>/com.skype.Client (103 samples, 0.01%)</title><rect x="217.3" y="149" width="0.1" height="15.0" fill="rgb(241,164,39)" rx="2" ry="2" /> +<text x="220.25" y="159.5" ></text> +</g> +<g > +<title>/app.slice (1,677 samples, 0.17%)</title><rect x="685.9" y="117" width="2.0" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="688.90" y="127.5" ></text> +</g> +<g > +<title>/run (114 samples, 0.01%)</title><rect x="808.9" y="213" width="0.1" height="15.0" fill="rgb(243,124,41)" rx="2" ry="2" /> +<text x="811.88" y="223.5" ></text> +</g> +<g > +<title>/52 (98 samples, 0.01%)</title><rect x="1048.6" y="149" width="0.1" height="15.0" fill="rgb(237,122,35)" rx="2" ry="2" /> +<text x="1051.56" y="159.5" ></text> +</g> +<g > +<title>enter_read (91 samples, 0.01%)</title><rect x="723.0" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="725.97" y="79.5" ></text> +</g> +<g > +<title>/lib64 (35,331 samples, 3.66%)</title><rect x="145.3" y="69" width="43.2" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="148.33" y="79.5" >/lib64</text> +</g> +<g > +<title>/memory.low (276 samples, 0.03%)</title><rect x="710.5" y="85" width="0.3" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="713.50" y="95.5" ></text> +</g> +<g > +<title>/mod (1,043 samples, 0.11%)</title><rect x="1069.8" y="149" width="1.3" height="15.0" fill="rgb(253,113,53)" rx="2" ry="2" /> +<text x="1072.81" y="159.5" ></text> +</g> +<g > +<title>enter_read (4,564 samples, 0.47%)</title><rect x="101.9" y="213" width="5.6" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="104.89" y="223.5" ></text> +</g> +<g > +<title>/95 (101 samples, 0.01%)</title><rect x="1056.6" y="149" width="0.1" height="15.0" fill="rgb(239,147,38)" rx="2" ry="2" /> +<text x="1059.62" y="159.5" ></text> +</g> +<g > +<title>enter_read (2,465 samples, 0.26%)</title><rect x="466.8" y="213" width="3.0" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="469.78" y="223.5" ></text> +</g> +<g > +<title>/org.freedesktop.Platform.GL.default (292 samples, 0.03%)</title><rect x="304.0" y="197" width="0.4" height="15.0" fill="rgb(228,149,25)" rx="2" ry="2" /> +<text x="307.03" y="207.5" ></text> +</g> +<g > +<title>org.fedoraproject.Platform (105 samples, 0.01%)</title><rect x="310.4" y="229" width="0.1" height="15.0" fill="rgb(232,179,30)" rx="2" ry="2" /> +<text x="313.35" y="239.5" ></text> +</g> +<g > +<title>/renderD128 (602 samples, 0.06%)</title><rect x="618.1" y="181" width="0.7" height="15.0" fill="rgb(237,137,35)" rx="2" ry="2" /> +<text x="621.07" y="191.5" ></text> +</g> +<g > +<title>/flatpak (132 samples, 0.01%)</title><rect x="38.1" y="181" width="0.1" height="15.0" fill="rgb(230,158,27)" rx="2" ry="2" /> +<text x="41.08" y="191.5" ></text> +</g> +<g > +<title>/memory.swap.current (270 samples, 0.03%)</title><rect x="703.7" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="706.67" y="95.5" ></text> +</g> +<g > +<title>/devices (146 samples, 0.02%)</title><rect x="775.9" y="197" width="0.2" height="15.0" fill="rgb(242,152,40)" rx="2" ry="2" /> +<text x="778.95" y="207.5" ></text> +</g> +<g > +<title>enter_mmap (971 samples, 0.10%)</title><rect x="1173.8" y="181" width="1.1" height="15.0" fill="rgb(240,196,39)" rx="2" ry="2" /> +<text x="1176.75" y="191.5" ></text> +</g> +<g > +<title>/5.15-24.08 (92 samples, 0.01%)</title><rect x="247.3" y="117" width="0.1" height="15.0" fill="rgb(233,96,30)" rx="2" ry="2" /> +<text x="250.32" y="127.5" ></text> +</g> +<g > +<title>627594 (762 samples, 0.08%)</title><rect x="1142.8" y="245" width="1.0" height="15.0" fill="rgb(245,145,44)" rx="2" ry="2" /> +<text x="1145.83" y="255.5" ></text> +</g> +<g > +<title>/paul (230 samples, 0.02%)</title><rect x="1166.6" y="197" width="0.3" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="1169.63" y="207.5" ></text> +</g> +<g > +<title>/usr (114 samples, 0.01%)</title><rect x="1086.9" y="213" width="0.2" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="1089.95" y="223.5" ></text> +</g> +<g > +<title>/0e (95 samples, 0.01%)</title><rect x="1040.4" y="149" width="0.2" height="15.0" fill="rgb(241,137,39)" rx="2" ry="2" /> +<text x="1043.44" y="159.5" ></text> +</g> +<g > +<title>/bin (550 samples, 0.06%)</title><rect x="188.5" y="181" width="0.7" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="191.49" y="191.5" ></text> +</g> +<g > +<title>/shadow (96 samples, 0.01%)</title><rect x="768.9" y="197" width="0.1" height="15.0" fill="rgb(235,122,33)" rx="2" ry="2" /> +<text x="771.89" y="207.5" ></text> +</g> +<g > +<title>enter_lseek (116 samples, 0.01%)</title><rect x="480.1" y="165" width="0.2" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="483.14" y="175.5" ></text> +</g> +<g > +<title>/memory.low (270 samples, 0.03%)</title><rect x="751.2" y="85" width="0.3" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="754.22" y="95.5" ></text> +</g> +<g > +<title>com.github.suzie97.communique.Locale (97 samples, 0.01%)</title><rect x="300.3" y="229" width="0.1" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="303.28" y="239.5" ></text> +</g> +<g > +<title>enter_getdents64 (2,236 samples, 0.23%)</title><rect x="322.1" y="213" width="2.7" height="15.0" fill="rgb(235,196,33)" rx="2" ry="2" /> +<text x="325.10" y="223.5" ></text> +</g> +<g > +<title>enter_getdents64 (282 samples, 0.03%)</title><rect x="248.5" y="149" width="0.4" height="15.0" fill="rgb(235,196,33)" rx="2" ry="2" /> +<text x="251.55" y="159.5" ></text> +</g> +<g > +<title>enter_write (272 samples, 0.03%)</title><rect x="99.2" y="149" width="0.3" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="102.19" y="159.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="742.2" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="745.21" y="79.5" ></text> +</g> +<g > +<title>/pack (152 samples, 0.02%)</title><rect x="872.8" y="197" width="0.2" height="15.0" fill="rgb(242,160,40)" rx="2" ry="2" /> +<text x="875.79" y="207.5" ></text> +</g> +<g > +<title>/2a (87 samples, 0.01%)</title><rect x="1043.8" y="149" width="0.2" height="15.0" fill="rgb(228,140,25)" rx="2" ry="2" /> +<text x="1046.85" y="159.5" ></text> +</g> +<g > +<title>/21 (90 samples, 0.01%)</title><rect x="1042.7" y="149" width="0.1" height="15.0" fill="rgb(225,140,22)" rx="2" ry="2" /> +<text x="1045.69" y="159.5" ></text> +</g> +<g > +<title>/journal (86 samples, 0.01%)</title><rect x="777.2" y="181" width="0.1" height="15.0" fill="rgb(229,128,27)" rx="2" ry="2" /> +<text x="780.17" y="191.5" ></text> +</g> +<g > +<title>/user-0.slice (100 samples, 0.01%)</title><rect x="445.5" y="149" width="0.1" height="15.0" fill="rgb(246,116,46)" rx="2" ry="2" /> +<text x="448.49" y="159.5" ></text> +</g> +<g > +<title>/video3 (203 samples, 0.02%)</title><rect x="619.9" y="197" width="0.3" height="15.0" fill="rgb(248,104,48)" rx="2" ry="2" /> +<text x="622.95" y="207.5" ></text> +</g> +<g > +<title>/history.sqlite (1,420 samples, 0.15%)</title><rect x="823.5" y="165" width="1.8" height="15.0" fill="rgb(240,119,38)" rx="2" ry="2" /> +<text x="826.53" y="175.5" ></text> +</g> +<g > +<title> (86 samples, 0.01%)</title><rect x="874.5" y="229" width="0.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="877.48" y="239.5" ></text> +</g> +<g > +<title>enter_pread64 (1,309 samples, 0.14%)</title><rect x="772.7" y="165" width="1.6" height="15.0" fill="rgb(237,196,36)" rx="2" ry="2" /> +<text x="775.71" y="175.5" ></text> +</g> +<g > +<title> (9,694 samples, 1.00%)</title><rect x="476.4" y="229" width="11.8" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="479.39" y="239.5" ></text> +</g> +<g > +<title>/5.15-24.08 (87 samples, 0.01%)</title><rect x="247.0" y="117" width="0.1" height="15.0" fill="rgb(233,96,30)" rx="2" ry="2" /> +<text x="250.04" y="127.5" ></text> +</g> +<g > +<title>/memory.current (264 samples, 0.03%)</title><rect x="724.4" y="85" width="0.4" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="727.43" y="95.5" ></text> +</g> +<g > +<title>/27 (84 samples, 0.01%)</title><rect x="1043.5" y="149" width="0.1" height="15.0" fill="rgb(232,121,29)" rx="2" ry="2" /> +<text x="1046.46" y="159.5" ></text> +</g> +<g > +<title>/dev (254 samples, 0.03%)</title><rect x="673.9" y="213" width="0.3" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" /> +<text x="676.93" y="223.5" ></text> +</g> +<g > +<title>enter_openat (117 samples, 0.01%)</title><rect x="335.9" y="181" width="0.2" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="338.91" y="191.5" ></text> +</g> +<g > +<title>/org.gnome.Shotwell (98 samples, 0.01%)</title><rect x="220.0" y="149" width="0.1" height="15.0" fill="rgb(227,149,24)" rx="2" ry="2" /> +<text x="223.03" y="159.5" ></text> +</g> +<g > +<title>/libgcc_s.so.1 (106 samples, 0.01%)</title><rect x="1091.8" y="197" width="0.1" height="15.0" fill="rgb(235,99,33)" rx="2" ry="2" /> +<text x="1094.81" y="207.5" ></text> +</g> +<g > +<title>enter_newfstat (1,283 samples, 0.13%)</title><rect x="324.8" y="213" width="1.6" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="327.84" y="223.5" ></text> +</g> +<g > +<title>/go-build (25,267 samples, 2.61%)</title><rect x="1038.7" y="165" width="30.9" height="15.0" fill="rgb(238,144,37)" rx="2" ry="2" /> +<text x="1041.73" y="175.5" >/g..</text> +</g> +<g > +<title>anon_inode:[eventfd] (108 samples, 0.01%)</title><rect x="782.4" y="229" width="0.1" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="785.41" y="239.5" ></text> +</g> +<g > +<title>/user-1001@00062a295de09090-a16240f245e1fdba.journal~ (86 samples, 0.01%)</title><rect x="1183.4" y="149" width="0.1" height="15.0" fill="rgb(233,116,31)" rx="2" ry="2" /> +<text x="1186.41" y="159.5" ></text> +</g> +<g > +<title>/sysimage (2,820 samples, 0.29%)</title><rect x="809.0" y="181" width="3.5" height="15.0" fill="rgb(248,145,47)" rx="2" ry="2" /> +<text x="812.04" y="191.5" ></text> +</g> +<g > +<title>enter_newfstat (87 samples, 0.01%)</title><rect x="1179.6" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1182.59" y="143.5" ></text> +</g> +<g > +<title> (845 samples, 0.09%)</title><rect x="116.3" y="229" width="1.0" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="119.27" y="239.5" ></text> +</g> +<g > +<title>/ab (92 samples, 0.01%)</title><rect x="1059.2" y="149" width="0.1" height="15.0" fill="rgb(223,122,20)" rx="2" ry="2" /> +<text x="1062.22" y="159.5" ></text> +</g> +<g > +<title>.git (97 samples, 0.01%)</title><rect x="874.6" y="229" width="0.1" height="15.0" fill="rgb(233,132,30)" rx="2" ry="2" /> +<text x="877.58" y="239.5" ></text> +</g> +<g > +<title>anon_inode:[eventfd] (1,941 samples, 0.20%)</title><rect x="827.3" y="229" width="2.3" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="830.26" y="239.5" ></text> +</g> +<g > +<title>enter_openat (107 samples, 0.01%)</title><rect x="617.9" y="165" width="0.2" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="620.94" y="175.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="746.6" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="749.61" y="79.5" ></text> +</g> +<g > +<title>/go-link-2935705061 (492 samples, 0.05%)</title><rect x="1081.7" y="197" width="0.6" height="15.0" fill="rgb(228,144,25)" rx="2" ry="2" /> +<text x="1084.71" y="207.5" ></text> +</g> +<g > +<title>5266 (871 samples, 0.09%)</title><rect x="774.7" y="245" width="1.0" height="15.0" fill="rgb(235,156,33)" rx="2" ry="2" /> +<text x="777.67" y="255.5" ></text> +</g> +<g > +<title>/memory.pressure (308 samples, 0.03%)</title><rect x="735.6" y="85" width="0.3" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="738.57" y="95.5" ></text> +</g> +<g > +<title>/a5 (95 samples, 0.01%)</title><rect x="1058.5" y="149" width="0.1" height="15.0" fill="rgb(232,112,29)" rx="2" ry="2" /> +<text x="1061.53" y="159.5" ></text> +</g> +<g > +<title>/a0 (112 samples, 0.01%)</title><rect x="1057.9" y="149" width="0.1" height="15.0" fill="rgb(223,128,20)" rx="2" ry="2" /> +<text x="1060.88" y="159.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="708.3" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="711.34" y="79.5" ></text> +</g> +<g > +<title>/memory.min (276 samples, 0.03%)</title><rect x="761.8" y="101" width="0.4" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="764.82" y="111.5" ></text> +</g> +<g > +<title>enter_write (1,380 samples, 0.14%)</title><rect x="333.4" y="213" width="1.7" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="336.44" y="223.5" ></text> +</g> +<g > +<title>enter_newfstat (117 samples, 0.01%)</title><rect x="335.8" y="181" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="338.77" y="191.5" ></text> +</g> +<g > +<title>/b1 (92 samples, 0.01%)</title><rect x="1059.9" y="149" width="0.2" height="15.0" fill="rgb(220,120,17)" rx="2" ry="2" /> +<text x="1062.95" y="159.5" ></text> +</g> +<g > +<title>enter_newfstat (87 samples, 0.01%)</title><rect x="1176.9" y="133" width="0.2" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1179.95" y="143.5" ></text> +</g> +<g > +<title>/f8 (84 samples, 0.01%)</title><rect x="1068.6" y="149" width="0.1" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" /> +<text x="1071.64" y="159.5" ></text> +</g> +<g > +<title>16773 (570 samples, 0.06%)</title><rect x="444.6" y="245" width="0.7" height="15.0" fill="rgb(248,84,47)" rx="2" ry="2" /> +<text x="447.63" y="255.5" ></text> +</g> +<g > +<title>/memory.swap.current (264 samples, 0.03%)</title><rect x="724.1" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="727.11" y="95.5" ></text> +</g> +<g > +<title>/x86_64 (105 samples, 0.01%)</title><rect x="231.6" y="133" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="234.61" y="143.5" ></text> +</g> +<g > +<title>enter_ioctl (92 samples, 0.01%)</title><rect x="707.1" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="710.11" y="79.5" ></text> +</g> +<g > +<title>/paul (758 samples, 0.08%)</title><rect x="870.5" y="197" width="0.9" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="873.50" y="207.5" ></text> +</g> +<g > +<title>/smaps (128 samples, 0.01%)</title><rect x="799.7" y="181" width="0.2" height="15.0" fill="rgb(243,145,42)" rx="2" ry="2" /> +<text x="802.73" y="191.5" ></text> +</g> +<g > +<title>/dev (92 samples, 0.01%)</title><rect x="777.0" y="213" width="0.2" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" /> +<text x="780.05" y="223.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="756.6" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="759.59" y="79.5" ></text> +</g> +<g > +<title>/memory.min (276 samples, 0.03%)</title><rect x="727.1" y="85" width="0.3" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="730.11" y="95.5" ></text> +</g> +<g > +<title> (5,029 samples, 0.52%)</title><rect x="1076.3" y="229" width="6.2" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1079.31" y="239.5" ></text> +</g> +<g > +<title>6738 (10,526 samples, 1.09%)</title><rect x="1173.8" y="245" width="12.8" height="15.0" fill="rgb(231,188,29)" rx="2" ry="2" /> +<text x="1176.75" y="255.5" ></text> +</g> +<g > +<title>org.kde.Platform.Locale (97 samples, 0.01%)</title><rect x="313.3" y="229" width="0.2" height="15.0" fill="rgb(242,179,41)" rx="2" ry="2" /> +<text x="316.35" y="239.5" ></text> +</g> +<g > +<title>enter_mmap (86 samples, 0.01%)</title><rect x="776.5" y="181" width="0.1" height="15.0" fill="rgb(240,196,39)" rx="2" ry="2" /> +<text x="779.46" y="191.5" ></text> +</g> +<g > +<title>enter_write (1,335 samples, 0.14%)</title><rect x="329.4" y="213" width="1.7" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="332.44" y="223.5" ></text> +</g> +<g > +<title>enter_read (182 samples, 0.02%)</title><rect x="798.7" y="165" width="0.3" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="801.74" y="175.5" ></text> +</g> +<g > +<title>/memory.min (276 samples, 0.03%)</title><rect x="710.8" y="85" width="0.4" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="713.83" y="95.5" ></text> +</g> +<g > +<title>enter_read (519 samples, 0.05%)</title><rect x="1140.5" y="37" width="0.7" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="1143.52" y="47.5" ></text> +</g> +<g > +<title>/stat (2,320 samples, 0.24%)</title><rect x="485.3" y="197" width="2.8" height="15.0" fill="rgb(229,122,26)" rx="2" ry="2" /> +<text x="488.31" y="207.5" ></text> +</g> +<g > +<title>enter_read (116 samples, 0.01%)</title><rect x="485.2" y="165" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="488.17" y="175.5" ></text> +</g> +<g > +<title>/PNP0A08:00 (146 samples, 0.02%)</title><rect x="775.9" y="149" width="0.2" height="15.0" fill="rgb(229,139,27)" rx="2" ry="2" /> +<text x="778.95" y="159.5" ></text> +</g> +<g > +<title>627217 (878 samples, 0.09%)</title><rect x="835.2" y="245" width="1.0" height="15.0" fill="rgb(239,145,37)" rx="2" ry="2" /> +<text x="838.17" y="255.5" ></text> +</g> +<g > +<title>627618 (296 samples, 0.03%)</title><rect x="1173.0" y="245" width="0.3" height="15.0" fill="rgb(234,145,32)" rx="2" ry="2" /> +<text x="1175.96" y="255.5" ></text> +</g> +<g > +<title>/lib64 (306 samples, 0.03%)</title><rect x="342.0" y="213" width="0.4" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="345.05" y="223.5" ></text> +</g> +<g > +<title>/lib (159 samples, 0.02%)</title><rect x="541.9" y="197" width="0.2" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="544.87" y="207.5" ></text> +</g> +<g > +<title>/home (433 samples, 0.04%)</title><rect x="804.1" y="213" width="0.5" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="807.05" y="223.5" ></text> +</g> +<g > +<title>enter_write (381 samples, 0.04%)</title><rect x="623.9" y="133" width="0.4" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="626.87" y="143.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="692.9" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="695.87" y="79.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="686.1" y="85" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="689.12" y="95.5" ></text> +</g> +<g > +<title>org.kde.WaylandDecoration.QGnomePlatform-decoration (131 samples, 0.01%)</title><rect x="314.0" y="229" width="0.1" height="15.0" fill="rgb(247,179,46)" rx="2" ry="2" /> +<text x="316.96" y="239.5" ></text> +</g> +<g > +<title>/pkg (1,043 samples, 0.11%)</title><rect x="1069.8" y="165" width="1.3" height="15.0" fill="rgb(238,128,36)" rx="2" ry="2" /> +<text x="1072.81" y="175.5" ></text> +</g> +<g > +<title>/bfe23ec8ae62e554c21f8d5bb1ffa866025eb79fa819d5d2e88cd075c4059f56 (97 samples, 0.01%)</title><rect x="233.3" y="101" width="0.1" height="15.0" fill="rgb(233,104,31)" rx="2" ry="2" /> +<text x="236.30" y="111.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="720.0" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="723.00" y="79.5" ></text> +</g> +<g > +<title>/.mozilla (778 samples, 0.08%)</title><rect x="797.8" y="181" width="0.9" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="800.79" y="191.5" ></text> +</g> +<g > +<title>/lib (2,891 samples, 0.30%)</title><rect x="809.0" y="197" width="3.6" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="812.02" y="207.5" ></text> +</g> +<g > +<title>/fortune (1,158 samples, 0.12%)</title><rect x="623.3" y="165" width="1.4" height="15.0" fill="rgb(246,149,46)" rx="2" ry="2" /> +<text x="626.28" y="175.5" ></text> +</g> +<g > +<title>enter_lseek (196 samples, 0.02%)</title><rect x="1092.8" y="117" width="0.3" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="1095.81" y="127.5" ></text> +</g> +<g > +<title>/applications (109 samples, 0.01%)</title><rect x="39.7" y="181" width="0.2" height="15.0" fill="rgb(244,115,43)" rx="2" ry="2" /> +<text x="42.72" y="191.5" ></text> +</g> +<g > +<title>/user-1001@0006231483066408-bbc5079379d9a9d0.journal~ (85 samples, 0.01%)</title><rect x="1183.1" y="149" width="0.1" height="15.0" fill="rgb(233,116,31)" rx="2" ry="2" /> +<text x="1186.11" y="159.5" ></text> +</g> +<g > +<title>/paul (515 samples, 0.05%)</title><rect x="836.4" y="197" width="0.6" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="839.38" y="207.5" ></text> +</g> +<g > +<title>enter_newfstat (91 samples, 0.01%)</title><rect x="1185.0" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1187.99" y="143.5" ></text> +</g> +<g > +<title>enter_read (725 samples, 0.08%)</title><rect x="796.2" y="133" width="0.9" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="799.17" y="143.5" ></text> +</g> +<g > +<title>/.. (548 samples, 0.06%)</title><rect x="391.3" y="101" width="0.7" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="394.31" y="111.5" ></text> +</g> +<g > +<title>/rpmdb.sqlite (1,409 samples, 0.15%)</title><rect x="810.6" y="149" width="1.7" height="15.0" fill="rgb(240,140,38)" rx="2" ry="2" /> +<text x="813.62" y="159.5" ></text> +</g> +<g > +<title>enter_newfstat (90 samples, 0.01%)</title><rect x="754.4" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="757.39" y="79.5" ></text> +</g> +<g > +<title>enter_mmap (130 samples, 0.01%)</title><rect x="251.6" y="213" width="0.2" height="15.0" fill="rgb(240,196,39)" rx="2" ry="2" /> +<text x="254.60" y="223.5" ></text> +</g> +<g > +<title>enter_newfstat (94 samples, 0.01%)</title><rect x="1183.0" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1185.99" y="143.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="704.6" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="707.55" y="79.5" ></text> +</g> +<g > +<title>/memory.swap.current (264 samples, 0.03%)</title><rect x="740.3" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="743.26" y="95.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="699.6" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="702.55" y="79.5" ></text> +</g> +<g > +<title>/.. (252 samples, 0.03%)</title><rect x="1090.1" y="117" width="0.3" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1093.10" y="127.5" ></text> +</g> +<g > +<title>/451c975916dc4536919a44482a914925 (86 samples, 0.01%)</title><rect x="777.2" y="165" width="0.1" height="15.0" fill="rgb(236,117,35)" rx="2" ry="2" /> +<text x="780.17" y="175.5" ></text> +</g> +<g > +<title>/libgcc.a (88 samples, 0.01%)</title><rect x="1092.7" y="133" width="0.1" height="15.0" fill="rgb(238,99,36)" rx="2" ry="2" /> +<text x="1095.68" y="143.5" ></text> +</g> +<g > +<title>enter_close (105 samples, 0.01%)</title><rect x="807.5" y="197" width="0.1" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="810.52" y="207.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="716.3" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="719.29" y="79.5" ></text> +</g> +<g > +<title>/memory.pressure (322 samples, 0.03%)</title><rect x="753.9" y="85" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="756.94" y="95.5" ></text> +</g> +<g > +<title>/app (4,201 samples, 0.43%)</title><rect x="215.9" y="165" width="5.1" height="15.0" fill="rgb(248,115,47)" rx="2" ry="2" /> +<text x="218.90" y="175.5" ></text> +</g> +<g > +<title>/variety (478 samples, 0.05%)</title><rect x="1143.8" y="165" width="0.6" height="15.0" fill="rgb(243,130,42)" rx="2" ry="2" /> +<text x="1146.82" y="175.5" ></text> +</g> +<g > +<title>/wallpaper (321 samples, 0.03%)</title><rect x="1144.8" y="149" width="0.3" height="15.0" fill="rgb(243,125,41)" rx="2" ry="2" /> +<text x="1147.75" y="159.5" ></text> +</g> +<g > +<title>/log (97 samples, 0.01%)</title><rect x="776.9" y="197" width="0.1" height="15.0" fill="rgb(248,118,48)" rx="2" ry="2" /> +<text x="779.88" y="207.5" ></text> +</g> +<g > +<title>/styles (706 samples, 0.07%)</title><rect x="871.6" y="181" width="0.9" height="15.0" fill="rgb(244,122,43)" rx="2" ry="2" /> +<text x="874.61" y="191.5" ></text> +</g> +<g > +<title>/c1 (91 samples, 0.01%)</title><rect x="1061.9" y="149" width="0.2" height="15.0" fill="rgb(231,170,29)" rx="2" ry="2" /> +<text x="1064.94" y="159.5" ></text> +</g> +<g > +<title>enter_write (6,880 samples, 0.71%)</title><rect x="107.5" y="213" width="8.4" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="110.46" y="223.5" ></text> +</g> +<g > +<title>/share (1,629 samples, 0.17%)</title><rect x="1167.3" y="197" width="2.0" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="1170.33" y="207.5" ></text> +</g> +<g > +<title>anon_inode:inotify (93 samples, 0.01%)</title><rect x="1186.5" y="229" width="0.1" height="15.0" fill="rgb(243,164,42)" rx="2" ry="2" /> +<text x="1189.46" y="239.5" ></text> +</g> +<g > +<title>enter_read (136 samples, 0.01%)</title><rect x="779.4" y="165" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="782.36" y="175.5" ></text> +</g> +<g > +<title>/5 (112 samples, 0.01%)</title><rect x="622.1" y="197" width="0.2" height="15.0" fill="rgb(244,110,43)" rx="2" ry="2" /> +<text x="625.14" y="207.5" ></text> +</g> +<g > +<title>enter_readv (130 samples, 0.01%)</title><rect x="447.0" y="165" width="0.2" height="15.0" fill="rgb(239,196,37)" rx="2" ry="2" /> +<text x="450.00" y="175.5" ></text> +</g> +<g > +<title>/.config (505 samples, 0.05%)</title><rect x="836.4" y="181" width="0.6" height="15.0" fill="rgb(239,154,37)" rx="2" ry="2" /> +<text x="839.39" y="191.5" ></text> +</g> +<g > +<title>enter_write (378 samples, 0.04%)</title><rect x="803.1" y="213" width="0.4" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="806.07" y="223.5" ></text> +</g> +<g > +<title>/heads (481 samples, 0.05%)</title><rect x="230.3" y="133" width="0.6" height="15.0" fill="rgb(244,132,43)" rx="2" ry="2" /> +<text x="233.28" y="143.5" ></text> +</g> +<g > +<title>627543 (150 samples, 0.02%)</title><rect x="1085.0" y="245" width="0.2" height="15.0" fill="rgb(240,145,39)" rx="2" ry="2" /> +<text x="1087.98" y="255.5" ></text> +</g> +<g > +<title>/share (1,258 samples, 0.13%)</title><rect x="623.2" y="197" width="1.5" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="626.16" y="207.5" ></text> +</g> +<g > +<title>enter_lseek (272 samples, 0.03%)</title><rect x="1077.4" y="117" width="0.3" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="1080.36" y="127.5" ></text> +</g> +<g > +<title>/e9 (94 samples, 0.01%)</title><rect x="1066.8" y="149" width="0.2" height="15.0" fill="rgb(232,134,30)" rx="2" ry="2" /> +<text x="1069.84" y="159.5" ></text> +</g> +<g > +<title>enter_write (84 samples, 0.01%)</title><rect x="547.8" y="149" width="0.1" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="550.81" y="159.5" ></text> +</g> +<g > +<title>enter_ioctl (90 samples, 0.01%)</title><rect x="689.0" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="691.99" y="79.5" ></text> +</g> +<g > +<title>/58 (89 samples, 0.01%)</title><rect x="1049.2" y="149" width="0.1" height="15.0" fill="rgb(226,102,24)" rx="2" ry="2" /> +<text x="1052.22" y="159.5" ></text> +</g> +<g > +<title>1 (349 samples, 0.04%)</title><rect x="445.3" y="245" width="0.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> +<text x="448.33" y="255.5" ></text> +</g> +<g > +<title>/paul (130 samples, 0.01%)</title><rect x="805.2" y="197" width="0.1" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="808.15" y="207.5" ></text> +</g> +<g > +<title>com.discordapp.Discord (97 samples, 0.01%)</title><rect x="299.8" y="229" width="0.2" height="15.0" fill="rgb(248,149,47)" rx="2" ry="2" /> +<text x="302.84" y="239.5" ></text> +</g> +<g > +<title> (114 samples, 0.01%)</title><rect x="878.1" y="229" width="0.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="881.08" y="239.5" ></text> +</g> +<g > +<title>/85 (118 samples, 0.01%)</title><rect x="1054.6" y="149" width="0.2" height="15.0" fill="rgb(240,152,39)" rx="2" ry="2" /> +<text x="1057.62" y="159.5" ></text> +</g> +<g > +<title>/proc (116 samples, 0.01%)</title><rect x="806.8" y="213" width="0.1" height="15.0" fill="rgb(234,144,31)" rx="2" ry="2" /> +<text x="809.80" y="223.5" ></text> +</g> +<g > +<title>org.kde.WaylandDecoration.QAdwaitaDecorations (103 samples, 0.01%)</title><rect x="313.8" y="229" width="0.2" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" /> +<text x="316.83" y="239.5" ></text> +</g> +<g > +<title>/usr (101 samples, 0.01%)</title><rect x="1091.1" y="213" width="0.2" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="1094.14" y="223.5" ></text> +</g> +<g > +<title>enter_pwrite64 (621 samples, 0.06%)</title><rect x="826.1" y="165" width="0.8" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="829.10" y="175.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="690.9" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="693.86" y="79.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="710.0" y="69" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="713.05" y="79.5" ></text> +</g> +<g > +<title>/permanent (626 samples, 0.06%)</title><rect x="798.0" y="117" width="0.7" height="15.0" fill="rgb(241,147,39)" rx="2" ry="2" /> +<text x="800.97" y="127.5" ></text> +</g> +<g > +<title>enter_write (127 samples, 0.01%)</title><rect x="341.3" y="213" width="0.1" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="344.29" y="223.5" ></text> +</g> +<g > +<title>enter_newfstat (96 samples, 0.01%)</title><rect x="1178.1" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1181.12" y="143.5" ></text> +</g> +<g > +<title>/88 (95 samples, 0.01%)</title><rect x="1055.0" y="149" width="0.1" height="15.0" fill="rgb(235,143,33)" rx="2" ry="2" /> +<text x="1058.03" y="159.5" ></text> +</g> +<g > +<title>/paul (18,094 samples, 1.87%)</title><rect x="120.7" y="197" width="22.1" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="123.73" y="207.5" >/..</text> +</g> +<g > +<title>/history.sqlite-shm (726 samples, 0.08%)</title><rect x="817.1" y="165" width="0.9" height="15.0" fill="rgb(228,119,26)" rx="2" ry="2" /> +<text x="820.09" y="175.5" ></text> +</g> +<g > +<title>627427 (106 samples, 0.01%)</title><rect x="881.3" y="245" width="0.1" height="15.0" fill="rgb(236,145,35)" rx="2" ry="2" /> +<text x="884.27" y="255.5" ></text> +</g> +<g > +<title>anon_inode:[eventfd] (127 samples, 0.01%)</title><rect x="116.1" y="229" width="0.2" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="119.11" y="239.5" ></text> +</g> +<g > +<title>/home (320 samples, 0.03%)</title><rect x="461.6" y="213" width="0.4" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="464.56" y="223.5" ></text> +</g> +<g > +<title>/shells (302 samples, 0.03%)</title><rect x="769.0" y="197" width="0.4" height="15.0" fill="rgb(236,122,34)" rx="2" ry="2" /> +<text x="772.01" y="207.5" ></text> +</g> +<g > +<title>/.. (147 samples, 0.02%)</title><rect x="1175.0" y="133" width="0.2" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1178.05" y="143.5" ></text> +</g> +<g > +<title>enter_newfstatat (117 samples, 0.01%)</title><rect x="335.2" y="181" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="338.20" y="191.5" ></text> +</g> +<g > +<title>/156 (1,450 samples, 0.15%)</title><rect x="478.2" y="197" width="1.8" height="15.0" fill="rgb(237,132,35)" rx="2" ry="2" /> +<text x="481.23" y="207.5" ></text> +</g> +<g > +<title>/11 (87 samples, 0.01%)</title><rect x="1040.8" y="149" width="0.1" height="15.0" fill="rgb(226,145,23)" rx="2" ry="2" /> +<text x="1043.84" y="159.5" ></text> +</g> +<g > +<title>enter_close (117 samples, 0.01%)</title><rect x="335.3" y="181" width="0.2" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="338.34" y="191.5" ></text> +</g> +<g > +<title>/com.github.johnfactotum.Foliate (103 samples, 0.01%)</title><rect x="216.6" y="149" width="0.1" height="15.0" fill="rgb(245,164,45)" rx="2" ry="2" /> +<text x="219.57" y="159.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="694.9" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="697.87" y="79.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="730.4" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="733.39" y="79.5" ></text> +</g> +<g > +<title>/paul (126 samples, 0.01%)</title><rect x="340.5" y="197" width="0.2" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="343.51" y="207.5" ></text> +</g> +<g > +<title>/smaps (185 samples, 0.02%)</title><rect x="799.0" y="181" width="0.2" height="15.0" fill="rgb(243,145,42)" rx="2" ry="2" /> +<text x="801.97" y="191.5" ></text> +</g> +<g > +<title>/.. (21,728 samples, 2.25%)</title><rect x="1114.7" y="133" width="26.5" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1117.72" y="143.5" >/..</text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="763.1" y="85" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="766.09" y="95.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="701.2" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="704.22" y="79.5" ></text> +</g> +<g > +<title>/passwd (702 samples, 0.07%)</title><rect x="335.3" y="197" width="0.9" height="15.0" fill="rgb(240,160,38)" rx="2" ry="2" /> +<text x="338.34" y="207.5" ></text> +</g> +<g > +<title>/null (82 samples, 0.01%)</title><rect x="1169.4" y="197" width="0.1" height="15.0" fill="rgb(224,145,21)" rx="2" ry="2" /> +<text x="1172.38" y="207.5" ></text> +</g> +<g > +<title>/icons (10,087 samples, 1.04%)</title><rect x="120.7" y="149" width="12.4" height="15.0" fill="rgb(244,134,43)" rx="2" ry="2" /> +<text x="123.74" y="159.5" ></text> +</g> +<g > +<title>/lib64 (1,499 samples, 0.16%)</title><rect x="99.5" y="213" width="1.9" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="102.53" y="223.5" ></text> +</g> +<g > +<title>enter_read (576 samples, 0.06%)</title><rect x="99.5" y="181" width="0.7" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="102.53" y="191.5" ></text> +</g> +<g > +<title>enter_close (135 samples, 0.01%)</title><rect x="829.7" y="213" width="0.1" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="832.67" y="223.5" ></text> +</g> +<g > +<title>org.telegram.desktop.webview (146 samples, 0.02%)</title><rect x="314.7" y="229" width="0.1" height="15.0" fill="rgb(230,179,28)" rx="2" ry="2" /> +<text x="317.67" y="239.5" ></text> +</g> +<g > +<title>/sys (116 samples, 0.01%)</title><rect x="462.1" y="213" width="0.1" height="15.0" fill="rgb(241,145,40)" rx="2" ry="2" /> +<text x="465.05" y="223.5" ></text> +</g> +<g > +<title>enter_pwrite64 (144 samples, 0.01%)</title><rect x="810.3" y="133" width="0.2" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="813.31" y="143.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="723.7" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="726.68" y="79.5" ></text> +</g> +<g > +<title>/23.08 (170 samples, 0.02%)</title><rect x="234.7" y="117" width="0.2" height="15.0" fill="rgb(233,134,30)" rx="2" ry="2" /> +<text x="237.69" y="127.5" ></text> +</g> +<g > +<title>enter_read (122 samples, 0.01%)</title><rect x="624.3" y="133" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="627.34" y="143.5" ></text> +</g> +<g > +<title>/sys (100 samples, 0.01%)</title><rect x="445.5" y="213" width="0.1" height="15.0" fill="rgb(241,145,40)" rx="2" ry="2" /> +<text x="448.49" y="223.5" ></text> +</g> +<g > +<title>/596092 (160 samples, 0.02%)</title><rect x="778.8" y="197" width="0.2" height="15.0" fill="rgb(252,99,52)" rx="2" ry="2" /> +<text x="781.77" y="207.5" ></text> +</g> +<g > +<title>enter_newfstat (88 samples, 0.01%)</title><rect x="740.0" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="742.99" y="79.5" ></text> +</g> +<g > +<title>/user.slice (65,022 samples, 6.73%)</title><rect x="685.9" y="165" width="79.4" height="15.0" fill="rgb(246,116,46)" rx="2" ry="2" /> +<text x="688.90" y="175.5" >/user.slice</text> +</g> +<g > +<title>enter_ioctl (94 samples, 0.01%)</title><rect x="764.3" y="85" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="767.27" y="95.5" ></text> +</g> +<g > +<title>pipe:[23259] (193 samples, 0.02%)</title><rect x="765.8" y="229" width="0.3" height="15.0" fill="rgb(244,170,42)" rx="2" ry="2" /> +<text x="768.82" y="239.5" ></text> +</g> +<g > +<title>enter_read (93 samples, 0.01%)</title><rect x="760.4" y="85" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="763.39" y="95.5" ></text> +</g> +<g > +<title>/29 (109 samples, 0.01%)</title><rect x="1043.7" y="149" width="0.1" height="15.0" fill="rgb(228,114,25)" rx="2" ry="2" /> +<text x="1046.72" y="159.5" ></text> +</g> +<g > +<title> (1,261 samples, 0.13%)</title><rect x="832.7" y="229" width="1.5" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="835.71" y="239.5" ></text> +</g> +<g > +<title>/memory.current (276 samples, 0.03%)</title><rect x="761.2" y="101" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="764.16" y="111.5" ></text> +</g> +<g > +<title>/system@a76544c2185a4e0d95d841276470efd6-00000000004ff011-0006208fd0579154.journal (90 samples, 0.01%)</title><rect x="1179.7" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1182.70" y="159.5" ></text> +</g> +<g > +<title>/swcatalog (424 samples, 0.04%)</title><rect x="215.2" y="181" width="0.5" height="15.0" fill="rgb(248,113,48)" rx="2" ry="2" /> +<text x="218.17" y="191.5" ></text> +</g> +<g > +<title>anon_inode:[eventfd] (2,149 samples, 0.22%)</title><rect x="328.4" y="229" width="2.7" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="331.45" y="239.5" ></text> +</g> +<g > +<title>enter_newfstat (116 samples, 0.01%)</title><rect x="481.2" y="165" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="484.20" y="175.5" ></text> +</g> +<g > +<title>/var (1,510 samples, 0.16%)</title><rect x="547.8" y="213" width="1.8" height="15.0" fill="rgb(231,130,28)" rx="2" ry="2" /> +<text x="550.80" y="223.5" ></text> +</g> +<g > +<title>/bin (221 samples, 0.02%)</title><rect x="36.9" y="165" width="0.3" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="39.88" y="175.5" ></text> +</g> +<g > +<title>/memory.min (270 samples, 0.03%)</title><rect x="759.8" y="101" width="0.3" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="762.77" y="111.5" ></text> +</g> +<g > +<title>enter_ioctl (269 samples, 0.03%)</title><rect x="42.3" y="149" width="0.3" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="45.29" y="159.5" ></text> +</g> +<g > +<title>/usr (1,908 samples, 0.20%)</title><rect x="1167.0" y="213" width="2.3" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="1169.99" y="223.5" ></text> +</g> +<g > +<title>/x86_64 (103 samples, 0.01%)</title><rect x="242.1" y="133" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="245.14" y="143.5" ></text> +</g> +<g > +<title>/dri (38,691 samples, 4.00%)</title><rect x="343.6" y="197" width="47.2" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="346.58" y="207.5" >/dri</text> +</g> +<g > +<title>/memory.pressure (308 samples, 0.03%)</title><rect x="693.0" y="85" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="695.98" y="95.5" ></text> +</g> +<g > +<title>/runtime (1,054 samples, 0.11%)</title><rect x="1072.9" y="149" width="1.3" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" /> +<text x="1075.92" y="159.5" ></text> +</g> +<g > +<title>/bin (220 samples, 0.02%)</title><rect x="36.0" y="165" width="0.3" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="39.00" y="175.5" ></text> +</g> +<g > +<title>/fs (113 samples, 0.01%)</title><rect x="462.1" y="197" width="0.1" height="15.0" fill="rgb(235,136,33)" rx="2" ry="2" /> +<text x="465.05" y="207.5" ></text> +</g> +<g > +<title>enter_close (366 samples, 0.04%)</title><rect x="832.7" y="197" width="0.5" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="835.71" y="207.5" ></text> +</g> +<g > +<title>/fortune (436 samples, 0.05%)</title><rect x="101.4" y="165" width="0.5" height="15.0" fill="rgb(246,149,46)" rx="2" ry="2" /> +<text x="104.36" y="175.5" ></text> +</g> +<g > +<title> (287 samples, 0.03%)</title><rect x="1173.0" y="229" width="0.3" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1175.96" y="239.5" ></text> +</g> +<g > +<title>/Bing (160 samples, 0.02%)</title><rect x="116.3" y="133" width="0.2" height="15.0" fill="rgb(243,145,42)" rx="2" ry="2" /> +<text x="119.31" y="143.5" ></text> +</g> +<g > +<title>/f0 (120 samples, 0.01%)</title><rect x="1067.7" y="149" width="0.1" height="15.0" fill="rgb(230,158,27)" rx="2" ry="2" /> +<text x="1070.68" y="159.5" ></text> +</g> +<g > +<title> (292 samples, 0.03%)</title><rect x="1084.6" y="229" width="0.4" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1087.63" y="239.5" ></text> +</g> +<g > +<title>enter_newfstat (89 samples, 0.01%)</title><rect x="1184.5" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1187.53" y="143.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="716.9" y="69" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="719.95" y="79.5" ></text> +</g> +<g > +<title>/.. (35,331 samples, 3.66%)</title><rect x="145.3" y="133" width="43.2" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="148.33" y="143.5" >/..</text> +</g> +<g > +<title>enter_pread64 (4,414 samples, 0.46%)</title><rect x="818.1" y="149" width="5.4" height="15.0" fill="rgb(237,196,36)" rx="2" ry="2" /> +<text x="821.14" y="159.5" ></text> +</g> +<g > +<title>/7b (107 samples, 0.01%)</title><rect x="1053.4" y="149" width="0.1" height="15.0" fill="rgb(233,167,31)" rx="2" ry="2" /> +<text x="1056.40" y="159.5" ></text> +</g> +<g > +<title>/com.belmoussaoui.ReadItLater (107 samples, 0.01%)</title><rect x="215.9" y="149" width="0.1" height="15.0" fill="rgb(240,164,38)" rx="2" ry="2" /> +<text x="218.90" y="159.5" ></text> +</g> +<g > +<title>enter_mmap (83 samples, 0.01%)</title><rect x="876.8" y="213" width="0.2" height="15.0" fill="rgb(240,196,39)" rx="2" ry="2" /> +<text x="879.85" y="223.5" ></text> +</g> +<g > +<title>/memory.low (264 samples, 0.03%)</title><rect x="728.8" y="85" width="0.4" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="731.83" y="95.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Shell.CalendarServer.slice (1,627 samples, 0.17%)</title><rect x="734.6" y="101" width="2.0" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="737.60" y="111.5" ></text> +</g> +<g > +<title>/e0 (83 samples, 0.01%)</title><rect x="1065.7" y="149" width="0.1" height="15.0" fill="rgb(231,163,28)" rx="2" ry="2" /> +<text x="1068.67" y="159.5" ></text> +</g> +<g > +<title>/dev.bragefuglseth.Keypunch (122 samples, 0.01%)</title><rect x="217.8" y="149" width="0.1" height="15.0" fill="rgb(246,152,45)" rx="2" ry="2" /> +<text x="220.79" y="159.5" ></text> +</g> +<g > +<title> (173 samples, 0.02%)</title><rect x="782.1" y="229" width="0.2" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="785.06" y="239.5" ></text> +</g> +<g > +<title>627384 (114 samples, 0.01%)</title><rect x="878.1" y="245" width="0.1" height="15.0" fill="rgb(248,145,47)" rx="2" ry="2" /> +<text x="881.08" y="255.5" ></text> +</g> +<g > +<title>/locale (168 samples, 0.02%)</title><rect x="117.1" y="181" width="0.2" height="15.0" fill="rgb(242,118,41)" rx="2" ry="2" /> +<text x="120.06" y="191.5" ></text> +</g> +<g > +<title>/memory.low (264 samples, 0.03%)</title><rect x="692.3" y="85" width="0.4" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="695.33" y="95.5" ></text> +</g> +<g > +<title>/dnf (326 samples, 0.03%)</title><rect x="624.7" y="181" width="0.4" height="15.0" fill="rgb(248,162,48)" rx="2" ry="2" /> +<text x="627.71" y="191.5" ></text> +</g> +<g > +<title>/home (520 samples, 0.05%)</title><rect x="836.4" y="213" width="0.6" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="839.38" y="223.5" ></text> +</g> +<g > +<title>/memory.swap.current (282 samples, 0.03%)</title><rect x="748.5" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="751.49" y="95.5" ></text> +</g> +<g > +<title>com.jgraph.drawio.desktop (112 samples, 0.01%)</title><rect x="300.8" y="229" width="0.2" height="15.0" fill="rgb(244,149,43)" rx="2" ry="2" /> +<text x="303.82" y="239.5" ></text> +</g> +<g > +<title>/15 (22,145 samples, 2.29%)</title><rect x="1114.7" y="149" width="27.1" height="15.0" fill="rgb(236,132,34)" rx="2" ry="2" /> +<text x="1117.72" y="159.5" >/15</text> +</g> +<g > +<title>/paul (868 samples, 0.09%)</title><rect x="782.6" y="197" width="1.0" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="785.57" y="207.5" ></text> +</g> +<g > +<title>/libc.so (141 samples, 0.01%)</title><rect x="1088.1" y="53" width="0.2" height="15.0" fill="rgb(240,99,39)" rx="2" ry="2" /> +<text x="1091.10" y="63.5" ></text> +</g> +<g > +<title>/platitudes (629 samples, 0.07%)</title><rect x="547.0" y="149" width="0.8" height="15.0" fill="rgb(241,163,39)" rx="2" ry="2" /> +<text x="550.03" y="159.5" ></text> +</g> +<g > +<title>16480 (140 samples, 0.01%)</title><rect x="343.4" y="245" width="0.2" height="15.0" fill="rgb(237,94,35)" rx="2" ry="2" /> +<text x="346.41" y="255.5" ></text> +</g> +<g > +<title>enter_write (472 samples, 0.05%)</title><rect x="1143.8" y="117" width="0.6" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="1146.83" y="127.5" ></text> +</g> +<g > +<title>/share (316 samples, 0.03%)</title><rect x="681.6" y="165" width="0.4" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="684.62" y="175.5" ></text> +</g> +<g > +<title>/go-build480028031 (581 samples, 0.06%)</title><rect x="1071.1" y="197" width="0.7" height="15.0" fill="rgb(231,144,29)" rx="2" ry="2" /> +<text x="1074.11" y="207.5" ></text> +</g> +<g > +<title>enter_newfstat (91 samples, 0.01%)</title><rect x="1185.5" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1188.50" y="143.5" ></text> +</g> +<g > +<title>/dev (42,560 samples, 4.40%)</title><rect x="489.3" y="213" width="51.9" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" /> +<text x="492.28" y="223.5" >/dev</text> +</g> +<g > +<title>/pts (541 samples, 0.06%)</title><rect x="446.8" y="197" width="0.7" height="15.0" fill="rgb(236,138,35)" rx="2" ry="2" /> +<text x="449.84" y="207.5" ></text> +</g> +<g > +<title>enter_ioctl (452 samples, 0.05%)</title><rect x="462.4" y="133" width="0.5" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="465.38" y="143.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="760.0" y="85" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="762.99" y="95.5" ></text> +</g> +<g > +<title>/com.slack.Slack (104 samples, 0.01%)</title><rect x="217.4" y="149" width="0.1" height="15.0" fill="rgb(242,164,40)" rx="2" ry="2" /> +<text x="220.38" y="159.5" ></text> +</g> +<g > +<title>/621907 (185 samples, 0.02%)</title><rect x="799.0" y="197" width="0.2" height="15.0" fill="rgb(235,117,33)" rx="2" ry="2" /> +<text x="801.97" y="207.5" ></text> +</g> +<g > +<title>enter_pread64 (133 samples, 0.01%)</title><rect x="797.8" y="117" width="0.2" height="15.0" fill="rgb(237,196,36)" rx="2" ry="2" /> +<text x="800.81" y="127.5" ></text> +</g> +<g > +<title>627546 (150 samples, 0.02%)</title><rect x="1087.1" y="245" width="0.2" height="15.0" fill="rgb(235,145,33)" rx="2" ry="2" /> +<text x="1090.13" y="255.5" ></text> +</g> +<g > +<title>/c5 (94 samples, 0.01%)</title><rect x="1062.5" y="149" width="0.1" height="15.0" fill="rgb(242,157,40)" rx="2" ry="2" /> +<text x="1065.46" y="159.5" ></text> +</g> +<g > +<title>627264 (300 samples, 0.03%)</title><rect x="868.5" y="245" width="0.4" height="15.0" fill="rgb(239,145,37)" rx="2" ry="2" /> +<text x="871.51" y="255.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="684.4" y="133" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="687.39" y="143.5" ></text> +</g> +<g > +<title>/ (476 samples, 0.05%)</title><rect x="876.1" y="213" width="0.5" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> +<text x="879.05" y="223.5" ></text> +</g> +<g > +<title>enter_fcntl (98 samples, 0.01%)</title><rect x="682.2" y="213" width="0.2" height="15.0" fill="rgb(233,196,30)" rx="2" ry="2" /> +<text x="685.25" y="223.5" ></text> +</g> +<g > +<title>enter_close (1,831 samples, 0.19%)</title><rect x="42.8" y="213" width="2.2" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="45.75" y="223.5" ></text> +</g> +<g > +<title>/go (1,047 samples, 0.11%)</title><rect x="1069.8" y="181" width="1.3" height="15.0" fill="rgb(241,144,39)" rx="2" ry="2" /> +<text x="1072.81" y="191.5" ></text> +</g> +<g > +<title>/3870112724rsegmnoittet-es.sqlite (619 samples, 0.06%)</title><rect x="798.0" y="69" width="0.7" height="15.0" fill="rgb(240,112,38)" rx="2" ry="2" /> +<text x="800.98" y="79.5" ></text> +</g> +<g > +<title>/memory.low (276 samples, 0.03%)</title><rect x="726.8" y="85" width="0.3" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="729.77" y="95.5" ></text> +</g> +<g > +<title>/internal (233 samples, 0.02%)</title><rect x="1072.0" y="149" width="0.3" height="15.0" fill="rgb(229,137,27)" rx="2" ry="2" /> +<text x="1074.97" y="159.5" ></text> +</g> +<g > +<title>enter_close (116 samples, 0.01%)</title><rect x="484.0" y="165" width="0.2" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="487.04" y="175.5" ></text> +</g> +<g > +<title>enter_ioctl (442 samples, 0.05%)</title><rect x="445.8" y="181" width="0.5" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="448.76" y="191.5" ></text> +</g> +<g > +<title>/system@1dc65c17c94c402f938934dc3d68c3ab-00000000004e0691-00061f0691ef212a.journal (92 samples, 0.01%)</title><rect x="1178.2" y="149" width="0.2" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1181.24" y="159.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="697.9" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="700.89" y="79.5" ></text> +</g> +<g > +<title>enter_read (91 samples, 0.01%)</title><rect x="750.4" y="69" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="753.45" y="79.5" ></text> +</g> +<g > +<title>/tmp (551 samples, 0.06%)</title><rect x="1081.6" y="213" width="0.7" height="15.0" fill="rgb(234,140,32)" rx="2" ry="2" /> +<text x="1084.65" y="223.5" ></text> +</g> +<g > +<title>/sys (245 samples, 0.03%)</title><rect x="1189.7" y="213" width="0.3" height="15.0" fill="rgb(241,145,40)" rx="2" ry="2" /> +<text x="1192.68" y="223.5" ></text> +</g> +<g > +<title>/.cargo (553 samples, 0.06%)</title><rect x="133.1" y="181" width="0.6" height="15.0" fill="rgb(244,154,43)" rx="2" ry="2" /> +<text x="136.06" y="191.5" ></text> +</g> +<g > +<title> (225 samples, 0.02%)</title><rect x="1172.6" y="229" width="0.3" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1175.58" y="239.5" ></text> +</g> +<g > +<title>/31 (106 samples, 0.01%)</title><rect x="1044.7" y="149" width="0.1" height="15.0" fill="rgb(223,135,20)" rx="2" ry="2" /> +<text x="1047.66" y="159.5" ></text> +</g> +<g > +<title>/memory.pressure (322 samples, 0.03%)</title><rect x="717.4" y="85" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="720.39" y="95.5" ></text> +</g> +<g > +<title> (141 samples, 0.01%)</title><rect x="1076.0" y="229" width="0.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1078.95" y="239.5" ></text> +</g> +<g > +<title> (598 samples, 0.06%)</title><rect x="1188.9" y="229" width="0.8" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1191.94" y="239.5" ></text> +</g> +<g > +<title>/io.freetubeapp.FreeTube (100 samples, 0.01%)</title><rect x="218.1" y="149" width="0.1" height="15.0" fill="rgb(236,134,34)" rx="2" ry="2" /> +<text x="221.09" y="159.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="740.2" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="743.15" y="79.5" ></text> +</g> +<g > +<title>/dev (88 samples, 0.01%)</title><rect x="808.2" y="213" width="0.1" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" /> +<text x="811.21" y="223.5" ></text> +</g> +<g > +<title>/.. (252 samples, 0.03%)</title><rect x="1092.3" y="117" width="0.3" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1095.26" y="127.5" ></text> +</g> +<g > +<title>/000045.o (90 samples, 0.01%)</title><rect x="1105.8" y="181" width="0.1" height="15.0" fill="rgb(247,153,46)" rx="2" ry="2" /> +<text x="1108.76" y="191.5" ></text> +</g> +<g > +<title>/PackageKit (1,040 samples, 0.11%)</title><rect x="547.8" y="181" width="1.3" height="15.0" fill="rgb(235,155,33)" rx="2" ry="2" /> +<text x="550.80" y="191.5" ></text> +</g> +<g > +<title>/appstream (732 samples, 0.08%)</title><rect x="221.0" y="165" width="0.9" height="15.0" fill="rgb(225,115,23)" rx="2" ry="2" /> +<text x="224.03" y="175.5" ></text> +</g> +<g > +<title>/exe (559 samples, 0.06%)</title><rect x="1071.1" y="165" width="0.7" height="15.0" fill="rgb(238,163,37)" rx="2" ry="2" /> +<text x="1074.11" y="175.5" ></text> +</g> +<g > +<title>/memory.low (270 samples, 0.03%)</title><rect x="716.7" y="85" width="0.4" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="719.73" y="95.5" ></text> +</g> +<g > +<title>/github.com (1,008 samples, 0.10%)</title><rect x="1069.9" y="133" width="1.2" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" /> +<text x="1072.85" y="143.5" ></text> +</g> +<g > +<title>enter_mmap (98 samples, 0.01%)</title><rect x="776.8" y="181" width="0.1" height="15.0" fill="rgb(240,196,39)" rx="2" ry="2" /> +<text x="779.75" y="191.5" ></text> +</g> +<g > +<title>/lib64 (163 samples, 0.02%)</title><rect x="837.0" y="213" width="0.2" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="840.01" y="223.5" ></text> +</g> +<g > +<title>627540 (150 samples, 0.02%)</title><rect x="1082.9" y="245" width="0.1" height="15.0" fill="rgb(228,145,26)" rx="2" ry="2" /> +<text x="1085.86" y="255.5" ></text> +</g> +<g > +<title>/stat (812 samples, 0.08%)</title><rect x="476.5" y="181" width="1.0" height="15.0" fill="rgb(229,122,26)" rx="2" ry="2" /> +<text x="479.46" y="191.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="733.1" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="736.10" y="79.5" ></text> +</g> +<g > +<title>enter_close (116 samples, 0.01%)</title><rect x="482.8" y="165" width="0.1" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="485.76" y="175.5" ></text> +</g> +<g > +<title>/wtmp (3,932 samples, 0.41%)</title><rect x="769.5" y="181" width="4.8" height="15.0" fill="rgb(234,102,32)" rx="2" ry="2" /> +<text x="772.50" y="191.5" ></text> +</g> +<g > +<title> (279 samples, 0.03%)</title><rect x="1088.8" y="229" width="0.4" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1091.83" y="239.5" ></text> +</g> +<g > +<title>/x86_64 (288 samples, 0.03%)</title><rect x="242.4" y="133" width="0.3" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="245.37" y="143.5" ></text> +</g> +<g > +<title>/NotoSerif[wght].ttf (16,612 samples, 1.72%)</title><rect x="1145.4" y="149" width="20.3" height="15.0" fill="rgb(239,159,37)" rx="2" ry="2" /> +<text x="1148.42" y="159.5" ></text> +</g> +<g > +<title>/renderD128 (42,516 samples, 4.40%)</title><rect x="489.3" y="181" width="51.9" height="15.0" fill="rgb(237,137,35)" rx="2" ry="2" /> +<text x="492.28" y="191.5" >/rend..</text> +</g> +<g > +<title>/dev (98 samples, 0.01%)</title><rect x="776.8" y="213" width="0.1" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" /> +<text x="779.75" y="223.5" ></text> +</g> +<g > +<title>/bin (125 samples, 0.01%)</title><rect x="676.9" y="181" width="0.2" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="679.95" y="191.5" ></text> +</g> +<g > +<title>/42 (112 samples, 0.01%)</title><rect x="1046.6" y="149" width="0.2" height="15.0" fill="rgb(238,127,36)" rx="2" ry="2" /> +<text x="1049.63" y="159.5" ></text> +</g> +<g > +<title>/runtime (137 samples, 0.01%)</title><rect x="231.1" y="101" width="0.2" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" /> +<text x="234.12" y="111.5" ></text> +</g> +<g > +<title>/home (758 samples, 0.08%)</title><rect x="870.5" y="213" width="0.9" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="873.50" y="223.5" ></text> +</g> +<g > +<title>pipe:[1150665] (10,644 samples, 1.10%)</title><rect x="660.2" y="229" width="13.0" height="15.0" fill="rgb(235,170,33)" rx="2" ry="2" /> +<text x="663.17" y="239.5" ></text> +</g> +<g > +<title>/lib (705 samples, 0.07%)</title><rect x="1087.9" y="197" width="0.9" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="1090.94" y="207.5" ></text> +</g> +<g > +<title>/e4 (88 samples, 0.01%)</title><rect x="1066.3" y="149" width="0.1" height="15.0" fill="rgb(241,150,40)" rx="2" ry="2" /> +<text x="1069.28" y="159.5" ></text> +</g> +<g > +<title>/x86_64 (158 samples, 0.02%)</title><rect x="246.5" y="133" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="249.45" y="143.5" ></text> +</g> +<g > +<title>332489 (5,627 samples, 0.58%)</title><rect x="673.9" y="245" width="6.9" height="15.0" fill="rgb(238,180,37)" rx="2" ry="2" /> +<text x="676.91" y="255.5" ></text> +</g> +<g > +<title>enter_lseek (15,467 samples, 1.60%)</title><rect x="1145.4" y="133" width="18.9" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="1148.43" y="143.5" ></text> +</g> +<g > +<title>/deploy (103 samples, 0.01%)</title><rect x="234.9" y="85" width="0.1" height="15.0" fill="rgb(252,152,51)" rx="2" ry="2" /> +<text x="237.90" y="95.5" ></text> +</g> +<g > +<title>/remotes (1,227 samples, 0.13%)</title><rect x="315.1" y="213" width="1.5" height="15.0" fill="rgb(238,137,36)" rx="2" ry="2" /> +<text x="318.07" y="223.5" ></text> +</g> +<g > +<title>/.. (548 samples, 0.06%)</title><rect x="391.3" y="117" width="0.7" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="394.31" y="127.5" ></text> +</g> +<g > +<title>/e8 (89 samples, 0.01%)</title><rect x="1066.7" y="149" width="0.1" height="15.0" fill="rgb(234,138,32)" rx="2" ry="2" /> +<text x="1069.73" y="159.5" ></text> +</g> +<g > +<title>/libelf.a (103 samples, 0.01%)</title><rect x="1175.0" y="53" width="0.2" height="15.0" fill="rgb(236,99,34)" rx="2" ry="2" /> +<text x="1178.05" y="63.5" ></text> +</g> +<g > +<title>627523 (143 samples, 0.01%)</title><rect x="1075.9" y="245" width="0.2" height="15.0" fill="rgb(243,145,42)" rx="2" ry="2" /> +<text x="1078.95" y="255.5" ></text> +</g> +<g > +<title> (682 samples, 0.07%)</title><rect x="331.4" y="229" width="0.9" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="334.45" y="239.5" ></text> +</g> +<g > +<title>/memory.current (270 samples, 0.03%)</title><rect x="702.0" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="704.97" y="95.5" ></text> +</g> +<g > +<title>/2.5.1 (139 samples, 0.01%)</title><rect x="241.0" y="117" width="0.2" height="15.0" fill="rgb(233,111,31)" rx="2" ry="2" /> +<text x="244.03" y="127.5" ></text> +</g> +<g > +<title>/fortune (582 samples, 0.06%)</title><rect x="462.3" y="165" width="0.8" height="15.0" fill="rgb(246,149,46)" rx="2" ry="2" /> +<text x="465.34" y="175.5" ></text> +</g> +<g > +<title>/48 (93 samples, 0.01%)</title><rect x="1047.4" y="149" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> +<text x="1050.35" y="159.5" ></text> +</g> +<g > +<title>enter_newfstat (96 samples, 0.01%)</title><rect x="1184.4" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1187.41" y="143.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="700.5" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="703.52" y="79.5" ></text> +</g> +<g > +<title>enter_newfstat (232 samples, 0.02%)</title><rect x="482.1" y="165" width="0.2" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="485.05" y="175.5" ></text> +</g> +<g > +<title>/places.sqlite (133 samples, 0.01%)</title><rect x="797.8" y="133" width="0.2" height="15.0" fill="rgb(240,163,38)" rx="2" ry="2" /> +<text x="800.81" y="143.5" ></text> +</g> +<g > +<title>enter_newfstat (89 samples, 0.01%)</title><rect x="1181.2" y="133" width="0.2" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1184.24" y="143.5" ></text> +</g> +<g > +<title>/userdb (91 samples, 0.01%)</title><rect x="879.1" y="181" width="0.1" height="15.0" fill="rgb(235,116,33)" rx="2" ry="2" /> +<text x="882.08" y="191.5" ></text> +</g> +<g > +<title>/libc.so (122 samples, 0.01%)</title><rect x="1083.9" y="53" width="0.1" height="15.0" fill="rgb(240,99,39)" rx="2" ry="2" /> +<text x="1086.90" y="63.5" ></text> +</g> +<g > +<title>/fortune (3,643 samples, 0.38%)</title><rect x="392.0" y="165" width="4.4" height="15.0" fill="rgb(246,149,46)" rx="2" ry="2" /> +<text x="394.98" y="175.5" ></text> +</g> +<g > +<title>enter_read (462 samples, 0.05%)</title><rect x="800.1" y="165" width="0.6" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="803.11" y="175.5" ></text> +</g> +<g > +<title>/home (2,469 samples, 0.26%)</title><rect x="1093.7" y="213" width="3.0" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="1096.73" y="223.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="726.0" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="729.00" y="79.5" ></text> +</g> +<g > +<title>/Downloaded (227 samples, 0.02%)</title><rect x="116.3" y="149" width="0.3" height="15.0" fill="rgb(250,154,49)" rx="2" ry="2" /> +<text x="119.31" y="159.5" ></text> +</g> +<g > +<title>/stat (406 samples, 0.04%)</title><rect x="484.8" y="181" width="0.5" height="15.0" fill="rgb(229,122,26)" rx="2" ry="2" /> +<text x="487.82" y="191.5" ></text> +</g> +<g > +<title> (251 samples, 0.03%)</title><rect x="868.5" y="229" width="0.3" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="871.51" y="239.5" ></text> +</g> +<g > +<title>enter_fcntl (977 samples, 0.10%)</title><rect x="813.8" y="149" width="1.2" height="15.0" fill="rgb(233,196,30)" rx="2" ry="2" /> +<text x="816.80" y="159.5" ></text> +</g> +<g > +<title>/memory.current (264 samples, 0.03%)</title><rect x="696.0" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="699.00" y="95.5" ></text> +</g> +<g > +<title>enter_read (94 samples, 0.01%)</title><rect x="712.8" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="715.82" y="79.5" ></text> +</g> +<g > +<title>/libelf.a (101 samples, 0.01%)</title><rect x="676.8" y="53" width="0.1" height="15.0" fill="rgb(236,99,34)" rx="2" ry="2" /> +<text x="679.82" y="63.5" ></text> +</g> +<g > +<title>/proc (114 samples, 0.01%)</title><rect x="802.3" y="213" width="0.2" height="15.0" fill="rgb(234,144,31)" rx="2" ry="2" /> +<text x="805.33" y="223.5" ></text> +</g> +<g > +<title>/bin (124 samples, 0.01%)</title><rect x="676.3" y="165" width="0.1" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="679.25" y="175.5" ></text> +</g> +<g > +<title>enter_ioctl (90 samples, 0.01%)</title><rect x="686.9" y="85" width="0.2" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="689.94" y="95.5" ></text> +</g> +<g > +<title>enter_openat (116 samples, 0.01%)</title><rect x="477.0" y="165" width="0.2" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="480.03" y="175.5" ></text> +</g> +<g > +<title>/com.brave.Browser (105 samples, 0.01%)</title><rect x="216.2" y="149" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> +<text x="219.17" y="159.5" ></text> +</g> +<g > +<title> (204 samples, 0.02%)</title><rect x="776.5" y="229" width="0.2" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="779.46" y="239.5" ></text> +</g> +<g > +<title>/games (726 samples, 0.08%)</title><rect x="1142.9" y="181" width="0.8" height="15.0" fill="rgb(243,150,42)" rx="2" ry="2" /> +<text x="1145.85" y="191.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Geary.slice (1,665 samples, 0.17%)</title><rect x="714.4" y="101" width="2.0" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="717.36" y="111.5" ></text> +</g> +<g > +<title>/9a (92 samples, 0.01%)</title><rect x="1057.2" y="149" width="0.1" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="1060.15" y="159.5" ></text> +</g> +<g > +<title>596092 (263 samples, 0.03%)</title><rect x="782.1" y="245" width="0.3" height="15.0" fill="rgb(252,176,52)" rx="2" ry="2" /> +<text x="785.06" y="255.5" ></text> +</g> +<g > +<title>enter_write (1,295 samples, 0.13%)</title><rect x="828.0" y="213" width="1.6" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="831.05" y="223.5" ></text> +</g> +<g > +<title>/.cache (4,150 samples, 0.43%)</title><rect x="1076.5" y="181" width="5.1" height="15.0" fill="rgb(245,154,44)" rx="2" ry="2" /> +<text x="1079.52" y="191.5" ></text> +</g> +<g > +<title>/memory.swap.current (264 samples, 0.03%)</title><rect x="697.7" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="700.67" y="95.5" ></text> +</g> +<g > +<title>/76 (101 samples, 0.01%)</title><rect x="1052.8" y="149" width="0.1" height="15.0" fill="rgb(240,154,38)" rx="2" ry="2" /> +<text x="1055.79" y="159.5" ></text> +</g> +<g > +<title>/libgcc_s.so (244 samples, 0.03%)</title><rect x="1086.4" y="133" width="0.3" height="15.0" fill="rgb(240,99,39)" rx="2" ry="2" /> +<text x="1089.43" y="143.5" ></text> +</g> +<g > +<title>/55 (105 samples, 0.01%)</title><rect x="1048.9" y="149" width="0.1" height="15.0" fill="rgb(232,112,29)" rx="2" ry="2" /> +<text x="1051.91" y="159.5" ></text> +</g> +<g > +<title>enter_ioctl (470 samples, 0.05%)</title><rect x="549.1" y="149" width="0.5" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="552.07" y="159.5" ></text> +</g> +<g > +<title>/gnome-software (10,087 samples, 1.04%)</title><rect x="120.7" y="165" width="12.4" height="15.0" fill="rgb(248,147,47)" rx="2" ry="2" /> +<text x="123.74" y="175.5" ></text> +</g> +<g > +<title>enter_newfstat (90 samples, 0.01%)</title><rect x="705.4" y="69" width="0.2" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="708.44" y="79.5" ></text> +</g> +<g > +<title>/d3 (96 samples, 0.01%)</title><rect x="1064.1" y="149" width="0.1" height="15.0" fill="rgb(244,159,43)" rx="2" ry="2" /> +<text x="1067.12" y="159.5" ></text> +</g> +<g > +<title>enter_read (119 samples, 0.01%)</title><rect x="805.9" y="213" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="808.94" y="223.5" ></text> +</g> +<g > +<title>/memory.swap.current (264 samples, 0.03%)</title><rect x="730.2" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="733.18" y="95.5" ></text> +</g> +<g > +<title> (1,322 samples, 0.14%)</title><rect x="1089.4" y="229" width="1.6" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1092.37" y="239.5" ></text> +</g> +<g > +<title>/x86_64 (649 samples, 0.07%)</title><rect x="221.1" y="133" width="0.8" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="224.14" y="143.5" ></text> +</g> +<g > +<title>/memory.pressure (315 samples, 0.03%)</title><rect x="745.7" y="85" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="748.69" y="95.5" ></text> +</g> +<g > +<title>anon_inode:[eventfd] (194 samples, 0.02%)</title><rect x="341.2" y="229" width="0.2" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="344.21" y="239.5" ></text> +</g> +<g > +<title>enter_newfstat (94 samples, 0.01%)</title><rect x="748.2" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="751.20" y="79.5" ></text> +</g> +<g > +<title>/go (124 samples, 0.01%)</title><rect x="676.3" y="181" width="0.1" height="15.0" fill="rgb(241,144,39)" rx="2" ry="2" /> +<text x="679.25" y="191.5" ></text> +</g> +<g > +<title>/run (271 samples, 0.03%)</title><rect x="767.2" y="213" width="0.3" height="15.0" fill="rgb(243,124,41)" rx="2" ry="2" /> +<text x="770.21" y="223.5" ></text> +</g> +<g > +<title>/memory.pressure (309 samples, 0.03%)</title><rect x="721.4" y="85" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="724.40" y="95.5" ></text> +</g> +<g > +<title>/lib64 (178 samples, 0.02%)</title><rect x="37.4" y="213" width="0.2" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="40.43" y="223.5" ></text> +</g> +<g > +<title>enter_writev (2,162 samples, 0.22%)</title><rect x="542.7" y="133" width="2.6" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="545.70" y="143.5" ></text> +</g> +<g > +<title>enter_lseek (106 samples, 0.01%)</title><rect x="1088.1" y="37" width="0.1" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="1091.11" y="47.5" ></text> +</g> +<g > +<title>/org.kde.WaylandDecoration.QAdwaitaDecorations (228 samples, 0.02%)</title><rect x="247.3" y="149" width="0.3" height="15.0" fill="rgb(244,149,43)" rx="2" ry="2" /> +<text x="250.32" y="159.5" ></text> +</g> +<g > +<title>/home (232 samples, 0.02%)</title><rect x="1166.6" y="213" width="0.3" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="1169.63" y="223.5" ></text> +</g> +<g > +<title>enter_pwrite64 (786 samples, 0.08%)</title><rect x="824.2" y="149" width="1.0" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="827.25" y="159.5" ></text> +</g> +<g > +<title>/x86_64 (113 samples, 0.01%)</title><rect x="233.6" y="133" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="236.59" y="143.5" ></text> +</g> +<g > +<title>enter_lseek (2,327 samples, 0.24%)</title><rect x="1096.8" y="133" width="2.8" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="1099.79" y="143.5" ></text> +</g> +<g > +<title>/02 (101 samples, 0.01%)</title><rect x="1038.9" y="149" width="0.2" height="15.0" fill="rgb(242,147,41)" rx="2" ry="2" /> +<text x="1041.93" y="159.5" ></text> +</g> +<g > +<title>enter_read (109 samples, 0.01%)</title><rect x="45.2" y="213" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="48.17" y="223.5" ></text> +</g> +<g > +<title>627544 (1,318 samples, 0.14%)</title><rect x="1085.2" y="245" width="1.6" height="15.0" fill="rgb(239,145,37)" rx="2" ry="2" /> +<text x="1088.16" y="255.5" ></text> +</g> +<g > +<title>/system@c32c65e2f14f4168bb0fe59124681a98-00000000004abde9-00061c97c9d1f4c2.journal (95 samples, 0.01%)</title><rect x="1180.1" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1183.10" y="159.5" ></text> +</g> +<g > +<title>enter_read (94 samples, 0.01%)</title><rect x="747.3" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="750.29" y="79.5" ></text> +</g> +<g > +<title>627353 (129 samples, 0.01%)</title><rect x="874.8" y="245" width="0.2" height="15.0" fill="rgb(241,145,39)" rx="2" ry="2" /> +<text x="877.83" y="255.5" ></text> +</g> +<g > +<title>/google-noto-vf (16,741 samples, 1.73%)</title><rect x="840.5" y="165" width="20.4" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> +<text x="843.50" y="175.5" ></text> +</g> +<g > +<title>enter_read (201 samples, 0.02%)</title><rect x="488.7" y="213" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="491.68" y="223.5" ></text> +</g> +<g > +<title>/memory.low (270 samples, 0.03%)</title><rect x="755.3" y="85" width="0.4" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="758.32" y="95.5" ></text> +</g> +<g > +<title>/fonts (16,741 samples, 1.73%)</title><rect x="840.5" y="181" width="20.4" height="15.0" fill="rgb(238,149,36)" rx="2" ry="2" /> +<text x="843.50" y="191.5" ></text> +</g> +<g > +<title> (384 samples, 0.04%)</title><rect x="877.6" y="229" width="0.5" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="880.61" y="239.5" ></text> +</g> +<g > +<title>/x86_64 (161 samples, 0.02%)</title><rect x="246.1" y="133" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="249.13" y="143.5" ></text> +</g> +<g > +<title>/tmp (150 samples, 0.02%)</title><rect x="622.9" y="213" width="0.2" height="15.0" fill="rgb(234,140,32)" rx="2" ry="2" /> +<text x="625.88" y="223.5" ></text> +</g> +<g > +<title>/memory.swap.current (271 samples, 0.03%)</title><rect x="738.3" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="741.26" y="95.5" ></text> +</g> +<g > +<title>org.gnome.Epiphany (83 samples, 0.01%)</title><rect x="311.9" y="229" width="0.1" height="15.0" fill="rgb(252,179,52)" rx="2" ry="2" /> +<text x="314.90" y="239.5" ></text> +</g> +<g > +<title>/memory.swap.current (276 samples, 0.03%)</title><rect x="728.2" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="731.17" y="95.5" ></text> +</g> +<g > +<title>/.. (122 samples, 0.01%)</title><rect x="541.9" y="117" width="0.1" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="544.87" y="127.5" ></text> +</g> +<g > +<title>/e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855-d (171 samples, 0.02%)</title><rect x="1066.0" y="133" width="0.2" height="15.0" fill="rgb(250,154,49)" rx="2" ry="2" /> +<text x="1069.03" y="143.5" ></text> +</g> +<g > +<title>/.. (252 samples, 0.03%)</title><rect x="1092.3" y="85" width="0.3" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1095.26" y="95.5" ></text> +</g> +<g > +<title>/dmabuf: (2,027 samples, 0.21%)</title><rect x="32.9" y="213" width="2.5" height="15.0" fill="rgb(231,165,29)" rx="2" ry="2" /> +<text x="35.94" y="223.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="759.3" y="85" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="762.33" y="95.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.clocks.slice (1,653 samples, 0.17%)</title><rect x="744.7" y="101" width="2.0" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="747.70" y="111.5" ></text> +</g> +<g > +<title>/14 (98 samples, 0.01%)</title><rect x="1041.1" y="149" width="0.1" height="15.0" fill="rgb(238,135,36)" rx="2" ry="2" /> +<text x="1044.12" y="159.5" ></text> +</g> +<g > +<title>/memory.pressure (308 samples, 0.03%)</title><rect x="739.6" y="85" width="0.3" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="742.56" y="95.5" ></text> +</g> +<g > +<title>/proc (124 samples, 0.01%)</title><rect x="37.6" y="213" width="0.2" height="15.0" fill="rgb(234,144,31)" rx="2" ry="2" /> +<text x="40.65" y="223.5" ></text> +</g> +<g > +<title>/share (595 samples, 0.06%)</title><rect x="462.3" y="197" width="0.8" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="465.33" y="207.5" ></text> +</g> +<g > +<title>org.fedoraproject.Platform.YtDlp (105 samples, 0.01%)</title><rect x="310.2" y="229" width="0.2" height="15.0" fill="rgb(236,179,34)" rx="2" ry="2" /> +<text x="313.22" y="239.5" ></text> +</g> +<g > +<title> (17,382 samples, 1.80%)</title><rect x="1144.6" y="229" width="21.3" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1147.63" y="239.5" ></text> +</g> +<g > +<title>enter_ioctl (90 samples, 0.01%)</title><rect x="684.9" y="133" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="687.90" y="143.5" ></text> +</g> +<g > +<title>/renderD128 (38,691 samples, 4.00%)</title><rect x="343.6" y="181" width="47.2" height="15.0" fill="rgb(237,137,35)" rx="2" ry="2" /> +<text x="346.58" y="191.5" >/ren..</text> +</g> +<g > +<title>/git (333 samples, 0.03%)</title><rect x="675.8" y="181" width="0.5" height="15.0" fill="rgb(233,124,30)" rx="2" ry="2" /> +<text x="678.84" y="191.5" ></text> +</g> +<g > +<title>/73b645a0e0137b6dfc2fa5530c7acc5b6fa5c3394df704faff54409cae157412 (103 samples, 0.01%)</title><rect x="240.0" y="101" width="0.2" height="15.0" fill="rgb(246,164,45)" rx="2" ry="2" /> +<text x="243.05" y="111.5" ></text> +</g> +<g > +<title>/kernel (116 samples, 0.01%)</title><rect x="1189.4" y="197" width="0.2" height="15.0" fill="rgb(237,117,35)" rx="2" ry="2" /> +<text x="1192.43" y="207.5" ></text> +</g> +<g > +<title>enter_newfstat (90 samples, 0.01%)</title><rect x="752.3" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="755.32" y="79.5" ></text> +</g> +<g > +<title>/memory.stat (264 samples, 0.03%)</title><rect x="699.3" y="85" width="0.4" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="702.34" y="95.5" ></text> +</g> +<g > +<title>enter_lseek (90 samples, 0.01%)</title><rect x="1141.4" y="117" width="0.1" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="1144.38" y="127.5" ></text> +</g> +<g > +<title>/memory.pressure (322 samples, 0.03%)</title><rect x="743.7" y="85" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="746.66" y="95.5" ></text> +</g> +<g > +<title>117804 (926 samples, 0.10%)</title><rect x="342.0" y="245" width="1.2" height="15.0" fill="rgb(241,110,40)" rx="2" ry="2" /> +<text x="345.05" y="255.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="698.5" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="701.53" y="79.5" ></text> +</g> +<g > +<title>/x86_64-redhat-linux (692 samples, 0.07%)</title><rect x="1092.3" y="165" width="0.8" height="15.0" fill="rgb(245,97,45)" rx="2" ry="2" /> +<text x="1095.26" y="175.5" ></text> +</g> +<g > +<title>/app (169 samples, 0.02%)</title><rect x="230.3" y="101" width="0.2" height="15.0" fill="rgb(248,115,47)" rx="2" ry="2" /> +<text x="233.28" y="111.5" ></text> +</g> +<g > +<title>enter_write (2,928 samples, 0.30%)</title><rect x="336.7" y="213" width="3.6" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="339.73" y="223.5" ></text> +</g> +<g > +<title>/601489 (184 samples, 0.02%)</title><rect x="780.0" y="197" width="0.2" height="15.0" fill="rgb(238,123,37)" rx="2" ry="2" /> +<text x="783.03" y="207.5" ></text> +</g> +<g > +<title>/src (1,987 samples, 0.21%)</title><rect x="1071.8" y="165" width="2.5" height="15.0" fill="rgb(230,129,27)" rx="2" ry="2" /> +<text x="1074.84" y="175.5" ></text> +</g> +<g > +<title>/memory.current (270 samples, 0.03%)</title><rect x="685.9" y="101" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="688.90" y="111.5" ></text> +</g> +<g > +<title>enter_write (319 samples, 0.03%)</title><rect x="342.8" y="213" width="0.4" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="345.79" y="223.5" ></text> +</g> +<g > +<title>/bin (567 samples, 0.06%)</title><rect x="140.8" y="181" width="0.7" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="143.77" y="191.5" ></text> +</g> +<g > +<title>enter_mmap (104 samples, 0.01%)</title><rect x="861.3" y="181" width="0.1" height="15.0" fill="rgb(240,196,39)" rx="2" ry="2" /> +<text x="864.30" y="191.5" ></text> +</g> +<g > +<title>/goedel (457 samples, 0.05%)</title><rect x="462.4" y="149" width="0.5" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> +<text x="465.38" y="159.5" ></text> +</g> +<g > +<title>/proc (286 samples, 0.03%)</title><rect x="447.7" y="213" width="0.4" height="15.0" fill="rgb(234,144,31)" rx="2" ry="2" /> +<text x="450.74" y="223.5" ></text> +</g> +<g > +<title>/.. (147 samples, 0.02%)</title><rect x="1175.0" y="101" width="0.2" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1178.05" y="111.5" ></text> +</g> +<g > +<title>/cgroup (113 samples, 0.01%)</title><rect x="462.1" y="181" width="0.1" height="15.0" fill="rgb(241,151,40)" rx="2" ry="2" /> +<text x="465.05" y="191.5" ></text> +</g> +<g > +<title>627339 (418 samples, 0.04%)</title><rect x="873.2" y="245" width="0.5" height="15.0" fill="rgb(233,145,30)" rx="2" ry="2" /> +<text x="876.16" y="255.5" ></text> +</g> +<g > +<title>enter_newfstat (88 samples, 0.01%)</title><rect x="1184.9" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1187.88" y="143.5" ></text> +</g> +<g > +<title> (1,992 samples, 0.21%)</title><rect x="445.8" y="229" width="2.4" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="448.75" y="239.5" ></text> +</g> +<g > +<title>enter_ioctl (414 samples, 0.04%)</title><rect x="781.4" y="165" width="0.5" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="784.37" y="175.5" ></text> +</g> +<g > +<title>/var (3,969 samples, 0.41%)</title><rect x="769.5" y="213" width="4.8" height="15.0" fill="rgb(231,130,28)" rx="2" ry="2" /> +<text x="772.46" y="223.5" ></text> +</g> +<g > +<title>/97 (84 samples, 0.01%)</title><rect x="1056.8" y="149" width="0.1" height="15.0" fill="rgb(236,141,34)" rx="2" ry="2" /> +<text x="1059.84" y="159.5" ></text> +</g> +<g > +<title>/internal (90 samples, 0.01%)</title><rect x="1069.7" y="149" width="0.1" height="15.0" fill="rgb(229,137,27)" rx="2" ry="2" /> +<text x="1072.68" y="159.5" ></text> +</g> +<g > +<title>/memory.low (264 samples, 0.03%)</title><rect x="720.7" y="85" width="0.4" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="723.75" y="95.5" ></text> +</g> +<g > +<title>/89 (93 samples, 0.01%)</title><rect x="1055.1" y="149" width="0.2" height="15.0" fill="rgb(234,139,31)" rx="2" ry="2" /> +<text x="1058.14" y="159.5" ></text> +</g> +<g > +<title>enter_ioctl (90 samples, 0.01%)</title><rect x="691.0" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="694.02" y="79.5" ></text> +</g> +<g > +<title>/go-link-2935705061 (170 samples, 0.02%)</title><rect x="1085.6" y="197" width="0.2" height="15.0" fill="rgb(228,144,25)" rx="2" ry="2" /> +<text x="1088.60" y="207.5" ></text> +</g> +<g > +<title>enter_read (163 samples, 0.02%)</title><rect x="839.9" y="117" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="842.86" y="127.5" ></text> +</g> +<g > +<title>/memory.stat (275 samples, 0.03%)</title><rect x="750.2" y="85" width="0.4" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="753.22" y="95.5" ></text> +</g> +<g > +<title>enter_openat (226 samples, 0.02%)</title><rect x="673.5" y="213" width="0.3" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="676.55" y="223.5" ></text> +</g> +<g > +<title>/ (91 samples, 0.01%)</title><rect x="879.1" y="165" width="0.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> +<text x="882.08" y="175.5" ></text> +</g> +<g > +<title>enter_write (143 samples, 0.01%)</title><rect x="461.7" y="149" width="0.2" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="464.71" y="159.5" ></text> +</g> +<g > +<title>/conf.avail (1,396 samples, 0.14%)</title><rect x="1167.3" y="165" width="1.7" height="15.0" fill="rgb(233,164,31)" rx="2" ry="2" /> +<text x="1170.33" y="175.5" ></text> +</g> +<g > +<title>/proc (377 samples, 0.04%)</title><rect x="766.7" y="213" width="0.5" height="15.0" fill="rgb(234,144,31)" rx="2" ry="2" /> +<text x="769.75" y="223.5" ></text> +</g> +<g > +<title>/.local (5,752 samples, 0.60%)</title><rect x="133.7" y="181" width="7.1" height="15.0" fill="rgb(229,163,26)" rx="2" ry="2" /> +<text x="136.75" y="191.5" ></text> +</g> +<g > +<title>/share (20,619 samples, 2.13%)</title><rect x="190.5" y="197" width="25.2" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="193.55" y="207.5" >/..</text> +</g> +<g > +<title>627541 (1,294 samples, 0.13%)</title><rect x="1083.0" y="245" width="1.6" height="15.0" fill="rgb(227,145,24)" rx="2" ry="2" /> +<text x="1086.04" y="255.5" ></text> +</g> +<g > +<title>/b8 (89 samples, 0.01%)</title><rect x="1060.8" y="149" width="0.1" height="15.0" fill="rgb(225,97,22)" rx="2" ry="2" /> +<text x="1063.81" y="159.5" ></text> +</g> +<g > +<title>enter_newfstat (408 samples, 0.04%)</title><rect x="810.8" y="133" width="0.5" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="813.78" y="143.5" ></text> +</g> +<g > +<title>org.kde.Platform (101 samples, 0.01%)</title><rect x="313.5" y="229" width="0.1" height="15.0" fill="rgb(232,179,30)" rx="2" ry="2" /> +<text x="316.47" y="239.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="755.9" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="758.88" y="79.5" ></text> +</g> +<g > +<title>/memory.min (264 samples, 0.03%)</title><rect x="692.7" y="85" width="0.3" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="695.65" y="95.5" ></text> +</g> +<g > +<title>/memory.swap.current (270 samples, 0.03%)</title><rect x="691.7" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="694.68" y="95.5" ></text> +</g> +<g > +<title>/x86_64-redhat-linux (204 samples, 0.02%)</title><rect x="38.7" y="165" width="0.2" height="15.0" fill="rgb(245,97,45)" rx="2" ry="2" /> +<text x="41.67" y="175.5" ></text> +</g> +<g > +<title>/memory.swap.current (264 samples, 0.03%)</title><rect x="722.1" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="725.10" y="95.5" ></text> +</g> +<g > +<title>/memory.pressure (325 samples, 0.03%)</title><rect x="758.0" y="85" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="761.04" y="95.5" ></text> +</g> +<g > +<title> (86 samples, 0.01%)</title><rect x="875.3" y="229" width="0.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="878.28" y="239.5" ></text> +</g> +<g > +<title>/fedora.xml.gz (228 samples, 0.02%)</title><rect x="215.3" y="149" width="0.3" height="15.0" fill="rgb(240,142,38)" rx="2" ry="2" /> +<text x="218.35" y="159.5" ></text> +</g> +<g > +<title>anon_inode:[eventfd] (113 samples, 0.01%)</title><rect x="805.7" y="229" width="0.1" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="808.70" y="239.5" ></text> +</g> +<g > +<title>enter_read (129 samples, 0.01%)</title><rect x="799.6" y="165" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="802.57" y="175.5" ></text> +</g> +<g > +<title>/memory.stat (270 samples, 0.03%)</title><rect x="705.4" y="85" width="0.3" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="708.39" y="95.5" ></text> +</g> +<g > +<title>/a6 (89 samples, 0.01%)</title><rect x="1058.6" y="149" width="0.2" height="15.0" fill="rgb(230,109,28)" rx="2" ry="2" /> +<text x="1061.64" y="159.5" ></text> +</g> +<g > +<title>/org.gnome.Decibels.Locale (185 samples, 0.02%)</title><rect x="242.1" y="149" width="0.3" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="245.14" y="159.5" ></text> +</g> +<g > +<title>/memory.low (264 samples, 0.03%)</title><rect x="696.3" y="85" width="0.3" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="699.33" y="95.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="729.7" y="69" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="732.75" y="79.5" ></text> +</g> +<g > +<title>/system@000633f9368e7b8c-2f4d83425116f8cd.journal~ (87 samples, 0.01%)</title><rect x="1177.5" y="149" width="0.1" height="15.0" fill="rgb(233,145,31)" rx="2" ry="2" /> +<text x="1180.48" y="159.5" ></text> +</g> +<g > +<title>/.. (253 samples, 0.03%)</title><rect x="1085.9" y="85" width="0.3" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1088.89" y="95.5" ></text> +</g> +<g > +<title>/system@91732938d5e8417da6f3e8bd5b2a5bdf-000000000054017d-0006231481d8cb83.journal (87 samples, 0.01%)</title><rect x="1179.6" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1182.59" y="159.5" ></text> +</g> +<g > +<title>/proc (108 samples, 0.01%)</title><rect x="341.5" y="213" width="0.1" height="15.0" fill="rgb(234,144,31)" rx="2" ry="2" /> +<text x="344.47" y="223.5" ></text> +</g> +<g > +<title>enter_fcntl (913 samples, 0.09%)</title><rect x="97.4" y="213" width="1.1" height="15.0" fill="rgb(233,196,30)" rx="2" ry="2" /> +<text x="100.37" y="223.5" ></text> +</g> +<g > +<title>627432 (125,223 samples, 12.96%)</title><rect x="881.8" y="245" width="152.9" height="15.0" fill="rgb(244,145,43)" rx="2" ry="2" /> +<text x="884.83" y="255.5" >627432</text> +</g> +<g > +<title>/62 (96 samples, 0.01%)</title><rect x="1050.5" y="149" width="0.1" height="15.0" fill="rgb(236,117,34)" rx="2" ry="2" /> +<text x="1053.46" y="159.5" ></text> +</g> +<g > +<title>enter_openat (157 samples, 0.02%)</title><rect x="832.5" y="213" width="0.2" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="835.51" y="223.5" ></text> +</g> +<g > +<title>enter_write (5,077 samples, 0.53%)</title><rect x="469.8" y="213" width="6.2" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="472.79" y="223.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="685.1" y="133" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="688.12" y="143.5" ></text> +</g> +<g > +<title>/26 (92 samples, 0.01%)</title><rect x="1043.3" y="149" width="0.2" height="15.0" fill="rgb(233,124,31)" rx="2" ry="2" /> +<text x="1046.35" y="159.5" ></text> +</g> +<g > +<title>/10 (115 samples, 0.01%)</title><rect x="1040.7" y="149" width="0.1" height="15.0" fill="rgb(227,148,25)" rx="2" ry="2" /> +<text x="1043.70" y="159.5" ></text> +</g> +<g > +<title>/lib64 (330 samples, 0.03%)</title><rect x="1083.1" y="213" width="0.4" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="1086.08" y="223.5" ></text> +</g> +<g > +<title>/bin (124 samples, 0.01%)</title><rect x="674.2" y="165" width="0.2" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="677.25" y="175.5" ></text> +</g> +<g > +<title>enter_ioctl (88 samples, 0.01%)</title><rect x="725.5" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="728.46" y="79.5" ></text> +</g> +<g > +<title>host (95 samples, 0.01%)</title><rect x="831.6" y="229" width="0.1" height="15.0" fill="rgb(236,170,35)" rx="2" ry="2" /> +<text x="834.59" y="239.5" ></text> +</g> +<g > +<title>com.github.wwmm.pulseeffects (90 samples, 0.01%)</title><rect x="300.6" y="229" width="0.1" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" /> +<text x="303.60" y="239.5" ></text> +</g> +<g > +<title>anon_inode:[eventfd] (192 samples, 0.02%)</title><rect x="774.4" y="229" width="0.2" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="777.40" y="239.5" ></text> +</g> +<g > +<title>/share (2,096 samples, 0.22%)</title><rect x="39.7" y="197" width="2.6" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="42.72" y="207.5" ></text> +</g> +<g > +<title>/org.freedesktop.Sdk (167 samples, 0.02%)</title><rect x="241.9" y="149" width="0.2" height="15.0" fill="rgb(234,149,31)" rx="2" ry="2" /> +<text x="244.94" y="159.5" ></text> +</g> +<g > +<title>/.config (2,146 samples, 0.22%)</title><rect x="837.6" y="181" width="2.6" height="15.0" fill="rgb(239,154,37)" rx="2" ry="2" /> +<text x="840.61" y="191.5" ></text> +</g> +<g > +<title>/memory.swap.current (264 samples, 0.03%)</title><rect x="693.7" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="696.67" y="95.5" ></text> +</g> +<g > +<title>/deploy (337 samples, 0.03%)</title><rect x="230.3" y="117" width="0.4" height="15.0" fill="rgb(252,152,51)" rx="2" ry="2" /> +<text x="233.28" y="127.5" ></text> +</g> +<g > +<title>/LNXSYBUS:00 (146 samples, 0.02%)</title><rect x="775.9" y="165" width="0.2" height="15.0" fill="rgb(229,104,27)" rx="2" ry="2" /> +<text x="778.95" y="175.5" ></text> +</g> +<g > +<title>/sys (1,600 samples, 0.17%)</title><rect x="881.9" y="213" width="2.0" height="15.0" fill="rgb(241,145,40)" rx="2" ry="2" /> +<text x="884.94" y="223.5" ></text> +</g> +<g > +<title>5227 (129 samples, 0.01%)</title><rect x="765.6" y="245" width="0.2" height="15.0" fill="rgb(238,169,36)" rx="2" ry="2" /> +<text x="768.63" y="255.5" ></text> +</g> +<g > +<title>/x86_64 (112 samples, 0.01%)</title><rect x="304.4" y="181" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="307.39" y="191.5" ></text> +</g> +<g > +<title>enter_read (590 samples, 0.06%)</title><rect x="458.7" y="181" width="0.7" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="461.73" y="191.5" ></text> +</g> +<g > +<title>/memory.min (264 samples, 0.03%)</title><rect x="696.6" y="85" width="0.4" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="699.65" y="95.5" ></text> +</g> +<g > +<title>/gcc (159 samples, 0.02%)</title><rect x="541.9" y="181" width="0.2" height="15.0" fill="rgb(234,144,32)" rx="2" ry="2" /> +<text x="544.87" y="191.5" ></text> +</g> +<g > +<title>/bin (217 samples, 0.02%)</title><rect x="676.6" y="197" width="0.2" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="679.56" y="207.5" ></text> +</g> +<g > +<title>/log (8,254 samples, 0.85%)</title><rect x="1176.2" y="197" width="10.1" height="15.0" fill="rgb(248,118,48)" rx="2" ry="2" /> +<text x="1179.19" y="207.5" ></text> +</g> +<g > +<title>enter_read (170 samples, 0.02%)</title><rect x="807.2" y="213" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="810.18" y="223.5" ></text> +</g> +<g > +<title>enter_read (183 samples, 0.02%)</title><rect x="799.0" y="165" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="801.97" y="175.5" ></text> +</g> +<g > +<title>/memory.pressure (315 samples, 0.03%)</title><rect x="703.0" y="85" width="0.3" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="705.96" y="95.5" ></text> +</g> +<g > +<title>/.. (252 samples, 0.03%)</title><rect x="1083.7" y="117" width="0.3" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1086.74" y="127.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="730.7" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="733.72" y="79.5" ></text> +</g> +<g > +<title>enter_newfstat (88 samples, 0.01%)</title><rect x="1178.9" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1181.88" y="143.5" ></text> +</g> +<g > +<title>/maps (168 samples, 0.02%)</title><rect x="780.3" y="181" width="0.2" height="15.0" fill="rgb(243,120,42)" rx="2" ry="2" /> +<text x="783.26" y="191.5" ></text> +</g> +<g > +<title>enter_close (116 samples, 0.01%)</title><rect x="477.5" y="165" width="0.1" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="480.45" y="175.5" ></text> +</g> +<g > +<title>enter_openat (99 samples, 0.01%)</title><rect x="249.0" y="149" width="0.1" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="252.02" y="159.5" ></text> +</g> +<g > +<title>/fonts (106 samples, 0.01%)</title><rect x="800.7" y="181" width="0.1" height="15.0" fill="rgb(238,149,36)" rx="2" ry="2" /> +<text x="803.69" y="191.5" ></text> +</g> +<g > +<title>/memory.stat (264 samples, 0.03%)</title><rect x="695.4" y="85" width="0.3" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="698.36" y="95.5" ></text> +</g> +<g > +<title>/org.pulseaudio.pavucontrol (96 samples, 0.01%)</title><rect x="220.8" y="149" width="0.1" height="15.0" fill="rgb(235,149,33)" rx="2" ry="2" /> +<text x="223.78" y="159.5" ></text> +</g> +<g > +<title>/proc (555 samples, 0.06%)</title><rect x="774.8" y="213" width="0.7" height="15.0" fill="rgb(234,144,31)" rx="2" ry="2" /> +<text x="777.79" y="223.5" ></text> +</g> +<g > +<title>enter_close (121 samples, 0.01%)</title><rect x="804.7" y="181" width="0.1" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="807.69" y="191.5" ></text> +</g> +<g > +<title>enter_read (95 samples, 0.01%)</title><rect x="753.2" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="756.16" y="79.5" ></text> +</g> +<g > +<title>/home (4,214 samples, 0.44%)</title><rect x="1076.5" y="213" width="5.1" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="1079.50" y="223.5" ></text> +</g> +<g > +<title>/cache (265 samples, 0.03%)</title><rect x="1167.0" y="165" width="0.3" height="15.0" fill="rgb(245,170,44)" rx="2" ry="2" /> +<text x="1170.00" y="175.5" ></text> +</g> +<g > +<title>enter_read (1,112 samples, 0.12%)</title><rect x="1164.3" y="133" width="1.4" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="1167.35" y="143.5" ></text> +</g> +<g > +<title>/64x64@2 (184 samples, 0.02%)</title><rect x="221.7" y="85" width="0.2" height="15.0" fill="rgb(242,110,41)" rx="2" ry="2" /> +<text x="224.70" y="95.5" ></text> +</g> +<g > +<title>enter_fcntl (96 samples, 0.01%)</title><rect x="880.5" y="213" width="0.1" height="15.0" fill="rgb(233,196,30)" rx="2" ry="2" /> +<text x="883.51" y="223.5" ></text> +</g> +<g > +<title>org.fedoraproject.Platform.GL.default (100 samples, 0.01%)</title><rect x="310.0" y="229" width="0.1" height="15.0" fill="rgb(228,179,25)" rx="2" ry="2" /> +<text x="312.96" y="239.5" ></text> +</g> +<g > +<title>/session-c22.scope (99 samples, 0.01%)</title><rect x="445.5" y="133" width="0.1" height="15.0" fill="rgb(248,132,48)" rx="2" ry="2" /> +<text x="448.49" y="143.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="716.6" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="719.62" y="79.5" ></text> +</g> +<g > +<title>enter_ioctl (88 samples, 0.01%)</title><rect x="739.6" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="742.61" y="79.5" ></text> +</g> +<g > +<title>619492 (10,766 samples, 1.11%)</title><rect x="784.2" y="245" width="13.2" height="15.0" fill="rgb(250,143,49)" rx="2" ry="2" /> +<text x="787.24" y="255.5" ></text> +</g> +<g > +<title>/30 (103 samples, 0.01%)</title><rect x="1044.5" y="149" width="0.2" height="15.0" fill="rgb(225,138,22)" rx="2" ry="2" /> +<text x="1047.53" y="159.5" ></text> +</g> +<g > +<title>/usr (429 samples, 0.04%)</title><rect x="340.7" y="213" width="0.5" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="343.66" y="223.5" ></text> +</g> +<g > +<title>/d0 (114 samples, 0.01%)</title><rect x="1063.8" y="149" width="0.1" height="15.0" fill="rgb(232,168,30)" rx="2" ry="2" /> +<text x="1066.78" y="159.5" ></text> +</g> +<g > +<title>/f5 (172 samples, 0.02%)</title><rect x="1081.1" y="149" width="0.2" height="15.0" fill="rgb(238,142,37)" rx="2" ry="2" /> +<text x="1084.08" y="159.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="696.5" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="699.54" y="79.5" ></text> +</g> +<g > +<title>pipe:[48125] (197 samples, 0.02%)</title><rect x="341.6" y="229" width="0.3" height="15.0" fill="rgb(238,170,36)" rx="2" ry="2" /> +<text x="344.61" y="239.5" ></text> +</g> +<g > +<title>/run (102 samples, 0.01%)</title><rect x="879.1" y="213" width="0.1" height="15.0" fill="rgb(243,124,41)" rx="2" ry="2" /> +<text x="882.07" y="223.5" ></text> +</g> +<g > +<title> (289 samples, 0.03%)</title><rect x="1173.3" y="229" width="0.4" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1176.32" y="239.5" ></text> +</g> +<g > +<title>/go-link-2935705061 (9,580 samples, 0.99%)</title><rect x="1102.9" y="197" width="11.7" height="15.0" fill="rgb(228,144,25)" rx="2" ry="2" /> +<text x="1105.87" y="207.5" ></text> +</g> +<g > +<title>/72 (94 samples, 0.01%)</title><rect x="1052.3" y="149" width="0.1" height="15.0" fill="rgb(247,167,46)" rx="2" ry="2" /> +<text x="1055.27" y="159.5" ></text> +</g> +<g > +<title>/libz.a (1,573 samples, 0.16%)</title><rect x="1139.2" y="53" width="2.0" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="1142.23" y="63.5" ></text> +</g> +<g > +<title>/system@d62e597f0e2949bda5784759a1e3ccf2-00000000006fca55-00062cef3b5be4d2.journal (87 samples, 0.01%)</title><rect x="1181.0" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1184.03" y="159.5" ></text> +</g> +<g > +<title> (471 samples, 0.05%)</title><rect x="804.0" y="229" width="0.6" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="807.04" y="239.5" ></text> +</g> +<g > +<title>/dri (414 samples, 0.04%)</title><rect x="781.4" y="197" width="0.5" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="784.37" y="207.5" ></text> +</g> +<g > +<title>enter_ioctl (119 samples, 0.01%)</title><rect x="619.0" y="181" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="621.97" y="191.5" ></text> +</g> +<g > +<title>pipe:[2438204] (119 samples, 0.01%)</title><rect x="805.9" y="229" width="0.2" height="15.0" fill="rgb(240,170,39)" rx="2" ry="2" /> +<text x="808.94" y="239.5" ></text> +</g> +<g > +<title>/lib (702 samples, 0.07%)</title><rect x="1090.1" y="197" width="0.9" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="1093.10" y="207.5" ></text> +</g> +<g > +<title>enter_openat (117 samples, 0.01%)</title><rect x="660.0" y="213" width="0.2" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="663.02" y="223.5" ></text> +</g> +<g > +<title>627437 (261 samples, 0.03%)</title><rect x="1037.7" y="245" width="0.3" height="15.0" fill="rgb(235,145,33)" rx="2" ry="2" /> +<text x="1040.65" y="255.5" ></text> +</g> +<g > +<title>596085 (559 samples, 0.06%)</title><rect x="781.4" y="245" width="0.7" height="15.0" fill="rgb(248,176,48)" rx="2" ry="2" /> +<text x="784.37" y="255.5" ></text> +</g> +<g > +<title>/memory.pressure (308 samples, 0.03%)</title><rect x="697.0" y="85" width="0.3" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="699.97" y="95.5" ></text> +</g> +<g > +<title>/cf (107 samples, 0.01%)</title><rect x="1063.7" y="149" width="0.1" height="15.0" fill="rgb(243,154,42)" rx="2" ry="2" /> +<text x="1066.65" y="159.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="756.3" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="759.26" y="79.5" ></text> +</g> +<g > +<title>/org.kde.PlatformTheme.QGnomePlatform (221 samples, 0.02%)</title><rect x="247.0" y="149" width="0.3" height="15.0" fill="rgb(232,149,30)" rx="2" ry="2" /> +<text x="250.04" y="159.5" ></text> +</g> +<g > +<title>enter_io_uring_enter (250 samples, 0.03%)</title><rect x="465.9" y="213" width="0.3" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="468.90" y="223.5" ></text> +</g> +<g > +<title>enter_lseek (107 samples, 0.01%)</title><rect x="768.7" y="181" width="0.2" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="771.73" y="191.5" ></text> +</g> +<g > +<title>enter_read (531 samples, 0.05%)</title><rect x="145.3" y="37" width="0.7" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="148.33" y="47.5" ></text> +</g> +<g > +<title>/memory.stat (270 samples, 0.03%)</title><rect x="762.5" y="101" width="0.4" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="765.54" y="111.5" ></text> +</g> +<g > +<title>/x86_64 (85 samples, 0.01%)</title><rect x="217.6" y="133" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="220.64" y="143.5" ></text> +</g> +<g > +<title>/lib (105 samples, 0.01%)</title><rect x="796.0" y="197" width="0.2" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="799.04" y="207.5" ></text> +</g> +<g > +<title>enter_close (199 samples, 0.02%)</title><rect x="767.6" y="213" width="0.2" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="770.58" y="223.5" ></text> +</g> +<g > +<title>/user-1001@d62e597f0e2949bda5784759a1e3ccf2-0000000000631214-00062a295de08f8e.journal (89 samples, 0.01%)</title><rect x="1185.4" y="149" width="0.1" height="15.0" fill="rgb(229,116,27)" rx="2" ry="2" /> +<text x="1188.39" y="159.5" ></text> +</g> +<g > +<title>/fortune (122 samples, 0.01%)</title><rect x="332.1" y="165" width="0.2" height="15.0" fill="rgb(246,149,46)" rx="2" ry="2" /> +<text x="335.13" y="175.5" ></text> +</g> +<g > +<title>enter_mmap (700 samples, 0.07%)</title><rect x="464.4" y="213" width="0.8" height="15.0" fill="rgb(240,196,39)" rx="2" ry="2" /> +<text x="467.37" y="223.5" ></text> +</g> +<g > +<title>/67 (117 samples, 0.01%)</title><rect x="1051.0" y="149" width="0.2" height="15.0" fill="rgb(227,100,24)" rx="2" ry="2" /> +<text x="1054.05" y="159.5" ></text> +</g> +<g > +<title>/wallpaper (272 samples, 0.03%)</title><rect x="116.7" y="149" width="0.3" height="15.0" fill="rgb(243,125,41)" rx="2" ry="2" /> +<text x="119.66" y="159.5" ></text> +</g> +<g > +<title>/self (183 samples, 0.02%)</title><rect x="767.0" y="197" width="0.2" height="15.0" fill="rgb(238,132,36)" rx="2" ry="2" /> +<text x="769.98" y="207.5" ></text> +</g> +<g > +<title>/2 (90 samples, 0.01%)</title><rect x="621.5" y="197" width="0.1" height="15.0" fill="rgb(251,127,50)" rx="2" ry="2" /> +<text x="624.52" y="207.5" ></text> +</g> +<g > +<title>/tty (363 samples, 0.04%)</title><rect x="804.7" y="197" width="0.4" height="15.0" fill="rgb(241,117,39)" rx="2" ry="2" /> +<text x="807.69" y="207.5" ></text> +</g> +<g > +<title>/memory.swap.current (264 samples, 0.03%)</title><rect x="699.7" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="702.66" y="95.5" ></text> +</g> +<g > +<title>/platforms (121 samples, 0.01%)</title><rect x="804.1" y="149" width="0.2" height="15.0" fill="rgb(231,163,28)" rx="2" ry="2" /> +<text x="807.13" y="159.5" ></text> +</g> +<g > +<title>enter_newfstat (116 samples, 0.01%)</title><rect x="484.3" y="165" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="487.25" y="175.5" ></text> +</g> +<g > +<title>/systemd (239 samples, 0.02%)</title><rect x="683.1" y="197" width="0.3" height="15.0" fill="rgb(240,145,39)" rx="2" ry="2" /> +<text x="686.12" y="207.5" ></text> +</g> +<g > +<title>/9b (102 samples, 0.01%)</title><rect x="1057.3" y="149" width="0.1" height="15.0" fill="rgb(231,157,28)" rx="2" ry="2" /> +<text x="1060.27" y="159.5" ></text> +</g> +<g > +<title>enter_newfstat (116 samples, 0.01%)</title><rect x="479.4" y="165" width="0.2" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="482.43" y="175.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="698.2" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="701.21" y="79.5" ></text> +</g> +<g > +<title>/etc (480 samples, 0.05%)</title><rect x="1169.5" y="213" width="0.6" height="15.0" fill="rgb(229,138,26)" rx="2" ry="2" /> +<text x="1172.48" y="223.5" ></text> +</g> +<g > +<title>/user-0.slice (1,677 samples, 0.17%)</title><rect x="685.9" y="149" width="2.0" height="15.0" fill="rgb(246,116,46)" rx="2" ry="2" /> +<text x="688.90" y="159.5" ></text> +</g> +<g > +<title>enter_write (795 samples, 0.08%)</title><rect x="460.6" y="197" width="1.0" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="463.59" y="207.5" ></text> +</g> +<g > +<title>/system@1dc65c17c94c402f938934dc3d68c3ab-00000000004dfe48-00061f068e79c44c.journal (96 samples, 0.01%)</title><rect x="1178.1" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1181.12" y="159.5" ></text> +</g> +<g > +<title> (179 samples, 0.02%)</title><rect x="806.3" y="229" width="0.3" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="809.33" y="239.5" ></text> +</g> +<g > +<title>/bin (84 samples, 0.01%)</title><rect x="340.7" y="197" width="0.1" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="343.66" y="207.5" ></text> +</g> +<g > +<title>enter_ioctl (88 samples, 0.01%)</title><rect x="737.6" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="740.61" y="79.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="735.8" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="738.84" y="79.5" ></text> +</g> +<g > +<title>/.. (186 samples, 0.02%)</title><rect x="38.7" y="85" width="0.2" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="41.67" y="95.5" ></text> +</g> +<g > +<title>/.. (21,728 samples, 2.25%)</title><rect x="1114.7" y="85" width="26.5" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1117.72" y="95.5" >/..</text> +</g> +<g > +<title>/memory.current (276 samples, 0.03%)</title><rect x="710.2" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="713.16" y="95.5" ></text> +</g> +<g > +<title>/3f (84 samples, 0.01%)</title><rect x="1046.3" y="149" width="0.1" height="15.0" fill="rgb(236,119,34)" rx="2" ry="2" /> +<text x="1049.29" y="159.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="732.8" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="735.77" y="79.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="761.4" y="85" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="764.38" y="95.5" ></text> +</g> +<g > +<title>enter_ioctl (88 samples, 0.01%)</title><rect x="697.0" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="700.03" y="79.5" ></text> +</g> +<g > +<title>enter_ioctl (88 samples, 0.01%)</title><rect x="699.0" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="702.01" y="79.5" ></text> +</g> +<g > +<title>5635 (627 samples, 0.06%)</title><rect x="777.3" y="245" width="0.8" height="15.0" fill="rgb(237,145,36)" rx="2" ry="2" /> +<text x="780.35" y="255.5" ></text> +</g> +<g > +<title>/memory.swap.current (270 samples, 0.03%)</title><rect x="705.7" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="708.72" y="95.5" ></text> +</g> +<g > +<title>/functions (350 samples, 0.04%)</title><rect x="675.1" y="101" width="0.5" height="15.0" fill="rgb(244,129,43)" rx="2" ry="2" /> +<text x="678.14" y="111.5" ></text> +</g> +<g > +<title>com.sweethome3d.Sweethome3d (91 samples, 0.01%)</title><rect x="301.4" y="229" width="0.1" height="15.0" fill="rgb(243,149,42)" rx="2" ry="2" /> +<text x="304.40" y="239.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="743.2" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="746.21" y="79.5" ></text> +</g> +<g > +<title>/ld-linux-x86-64.so.2 (107 samples, 0.01%)</title><rect x="1091.6" y="197" width="0.1" height="15.0" fill="rgb(250,115,50)" rx="2" ry="2" /> +<text x="1094.55" y="207.5" ></text> +</g> +<g > +<title>enter_openat (127 samples, 0.01%)</title><rect x="619.1" y="181" width="0.2" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="622.11" y="191.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="745.6" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="748.58" y="79.5" ></text> +</g> +<g > +<title>618862 (192 samples, 0.02%)</title><rect x="784.0" y="245" width="0.2" height="15.0" fill="rgb(238,147,36)" rx="2" ry="2" /> +<text x="786.98" y="255.5" ></text> +</g> +<g > +<title>/com.belmoussaoui.ReadItLater.Locale (209 samples, 0.02%)</title><rect x="231.4" y="149" width="0.2" height="15.0" fill="rgb(242,164,41)" rx="2" ry="2" /> +<text x="234.35" y="159.5" ></text> +</g> +<g > +<title>/memory.min (264 samples, 0.03%)</title><rect x="745.4" y="85" width="0.3" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="748.36" y="95.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="743.9" y="69" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="746.94" y="79.5" ></text> +</g> +<g > +<title>/refs (876 samples, 0.09%)</title><rect x="230.3" y="149" width="1.0" height="15.0" fill="rgb(239,137,37)" rx="2" ry="2" /> +<text x="233.28" y="159.5" ></text> +</g> +<g > +<title>/system@000624c3a95742e5-086ee8aa3b721bb4.journal~ (86 samples, 0.01%)</title><rect x="1176.7" y="149" width="0.1" height="15.0" fill="rgb(233,145,31)" rx="2" ry="2" /> +<text x="1179.71" y="159.5" ></text> +</g> +<g > +<title>/memory.stat (270 samples, 0.03%)</title><rect x="752.3" y="85" width="0.3" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="755.27" y="95.5" ></text> +</g> +<g > +<title>enter_ioctl (2,953 samples, 0.31%)</title><rect x="392.0" y="133" width="3.6" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="394.98" y="143.5" ></text> +</g> +<g > +<title> (268 samples, 0.03%)</title><rect x="775.8" y="229" width="0.4" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="778.85" y="239.5" ></text> +</g> +<g > +<title>/.. (35,331 samples, 3.66%)</title><rect x="145.3" y="85" width="43.2" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="148.33" y="95.5" >/..</text> +</g> +<g > +<title>/05 (84 samples, 0.01%)</title><rect x="1039.3" y="149" width="0.1" height="15.0" fill="rgb(237,137,35)" rx="2" ry="2" /> +<text x="1042.29" y="159.5" ></text> +</g> +<g > +<title> (135 samples, 0.01%)</title><rect x="341.4" y="229" width="0.2" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="344.45" y="239.5" ></text> +</g> +<g > +<title>626217 (660 samples, 0.07%)</title><rect x="807.4" y="245" width="0.8" height="15.0" fill="rgb(239,148,37)" rx="2" ry="2" /> +<text x="810.40" y="255.5" ></text> +</g> +<g > +<title>/ethnic (2,953 samples, 0.31%)</title><rect x="392.0" y="149" width="3.6" height="15.0" fill="rgb(231,138,28)" rx="2" ry="2" /> +<text x="394.98" y="159.5" ></text> +</g> +<g > +<title>/etc (819 samples, 0.08%)</title><rect x="335.2" y="213" width="1.0" height="15.0" fill="rgb(229,138,26)" rx="2" ry="2" /> +<text x="338.20" y="223.5" ></text> +</g> +<g > +<title>/user@1001.service (101 samples, 0.01%)</title><rect x="462.1" y="133" width="0.1" height="15.0" fill="rgb(246,116,46)" rx="2" ry="2" /> +<text x="465.07" y="143.5" ></text> +</g> +<g > +<title>/usr (122 samples, 0.01%)</title><rect x="332.1" y="213" width="0.2" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="335.13" y="223.5" ></text> +</g> +<g > +<title>/home (809 samples, 0.08%)</title><rect x="797.7" y="213" width="1.0" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="800.75" y="223.5" ></text> +</g> +<g > +<title> (883 samples, 0.09%)</title><rect x="876.1" y="229" width="1.0" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="879.05" y="239.5" ></text> +</g> +<g > +<title>/Microsoft (388 samples, 0.04%)</title><rect x="870.5" y="165" width="0.5" height="15.0" fill="rgb(239,145,37)" rx="2" ry="2" /> +<text x="873.54" y="175.5" ></text> +</g> +<g > +<title>enter_read (93 samples, 0.01%)</title><rect x="758.3" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="761.33" y="79.5" ></text> +</g> +<g > +<title>/28 (125 samples, 0.01%)</title><rect x="1043.6" y="149" width="0.1" height="15.0" fill="rgb(230,117,27)" rx="2" ry="2" /> +<text x="1046.56" y="159.5" ></text> +</g> +<g > +<title>/1b (100 samples, 0.01%)</title><rect x="1042.0" y="149" width="0.1" height="15.0" fill="rgb(227,142,25)" rx="2" ry="2" /> +<text x="1044.95" y="159.5" ></text> +</g> +<g > +<title>/memory.swap.current (270 samples, 0.03%)</title><rect x="750.6" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="753.56" y="95.5" ></text> +</g> +<g > +<title>/dnf (470 samples, 0.05%)</title><rect x="549.1" y="181" width="0.5" height="15.0" fill="rgb(248,162,48)" rx="2" ry="2" /> +<text x="552.07" y="191.5" ></text> +</g> +<g > +<title>627551 (294 samples, 0.03%)</title><rect x="1091.0" y="245" width="0.3" height="15.0" fill="rgb(225,145,23)" rx="2" ry="2" /> +<text x="1093.98" y="255.5" ></text> +</g> +<g > +<title>/x86_64-redhat-linux (548 samples, 0.06%)</title><rect x="391.3" y="165" width="0.7" height="15.0" fill="rgb(245,97,45)" rx="2" ry="2" /> +<text x="394.31" y="175.5" ></text> +</g> +<g > +<title>/memory.swap.current (270 samples, 0.03%)</title><rect x="734.3" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="737.27" y="95.5" ></text> +</g> +<g > +<title>enter_ioctl (88 samples, 0.01%)</title><rect x="735.6" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="738.62" y="79.5" ></text> +</g> +<g > +<title>/x86_64 (103 samples, 0.01%)</title><rect x="248.1" y="133" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="251.06" y="143.5" ></text> +</g> +<g > +<title>621836 (986 samples, 0.10%)</title><rect x="802.3" y="245" width="1.2" height="15.0" fill="rgb(234,164,32)" rx="2" ry="2" /> +<text x="805.33" y="255.5" ></text> +</g> +<g > +<title>enter_write (168 samples, 0.02%)</title><rect x="768.2" y="213" width="0.2" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="771.23" y="223.5" ></text> +</g> +<g > +<title>.. (330 samples, 0.03%)</title><rect x="832.3" y="229" width="0.4" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> +<text x="835.30" y="239.5" ></text> +</g> +<g > +<title>627595 (622 samples, 0.06%)</title><rect x="1143.8" y="245" width="0.7" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="1146.76" y="255.5" ></text> +</g> +<g > +<title>enter_ioctl (92 samples, 0.01%)</title><rect x="754.0" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="756.99" y="79.5" ></text> +</g> +<g > +<title>/x86_64 (83 samples, 0.01%)</title><rect x="221.0" y="133" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="224.03" y="143.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="759.7" y="85" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="762.66" y="95.5" ></text> +</g> +<g > +<title>/var (95 samples, 0.01%)</title><rect x="677.6" y="213" width="0.1" height="15.0" fill="rgb(231,130,28)" rx="2" ry="2" /> +<text x="680.56" y="223.5" ></text> +</g> +<g > +<title>/16 (248 samples, 0.03%)</title><rect x="795.6" y="117" width="0.3" height="15.0" fill="rgb(234,129,32)" rx="2" ry="2" /> +<text x="798.59" y="127.5" ></text> +</g> +<g > +<title>org.fedoraproject.KDE5Platform (97 samples, 0.01%)</title><rect x="309.7" y="229" width="0.2" height="15.0" fill="rgb(232,179,30)" rx="2" ry="2" /> +<text x="312.74" y="239.5" ></text> +</g> +<g > +<title>/9c (105 samples, 0.01%)</title><rect x="1057.4" y="149" width="0.1" height="15.0" fill="rgb(229,154,26)" rx="2" ry="2" /> +<text x="1060.39" y="159.5" ></text> +</g> +<g > +<title>627430 (83 samples, 0.01%)</title><rect x="881.7" y="245" width="0.1" height="15.0" fill="rgb(230,145,28)" rx="2" ry="2" /> +<text x="884.67" y="255.5" ></text> +</g> +<g > +<title>/de (96 samples, 0.01%)</title><rect x="1065.4" y="149" width="0.1" height="15.0" fill="rgb(244,152,43)" rx="2" ry="2" /> +<text x="1068.43" y="159.5" ></text> +</g> +<g > +<title>/f7 (127 samples, 0.01%)</title><rect x="1068.5" y="149" width="0.1" height="15.0" fill="rgb(235,136,33)" rx="2" ry="2" /> +<text x="1071.48" y="159.5" ></text> +</g> +<g > +<title>/com.gitlab.tipp10.tipp10 (104 samples, 0.01%)</title><rect x="216.8" y="149" width="0.2" height="15.0" fill="rgb(232,164,30)" rx="2" ry="2" /> +<text x="219.85" y="159.5" ></text> +</g> +<g > +<title>/e3 (250 samples, 0.03%)</title><rect x="1066.0" y="149" width="0.3" height="15.0" fill="rgb(243,154,42)" rx="2" ry="2" /> +<text x="1068.98" y="159.5" ></text> +</g> +<g > +<title>enter_write (116 samples, 0.01%)</title><rect x="840.1" y="117" width="0.1" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="843.06" y="127.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="739.1" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="742.13" y="79.5" ></text> +</g> +<g > +<title>/memory.stat (264 samples, 0.03%)</title><rect x="719.8" y="85" width="0.3" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="722.78" y="95.5" ></text> +</g> +<g > +<title>/.. (122 samples, 0.01%)</title><rect x="541.9" y="101" width="0.1" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="544.87" y="111.5" ></text> +</g> +<g > +<title>enter_newfstat (89 samples, 0.01%)</title><rect x="1183.6" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1186.62" y="143.5" ></text> +</g> +<g > +<title>/var (332 samples, 0.03%)</title><rect x="624.7" y="213" width="0.4" height="15.0" fill="rgb(231,130,28)" rx="2" ry="2" /> +<text x="627.70" y="223.5" ></text> +</g> +<g > +<title>/video0 (345 samples, 0.04%)</title><rect x="618.8" y="197" width="0.5" height="15.0" fill="rgb(236,104,34)" rx="2" ry="2" /> +<text x="621.85" y="207.5" ></text> +</g> +<g > +<title>/43 (98 samples, 0.01%)</title><rect x="1046.8" y="149" width="0.1" height="15.0" fill="rgb(236,123,34)" rx="2" ry="2" /> +<text x="1049.76" y="159.5" ></text> +</g> +<g > +<title>/4c (95 samples, 0.01%)</title><rect x="1047.8" y="149" width="0.2" height="15.0" fill="rgb(222,123,19)" rx="2" ry="2" /> +<text x="1050.84" y="159.5" ></text> +</g> +<g > +<title>/memory.low (270 samples, 0.03%)</title><rect x="745.0" y="85" width="0.4" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="748.03" y="95.5" ></text> +</g> +<g > +<title>/dev (86 samples, 0.01%)</title><rect x="1038.6" y="213" width="0.1" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" /> +<text x="1041.61" y="223.5" ></text> +</g> +<g > +<title>/flatpak (5,737 samples, 0.59%)</title><rect x="133.8" y="149" width="7.0" height="15.0" fill="rgb(230,158,27)" rx="2" ry="2" /> +<text x="136.76" y="159.5" ></text> +</g> +<g > +<title>/host (374 samples, 0.04%)</title><rect x="795.6" y="197" width="0.4" height="15.0" fill="rgb(236,139,35)" rx="2" ry="2" /> +<text x="798.58" y="207.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="723.3" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="726.30" y="79.5" ></text> +</g> +<g > +<title>/cd (96 samples, 0.01%)</title><rect x="1063.4" y="149" width="0.1" height="15.0" fill="rgb(247,161,46)" rx="2" ry="2" /> +<text x="1066.43" y="159.5" ></text> +</g> +<g > +<title>/system@d867e76fe845443eb32f8efe355ef876-00000000004dea06-00061efde0c5211f.journal (98 samples, 0.01%)</title><rect x="1182.0" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1185.02" y="159.5" ></text> +</g> +<g > +<title>/rpmdb.sqlite (105 samples, 0.01%)</title><rect x="796.0" y="149" width="0.2" height="15.0" fill="rgb(240,140,38)" rx="2" ry="2" /> +<text x="799.04" y="159.5" ></text> +</g> +<g > +<title>484516 (879 samples, 0.09%)</title><rect x="681.5" y="245" width="1.1" height="15.0" fill="rgb(239,196,37)" rx="2" ry="2" /> +<text x="684.48" y="255.5" ></text> +</g> +<g > +<title>.git (97 samples, 0.01%)</title><rect x="1142.0" y="229" width="0.1" height="15.0" fill="rgb(233,132,30)" rx="2" ry="2" /> +<text x="1145.00" y="239.5" ></text> +</g> +<g > +<title>enter_read (232 samples, 0.02%)</title><rect x="477.9" y="165" width="0.3" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="480.95" y="175.5" ></text> +</g> +<g > +<title>/smaps (186 samples, 0.02%)</title><rect x="798.7" y="181" width="0.3" height="15.0" fill="rgb(243,145,42)" rx="2" ry="2" /> +<text x="801.74" y="191.5" ></text> +</g> +<g > +<title>/memory.min (276 samples, 0.03%)</title><rect x="684.5" y="149" width="0.3" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="687.50" y="159.5" ></text> +</g> +<g > +<title> (9,444 samples, 0.98%)</title><rect x="617.9" y="229" width="11.6" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="620.94" y="239.5" ></text> +</g> +<g > +<title>/x86_64-redhat-linux (159 samples, 0.02%)</title><rect x="541.9" y="165" width="0.2" height="15.0" fill="rgb(245,97,45)" rx="2" ry="2" /> +<text x="544.87" y="175.5" ></text> +</g> +<g > +<title>/x86_64 (102 samples, 0.01%)</title><rect x="304.5" y="181" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="307.53" y="191.5" ></text> +</g> +<g > +<title>/memory.pressure (329 samples, 0.03%)</title><rect x="713.3" y="85" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="716.27" y="95.5" ></text> +</g> +<g > +<title> (196 samples, 0.02%)</title><rect x="766.1" y="229" width="0.2" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="769.07" y="239.5" ></text> +</g> +<g > +<title>enter_read (85 samples, 0.01%)</title><rect x="624.9" y="149" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="627.90" y="159.5" ></text> +</g> +<g > +<title>/ethnic (301 samples, 0.03%)</title><rect x="542.1" y="149" width="0.3" height="15.0" fill="rgb(231,138,28)" rx="2" ry="2" /> +<text x="545.06" y="159.5" ></text> +</g> +<g > +<title>enter_write (7,069 samples, 0.73%)</title><rect x="664.5" y="213" width="8.7" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="667.53" y="223.5" ></text> +</g> +<g > +<title>/dev.bragefuglseth.Keypunch.Locale (173 samples, 0.02%)</title><rect x="232.4" y="149" width="0.2" height="15.0" fill="rgb(242,152,41)" rx="2" ry="2" /> +<text x="235.36" y="159.5" ></text> +</g> +<g > +<title>/25 (107 samples, 0.01%)</title><rect x="1043.2" y="149" width="0.1" height="15.0" fill="rgb(235,127,33)" rx="2" ry="2" /> +<text x="1046.22" y="159.5" ></text> +</g> +<g > +<title>/.. (271 samples, 0.03%)</title><rect x="1087.9" y="85" width="0.4" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1090.94" y="95.5" ></text> +</g> +<g > +<title>/usr (935 samples, 0.10%)</title><rect x="796.0" y="213" width="1.2" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="799.04" y="223.5" ></text> +</g> +<g > +<title>/x86_64 (117 samples, 0.01%)</title><rect x="234.1" y="133" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="237.05" y="143.5" ></text> +</g> +<g > +<title>/x86_64-redhat-linux (147 samples, 0.02%)</title><rect x="1175.0" y="165" width="0.2" height="15.0" fill="rgb(245,97,45)" rx="2" ry="2" /> +<text x="1178.05" y="175.5" ></text> +</g> +<g > +<title>/paul (152 samples, 0.02%)</title><rect x="1170.1" y="197" width="0.2" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="1173.07" y="207.5" ></text> +</g> +<g > +<title>/memory.swap.current (270 samples, 0.03%)</title><rect x="752.6" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="755.60" y="95.5" ></text> +</g> +<g > +<title>/conf.d (451 samples, 0.05%)</title><rect x="861.4" y="181" width="0.6" height="15.0" fill="rgb(248,164,47)" rx="2" ry="2" /> +<text x="864.43" y="191.5" ></text> +</g> +<g > +<title>/lib64 (82 samples, 0.01%)</title><rect x="775.8" y="213" width="0.1" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="778.85" y="223.5" ></text> +</g> +<g > +<title>/memory.pressure (308 samples, 0.03%)</title><rect x="723.4" y="85" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="726.41" y="95.5" ></text> +</g> +<g > +<title>enter_newfstat (95 samples, 0.01%)</title><rect x="1179.5" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1182.48" y="143.5" ></text> +</g> +<g > +<title>enter_lseek (1,741 samples, 0.18%)</title><rect x="1135.2" y="37" width="2.1" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="1138.20" y="47.5" ></text> +</g> +<g > +<title>enter_openat (110 samples, 0.01%)</title><rect x="807.7" y="197" width="0.1" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="810.69" y="207.5" ></text> +</g> +<g > +<title>enter_read (91 samples, 0.01%)</title><rect x="694.5" y="69" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="697.54" y="79.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="700.8" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="703.84" y="79.5" ></text> +</g> +<g > +<title>enter_newfstat (91 samples, 0.01%)</title><rect x="750.3" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="753.28" y="79.5" ></text> +</g> +<g > +<title>/lib (2,009 samples, 0.21%)</title><rect x="1071.8" y="197" width="2.5" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="1074.82" y="207.5" ></text> +</g> +<g > +<title>627604 (17,492 samples, 1.81%)</title><rect x="1144.5" y="245" width="21.4" height="15.0" fill="rgb(242,145,41)" rx="2" ry="2" /> +<text x="1147.52" y="255.5" >6..</text> +</g> +<g > +<title>enter_read (104 samples, 0.01%)</title><rect x="38.7" y="37" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="41.75" y="47.5" ></text> +</g> +<g > +<title> (2,364 samples, 0.24%)</title><rect x="1034.7" y="229" width="2.9" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1037.74" y="239.5" ></text> +</g> +<g > +<title>627429 (83 samples, 0.01%)</title><rect x="881.6" y="245" width="0.1" height="15.0" fill="rgb(233,145,31)" rx="2" ry="2" /> +<text x="884.56" y="255.5" ></text> +</g> +<g > +<title>/org.kde.Platform.Locale (108 samples, 0.01%)</title><rect x="305.8" y="197" width="0.1" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="308.81" y="207.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="728.1" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="731.06" y="79.5" ></text> +</g> +<g > +<title>/usr (1,672 samples, 0.17%)</title><rect x="862.4" y="213" width="2.0" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="865.37" y="223.5" ></text> +</g> +<g > +<title>/video1 (269 samples, 0.03%)</title><rect x="619.3" y="197" width="0.3" height="15.0" fill="rgb(234,104,32)" rx="2" ry="2" /> +<text x="622.27" y="207.5" ></text> +</g> +<g > +<title>/paul (587 samples, 0.06%)</title><rect x="116.3" y="197" width="0.7" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="119.30" y="207.5" ></text> +</g> +<g > +<title>enter_newfstat (86 samples, 0.01%)</title><rect x="1186.0" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1189.02" y="143.5" ></text> +</g> +<g > +<title>enter_fcntl (84 samples, 0.01%)</title><rect x="775.5" y="165" width="0.1" height="15.0" fill="rgb(233,196,30)" rx="2" ry="2" /> +<text x="778.55" y="175.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="705.9" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="708.94" y="79.5" ></text> +</g> +<g > +<title>enter_read (398 samples, 0.04%)</title><rect x="460.1" y="197" width="0.5" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="463.10" y="207.5" ></text> +</g> +<g > +<title>/usr (109 samples, 0.01%)</title><rect x="1089.0" y="213" width="0.1" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="1091.99" y="223.5" ></text> +</g> +<g > +<title>/org.videolan.VLC (87 samples, 0.01%)</title><rect x="220.9" y="149" width="0.1" height="15.0" fill="rgb(230,149,27)" rx="2" ry="2" /> +<text x="223.89" y="159.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="751.8" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="754.77" y="79.5" ></text> +</g> +<g > +<title>/paul (240 samples, 0.02%)</title><rect x="865.3" y="197" width="0.3" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="868.30" y="207.5" ></text> +</g> +<g > +<title>/87 (112 samples, 0.01%)</title><rect x="1054.9" y="149" width="0.1" height="15.0" fill="rgb(237,146,35)" rx="2" ry="2" /> +<text x="1057.89" y="159.5" ></text> +</g> +<g > +<title>/home (2,161 samples, 0.22%)</title><rect x="837.6" y="213" width="2.6" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="840.60" y="223.5" ></text> +</g> +<g > +<title>enter_read (89 samples, 0.01%)</title><rect x="738.8" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="741.81" y="79.5" ></text> +</g> +<g > +<title>627579 (149 samples, 0.02%)</title><rect x="1142.4" y="245" width="0.2" height="15.0" fill="rgb(239,145,37)" rx="2" ry="2" /> +<text x="1145.44" y="255.5" ></text> +</g> +<g > +<title>/journal (194 samples, 0.02%)</title><rect x="683.1" y="181" width="0.3" height="15.0" fill="rgb(229,128,27)" rx="2" ry="2" /> +<text x="686.12" y="191.5" ></text> +</g> +<g > +<title>/memory.pressure (308 samples, 0.03%)</title><rect x="725.4" y="85" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="728.41" y="95.5" ></text> +</g> +<g > +<title>/memory.current (276 samples, 0.03%)</title><rect x="740.6" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="743.58" y="95.5" ></text> +</g> +<g > +<title>/memory.low (264 samples, 0.03%)</title><rect x="734.9" y="85" width="0.3" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="737.92" y="95.5" ></text> +</g> +<g > +<title>/sbin (549 samples, 0.06%)</title><rect x="189.2" y="181" width="0.6" height="15.0" fill="rgb(247,142,46)" rx="2" ry="2" /> +<text x="192.16" y="191.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="708.0" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="711.00" y="79.5" ></text> +</g> +<g > +<title>/knghtbrd (682 samples, 0.07%)</title><rect x="395.6" y="149" width="0.8" height="15.0" fill="rgb(249,127,48)" rx="2" ry="2" /> +<text x="398.58" y="159.5" ></text> +</g> +<g > +<title>/.cargo (220 samples, 0.02%)</title><rect x="36.0" y="181" width="0.3" height="15.0" fill="rgb(244,154,43)" rx="2" ry="2" /> +<text x="39.00" y="191.5" ></text> +</g> +<g > +<title>/system@43c58ad07224456eb8ec4c62b9847aab-000000000052d3cb-0006223df734ff32.journal (88 samples, 0.01%)</title><rect x="1178.9" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1181.88" y="159.5" ></text> +</g> +<g > +<title>gemfeed (249 samples, 0.03%)</title><rect x="873.3" y="229" width="0.3" height="15.0" fill="rgb(249,192,48)" rx="2" ry="2" /> +<text x="876.31" y="239.5" ></text> +</g> +<g > +<title>/memory.current (270 samples, 0.03%)</title><rect x="690.0" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="692.98" y="95.5" ></text> +</g> +<g > +<title>/lib64 (330 samples, 0.03%)</title><rect x="1091.6" y="213" width="0.4" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="1094.55" y="223.5" ></text> +</g> +<g > +<title>/games (122 samples, 0.01%)</title><rect x="332.1" y="181" width="0.2" height="15.0" fill="rgb(243,150,42)" rx="2" ry="2" /> +<text x="335.13" y="191.5" ></text> +</g> +<g > +<title>org.fedoraproject.KDE6Platform (83 samples, 0.01%)</title><rect x="309.9" y="229" width="0.1" height="15.0" fill="rgb(232,179,30)" rx="2" ry="2" /> +<text x="312.86" y="239.5" ></text> +</g> +<g > +<title>/ior (2,441 samples, 0.25%)</title><rect x="1093.7" y="165" width="3.0" height="15.0" fill="rgb(240,134,39)" rx="2" ry="2" /> +<text x="1096.73" y="175.5" ></text> +</g> +<g > +<title>/x86_64 (84 samples, 0.01%)</title><rect x="218.0" y="133" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="220.95" y="143.5" ></text> +</g> +<g > +<title>enter_newfstat (87 samples, 0.01%)</title><rect x="1184.0" y="133" width="0.2" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1187.05" y="143.5" ></text> +</g> +<g > +<title> (49,672 samples, 5.14%)</title><rect x="489.3" y="229" width="60.6" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="492.28" y="239.5" ></text> +</g> +<g > +<title>/memory.min (272 samples, 0.03%)</title><rect x="741.3" y="85" width="0.3" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="744.26" y="95.5" ></text> +</g> +<g > +<title>/x86_64 (88 samples, 0.01%)</title><rect x="232.8" y="133" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="235.79" y="143.5" ></text> +</g> +<g > +<title>/c3 (96 samples, 0.01%)</title><rect x="1062.2" y="149" width="0.1" height="15.0" fill="rgb(245,164,44)" rx="2" ry="2" /> +<text x="1065.21" y="159.5" ></text> +</g> +<g > +<title> (143 samples, 0.01%)</title><rect x="806.6" y="229" width="0.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="809.55" y="239.5" ></text> +</g> +<g > +<title>enter_newfstat (88 samples, 0.01%)</title><rect x="719.8" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="722.83" y="79.5" ></text> +</g> +<g > +<title>/self (144 samples, 0.01%)</title><rect x="781.0" y="197" width="0.1" height="15.0" fill="rgb(238,132,36)" rx="2" ry="2" /> +<text x="783.95" y="207.5" ></text> +</g> +<g > +<title>/self (406 samples, 0.04%)</title><rect x="484.8" y="197" width="0.5" height="15.0" fill="rgb(238,132,36)" rx="2" ry="2" /> +<text x="487.82" y="207.5" ></text> +</g> +<g > +<title>enter_newfstat (85 samples, 0.01%)</title><rect x="1183.1" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1186.11" y="143.5" ></text> +</g> +<g > +<title>/google-noto-vf (16,622 samples, 1.72%)</title><rect x="1145.4" y="165" width="20.3" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> +<text x="1148.41" y="175.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="750.8" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="753.78" y="79.5" ></text> +</g> +<g > +<title>/33 (95 samples, 0.01%)</title><rect x="1044.9" y="149" width="0.1" height="15.0" fill="rgb(237,128,36)" rx="2" ry="2" /> +<text x="1047.92" y="159.5" ></text> +</g> +<g > +<title>/go-link-2935705061 (197 samples, 0.02%)</title><rect x="390.9" y="197" width="0.2" height="15.0" fill="rgb(228,144,25)" rx="2" ry="2" /> +<text x="393.87" y="207.5" ></text> +</g> +<g > +<title>/15 (687 samples, 0.07%)</title><rect x="1090.1" y="149" width="0.8" height="15.0" fill="rgb(236,132,34)" rx="2" ry="2" /> +<text x="1093.10" y="159.5" ></text> +</g> +<g > +<title>enter_newfstat (88 samples, 0.01%)</title><rect x="1178.6" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1181.56" y="143.5" ></text> +</g> +<g > +<title>10705 (72,522 samples, 7.50%)</title><rect x="10.3" y="245" width="88.5" height="15.0" fill="rgb(240,115,39)" rx="2" ry="2" /> +<text x="13.29" y="255.5" >10705</text> +</g> +<g > +<title>enter_getdents64 (721 samples, 0.07%)</title><rect x="250.7" y="213" width="0.9" height="15.0" fill="rgb(235,196,33)" rx="2" ry="2" /> +<text x="253.71" y="223.5" ></text> +</g> +<g > +<title> (84 samples, 0.01%)</title><rect x="1142.3" y="229" width="0.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1145.30" y="239.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dcom.intel.dleyna\x5cx2drenderer.slice (1,628 samples, 0.17%)</title><rect x="692.0" y="101" width="2.0" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="695.01" y="111.5" ></text> +</g> +<g > +<title>/memory.min (273 samples, 0.03%)</title><rect x="753.6" y="85" width="0.3" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="756.61" y="95.5" ></text> +</g> +<g > +<title>/home (758 samples, 0.08%)</title><rect x="871.6" y="213" width="0.9" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="874.57" y="223.5" ></text> +</g> +<g > +<title>/org.gnome.Platform.Locale (405 samples, 0.04%)</title><rect x="242.4" y="149" width="0.5" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="245.37" y="159.5" ></text> +</g> +<g > +<title>enter_ioctl (93 samples, 0.01%)</title><rect x="749.9" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="752.88" y="79.5" ></text> +</g> +<g > +<title>enter_ioctl (90 samples, 0.01%)</title><rect x="715.4" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="718.41" y="79.5" ></text> +</g> +<g > +<title>627555 (39,517 samples, 4.09%)</title><rect x="1093.6" y="245" width="48.2" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> +<text x="1096.59" y="255.5" >627555</text> +</g> +<g > +<title>/memory.min (276 samples, 0.03%)</title><rect x="755.7" y="85" width="0.3" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="758.65" y="95.5" ></text> +</g> +<g > +<title>/memory.min (270 samples, 0.03%)</title><rect x="749.5" y="85" width="0.3" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="752.49" y="95.5" ></text> +</g> +<g > +<title>/com.github.artemanufrij.playmymusic (123 samples, 0.01%)</title><rect x="216.4" y="149" width="0.2" height="15.0" fill="rgb(227,164,25)" rx="2" ry="2" /> +<text x="219.42" y="159.5" ></text> +</g> +<g > +<title>enter_write (110 samples, 0.01%)</title><rect x="37.5" y="181" width="0.1" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="40.50" y="191.5" ></text> +</g> +<g > +<title>/status (638 samples, 0.07%)</title><rect x="477.5" y="181" width="0.7" height="15.0" fill="rgb(233,122,30)" rx="2" ry="2" /> +<text x="480.45" y="191.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="732.1" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="735.11" y="79.5" ></text> +</g> +<g > +<title>627340 (396 samples, 0.04%)</title><rect x="873.7" y="245" width="0.5" height="15.0" fill="rgb(230,145,27)" rx="2" ry="2" /> +<text x="876.67" y="255.5" ></text> +</g> +<g > +<title>enter_newfstat (232 samples, 0.02%)</title><rect x="476.7" y="165" width="0.3" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="479.74" y="175.5" ></text> +</g> +<g > +<title>/system@000631059c27d913-5d7d3ed4ff620b36.journal~ (87 samples, 0.01%)</title><rect x="1177.3" y="149" width="0.1" height="15.0" fill="rgb(233,145,31)" rx="2" ry="2" /> +<text x="1180.26" y="159.5" ></text> +</g> +<g > +<title>enter_newfstat (86 samples, 0.01%)</title><rect x="1181.8" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1184.82" y="143.5" ></text> +</g> +<g > +<title>/user-1001@000631059c4bdd3c-a8cc098a9eb3e328.journal~ (85 samples, 0.01%)</title><rect x="1183.8" y="149" width="0.1" height="15.0" fill="rgb(233,116,31)" rx="2" ry="2" /> +<text x="1186.84" y="159.5" ></text> +</g> +<g > +<title>enter_close (102 samples, 0.01%)</title><rect x="682.1" y="213" width="0.1" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="685.12" y="223.5" ></text> +</g> +<g > +<title>enter_write (526 samples, 0.05%)</title><rect x="801.7" y="213" width="0.6" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="804.69" y="223.5" ></text> +</g> +<g > +<title>enter_read (792 samples, 0.08%)</title><rect x="860.0" y="133" width="0.9" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="862.98" y="143.5" ></text> +</g> +<g > +<title>/dev (422 samples, 0.04%)</title><rect x="804.6" y="213" width="0.5" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" /> +<text x="807.62" y="223.5" ></text> +</g> +<g > +<title>/usr (101 samples, 0.01%)</title><rect x="1082.7" y="213" width="0.1" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="1085.68" y="223.5" ></text> +</g> +<g > +<title> (231 samples, 0.02%)</title><rect x="806.7" y="229" width="0.3" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="809.74" y="239.5" ></text> +</g> +<g > +<title>/memory.low (270 samples, 0.03%)</title><rect x="702.3" y="85" width="0.3" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="705.30" y="95.5" ></text> +</g> +<g > +<title>/memory.low (264 samples, 0.03%)</title><rect x="718.8" y="85" width="0.3" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="721.76" y="95.5" ></text> +</g> +<g > +<title>/.config (239 samples, 0.02%)</title><rect x="461.6" y="181" width="0.3" height="15.0" fill="rgb(239,154,37)" rx="2" ry="2" /> +<text x="464.60" y="191.5" ></text> +</g> +<g > +<title>enter_newfstat (232 samples, 0.02%)</title><rect x="478.5" y="165" width="0.3" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="481.51" y="175.5" ></text> +</g> +<g > +<title>/lib64 (253 samples, 0.03%)</title><rect x="1085.9" y="69" width="0.3" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="1088.89" y="79.5" ></text> +</g> +<g > +<title>/93 (95 samples, 0.01%)</title><rect x="1056.4" y="149" width="0.1" height="15.0" fill="rgb(243,154,42)" rx="2" ry="2" /> +<text x="1059.39" y="159.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="684.7" y="133" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="687.73" y="143.5" ></text> +</g> +<g > +<title>/fd (84 samples, 0.01%)</title><rect x="1069.2" y="149" width="0.1" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="1072.20" y="159.5" ></text> +</g> +<g > +<title> (10,690 samples, 1.11%)</title><rect x="784.2" y="229" width="13.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="787.24" y="239.5" ></text> +</g> +<g > +<title>enter_newfstat (94 samples, 0.01%)</title><rect x="713.7" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="716.73" y="79.5" ></text> +</g> +<g > +<title>/org.gnome.Platform (369 samples, 0.04%)</title><rect x="242.9" y="149" width="0.4" height="15.0" fill="rgb(232,149,30)" rx="2" ry="2" /> +<text x="245.86" y="159.5" ></text> +</g> +<g > +<title>/memory.min (269 samples, 0.03%)</title><rect x="735.2" y="85" width="0.4" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="738.24" y="95.5" ></text> +</g> +<g > +<title>/fonts (476 samples, 0.05%)</title><rect x="1169.5" y="197" width="0.6" height="15.0" fill="rgb(238,149,36)" rx="2" ry="2" /> +<text x="1172.48" y="207.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="687.8" y="85" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="690.83" y="95.5" ></text> +</g> +<g > +<title>/org.fedoraproject.KDE5Platform (168 samples, 0.02%)</title><rect x="233.0" y="149" width="0.2" height="15.0" fill="rgb(232,149,30)" rx="2" ry="2" /> +<text x="236.04" y="159.5" ></text> +</g> +<g > +<title>enter_newfstat (90 samples, 0.01%)</title><rect x="1179.8" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1182.81" y="143.5" ></text> +</g> +<g > +<title>/goedel (221 samples, 0.02%)</title><rect x="542.4" y="149" width="0.3" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> +<text x="545.43" y="159.5" ></text> +</g> +<g > +<title>enter_lseek (11,128 samples, 1.15%)</title><rect x="1114.9" y="37" width="13.6" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="1117.90" y="47.5" ></text> +</g> +<g > +<title>N:file (193 samples, 0.02%)</title><rect x="629.5" y="229" width="0.2" height="15.0" fill="rgb(237,131,35)" rx="2" ry="2" /> +<text x="632.47" y="239.5" ></text> +</g> +<g > +<title>/gcc (700 samples, 0.07%)</title><rect x="1087.9" y="181" width="0.9" height="15.0" fill="rgb(234,144,32)" rx="2" ry="2" /> +<text x="1090.94" y="191.5" ></text> +</g> +<g > +<title>/goedel (731 samples, 0.08%)</title><rect x="41.2" y="149" width="0.9" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> +<text x="44.25" y="159.5" ></text> +</g> +<g > +<title>/memory.pressure (329 samples, 0.03%)</title><rect x="711.2" y="85" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="714.17" y="95.5" ></text> +</g> +<g > +<title>/home (128 samples, 0.01%)</title><rect x="331.4" y="213" width="0.2" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="334.45" y="223.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="738.5" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="741.48" y="79.5" ></text> +</g> +<g > +<title>enter_read (117 samples, 0.01%)</title><rect x="336.1" y="181" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="339.06" y="191.5" ></text> +</g> +<g > +<title>/66 (108 samples, 0.01%)</title><rect x="1050.9" y="149" width="0.1" height="15.0" fill="rgb(229,104,26)" rx="2" ry="2" /> +<text x="1053.91" y="159.5" ></text> +</g> +<g > +<title>/lib64 (252 samples, 0.03%)</title><rect x="1090.1" y="69" width="0.3" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="1093.10" y="79.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="763.4" y="85" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="766.43" y="95.5" ></text> +</g> +<g > +<title>/system@fff69b6456c64fb7a42fde8404e90fa0-00000000004cf24a-00061dc3b7abfe91.journal (92 samples, 0.01%)</title><rect x="1182.6" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1185.58" y="159.5" ></text> +</g> +<g > +<title>/lib64 (130 samples, 0.01%)</title><rect x="1034.8" y="213" width="0.2" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="1037.80" y="223.5" ></text> +</g> +<g > +<title>/.cache (165 samples, 0.02%)</title><rect x="862.0" y="181" width="0.2" height="15.0" fill="rgb(245,154,44)" rx="2" ry="2" /> +<text x="865.00" y="191.5" ></text> +</g> +<g > +<title>/libc_nonshared.a (156 samples, 0.02%)</title><rect x="391.1" y="181" width="0.2" height="15.0" fill="rgb(237,99,36)" rx="2" ry="2" /> +<text x="394.12" y="191.5" ></text> +</g> +<g > +<title>enter_lseek (290 samples, 0.03%)</title><rect x="485.7" y="181" width="0.3" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="488.67" y="191.5" ></text> +</g> +<g > +<title>/passwd (138 samples, 0.01%)</title><rect x="768.7" y="197" width="0.2" height="15.0" fill="rgb(240,160,38)" rx="2" ry="2" /> +<text x="771.72" y="207.5" ></text> +</g> +<g > +<title>/ba (132 samples, 0.01%)</title><rect x="1061.0" y="149" width="0.2" height="15.0" fill="rgb(224,120,21)" rx="2" ry="2" /> +<text x="1064.03" y="159.5" ></text> +</g> +<g > +<title>enter_statx (92 samples, 0.01%)</title><rect x="797.2" y="213" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> +<text x="800.18" y="223.5" ></text> +</g> +<g > +<title> (226 samples, 0.02%)</title><rect x="1037.7" y="229" width="0.3" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1040.68" y="239.5" ></text> +</g> +<g > +<title>/memory.pressure (315 samples, 0.03%)</title><rect x="715.4" y="85" width="0.3" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="718.35" y="95.5" ></text> +</g> +<g > +<title>enter_writev (36,516 samples, 3.78%)</title><rect x="397.9" y="213" width="44.6" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="400.89" y="223.5" >ente..</text> +</g> +<g > +<title>/org.fedoraproject.Platform.YtDlp (204 samples, 0.02%)</title><rect x="234.1" y="149" width="0.2" height="15.0" fill="rgb(236,149,34)" rx="2" ry="2" /> +<text x="237.05" y="159.5" ></text> +</g> +<g > +<title>/memory.swap.current (270 samples, 0.03%)</title><rect x="762.9" y="101" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="765.87" y="111.5" ></text> +</g> +<g > +<title> (2,867 samples, 0.30%)</title><rect x="1165.9" y="229" width="3.5" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1168.88" y="239.5" ></text> +</g> +<g > +<title>/ptmx (874 samples, 0.09%)</title><rect x="458.4" y="197" width="1.0" height="15.0" fill="rgb(238,138,36)" rx="2" ry="2" /> +<text x="461.38" y="207.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Calendar.slice (1,690 samples, 0.17%)</title><rect x="706.0" y="101" width="2.1" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="709.05" y="111.5" ></text> +</g> +<g > +<title>enter_statx (91 samples, 0.01%)</title><rect x="243.2" y="133" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> +<text x="246.20" y="143.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="709.7" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="712.72" y="79.5" ></text> +</g> +<g > +<title>/600296 (152 samples, 0.02%)</title><rect x="779.2" y="197" width="0.1" height="15.0" fill="rgb(244,123,43)" rx="2" ry="2" /> +<text x="782.15" y="207.5" ></text> +</g> +<g > +<title>/usr (731 samples, 0.08%)</title><rect x="1083.7" y="213" width="0.9" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="1086.71" y="223.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="703.2" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="706.23" y="79.5" ></text> +</g> +<g > +<title>enter_openat (700 samples, 0.07%)</title><rect x="629.7" y="213" width="0.9" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="632.71" y="223.5" ></text> +</g> +<g > +<title>enter_ioctl (93 samples, 0.01%)</title><rect x="760.2" y="85" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="763.16" y="95.5" ></text> +</g> +<g > +<title>/59 (105 samples, 0.01%)</title><rect x="1049.3" y="149" width="0.2" height="15.0" fill="rgb(225,99,22)" rx="2" ry="2" /> +<text x="1052.33" y="159.5" ></text> +</g> +<g > +<title>/fb (95 samples, 0.01%)</title><rect x="1069.0" y="149" width="0.1" height="15.0" fill="rgb(230,152,27)" rx="2" ry="2" /> +<text x="1071.97" y="159.5" ></text> +</g> +<g > +<title> (875 samples, 0.09%)</title><rect x="870.4" y="229" width="1.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="873.42" y="239.5" ></text> +</g> +<g > +<title>/15 (35,344 samples, 3.66%)</title><rect x="145.3" y="149" width="43.2" height="15.0" fill="rgb(236,132,34)" rx="2" ry="2" /> +<text x="148.33" y="159.5" >/15</text> +</g> +<g > +<title>enter_read (91 samples, 0.01%)</title><rect x="727.7" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="730.73" y="79.5" ></text> +</g> +<g > +<title>enter_ioctl (91 samples, 0.01%)</title><rect x="751.9" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="754.93" y="79.5" ></text> +</g> +<g > +<title>/sbin (577 samples, 0.06%)</title><rect x="120.0" y="165" width="0.7" height="15.0" fill="rgb(247,142,46)" rx="2" ry="2" /> +<text x="123.02" y="175.5" ></text> +</g> +<g > +<title>enter_newfstatat (114 samples, 0.01%)</title><rect x="811.3" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="814.28" y="143.5" ></text> +</g> +<g > +<title>/memory.stat (270 samples, 0.03%)</title><rect x="754.3" y="85" width="0.4" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="757.33" y="95.5" ></text> +</g> +<g > +<title>/x86_64 (169 samples, 0.02%)</title><rect x="233.3" y="133" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="236.25" y="143.5" ></text> +</g> +<g > +<title>297925 (23,060 samples, 2.39%)</title><rect x="448.2" y="245" width="28.1" height="15.0" fill="rgb(236,197,35)" rx="2" ry="2" /> +<text x="451.19" y="255.5" >2..</text> +</g> +<g > +<title>/.. (253 samples, 0.03%)</title><rect x="1085.9" y="117" width="0.3" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1088.89" y="127.5" ></text> +</g> +<g > +<title>/linuxbrew (454 samples, 0.05%)</title><rect x="35.4" y="197" width="0.6" height="15.0" fill="rgb(232,99,30)" rx="2" ry="2" /> +<text x="38.45" y="207.5" ></text> +</g> +<g > +<title>/usr (436 samples, 0.05%)</title><rect x="101.4" y="213" width="0.5" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="104.36" y="223.5" ></text> +</g> +<g > +<title>enter_newfstat (85 samples, 0.01%)</title><rect x="1179.3" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1182.27" y="143.5" ></text> +</g> +<g > +<title>/47 (102 samples, 0.01%)</title><rect x="1047.2" y="149" width="0.2" height="15.0" fill="rgb(229,111,27)" rx="2" ry="2" /> +<text x="1050.23" y="159.5" ></text> +</g> +<g > +<title>enter_write (1,511 samples, 0.16%)</title><rect x="1101.0" y="133" width="1.9" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="1104.02" y="143.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="694.2" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="697.21" y="79.5" ></text> +</g> +<g > +<title>5589 (245 samples, 0.03%)</title><rect x="777.0" y="245" width="0.3" height="15.0" fill="rgb(238,134,36)" rx="2" ry="2" /> +<text x="780.05" y="255.5" ></text> +</g> +<g > +<title>6012 (1,037 samples, 0.11%)</title><rect x="782.6" y="245" width="1.2" height="15.0" fill="rgb(249,174,48)" rx="2" ry="2" /> +<text x="785.56" y="255.5" ></text> +</g> +<g > +<title>enter_pread64 (126 samples, 0.01%)</title><rect x="824.1" y="149" width="0.1" height="15.0" fill="rgb(237,196,36)" rx="2" ry="2" /> +<text x="827.09" y="159.5" ></text> +</g> +<g > +<title>enter_lseek (142 samples, 0.01%)</title><rect x="1080.1" y="117" width="0.1" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="1083.08" y="127.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dcom.redhat.imsettings.slice (1,644 samples, 0.17%)</title><rect x="694.0" y="101" width="2.0" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="697.00" y="111.5" ></text> +</g> +<g > +<title>/memory.current (270 samples, 0.03%)</title><rect x="704.0" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="707.00" y="95.5" ></text> +</g> +<g > +<title>/cache (282 samples, 0.03%)</title><rect x="865.7" y="165" width="0.3" height="15.0" fill="rgb(245,170,44)" rx="2" ry="2" /> +<text x="868.68" y="175.5" ></text> +</g> +<g > +<title>/org.gnome.Screenshot (118 samples, 0.01%)</title><rect x="219.9" y="149" width="0.1" height="15.0" fill="rgb(237,149,36)" rx="2" ry="2" /> +<text x="222.88" y="159.5" ></text> +</g> +<g > +<title>/org.freedesktop.Platform.Locale (112 samples, 0.01%)</title><rect x="304.4" y="197" width="0.1" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="307.39" y="207.5" ></text> +</g> +<g > +<title>/proc (196 samples, 0.02%)</title><rect x="766.1" y="213" width="0.2" height="15.0" fill="rgb(234,144,31)" rx="2" ry="2" /> +<text x="769.07" y="223.5" ></text> +</g> +<g > +<title>enter_statx (96 samples, 0.01%)</title><rect x="241.3" y="133" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> +<text x="244.26" y="143.5" ></text> +</g> +<g > +<title>/38 (105 samples, 0.01%)</title><rect x="1045.5" y="149" width="0.1" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" /> +<text x="1048.50" y="159.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="762.4" y="85" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="765.43" y="95.5" ></text> +</g> +<g > +<title>/org.telegram.desktop.webview (184 samples, 0.02%)</title><rect x="247.8" y="149" width="0.3" height="15.0" fill="rgb(230,149,28)" rx="2" ry="2" /> +<text x="250.83" y="159.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="742.9" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="745.88" y="79.5" ></text> +</g> +<g > +<title> (2,377 samples, 0.25%)</title><rect x="99.0" y="229" width="2.9" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="101.99" y="239.5" ></text> +</g> +<g > +<title>/memory.current (276 samples, 0.03%)</title><rect x="730.5" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="733.50" y="95.5" ></text> +</g> +<g > +<title>/null (90 samples, 0.01%)</title><rect x="32.8" y="197" width="0.1" height="15.0" fill="rgb(224,145,21)" rx="2" ry="2" /> +<text x="35.83" y="207.5" ></text> +</g> +<g > +<title>/a1 (122 samples, 0.01%)</title><rect x="1058.0" y="149" width="0.2" height="15.0" fill="rgb(221,125,18)" rx="2" ry="2" /> +<text x="1061.02" y="159.5" ></text> +</g> +<g > +<title>/memory.pressure (322 samples, 0.03%)</title><rect x="741.6" y="85" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="744.59" y="95.5" ></text> +</g> +<g > +<title> (15,602 samples, 1.61%)</title><rect x="808.2" y="229" width="19.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="811.21" y="239.5" ></text> +</g> +<g > +<title>/b3 (88 samples, 0.01%)</title><rect x="1060.2" y="149" width="0.1" height="15.0" fill="rgb(234,113,32)" rx="2" ry="2" /> +<text x="1063.19" y="159.5" ></text> +</g> +<g > +<title>/storage (626 samples, 0.06%)</title><rect x="798.0" y="133" width="0.7" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="800.97" y="143.5" ></text> +</g> +<g > +<title>/8a (89 samples, 0.01%)</title><rect x="1055.3" y="149" width="0.1" height="15.0" fill="rgb(234,165,31)" rx="2" ry="2" /> +<text x="1058.26" y="159.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="729.4" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="732.37" y="79.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="734.8" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="737.81" y="79.5" ></text> +</g> +<g > +<title>/lib64 (239 samples, 0.02%)</title><rect x="1087.3" y="213" width="0.3" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="1090.35" y="223.5" ></text> +</g> +<g > +<title>/8b (86 samples, 0.01%)</title><rect x="1055.4" y="149" width="0.1" height="15.0" fill="rgb(232,162,30)" rx="2" ry="2" /> +<text x="1058.37" y="159.5" ></text> +</g> +<g > +<title>/memory.stat (276 samples, 0.03%)</title><rect x="742.0" y="85" width="0.3" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="744.98" y="95.5" ></text> +</g> +<g > +<title>/paul (809 samples, 0.08%)</title><rect x="797.7" y="197" width="1.0" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="800.75" y="207.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="724.0" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="727.00" y="79.5" ></text> +</g> +<g > +<title>enter_openat (214 samples, 0.02%)</title><rect x="876.4" y="197" width="0.2" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="879.37" y="207.5" ></text> +</g> +<g > +<title>/.. (2,384 samples, 0.25%)</title><rect x="1093.8" y="149" width="2.9" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1096.79" y="159.5" ></text> +</g> +<g > +<title>enter_mmap (116 samples, 0.01%)</title><rect x="1165.9" y="181" width="0.1" height="15.0" fill="rgb(240,196,39)" rx="2" ry="2" /> +<text x="1168.88" y="191.5" ></text> +</g> +<g > +<title>enter_read (208 samples, 0.02%)</title><rect x="777.4" y="213" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="780.39" y="223.5" ></text> +</g> +<g > +<title>627616 (84 samples, 0.01%)</title><rect x="1172.9" y="245" width="0.1" height="15.0" fill="rgb(238,145,36)" rx="2" ry="2" /> +<text x="1175.85" y="255.5" ></text> +</g> +<g > +<title>enter_newfstat (92 samples, 0.01%)</title><rect x="711.6" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="714.63" y="79.5" ></text> +</g> +<g > +<title>/proselint (316 samples, 0.03%)</title><rect x="869.9" y="165" width="0.4" height="15.0" fill="rgb(238,144,36)" rx="2" ry="2" /> +<text x="872.94" y="175.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="736.5" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="739.48" y="79.5" ></text> +</g> +<g > +<title>/613246 (156 samples, 0.02%)</title><rect x="780.6" y="197" width="0.2" height="15.0" fill="rgb(237,120,36)" rx="2" ry="2" /> +<text x="783.57" y="207.5" ></text> +</g> +<g > +<title>/sbin (220 samples, 0.02%)</title><rect x="39.2" y="181" width="0.3" height="15.0" fill="rgb(247,142,46)" rx="2" ry="2" /> +<text x="42.19" y="191.5" ></text> +</g> +<g > +<title>/history.sqlite-wal (4,547 samples, 0.47%)</title><rect x="818.0" y="165" width="5.5" height="15.0" fill="rgb(223,119,20)" rx="2" ry="2" /> +<text x="820.98" y="175.5" ></text> +</g> +<g > +<title>enter_read (947 samples, 0.10%)</title><rect x="332.3" y="213" width="1.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="335.28" y="223.5" ></text> +</g> +<g > +<title>627542 (294 samples, 0.03%)</title><rect x="1084.6" y="245" width="0.4" height="15.0" fill="rgb(242,145,41)" rx="2" ry="2" /> +<text x="1087.62" y="255.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="700.2" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="703.20" y="79.5" ></text> +</g> +<g > +<title>/2.4.1 (82 samples, 0.01%)</title><rect x="240.9" y="117" width="0.1" height="15.0" fill="rgb(234,111,32)" rx="2" ry="2" /> +<text x="243.93" y="127.5" ></text> +</g> +<g > +<title>/app.slice (354 samples, 0.04%)</title><rect x="622.4" y="117" width="0.5" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="625.44" y="127.5" ></text> +</g> +<g > +<title>/rpm (2,763 samples, 0.29%)</title><rect x="809.0" y="165" width="3.4" height="15.0" fill="rgb(232,140,30)" rx="2" ry="2" /> +<text x="812.04" y="175.5" ></text> +</g> +<g > +<title>/wallpaper (483 samples, 0.05%)</title><rect x="836.4" y="149" width="0.6" height="15.0" fill="rgb(243,125,41)" rx="2" ry="2" /> +<text x="839.41" y="159.5" ></text> +</g> +<g > +<title>/3b (98 samples, 0.01%)</title><rect x="1045.9" y="149" width="0.1" height="15.0" fill="rgb(225,132,22)" rx="2" ry="2" /> +<text x="1048.85" y="159.5" ></text> +</g> +<g > +<title>/memory.min (276 samples, 0.03%)</title><rect x="731.2" y="85" width="0.3" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="734.17" y="95.5" ></text> +</g> +<g > +<title>/x86_64 (96 samples, 0.01%)</title><rect x="232.1" y="133" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="235.09" y="143.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="704.9" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="707.88" y="79.5" ></text> +</g> +<g > +<title>/lib64 (271 samples, 0.03%)</title><rect x="1087.9" y="69" width="0.4" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="1090.94" y="79.5" ></text> +</g> +<g > +<title>/91 (121 samples, 0.01%)</title><rect x="1056.1" y="149" width="0.1" height="15.0" fill="rgb(229,160,26)" rx="2" ry="2" /> +<text x="1059.10" y="159.5" ></text> +</g> +<g > +<title>627554 (368 samples, 0.04%)</title><rect x="1093.1" y="245" width="0.5" height="15.0" fill="rgb(238,145,36)" rx="2" ry="2" /> +<text x="1096.14" y="255.5" ></text> +</g> +<g > +<title>enter_ioctl (90 samples, 0.01%)</title><rect x="762.2" y="85" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="765.21" y="95.5" ></text> +</g> +<g > +<title>/mm (116 samples, 0.01%)</title><rect x="1189.4" y="181" width="0.2" height="15.0" fill="rgb(220,120,17)" rx="2" ry="2" /> +<text x="1192.43" y="191.5" ></text> +</g> +<g > +<title>/15 (89 samples, 0.01%)</title><rect x="620.9" y="197" width="0.1" height="15.0" fill="rgb(236,132,34)" rx="2" ry="2" /> +<text x="623.90" y="207.5" ></text> +</g> +<g > +<title>11371 (833 samples, 0.09%)</title><rect x="340.4" y="245" width="1.0" height="15.0" fill="rgb(237,123,35)" rx="2" ry="2" /> +<text x="343.43" y="255.5" ></text> +</g> +<g > +<title>/1f (117 samples, 0.01%)</title><rect x="1042.4" y="149" width="0.2" height="15.0" fill="rgb(238,129,36)" rx="2" ry="2" /> +<text x="1045.41" y="159.5" ></text> +</g> +<g > +<title>/games (16,353 samples, 1.69%)</title><rect x="194.9" y="181" width="19.9" height="15.0" fill="rgb(243,150,42)" rx="2" ry="2" /> +<text x="197.87" y="191.5" ></text> +</g> +<g > +<title>/system@000634265b2af383-38e060955906d47f.journal~ (85 samples, 0.01%)</title><rect x="1177.6" y="149" width="0.1" height="15.0" fill="rgb(233,145,31)" rx="2" ry="2" /> +<text x="1180.58" y="159.5" ></text> +</g> +<g > +<title>enter_newfstat (100 samples, 0.01%)</title><rect x="769.1" y="181" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="772.07" y="191.5" ></text> +</g> +<g > +<title>enter_ioctl (92 samples, 0.01%)</title><rect x="709.2" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="712.16" y="79.5" ></text> +</g> +<g > +<title>625679 (121 samples, 0.01%)</title><rect x="806.2" y="245" width="0.1" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" /> +<text x="809.18" y="255.5" ></text> +</g> +<g > +<title>enter_readv (328 samples, 0.03%)</title><rect x="446.3" y="181" width="0.4" height="15.0" fill="rgb(239,196,37)" rx="2" ry="2" /> +<text x="449.30" y="191.5" ></text> +</g> +<g > +<title> (271 samples, 0.03%)</title><rect x="1091.0" y="229" width="0.3" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1093.98" y="239.5" ></text> +</g> +<g > +<title>/ef (87 samples, 0.01%)</title><rect x="1067.6" y="149" width="0.1" height="15.0" fill="rgb(241,144,40)" rx="2" ry="2" /> +<text x="1070.58" y="159.5" ></text> +</g> +<g > +<title>enter_faccessat2 (2,775 samples, 0.29%)</title><rect x="129.7" y="133" width="3.4" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> +<text x="132.67" y="143.5" ></text> +</g> +<g > +<title>627368 (198 samples, 0.02%)</title><rect x="875.4" y="245" width="0.2" height="15.0" fill="rgb(231,145,29)" rx="2" ry="2" /> +<text x="878.39" y="255.5" ></text> +</g> +<g > +<title>enter_read (232 samples, 0.02%)</title><rect x="480.7" y="165" width="0.3" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="483.71" y="175.5" ></text> +</g> +<g > +<title>/pkg (527 samples, 0.05%)</title><rect x="675.0" y="133" width="0.6" height="15.0" fill="rgb(238,128,36)" rx="2" ry="2" /> +<text x="677.97" y="143.5" ></text> +</g> +<g > +<title>/memory.stat (264 samples, 0.03%)</title><rect x="693.4" y="85" width="0.3" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="696.35" y="95.5" ></text> +</g> +<g > +<title> (122 samples, 0.01%)</title><rect x="873.0" y="229" width="0.2" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="876.01" y="239.5" ></text> +</g> +<g > +<title>627428 (132 samples, 0.01%)</title><rect x="881.4" y="245" width="0.2" height="15.0" fill="rgb(235,145,33)" rx="2" ry="2" /> +<text x="884.40" y="255.5" ></text> +</g> +<g > +<title>/memory.stat (264 samples, 0.03%)</title><rect x="701.3" y="85" width="0.3" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="704.32" y="95.5" ></text> +</g> +<g > +<title>/5f (106 samples, 0.01%)</title><rect x="1050.1" y="149" width="0.1" height="15.0" fill="rgb(233,109,31)" rx="2" ry="2" /> +<text x="1053.09" y="159.5" ></text> +</g> +<g > +<title>enter_mmap (116 samples, 0.01%)</title><rect x="864.5" y="181" width="0.2" height="15.0" fill="rgb(240,196,39)" rx="2" ry="2" /> +<text x="867.54" y="191.5" ></text> +</g> +<g > +<title>/smaps (304 samples, 0.03%)</title><rect x="799.2" y="181" width="0.4" height="15.0" fill="rgb(243,145,42)" rx="2" ry="2" /> +<text x="802.19" y="191.5" ></text> +</g> +<g > +<title>enter_read (3,973 samples, 0.41%)</title><rect x="570.5" y="213" width="4.9" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="573.51" y="223.5" ></text> +</g> +<g > +<title>enter_fcntl (2,366 samples, 0.24%)</title><rect x="319.2" y="213" width="2.9" height="15.0" fill="rgb(233,196,30)" rx="2" ry="2" /> +<text x="322.21" y="223.5" ></text> +</g> +<g > +<title>/bin (125 samples, 0.01%)</title><rect x="674.5" y="165" width="0.2" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="677.55" y="175.5" ></text> +</g> +<g > +<title>/ce (89 samples, 0.01%)</title><rect x="1063.5" y="149" width="0.2" height="15.0" fill="rgb(245,157,44)" rx="2" ry="2" /> +<text x="1066.54" y="159.5" ></text> +</g> +<g > +<title>/sbin (549 samples, 0.06%)</title><rect x="189.9" y="197" width="0.6" height="15.0" fill="rgb(247,142,46)" rx="2" ry="2" /> +<text x="192.88" y="207.5" ></text> +</g> +<g > +<title>enter_write (918 samples, 0.09%)</title><rect x="100.2" y="181" width="1.2" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="103.23" y="191.5" ></text> +</g> +<g > +<title> (374 samples, 0.04%)</title><rect x="1038.0" y="229" width="0.4" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1040.97" y="239.5" ></text> +</g> +<g > +<title>enter_write (28,798 samples, 2.98%)</title><rect x="58.5" y="213" width="35.2" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="61.55" y="223.5" >en..</text> +</g> +<g > +<title>/org.kde.okteta (100 samples, 0.01%)</title><rect x="220.7" y="149" width="0.1" height="15.0" fill="rgb(232,149,30)" rx="2" ry="2" /> +<text x="223.65" y="159.5" ></text> +</g> +<g > +<title>app (850 samples, 0.09%)</title><rect x="297.8" y="229" width="1.0" height="15.0" fill="rgb(248,150,47)" rx="2" ry="2" /> +<text x="300.76" y="239.5" ></text> +</g> +<g > +<title>/null (116 samples, 0.01%)</title><rect x="1165.9" y="197" width="0.1" height="15.0" fill="rgb(224,145,21)" rx="2" ry="2" /> +<text x="1168.88" y="207.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Totem.slice (1,698 samples, 0.18%)</title><rect x="740.6" y="101" width="2.1" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="743.58" y="111.5" ></text> +</g> +<g > +<title> (291 samples, 0.03%)</title><rect x="868.9" y="229" width="0.3" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="871.88" y="239.5" ></text> +</g> +<g > +<title>/.. (252 samples, 0.03%)</title><rect x="1090.1" y="85" width="0.3" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1093.10" y="95.5" ></text> +</g> +<g > +<title>/video2 (289 samples, 0.03%)</title><rect x="619.6" y="197" width="0.3" height="15.0" fill="rgb(250,104,49)" rx="2" ry="2" /> +<text x="622.60" y="207.5" ></text> +</g> +<g > +<title>enter_read (140 samples, 0.01%)</title><rect x="778.3" y="165" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="781.26" y="175.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="738.1" y="69" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="741.15" y="79.5" ></text> +</g> +<g > +<title>/memory.pressure (308 samples, 0.03%)</title><rect x="695.0" y="85" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="697.98" y="95.5" ></text> +</g> +<g > +<title>627258 (225 samples, 0.02%)</title><rect x="868.1" y="245" width="0.3" height="15.0" fill="rgb(233,145,31)" rx="2" ry="2" /> +<text x="871.13" y="255.5" ></text> +</g> +<g > +<title>enter_openat (116 samples, 0.01%)</title><rect x="480.6" y="165" width="0.1" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="483.57" y="175.5" ></text> +</g> +<g > +<title>/6b (110 samples, 0.01%)</title><rect x="1051.5" y="149" width="0.1" height="15.0" fill="rgb(222,117,19)" rx="2" ry="2" /> +<text x="1054.50" y="159.5" ></text> +</g> +<g > +<title>refs (1,256 samples, 0.13%)</title><rect x="315.0" y="229" width="1.6" height="15.0" fill="rgb(239,168,37)" rx="2" ry="2" /> +<text x="318.03" y="239.5" ></text> +</g> +<g > +<title>/lib64 (157 samples, 0.02%)</title><rect x="541.3" y="213" width="0.1" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="544.25" y="223.5" ></text> +</g> +<g > +<title>enter_lseek (116 samples, 0.01%)</title><rect x="481.9" y="165" width="0.2" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="484.91" y="175.5" ></text> +</g> +<g > +<title>/memory.low (270 samples, 0.03%)</title><rect x="730.8" y="85" width="0.4" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="733.84" y="95.5" ></text> +</g> +<g > +<title>enter_newfstat (116 samples, 0.01%)</title><rect x="477.7" y="165" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="480.66" y="175.5" ></text> +</g> +<g > +<title>/memory.min (270 samples, 0.03%)</title><rect x="694.7" y="85" width="0.3" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="697.65" y="95.5" ></text> +</g> +<g > +<title>/variety (321 samples, 0.03%)</title><rect x="1144.8" y="165" width="0.3" height="15.0" fill="rgb(243,130,42)" rx="2" ry="2" /> +<text x="1147.75" y="175.5" ></text> +</g> +<g > +<title>anon_inode:[eventfd] (39,447 samples, 4.08%)</title><rect x="45.5" y="229" width="48.2" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="48.54" y="239.5" >anon..</text> +</g> +<g > +<title>/user-1001@e55e36a28c8c4cff86dc0f4aced7d563-00000000004a97d3-00061c9741dc2b6d.journal (93 samples, 0.01%)</title><rect x="1185.6" y="149" width="0.1" height="15.0" fill="rgb(229,116,27)" rx="2" ry="2" /> +<text x="1188.61" y="159.5" ></text> +</g> +<g > +<title>/var (97 samples, 0.01%)</title><rect x="776.9" y="213" width="0.1" height="15.0" fill="rgb(231,130,28)" rx="2" ry="2" /> +<text x="779.88" y="223.5" ></text> +</g> +<g > +<title>/memory.current (270 samples, 0.03%)</title><rect x="748.8" y="85" width="0.4" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="751.83" y="95.5" ></text> +</g> +<g > +<title>/Syncthing (836 samples, 0.09%)</title><rect x="782.6" y="181" width="1.0" height="15.0" fill="rgb(243,140,42)" rx="2" ry="2" /> +<text x="785.61" y="191.5" ></text> +</g> +<g > +<title>/games (111 samples, 0.01%)</title><rect x="812.6" y="181" width="0.1" height="15.0" fill="rgb(243,150,42)" rx="2" ry="2" /> +<text x="815.55" y="191.5" ></text> +</g> +<g > +<title>/15 (687 samples, 0.07%)</title><rect x="1092.3" y="149" width="0.8" height="15.0" fill="rgb(236,132,34)" rx="2" ry="2" /> +<text x="1095.26" y="159.5" ></text> +</g> +<g > +<title>/bin (555 samples, 0.06%)</title><rect x="141.5" y="165" width="0.6" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="144.46" y="175.5" ></text> +</g> +<g > +<title>/01 (82 samples, 0.01%)</title><rect x="1038.8" y="149" width="0.1" height="15.0" fill="rgb(227,150,24)" rx="2" ry="2" /> +<text x="1041.83" y="159.5" ></text> +</g> +<g > +<title>enter_newfstat (92 samples, 0.01%)</title><rect x="727.9" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="730.89" y="79.5" ></text> +</g> +<g > +<title>/paul (4,202 samples, 0.43%)</title><rect x="1076.5" y="197" width="5.1" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="1079.52" y="207.5" ></text> +</g> +<g > +<title>/memory.current (268 samples, 0.03%)</title><rect x="738.6" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="741.59" y="95.5" ></text> +</g> +<g > +<title>/lib (27,318 samples, 2.83%)</title><rect x="215.8" y="197" width="33.4" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="218.85" y="207.5" >/lib</text> +</g> +<g > +<title>/systemd (114 samples, 0.01%)</title><rect x="808.9" y="197" width="0.1" height="15.0" fill="rgb(240,145,39)" rx="2" ry="2" /> +<text x="811.88" y="207.5" ></text> +</g> +<g > +<title>/.. (186 samples, 0.02%)</title><rect x="38.7" y="117" width="0.2" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="41.67" y="127.5" ></text> +</g> +<g > +<title>627247 (2,868 samples, 0.30%)</title><rect x="864.5" y="245" width="3.5" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> +<text x="867.53" y="255.5" ></text> +</g> +<g > +<title>/system@3e0133df7b464d8ab9c8567339a7cec0-000000000055a6b4-000623cd8a044b88.journal (86 samples, 0.01%)</title><rect x="1178.8" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1181.77" y="159.5" ></text> +</g> +<g > +<title>/memory.stat (276 samples, 0.03%)</title><rect x="687.3" y="101" width="0.3" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="690.27" y="111.5" ></text> +</g> +<g > +<title>/memory.min (270 samples, 0.03%)</title><rect x="704.7" y="85" width="0.3" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="707.66" y="95.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.OnlineAccounts.slice (1,646 samples, 0.17%)</title><rect x="722.4" y="101" width="2.0" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="725.42" y="111.5" ></text> +</g> +<g > +<title> (1,366 samples, 0.14%)</title><rect x="766.3" y="229" width="1.7" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="769.32" y="239.5" ></text> +</g> +<g > +<title>/btf (1,600 samples, 0.17%)</title><rect x="881.9" y="181" width="2.0" height="15.0" fill="rgb(243,97,42)" rx="2" ry="2" /> +<text x="884.94" y="191.5" ></text> +</g> +<g > +<title>/system@000635427d1e1a61-f4fd76368ed90628.journal~ (85 samples, 0.01%)</title><rect x="1177.7" y="149" width="0.1" height="15.0" fill="rgb(233,145,31)" rx="2" ry="2" /> +<text x="1180.69" y="159.5" ></text> +</g> +<g > +<title>/dd (91 samples, 0.01%)</title><rect x="1065.3" y="149" width="0.1" height="15.0" fill="rgb(246,156,45)" rx="2" ry="2" /> +<text x="1068.32" y="159.5" ></text> +</g> +<g > +<title>enter_newfstat (90 samples, 0.01%)</title><rect x="756.4" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="759.43" y="79.5" ></text> +</g> +<g > +<title>/user-1001.journal (134 samples, 0.01%)</title><rect x="1182.7" y="149" width="0.2" height="15.0" fill="rgb(229,116,27)" rx="2" ry="2" /> +<text x="1185.69" y="159.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="693.2" y="69" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="696.25" y="79.5" ></text> +</g> +<g > +<title>626856 (17,572 samples, 1.82%)</title><rect x="808.2" y="245" width="21.5" height="15.0" fill="rgb(232,148,30)" rx="2" ry="2" /> +<text x="811.21" y="255.5" >6..</text> +</g> +<g > +<title>/7a (102 samples, 0.01%)</title><rect x="1053.3" y="149" width="0.1" height="15.0" fill="rgb(235,170,33)" rx="2" ry="2" /> +<text x="1056.28" y="159.5" ></text> +</g> +<g > +<title>627229 (965 samples, 0.10%)</title><rect x="836.2" y="245" width="1.2" height="15.0" fill="rgb(234,145,32)" rx="2" ry="2" /> +<text x="839.24" y="255.5" ></text> +</g> +<g > +<title>6931 (249 samples, 0.03%)</title><rect x="1189.7" y="245" width="0.3" height="15.0" fill="rgb(225,178,22)" rx="2" ry="2" /> +<text x="1192.68" y="255.5" ></text> +</g> +<g > +<title>/libgcc_s.so (244 samples, 0.03%)</title><rect x="1090.6" y="133" width="0.3" height="15.0" fill="rgb(240,99,39)" rx="2" ry="2" /> +<text x="1093.64" y="143.5" ></text> +</g> +<g > +<title>/a8 (105 samples, 0.01%)</title><rect x="1058.9" y="149" width="0.1" height="15.0" fill="rgb(226,102,24)" rx="2" ry="2" /> +<text x="1061.86" y="159.5" ></text> +</g> +<g > +<title>/memory.low (270 samples, 0.03%)</title><rect x="732.9" y="85" width="0.3" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="735.88" y="95.5" ></text> +</g> +<g > +<title>enter_ioctl (88 samples, 0.01%)</title><rect x="721.5" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="724.45" y="79.5" ></text> +</g> +<g > +<title> (946 samples, 0.10%)</title><rect x="836.3" y="229" width="1.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="839.25" y="239.5" ></text> +</g> +<g > +<title>enter_write (371 samples, 0.04%)</title><rect x="465.4" y="213" width="0.5" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="468.45" y="223.5" ></text> +</g> +<g > +<title>/fs (392 samples, 0.04%)</title><rect x="622.4" y="197" width="0.5" height="15.0" fill="rgb(235,136,33)" rx="2" ry="2" /> +<text x="625.40" y="207.5" ></text> +</g> +<g > +<title>/memory.current (264 samples, 0.03%)</title><rect x="734.6" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="737.60" y="95.5" ></text> +</g> +<g > +<title>enter_writev (945 samples, 0.10%)</title><rect x="547.9" y="149" width="1.2" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="550.91" y="159.5" ></text> +</g> +<g > +<title>enter_read (162 samples, 0.02%)</title><rect x="101.4" y="133" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="104.38" y="143.5" ></text> +</g> +<g > +<title>/x86_64 (175 samples, 0.02%)</title><rect x="240.5" y="133" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="243.48" y="143.5" ></text> +</g> +<g > +<title>/trashbin (238 samples, 0.02%)</title><rect x="804.3" y="149" width="0.3" height="15.0" fill="rgb(247,124,46)" rx="2" ry="2" /> +<text x="807.27" y="159.5" ></text> +</g> +<g > +<title>/ld-linux-x86-64.so.2 (107 samples, 0.01%)</title><rect x="1087.3" y="197" width="0.2" height="15.0" fill="rgb(250,115,50)" rx="2" ry="2" /> +<text x="1090.35" y="207.5" ></text> +</g> +<g > +<title>/tmp (221 samples, 0.02%)</title><rect x="1092.0" y="213" width="0.2" height="15.0" fill="rgb(234,140,32)" rx="2" ry="2" /> +<text x="1094.96" y="223.5" ></text> +</g> +<g > +<title>/share (5,752 samples, 0.60%)</title><rect x="133.7" y="165" width="7.1" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="136.75" y="175.5" ></text> +</g> +<g > +<title>/system@86a9e53687694bedae9288535300cd9c-00000000004aa505-00061c97bc2ba867.journal (95 samples, 0.01%)</title><rect x="1179.5" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1182.48" y="159.5" ></text> +</g> +<g > +<title>/system@e787b310a4d743b4a3376463d97f0ded-0000000000522ca9-000621d2b08c2088.journal (87 samples, 0.01%)</title><rect x="1182.2" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1185.20" y="159.5" ></text> +</g> +<g > +<title> (1,294 samples, 0.13%)</title><rect x="1083.0" y="229" width="1.6" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1086.04" y="239.5" ></text> +</g> +<g > +<title>/input (98 samples, 0.01%)</title><rect x="774.7" y="197" width="0.1" height="15.0" fill="rgb(234,137,31)" rx="2" ry="2" /> +<text x="777.67" y="207.5" ></text> +</g> +<g > +<title>/__pycache__ (269 samples, 0.03%)</title><rect x="1035.1" y="165" width="0.3" height="15.0" fill="rgb(235,103,33)" rx="2" ry="2" /> +<text x="1038.12" y="175.5" ></text> +</g> +<g > +<title>enter_statx (119 samples, 0.01%)</title><rect x="239.7" y="133" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> +<text x="242.74" y="143.5" ></text> +</g> +<g > +<title>/x86_64 (120 samples, 0.01%)</title><rect x="305.7" y="181" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="308.66" y="191.5" ></text> +</g> +<g > +<title>/24 (99 samples, 0.01%)</title><rect x="1043.1" y="149" width="0.1" height="15.0" fill="rgb(237,130,35)" rx="2" ry="2" /> +<text x="1046.10" y="159.5" ></text> +</g> +<g > +<title> (1,320 samples, 0.14%)</title><rect x="1091.5" y="229" width="1.6" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1094.52" y="239.5" ></text> +</g> +<g > +<title>enter_openat (121 samples, 0.01%)</title><rect x="805.0" y="181" width="0.1" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="807.98" y="191.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.evince.Daemon.slice (1,728 samples, 0.18%)</title><rect x="746.7" y="101" width="2.1" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="749.72" y="111.5" ></text> +</g> +<g > +<title>enter_newfstatat (192 samples, 0.02%)</title><rect x="812.9" y="149" width="0.2" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="815.90" y="159.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="761.7" y="85" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="764.71" y="95.5" ></text> +</g> +<g > +<title>enter_access (194 samples, 0.02%)</title><rect x="683.1" y="149" width="0.3" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="686.12" y="159.5" ></text> +</g> +<g > +<title>enter_read (7,975 samples, 0.83%)</title><rect x="785.8" y="181" width="9.8" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="788.84" y="191.5" ></text> +</g> +<g > +<title>enter_close (116 samples, 0.01%)</title><rect x="481.0" y="165" width="0.1" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="483.99" y="175.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="692.2" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="695.22" y="79.5" ></text> +</g> +<g > +<title>/memory.low (274 samples, 0.03%)</title><rect x="722.7" y="85" width="0.4" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="725.74" y="95.5" ></text> +</g> +<g > +<title>/lib (376 samples, 0.04%)</title><rect x="396.4" y="197" width="0.5" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="399.42" y="207.5" ></text> +</g> +<g > +<title>/memory.pressure (308 samples, 0.03%)</title><rect x="700.9" y="85" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="703.95" y="95.5" ></text> +</g> +<g > +<title> (215 samples, 0.02%)</title><rect x="777.0" y="229" width="0.3" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="780.05" y="239.5" ></text> +</g> +<g > +<title>enter_mmap (3,490 samples, 0.36%)</title><rect x="625.1" y="213" width="4.3" height="15.0" fill="rgb(240,196,39)" rx="2" ry="2" /> +<text x="628.12" y="223.5" ></text> +</g> +<g > +<title>enter_lseek (2,910 samples, 0.30%)</title><rect x="1108.8" y="165" width="3.6" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="1111.80" y="175.5" ></text> +</g> +<g > +<title>/36 (88 samples, 0.01%)</title><rect x="1045.3" y="149" width="0.1" height="15.0" fill="rgb(232,119,30)" rx="2" ry="2" /> +<text x="1048.26" y="159.5" ></text> +</g> +<g > +<title>/dnf (6,731 samples, 0.70%)</title><rect x="817.1" y="181" width="8.2" height="15.0" fill="rgb(248,162,48)" rx="2" ry="2" /> +<text x="820.07" y="191.5" ></text> +</g> +<g > +<title>enter_newfstat (97 samples, 0.01%)</title><rect x="1179.0" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1181.99" y="143.5" ></text> +</g> +<g > +<title>/python3.13 (1,509 samples, 0.16%)</title><rect x="1035.1" y="181" width="1.9" height="15.0" fill="rgb(240,160,39)" rx="2" ry="2" /> +<text x="1038.12" y="191.5" ></text> +</g> +<g > +<title>/f42 (139 samples, 0.01%)</title><rect x="233.3" y="117" width="0.1" height="15.0" fill="rgb(242,145,40)" rx="2" ry="2" /> +<text x="236.26" y="127.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="703.9" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="706.89" y="79.5" ></text> +</g> +<g > +<title> (2,859 samples, 0.30%)</title><rect x="797.4" y="229" width="3.5" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="800.39" y="239.5" ></text> +</g> +<g > +<title> (100 samples, 0.01%)</title><rect x="875.5" y="229" width="0.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="878.51" y="239.5" ></text> +</g> +<g > +<title>enter_fcntl (460 samples, 0.05%)</title><rect x="250.2" y="213" width="0.5" height="15.0" fill="rgb(233,196,30)" rx="2" ry="2" /> +<text x="253.15" y="223.5" ></text> +</g> +<g > +<title>627558 (198 samples, 0.02%)</title><rect x="1142.0" y="245" width="0.2" height="15.0" fill="rgb(231,145,28)" rx="2" ry="2" /> +<text x="1145.00" y="255.5" ></text> +</g> +<g > +<title>/621836 (190 samples, 0.02%)</title><rect x="798.7" y="197" width="0.3" height="15.0" fill="rgb(234,117,32)" rx="2" ry="2" /> +<text x="801.74" y="207.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="721.0" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="723.96" y="79.5" ></text> +</g> +<g > +<title>/wallpaper-clock-5d87ac737e7aa623c061e2a08c1e007d.jpg (300 samples, 0.03%)</title><rect x="1144.8" y="133" width="0.3" height="15.0" fill="rgb(240,125,39)" rx="2" ry="2" /> +<text x="1147.75" y="143.5" ></text> +</g> +<g > +<title>/exe (4,988 samples, 0.52%)</title><rect x="1096.8" y="165" width="6.1" height="15.0" fill="rgb(238,163,37)" rx="2" ry="2" /> +<text x="1099.78" y="175.5" ></text> +</g> +<g > +<title>enter_ioctl (103 samples, 0.01%)</title><rect x="45.0" y="213" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="47.99" y="223.5" ></text> +</g> +<g > +<title>/tmp (1,253 samples, 0.13%)</title><rect x="825.3" y="197" width="1.6" height="15.0" fill="rgb(234,140,32)" rx="2" ry="2" /> +<text x="828.33" y="207.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="713.2" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="716.16" y="79.5" ></text> +</g> +<g > +<title>enter_ioctl (88 samples, 0.01%)</title><rect x="719.5" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="722.46" y="79.5" ></text> +</g> +<g > +<title>/11 (146 samples, 0.02%)</title><rect x="767.0" y="165" width="0.2" height="15.0" fill="rgb(226,145,23)" rx="2" ry="2" /> +<text x="770.03" y="175.5" ></text> +</g> +<g > +<title>/org.telegram.desktop.webview.Locale (192 samples, 0.02%)</title><rect x="247.6" y="149" width="0.2" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="250.60" y="159.5" ></text> +</g> +<g > +<title>/games (3,643 samples, 0.38%)</title><rect x="392.0" y="181" width="4.4" height="15.0" fill="rgb(243,150,42)" rx="2" ry="2" /> +<text x="394.98" y="191.5" ></text> +</g> +<g > +<title>/.. (271 samples, 0.03%)</title><rect x="1087.9" y="133" width="0.4" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1090.94" y="143.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="705.6" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="708.61" y="79.5" ></text> +</g> +<g > +<title>/computers (120 samples, 0.01%)</title><rect x="332.1" y="149" width="0.2" height="15.0" fill="rgb(238,164,36)" rx="2" ry="2" /> +<text x="335.13" y="159.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="711.8" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="714.80" y="79.5" ></text> +</g> +<g > +<title>host (105 samples, 0.01%)</title><rect x="834.4" y="229" width="0.1" height="15.0" fill="rgb(236,170,35)" rx="2" ry="2" /> +<text x="837.37" y="239.5" ></text> +</g> +<g > +<title>/icons (143 samples, 0.01%)</title><rect x="215.2" y="165" width="0.1" height="15.0" fill="rgb(244,134,43)" rx="2" ry="2" /> +<text x="218.17" y="175.5" ></text> +</g> +<g > +<title>/etc (292 samples, 0.03%)</title><rect x="797.4" y="213" width="0.3" height="15.0" fill="rgb(229,138,26)" rx="2" ry="2" /> +<text x="800.39" y="223.5" ></text> +</g> +<g > +<title>/app.slice (98 samples, 0.01%)</title><rect x="462.1" y="117" width="0.1" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="465.07" y="127.5" ></text> +</g> +<g > +<title>/paul (128 samples, 0.01%)</title><rect x="331.4" y="197" width="0.2" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="334.45" y="207.5" ></text> +</g> +<g > +<title>/ld-linux-x86-64.so.2 (107 samples, 0.01%)</title><rect x="1085.2" y="197" width="0.1" height="15.0" fill="rgb(250,115,50)" rx="2" ry="2" /> +<text x="1088.20" y="207.5" ></text> +</g> +<g > +<title>627246 (2,649 samples, 0.27%)</title><rect x="861.3" y="245" width="3.2" height="15.0" fill="rgb(237,145,36)" rx="2" ry="2" /> +<text x="864.30" y="255.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="754.9" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="757.88" y="79.5" ></text> +</g> +<g > +<title>/memory.pressure (322 samples, 0.03%)</title><rect x="707.1" y="85" width="0.3" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="710.06" y="95.5" ></text> +</g> +<g > +<title>/a4 (103 samples, 0.01%)</title><rect x="1058.4" y="149" width="0.1" height="15.0" fill="rgb(233,115,31)" rx="2" ry="2" /> +<text x="1061.40" y="159.5" ></text> +</g> +<g > +<title>/lib (213 samples, 0.02%)</title><rect x="38.7" y="197" width="0.2" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="41.67" y="207.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="688.5" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="691.50" y="79.5" ></text> +</g> +<g > +<title>/usr (128 samples, 0.01%)</title><rect x="800.7" y="213" width="0.1" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="803.69" y="223.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="739.5" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="742.45" y="79.5" ></text> +</g> +<g > +<title>/bin (222 samples, 0.02%)</title><rect x="36.6" y="181" width="0.3" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="39.60" y="191.5" ></text> +</g> +<g > +<title>socket:[75438] (1,106 samples, 0.11%)</title><rect x="443.1" y="229" width="1.4" height="15.0" fill="rgb(246,175,45)" rx="2" ry="2" /> +<text x="446.12" y="239.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="693.6" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="696.57" y="79.5" ></text> +</g> +<g > +<title>/libnss_systemd.so.2 (82 samples, 0.01%)</title><rect x="775.8" y="197" width="0.1" height="15.0" fill="rgb(250,99,50)" rx="2" ry="2" /> +<text x="778.85" y="207.5" ></text> +</g> +<g > +<title>enter_ioctl (91 samples, 0.01%)</title><rect x="745.7" y="69" width="0.2" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="748.74" y="79.5" ></text> +</g> +<g > +<title>/626856 (116 samples, 0.01%)</title><rect x="682.8" y="197" width="0.2" height="15.0" fill="rgb(232,117,30)" rx="2" ry="2" /> +<text x="685.82" y="207.5" ></text> +</g> +<g > +<title>/5e (112 samples, 0.01%)</title><rect x="1049.9" y="149" width="0.2" height="15.0" fill="rgb(235,112,33)" rx="2" ry="2" /> +<text x="1052.95" y="159.5" ></text> +</g> +<g > +<title>/2615d2a547cc54efe24be66a5b3746d6a75e57b808e5423a5cd7cbae0d5dbc41-d (515 samples, 0.05%)</title><rect x="1077.2" y="133" width="0.6" height="15.0" fill="rgb(253,124,53)" rx="2" ry="2" /> +<text x="1080.22" y="143.5" ></text> +</g> +<g > +<title>/smaps (128 samples, 0.01%)</title><rect x="799.9" y="181" width="0.1" height="15.0" fill="rgb(243,145,42)" rx="2" ry="2" /> +<text x="802.88" y="191.5" ></text> +</g> +<g > +<title>627411 (590 samples, 0.06%)</title><rect x="880.1" y="245" width="0.7" height="15.0" fill="rgb(231,145,28)" rx="2" ry="2" /> +<text x="883.06" y="255.5" ></text> +</g> +<g > +<title>/memory.pressure (308 samples, 0.03%)</title><rect x="719.4" y="85" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="722.40" y="95.5" ></text> +</g> +<g > +<title>/org.freedesktop.Platform.VAAPI.Intel (102 samples, 0.01%)</title><rect x="304.5" y="197" width="0.2" height="15.0" fill="rgb(233,149,31)" rx="2" ry="2" /> +<text x="307.53" y="207.5" ></text> +</g> +<g > +<title>/memory.stat (276 samples, 0.03%)</title><rect x="711.6" y="85" width="0.3" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="714.57" y="95.5" ></text> +</g> +<g > +<title>/org.freedesktop.Platform (103 samples, 0.01%)</title><rect x="305.0" y="197" width="0.1" height="15.0" fill="rgb(232,149,30)" rx="2" ry="2" /> +<text x="308.02" y="207.5" ></text> +</g> +<g > +<title>enter_newfstat (88 samples, 0.01%)</title><rect x="723.8" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="726.84" y="79.5" ></text> +</g> +<g > +<title>enter_read (126 samples, 0.01%)</title><rect x="799.7" y="165" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="802.73" y="175.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="702.8" y="69" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="705.85" y="79.5" ></text> +</g> +<g > +<title>/lib (10,301 samples, 1.07%)</title><rect x="812.8" y="197" width="12.5" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="815.76" y="207.5" ></text> +</g> +<g > +<title>/x86_64-redhat-linux (35,344 samples, 3.66%)</title><rect x="145.3" y="165" width="43.2" height="15.0" fill="rgb(245,97,45)" rx="2" ry="2" /> +<text x="148.33" y="175.5" >/x86..</text> +</g> +<g > +<title>/bin (228 samples, 0.02%)</title><rect x="35.4" y="165" width="0.3" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="38.45" y="175.5" ></text> +</g> +<g > +<title>/625663 (140 samples, 0.01%)</title><rect x="447.9" y="197" width="0.1" height="15.0" fill="rgb(238,117,36)" rx="2" ry="2" /> +<text x="450.88" y="207.5" ></text> +</g> +<g > +<title>/gi (222 samples, 0.02%)</title><rect x="1036.5" y="149" width="0.3" height="15.0" fill="rgb(234,124,32)" rx="2" ry="2" /> +<text x="1039.53" y="159.5" ></text> +</g> +<g > +<title>/memory.swap.current (264 samples, 0.03%)</title><rect x="695.7" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="698.68" y="95.5" ></text> +</g> +<g > +<title>enter_write (111 samples, 0.01%)</title><rect x="805.7" y="213" width="0.1" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="808.70" y="223.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="761.0" y="85" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="764.05" y="95.5" ></text> +</g> +<g > +<title>/9f (97 samples, 0.01%)</title><rect x="1057.8" y="149" width="0.1" height="15.0" fill="rgb(241,144,40)" rx="2" ry="2" /> +<text x="1060.76" y="159.5" ></text> +</g> +<g > +<title>enter_read (170 samples, 0.02%)</title><rect x="99.0" y="149" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="101.99" y="159.5" ></text> +</g> +<g > +<title>enter_newfstat (87 samples, 0.01%)</title><rect x="1177.3" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1180.26" y="143.5" ></text> +</g> +<g > +<title>/log (3,933 samples, 0.41%)</title><rect x="769.5" y="197" width="4.8" height="15.0" fill="rgb(248,118,48)" rx="2" ry="2" /> +<text x="772.50" y="207.5" ></text> +</g> +<g > +<title>enter_openat (116 samples, 0.01%)</title><rect x="477.8" y="165" width="0.1" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="480.81" y="175.5" ></text> +</g> +<g > +<title>/net (106 samples, 0.01%)</title><rect x="1072.3" y="149" width="0.1" height="15.0" fill="rgb(240,157,39)" rx="2" ry="2" /> +<text x="1075.30" y="159.5" ></text> +</g> +<g > +<title>enter_fcntl (503 samples, 0.05%)</title><rect x="678.3" y="213" width="0.6" height="15.0" fill="rgb(233,196,30)" rx="2" ry="2" /> +<text x="681.31" y="223.5" ></text> +</g> +<g > +<title>/d6 (120 samples, 0.01%)</title><rect x="1064.5" y="149" width="0.1" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="1067.46" y="159.5" ></text> +</g> +<g > +<title>/user-1001@d867e76fe845443eb32f8efe355ef876-00000000004df249-00061efde1b077e9.journal (91 samples, 0.01%)</title><rect x="1185.5" y="149" width="0.1" height="15.0" fill="rgb(229,116,27)" rx="2" ry="2" /> +<text x="1188.50" y="159.5" ></text> +</g> +<g > +<title>enter_write (8,352 samples, 0.86%)</title><rect x="560.3" y="213" width="10.2" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="563.31" y="223.5" ></text> +</g> +<g > +<title>/usr (128 samples, 0.01%)</title><rect x="681.1" y="213" width="0.2" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="684.15" y="223.5" ></text> +</g> +<g > +<title>/3a (102 samples, 0.01%)</title><rect x="1045.7" y="149" width="0.2" height="15.0" fill="rgb(227,135,24)" rx="2" ry="2" /> +<text x="1048.73" y="159.5" ></text> +</g> +<g > +<title>/memory.pressure (308 samples, 0.03%)</title><rect x="737.6" y="85" width="0.3" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="740.56" y="95.5" ></text> +</g> +<g > +<title>/user-1001@fff69b6456c64fb7a42fde8404e90fa0-00000000004cf249-00061dc3b7ab6a51.journal (95 samples, 0.01%)</title><rect x="1185.9" y="149" width="0.1" height="15.0" fill="rgb(229,116,27)" rx="2" ry="2" /> +<text x="1188.90" y="159.5" ></text> +</g> +<g > +<title>/b0 (93 samples, 0.01%)</title><rect x="1059.8" y="149" width="0.1" height="15.0" fill="rgb(222,123,19)" rx="2" ry="2" /> +<text x="1062.83" y="159.5" ></text> +</g> +<g > +<title>625681 (152 samples, 0.02%)</title><rect x="806.6" y="245" width="0.1" height="15.0" fill="rgb(234,151,31)" rx="2" ry="2" /> +<text x="809.55" y="255.5" ></text> +</g> +<g > +<title>/asyncio (357 samples, 0.04%)</title><rect x="1035.5" y="165" width="0.4" height="15.0" fill="rgb(244,106,43)" rx="2" ry="2" /> +<text x="1038.45" y="175.5" ></text> +</g> +<g > +<title>/site-packages (266 samples, 0.03%)</title><rect x="1036.5" y="165" width="0.3" height="15.0" fill="rgb(239,119,37)" rx="2" ry="2" /> +<text x="1039.50" y="175.5" ></text> +</g> +<g > +<title>mx.pwmc.Svgvi.Locale (93 samples, 0.01%)</title><rect x="309.0" y="229" width="0.1" height="15.0" fill="rgb(242,75,41)" rx="2" ry="2" /> +<text x="311.99" y="239.5" ></text> +</g> +<g > +<title>/proc (93 samples, 0.01%)</title><rect x="142.9" y="213" width="0.1" height="15.0" fill="rgb(234,144,31)" rx="2" ry="2" /> +<text x="145.86" y="223.5" ></text> +</g> +<g > +<title>enter_close (775 samples, 0.08%)</title><rect x="249.2" y="213" width="1.0" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="252.20" y="223.5" ></text> +</g> +<g > +<title>enter_fcntl (87 samples, 0.01%)</title><rect x="826.9" y="213" width="0.1" height="15.0" fill="rgb(233,196,30)" rx="2" ry="2" /> +<text x="829.94" y="223.5" ></text> +</g> +<g > +<title> (84 samples, 0.01%)</title><rect x="875.7" y="229" width="0.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="878.68" y="239.5" ></text> +</g> +<g > +<title>/share (754 samples, 0.08%)</title><rect x="674.8" y="165" width="0.9" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="677.77" y="175.5" ></text> +</g> +<g > +<title>/64x64 (241 samples, 0.02%)</title><rect x="221.4" y="85" width="0.3" height="15.0" fill="rgb(240,110,39)" rx="2" ry="2" /> +<text x="224.41" y="95.5" ></text> +</g> +<g > +<title>/system@00062efc1a2cd2c7-88f56335c97a852d.journal~ (87 samples, 0.01%)</title><rect x="1177.2" y="149" width="0.1" height="15.0" fill="rgb(233,145,31)" rx="2" ry="2" /> +<text x="1180.16" y="159.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="749.1" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="752.05" y="79.5" ></text> +</g> +<g > +<title>/paul (758 samples, 0.08%)</title><rect x="871.6" y="197" width="0.9" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="874.57" y="207.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="709.4" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="712.39" y="79.5" ></text> +</g> +<g > +<title>/x86_64 (108 samples, 0.01%)</title><rect x="305.8" y="181" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="308.81" y="191.5" ></text> +</g> +<g > +<title>enter_statx (848 samples, 0.09%)</title><rect x="253.2" y="213" width="1.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> +<text x="256.23" y="223.5" ></text> +</g> +<g > +<title>enter_writev (30,584 samples, 3.16%)</title><rect x="580.3" y="213" width="37.3" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="583.29" y="223.5" >ent..</text> +</g> +<g > +<title>io.freetubeapp.FreeTube (97 samples, 0.01%)</title><rect x="307.6" y="229" width="0.1" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" /> +<text x="310.58" y="239.5" ></text> +</g> +<g > +<title>/null (112 samples, 0.01%)</title><rect x="1093.6" y="197" width="0.1" height="15.0" fill="rgb(224,145,21)" rx="2" ry="2" /> +<text x="1096.59" y="207.5" ></text> +</g> +<g > +<title>enter_newfstat (90 samples, 0.01%)</title><rect x="689.4" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="692.38" y="79.5" ></text> +</g> +<g > +<title>/memory.swap.current (276 samples, 0.03%)</title><rect x="765.0" y="101" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="767.96" y="111.5" ></text> +</g> +<g > +<title>/flathub (649 samples, 0.07%)</title><rect x="221.1" y="149" width="0.8" height="15.0" fill="rgb(227,158,25)" rx="2" ry="2" /> +<text x="224.14" y="159.5" ></text> +</g> +<g > +<title>/go-build480028031 (4,990 samples, 0.52%)</title><rect x="1096.8" y="197" width="6.1" height="15.0" fill="rgb(231,144,29)" rx="2" ry="2" /> +<text x="1099.78" y="207.5" ></text> +</g> +<g > +<title>/lib (384 samples, 0.04%)</title><rect x="42.3" y="197" width="0.5" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="45.28" y="207.5" ></text> +</g> +<g > +<title>/78 (107 samples, 0.01%)</title><rect x="1053.0" y="149" width="0.2" height="15.0" fill="rgb(236,148,35)" rx="2" ry="2" /> +<text x="1056.04" y="159.5" ></text> +</g> +<g > +<title>/org.fedoraproject.Platform.VAAPI.Intel (173 samples, 0.02%)</title><rect x="233.8" y="149" width="0.2" height="15.0" fill="rgb(233,149,31)" rx="2" ry="2" /> +<text x="236.83" y="159.5" ></text> +</g> +<g > +<title>enter_mmap (102 samples, 0.01%)</title><rect x="837.3" y="213" width="0.1" height="15.0" fill="rgb(240,196,39)" rx="2" ry="2" /> +<text x="840.28" y="223.5" ></text> +</g> +<g > +<title>enter_newfstat (95 samples, 0.01%)</title><rect x="1185.9" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1188.90" y="143.5" ></text> +</g> +<g > +<title>/.. (101 samples, 0.01%)</title><rect x="676.8" y="101" width="0.1" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="679.82" y="111.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="749.4" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="752.38" y="79.5" ></text> +</g> +<g > +<title>/c9 (102 samples, 0.01%)</title><rect x="1063.0" y="149" width="0.1" height="15.0" fill="rgb(235,145,33)" rx="2" ry="2" /> +<text x="1065.97" y="159.5" ></text> +</g> +<g > +<title>/8e (96 samples, 0.01%)</title><rect x="1055.8" y="149" width="0.1" height="15.0" fill="rgb(244,152,43)" rx="2" ry="2" /> +<text x="1058.76" y="159.5" ></text> +</g> +<g > +<title>socket:[1151257] (88 samples, 0.01%)</title><rect x="397.8" y="229" width="0.1" height="15.0" fill="rgb(246,175,45)" rx="2" ry="2" /> +<text x="400.77" y="239.5" ></text> +</g> +<g > +<title>/memory.min (270 samples, 0.03%)</title><rect x="688.6" y="85" width="0.3" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="691.61" y="95.5" ></text> +</g> +<g > +<title>enter_lseek (196 samples, 0.02%)</title><rect x="1084.3" y="117" width="0.2" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="1087.30" y="127.5" ></text> +</g> +<g > +<title>/000050.o (87 samples, 0.01%)</title><rect x="1106.2" y="181" width="0.1" height="15.0" fill="rgb(251,153,50)" rx="2" ry="2" /> +<text x="1109.22" y="191.5" ></text> +</g> +<g > +<title>/1c (86 samples, 0.01%)</title><rect x="1042.1" y="149" width="0.1" height="15.0" fill="rgb(226,139,23)" rx="2" ry="2" /> +<text x="1045.08" y="159.5" ></text> +</g> +<g > +<title>enter_close (116 samples, 0.01%)</title><rect x="478.2" y="165" width="0.2" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="481.23" y="175.5" ></text> +</g> +<g > +<title>/0a (94 samples, 0.01%)</title><rect x="1039.9" y="149" width="0.1" height="15.0" fill="rgb(230,150,28)" rx="2" ry="2" /> +<text x="1042.93" y="159.5" ></text> +</g> +<g > +<title>/usr (22,223 samples, 2.30%)</title><rect x="1114.7" y="213" width="27.1" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="1117.68" y="223.5" >/..</text> +</g> +<g > +<title>/memory.current (276 samples, 0.03%)</title><rect x="763.2" y="101" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="766.20" y="111.5" ></text> +</g> +<g > +<title>5271 (425 samples, 0.04%)</title><rect x="775.8" y="245" width="0.6" height="15.0" fill="rgb(237,153,36)" rx="2" ry="2" /> +<text x="778.85" y="255.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="756.9" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="759.92" y="79.5" ></text> +</g> +<g > +<title>/92 (114 samples, 0.01%)</title><rect x="1056.2" y="149" width="0.2" height="15.0" fill="rgb(245,157,44)" rx="2" ry="2" /> +<text x="1059.25" y="159.5" ></text> +</g> +<g > +<title>10887 (172,389 samples, 17.84%)</title><rect x="117.4" y="245" width="210.5" height="15.0" fill="rgb(239,112,38)" rx="2" ry="2" /> +<text x="120.43" y="255.5" >10887</text> +</g> +<g > +<title>enter_ioctl (130 samples, 0.01%)</title><rect x="446.8" y="165" width="0.2" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="449.84" y="175.5" ></text> +</g> +<g > +<title>/a3 (82 samples, 0.01%)</title><rect x="1058.3" y="149" width="0.1" height="15.0" fill="rgb(235,118,33)" rx="2" ry="2" /> +<text x="1061.30" y="159.5" ></text> +</g> +<g > +<title>enter_read (837 samples, 0.09%)</title><rect x="28.7" y="165" width="1.0" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="31.73" y="175.5" ></text> +</g> +<g > +<title>/share (16,635 samples, 1.72%)</title><rect x="1145.4" y="197" width="20.3" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="1148.40" y="207.5" ></text> +</g> +<g > +<title>/system@c4761a27c8514e1fbb7c5fc6bfca8b84-000000000050a03b-000620e0f0532dca.journal (88 samples, 0.01%)</title><rect x="1180.4" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1183.43" y="159.5" ></text> +</g> +<g > +<title>enter_newfstat (92 samples, 0.01%)</title><rect x="758.5" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="761.50" y="79.5" ></text> +</g> +<g > +<title>/system@d62e597f0e2949bda5784759a1e3ccf2-000000000079a36a-000631059abda021.journal (85 samples, 0.01%)</title><rect x="1181.5" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1184.46" y="159.5" ></text> +</g> +<g > +<title>/45 (90 samples, 0.01%)</title><rect x="242.9" y="117" width="0.1" height="15.0" fill="rgb(233,117,31)" rx="2" ry="2" /> +<text x="245.86" y="127.5" ></text> +</g> +<g > +<title>/home (243 samples, 0.03%)</title><rect x="865.3" y="213" width="0.3" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="868.29" y="223.5" ></text> +</g> +<g > +<title>/local (437 samples, 0.05%)</title><rect x="38.9" y="197" width="0.6" height="15.0" fill="rgb(229,118,26)" rx="2" ry="2" /> +<text x="41.93" y="207.5" ></text> +</g> +<g > +<title>/26 (541 samples, 0.06%)</title><rect x="1077.2" y="149" width="0.7" height="15.0" fill="rgb(233,124,31)" rx="2" ry="2" /> +<text x="1080.22" y="159.5" ></text> +</g> +<g > +<title> (101 samples, 0.01%)</title><rect x="1142.1" y="229" width="0.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1145.12" y="239.5" ></text> +</g> +<g > +<title>/usr (16,795 samples, 1.74%)</title><rect x="840.4" y="213" width="20.6" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="843.45" y="223.5" ></text> +</g> +<g > +<title>/usr (731 samples, 0.08%)</title><rect x="1090.1" y="213" width="0.9" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="1093.07" y="223.5" ></text> +</g> +<g > +<title>enter_read (581 samples, 0.06%)</title><rect x="252.5" y="213" width="0.7" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="255.52" y="223.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="716.0" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="718.96" y="79.5" ></text> +</g> +<g > +<title>/memory.min (276 samples, 0.03%)</title><rect x="712.9" y="85" width="0.4" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="715.94" y="95.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="686.8" y="85" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="689.78" y="95.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="762.8" y="85" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="765.76" y="95.5" ></text> +</g> +<g > +<title>enter_ioctl (92 samples, 0.01%)</title><rect x="747.8" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="750.80" y="79.5" ></text> +</g> +<g > +<title>/libelf.a (3,345 samples, 0.35%)</title><rect x="1135.1" y="53" width="4.1" height="15.0" fill="rgb(236,99,34)" rx="2" ry="2" /> +<text x="1138.14" y="63.5" ></text> +</g> +<g > +<title>io.github.kotatogram.Locale (104 samples, 0.01%)</title><rect x="308.0" y="229" width="0.2" height="15.0" fill="rgb(242,152,41)" rx="2" ry="2" /> +<text x="311.03" y="239.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Weather.slice (1,678 samples, 0.17%)</title><rect x="742.7" y="101" width="2.0" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="745.65" y="111.5" ></text> +</g> +<g > +<title>/org.gnome.Platform (158 samples, 0.02%)</title><rect x="305.5" y="197" width="0.2" height="15.0" fill="rgb(232,149,30)" rx="2" ry="2" /> +<text x="308.47" y="207.5" ></text> +</g> +<g > +<title>enter_read (631 samples, 0.07%)</title><rect x="546.3" y="133" width="0.7" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="549.26" y="143.5" ></text> +</g> +<g > +<title>enter_read (1,132 samples, 0.12%)</title><rect x="1095.3" y="69" width="1.4" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="1098.32" y="79.5" ></text> +</g> +<g > +<title>socket:[1153176] (236 samples, 0.02%)</title><rect x="673.3" y="229" width="0.2" height="15.0" fill="rgb(233,175,31)" rx="2" ry="2" /> +<text x="676.26" y="239.5" ></text> +</g> +<g > +<title>/x86_64 (107 samples, 0.01%)</title><rect x="304.7" y="181" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="307.65" y="191.5" ></text> +</g> +<g > +<title>/home (154 samples, 0.02%)</title><rect x="1170.1" y="213" width="0.2" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="1173.07" y="223.5" ></text> +</g> +<g > +<title>enter_read (93 samples, 0.01%)</title><rect x="1186.5" y="213" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="1189.46" y="223.5" ></text> +</g> +<g > +<title>enter_read (232 samples, 0.02%)</title><rect x="478.9" y="165" width="0.3" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="481.94" y="175.5" ></text> +</g> +<g > +<title>enter_write (96 samples, 0.01%)</title><rect x="679.9" y="213" width="0.1" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="682.92" y="223.5" ></text> +</g> +<g > +<title>enter_read (1,919 samples, 0.20%)</title><rect x="30.5" y="165" width="2.3" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="33.49" y="175.5" ></text> +</g> +<g > +<title>/null (104 samples, 0.01%)</title><rect x="861.3" y="197" width="0.1" height="15.0" fill="rgb(224,145,21)" rx="2" ry="2" /> +<text x="864.30" y="207.5" ></text> +</g> +<g > +<title>/poll (85 samples, 0.01%)</title><rect x="1072.1" y="133" width="0.1" height="15.0" fill="rgb(229,154,26)" rx="2" ry="2" /> +<text x="1075.06" y="143.5" ></text> +</g> +<g > +<title>/dri (42,516 samples, 4.40%)</title><rect x="489.3" y="197" width="51.9" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="492.28" y="207.5" >/dri</text> +</g> +<g > +<title>/home (587 samples, 0.06%)</title><rect x="116.3" y="213" width="0.7" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="119.30" y="223.5" ></text> +</g> +<g > +<title>enter_newfstat (89 samples, 0.01%)</title><rect x="1185.7" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1188.72" y="143.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.freedesktop.problems.applet.slice (1,628 samples, 0.17%)</title><rect x="700.0" y="101" width="2.0" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="702.98" y="111.5" ></text> +</g> +<g > +<title>/system@d62e597f0e2949bda5784759a1e3ccf2-0000000000753235-00062fd0775f73a6.journal (89 samples, 0.01%)</title><rect x="1181.2" y="149" width="0.2" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1184.24" y="159.5" ></text> +</g> +<g > +<title>run (145 samples, 0.02%)</title><rect x="832.0" y="229" width="0.1" height="15.0" fill="rgb(243,156,41)" rx="2" ry="2" /> +<text x="834.95" y="239.5" ></text> +</g> +<g > +<title>/lib64 (252 samples, 0.03%)</title><rect x="1092.3" y="69" width="0.3" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="1095.26" y="79.5" ></text> +</g> +<g > +<title>/breeze-dark (314 samples, 0.03%)</title><rect x="795.6" y="149" width="0.4" height="15.0" fill="rgb(237,104,35)" rx="2" ry="2" /> +<text x="798.59" y="159.5" ></text> +</g> +<g > +<title>/golang (2,006 samples, 0.21%)</title><rect x="1071.8" y="181" width="2.5" height="15.0" fill="rgb(249,144,48)" rx="2" ry="2" /> +<text x="1074.82" y="191.5" ></text> +</g> +<g > +<title>enter_read (232 samples, 0.02%)</title><rect x="484.5" y="165" width="0.3" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="487.53" y="175.5" ></text> +</g> +<g > +<title>/memory.low (270 samples, 0.03%)</title><rect x="736.9" y="85" width="0.3" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="739.91" y="95.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="719.3" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="722.30" y="79.5" ></text> +</g> +<g > +<title>/memory.low (270 samples, 0.03%)</title><rect x="753.3" y="85" width="0.3" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="756.28" y="95.5" ></text> +</g> +<g > +<title>/objects (176 samples, 0.02%)</title><rect x="873.7" y="213" width="0.2" height="15.0" fill="rgb(237,162,35)" rx="2" ry="2" /> +<text x="876.71" y="223.5" ></text> +</g> +<g > +<title>org.freedesktop.Platform.Locale (164 samples, 0.02%)</title><rect x="310.8" y="229" width="0.2" height="15.0" fill="rgb(242,179,41)" rx="2" ry="2" /> +<text x="313.85" y="239.5" ></text> +</g> +<g > +<title>/org.gnome.Music (123 samples, 0.01%)</title><rect x="219.7" y="149" width="0.2" height="15.0" fill="rgb(227,149,25)" rx="2" ry="2" /> +<text x="222.73" y="159.5" ></text> +</g> +<g > +<title>/memory.swap.current (264 samples, 0.03%)</title><rect x="720.1" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="723.10" y="95.5" ></text> +</g> +<g > +<title>/b9 (98 samples, 0.01%)</title><rect x="1060.9" y="149" width="0.1" height="15.0" fill="rgb(224,94,21)" rx="2" ry="2" /> +<text x="1063.91" y="159.5" ></text> +</g> +<g > +<title>625422 (116 samples, 0.01%)</title><rect x="803.9" y="245" width="0.1" height="15.0" fill="rgb(245,151,44)" rx="2" ry="2" /> +<text x="806.90" y="255.5" ></text> +</g> +<g > +<title> (14,499 samples, 1.50%)</title><rect x="448.2" y="229" width="17.7" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="451.20" y="239.5" ></text> +</g> +<g > +<title>/paul (26,504 samples, 2.74%)</title><rect x="1038.7" y="197" width="32.4" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="1041.73" y="207.5" >/p..</text> +</g> +<g > +<title>/c0 (99 samples, 0.01%)</title><rect x="1061.8" y="149" width="0.1" height="15.0" fill="rgb(233,173,31)" rx="2" ry="2" /> +<text x="1064.82" y="159.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="751.4" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="754.44" y="79.5" ></text> +</g> +<g > +<title>/wallpaper (114 samples, 0.01%)</title><rect x="36.4" y="149" width="0.1" height="15.0" fill="rgb(243,125,41)" rx="2" ry="2" /> +<text x="39.40" y="159.5" ></text> +</g> +<g > +<title>enter_readlink (88 samples, 0.01%)</title><rect x="1114.6" y="197" width="0.1" height="15.0" fill="rgb(236,196,34)" rx="2" ry="2" /> +<text x="1117.57" y="207.5" ></text> +</g> +<g > +<title>/transactions.db-journal (634 samples, 0.07%)</title><rect x="812.8" y="165" width="0.7" height="15.0" fill="rgb(229,124,27)" rx="2" ry="2" /> +<text x="815.76" y="175.5" ></text> +</g> +<g > +<title>/proc (114 samples, 0.01%)</title><rect x="445.3" y="213" width="0.2" height="15.0" fill="rgb(234,144,31)" rx="2" ry="2" /> +<text x="448.34" y="223.5" ></text> +</g> +<g > +<title>/memory.current (276 samples, 0.03%)</title><rect x="742.7" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="745.65" y="95.5" ></text> +</g> +<g > +<title>/kernel (245 samples, 0.03%)</title><rect x="1189.7" y="197" width="0.3" height="15.0" fill="rgb(237,117,35)" rx="2" ry="2" /> +<text x="1192.68" y="207.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="763.8" y="85" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="766.76" y="95.5" ></text> +</g> +<g > +<title>/memory.current (276 samples, 0.03%)</title><rect x="708.1" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="711.11" y="95.5" ></text> +</g> +<g > +<title>/memory.stat (264 samples, 0.03%)</title><rect x="729.9" y="85" width="0.3" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="732.85" y="95.5" ></text> +</g> +<g > +<title> (876 samples, 0.09%)</title><rect x="835.2" y="229" width="1.0" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="838.17" y="239.5" ></text> +</g> +<g > +<title>/runtime (580 samples, 0.06%)</title><rect x="315.8" y="181" width="0.7" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" /> +<text x="318.82" y="191.5" ></text> +</g> +<g > +<title>enter_newfstat (85 samples, 0.01%)</title><rect x="1181.5" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1184.46" y="143.5" ></text> +</g> +<g > +<title>/scripts (125 samples, 0.01%)</title><rect x="676.4" y="181" width="0.2" height="15.0" fill="rgb(236,139,35)" rx="2" ry="2" /> +<text x="679.40" y="191.5" ></text> +</g> +<g > +<title>io.github.ktgw0316.LightZone (101 samples, 0.01%)</title><rect x="308.3" y="229" width="0.1" height="15.0" fill="rgb(251,152,50)" rx="2" ry="2" /> +<text x="311.26" y="239.5" ></text> +</g> +<g > +<title>/ior (317 samples, 0.03%)</title><rect x="675.9" y="165" width="0.4" height="15.0" fill="rgb(240,134,39)" rx="2" ry="2" /> +<text x="678.86" y="175.5" ></text> +</g> +<g > +<title>/x86_64-redhat-linux (695 samples, 0.07%)</title><rect x="1087.9" y="165" width="0.9" height="15.0" fill="rgb(245,97,45)" rx="2" ry="2" /> +<text x="1090.94" y="175.5" ></text> +</g> +<g > +<title>/org.gnome.Epiphany (97 samples, 0.01%)</title><rect x="219.3" y="149" width="0.1" height="15.0" fill="rgb(252,149,52)" rx="2" ry="2" /> +<text x="222.33" y="159.5" ></text> +</g> +<g > +<title>/memory.pressure (315 samples, 0.03%)</title><rect x="684.8" y="149" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="687.84" y="159.5" ></text> +</g> +<g > +<title>/system.journal (131 samples, 0.01%)</title><rect x="1176.2" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1179.19" y="159.5" ></text> +</g> +<g > +<title>socket:[74107] (261 samples, 0.03%)</title><rect x="98.5" y="229" width="0.3" height="15.0" fill="rgb(249,175,49)" rx="2" ry="2" /> +<text x="101.52" y="239.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="706.9" y="69" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="709.94" y="79.5" ></text> +</g> +<g > +<title>enter_lseek (98 samples, 0.01%)</title><rect x="1086.1" y="37" width="0.1" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="1089.06" y="47.5" ></text> +</g> +<g > +<title>x86_64 (8,254 samples, 0.85%)</title><rect x="317.9" y="229" width="10.0" height="15.0" fill="rgb(232,205,30)" rx="2" ry="2" /> +<text x="320.86" y="239.5" ></text> +</g> +<g > +<title>/etc (465 samples, 0.05%)</title><rect x="861.4" y="213" width="0.6" height="15.0" fill="rgb(229,138,26)" rx="2" ry="2" /> +<text x="864.43" y="223.5" ></text> +</g> +<g > +<title>/libnss_systemd.so.2 (432 samples, 0.04%)</title><rect x="331.6" y="197" width="0.5" height="15.0" fill="rgb(250,99,50)" rx="2" ry="2" /> +<text x="334.60" y="207.5" ></text> +</g> +<g > +<title>/bin (125 samples, 0.01%)</title><rect x="675.7" y="181" width="0.1" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="678.69" y="191.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="721.7" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="724.67" y="79.5" ></text> +</g> +<g > +<title>/status (638 samples, 0.07%)</title><rect x="479.2" y="181" width="0.8" height="15.0" fill="rgb(233,122,30)" rx="2" ry="2" /> +<text x="482.22" y="191.5" ></text> +</g> +<g > +<title>/omf (661 samples, 0.07%)</title><rect x="674.9" y="149" width="0.8" height="15.0" fill="rgb(238,165,36)" rx="2" ry="2" /> +<text x="677.88" y="159.5" ></text> +</g> +<g > +<title>/memory.stat (282 samples, 0.03%)</title><rect x="764.6" y="101" width="0.4" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="767.62" y="111.5" ></text> +</g> +<g > +<title>/f9 (109 samples, 0.01%)</title><rect x="1068.7" y="149" width="0.2" height="15.0" fill="rgb(231,129,29)" rx="2" ry="2" /> +<text x="1071.74" y="159.5" ></text> +</g> +<g > +<title>/84 (94 samples, 0.01%)</title><rect x="1054.5" y="149" width="0.1" height="15.0" fill="rgb(242,156,41)" rx="2" ry="2" /> +<text x="1057.51" y="159.5" ></text> +</g> +<g > +<title>enter_read (94 samples, 0.01%)</title><rect x="713.6" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="716.56" y="79.5" ></text> +</g> +<g > +<title>pipe:[1151203] (8,008 samples, 0.83%)</title><rect x="570.5" y="229" width="9.8" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" /> +<text x="573.51" y="239.5" ></text> +</g> +<g > +<title>enter_write (255 samples, 0.03%)</title><rect x="101.6" y="133" width="0.3" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="104.58" y="143.5" ></text> +</g> +<g > +<title>vmlinux.h (123,498 samples, 12.78%)</title><rect x="883.9" y="229" width="150.8" height="15.0" fill="rgb(245,115,44)" rx="2" ry="2" /> +<text x="886.94" y="239.5" >vmlinux.h</text> +</g> +<g > +<title>/users (114 samples, 0.01%)</title><rect x="808.9" y="181" width="0.1" height="15.0" fill="rgb(238,116,36)" rx="2" ry="2" /> +<text x="811.88" y="191.5" ></text> +</g> +<g > +<title>enter_newfstatat (340 samples, 0.04%)</title><rect x="143.9" y="165" width="0.4" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="146.93" y="175.5" ></text> +</g> +<g > +<title>5233 (196 samples, 0.02%)</title><rect x="766.1" y="245" width="0.2" height="15.0" fill="rgb(244,166,43)" rx="2" ry="2" /> +<text x="769.07" y="255.5" ></text> +</g> +<g > +<title>/memory.current (270 samples, 0.03%)</title><rect x="687.9" y="85" width="0.4" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="690.95" y="95.5" ></text> +</g> +<g > +<title>/group (233 samples, 0.02%)</title><rect x="766.3" y="197" width="0.3" height="15.0" fill="rgb(241,134,40)" rx="2" ry="2" /> +<text x="769.33" y="207.5" ></text> +</g> +<g > +<title>enter_close (290 samples, 0.03%)</title><rect x="485.3" y="181" width="0.4" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="488.31" y="191.5" ></text> +</g> +<g > +<title>/libgcc.a (88 samples, 0.01%)</title><rect x="1084.2" y="133" width="0.1" height="15.0" fill="rgb(238,99,36)" rx="2" ry="2" /> +<text x="1087.17" y="143.5" ></text> +</g> +<g > +<title>/history.sqlite (170 samples, 0.02%)</title><rect x="624.9" y="165" width="0.2" height="15.0" fill="rgb(240,119,38)" rx="2" ry="2" /> +<text x="627.90" y="175.5" ></text> +</g> +<g > +<title>enter_newfstatat (191 samples, 0.02%)</title><rect x="813.5" y="149" width="0.3" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="816.53" y="159.5" ></text> +</g> +<g > +<title>/share (343 samples, 0.04%)</title><rect x="795.6" y="181" width="0.4" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="798.58" y="191.5" ></text> +</g> +<g > +<title>enter_fcntl (93 samples, 0.01%)</title><rect x="810.7" y="133" width="0.1" height="15.0" fill="rgb(233,196,30)" rx="2" ry="2" /> +<text x="813.67" y="143.5" ></text> +</g> +<g > +<title>enter_fcntl (91 samples, 0.01%)</title><rect x="1074.4" y="213" width="0.2" height="15.0" fill="rgb(233,196,30)" rx="2" ry="2" /> +<text x="1077.44" y="223.5" ></text> +</g> +<g > +<title>/memory.low (276 samples, 0.03%)</title><rect x="757.4" y="85" width="0.3" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="760.37" y="95.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="720.6" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="723.64" y="79.5" ></text> +</g> +<g > +<title>/paul (2,465 samples, 0.26%)</title><rect x="1093.7" y="197" width="3.0" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="1096.73" y="207.5" ></text> +</g> +<g > +<title>/app (1,051 samples, 0.11%)</title><rect x="302.0" y="213" width="1.3" height="15.0" fill="rgb(248,115,47)" rx="2" ry="2" /> +<text x="305.04" y="223.5" ></text> +</g> +<g > +<title>/null (157 samples, 0.02%)</title><rect x="1076.3" y="197" width="0.2" height="15.0" fill="rgb(224,145,21)" rx="2" ry="2" /> +<text x="1079.31" y="207.5" ></text> +</g> +<g > +<title>/libgcc_s.so (244 samples, 0.03%)</title><rect x="1084.3" y="133" width="0.3" height="15.0" fill="rgb(240,99,39)" rx="2" ry="2" /> +<text x="1087.28" y="143.5" ></text> +</g> +<g > +<title>.. (318 samples, 0.03%)</title><rect x="328.0" y="229" width="0.4" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> +<text x="331.01" y="239.5" ></text> +</g> +<g > +<title>enter_ioctl (282 samples, 0.03%)</title><rect x="40.8" y="133" width="0.4" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="43.82" y="143.5" ></text> +</g> +<g > +<title>/bf (296 samples, 0.03%)</title><rect x="1080.0" y="149" width="0.3" height="15.0" fill="rgb(232,104,30)" rx="2" ry="2" /> +<text x="1082.97" y="159.5" ></text> +</g> +<g > +<title>/Notes (836 samples, 0.09%)</title><rect x="782.6" y="165" width="1.0" height="15.0" fill="rgb(238,159,36)" rx="2" ry="2" /> +<text x="785.61" y="175.5" ></text> +</g> +<g > +<title>/memory.min (264 samples, 0.03%)</title><rect x="737.2" y="85" width="0.4" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="740.24" y="95.5" ></text> +</g> +<g > +<title>/flatpak (687 samples, 0.07%)</title><rect x="143.5" y="181" width="0.8" height="15.0" fill="rgb(230,158,27)" rx="2" ry="2" /> +<text x="146.50" y="191.5" ></text> +</g> +<g > +<title>com.gitlab.tipp10.tipp10 (87 samples, 0.01%)</title><rect x="300.7" y="229" width="0.1" height="15.0" fill="rgb(232,149,30)" rx="2" ry="2" /> +<text x="303.71" y="239.5" ></text> +</g> +<g > +<title>enter_openat (116 samples, 0.01%)</title><rect x="481.3" y="165" width="0.2" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="484.35" y="175.5" ></text> +</g> +<g > +<title>enter_read (232 samples, 0.02%)</title><rect x="482.5" y="165" width="0.3" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="485.48" y="175.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="695.9" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="698.90" y="79.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="746.9" y="69" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="749.95" y="79.5" ></text> +</g> +<g > +<title>/332489 (88 samples, 0.01%)</title><rect x="447.7" y="197" width="0.1" height="15.0" fill="rgb(238,128,37)" rx="2" ry="2" /> +<text x="450.74" y="207.5" ></text> +</g> +<g > +<title>/share (830 samples, 0.09%)</title><rect x="796.2" y="197" width="1.0" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="799.17" y="207.5" ></text> +</g> +<g > +<title>/app (110 samples, 0.01%)</title><rect x="231.0" y="101" width="0.1" height="15.0" fill="rgb(248,115,47)" rx="2" ry="2" /> +<text x="233.99" y="111.5" ></text> +</g> +<g > +<title>/memory.current (264 samples, 0.03%)</title><rect x="759.1" y="101" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="762.11" y="111.5" ></text> +</g> +<g > +<title>/49 (114 samples, 0.01%)</title><rect x="1047.5" y="149" width="0.1" height="15.0" fill="rgb(226,104,23)" rx="2" ry="2" /> +<text x="1050.47" y="159.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="744.3" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="747.27" y="79.5" ></text> +</g> +<g > +<title>enter_ioctl (88 samples, 0.01%)</title><rect x="695.0" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="698.04" y="79.5" ></text> +</g> +<g > +<title>/user-1001@0aea203ba61848c3941e879d6c338702-00000000004d0346-00061dc3f3414eae.journal (96 samples, 0.01%)</title><rect x="1184.4" y="149" width="0.1" height="15.0" fill="rgb(229,116,27)" rx="2" ry="2" /> +<text x="1187.41" y="159.5" ></text> +</g> +<g > +<title>enter_newfstat (94 samples, 0.01%)</title><rect x="764.7" y="85" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="767.67" y="95.5" ></text> +</g> +<g > +<title>lib (131 samples, 0.01%)</title><rect x="831.7" y="229" width="0.2" height="15.0" fill="rgb(234,129,32)" rx="2" ry="2" /> +<text x="834.71" y="239.5" ></text> +</g> +<g > +<title>/applications (3,488 samples, 0.36%)</title><rect x="190.6" y="181" width="4.3" height="15.0" fill="rgb(244,115,43)" rx="2" ry="2" /> +<text x="193.60" y="191.5" ></text> +</g> +<g > +<title>/com.visualstudio.code (129 samples, 0.01%)</title><rect x="217.6" y="149" width="0.2" height="15.0" fill="rgb(250,164,49)" rx="2" ry="2" /> +<text x="220.63" y="159.5" ></text> +</g> +<g > +<title>/ (95 samples, 0.01%)</title><rect x="675.9" y="149" width="0.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> +<text x="678.86" y="159.5" ></text> +</g> +<g > +<title>/share (726 samples, 0.08%)</title><rect x="1142.9" y="197" width="0.8" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="1145.85" y="207.5" ></text> +</g> +<g > +<title>enter_write (93 samples, 0.01%)</title><rect x="341.7" y="213" width="0.2" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="344.74" y="223.5" ></text> +</g> +<g > +<title>pipe:[2420018] (217 samples, 0.02%)</title><rect x="803.6" y="229" width="0.2" height="15.0" fill="rgb(247,170,47)" rx="2" ry="2" /> +<text x="806.58" y="239.5" ></text> +</g> +<g > +<title>/applications (246 samples, 0.03%)</title><rect x="340.9" y="181" width="0.3" height="15.0" fill="rgb(244,115,43)" rx="2" ry="2" /> +<text x="343.87" y="191.5" ></text> +</g> +<g > +<title>/PackageKit (273 samples, 0.03%)</title><rect x="42.3" y="181" width="0.3" height="15.0" fill="rgb(235,155,33)" rx="2" ry="2" /> +<text x="45.28" y="191.5" ></text> +</g> +<g > +<title>/memory.current (276 samples, 0.03%)</title><rect x="706.0" y="85" width="0.4" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="709.05" y="95.5" ></text> +</g> +<g > +<title>/596128 (152 samples, 0.02%)</title><rect x="779.0" y="197" width="0.2" height="15.0" fill="rgb(237,99,35)" rx="2" ry="2" /> +<text x="781.97" y="207.5" ></text> +</g> +<g > +<title>/memory.low (270 samples, 0.03%)</title><rect x="688.3" y="85" width="0.3" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="691.28" y="95.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="744.6" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="747.59" y="79.5" ></text> +</g> +<g > +<title>/3d (85 samples, 0.01%)</title><rect x="1046.1" y="149" width="0.1" height="15.0" fill="rgb(239,125,38)" rx="2" ry="2" /> +<text x="1049.10" y="159.5" ></text> +</g> +<g > +<title>627130 (2,158 samples, 0.22%)</title><rect x="829.7" y="245" width="2.6" height="15.0" fill="rgb(232,145,30)" rx="2" ry="2" /> +<text x="832.67" y="255.5" ></text> +</g> +<g > +<title>enter_read (1,491 samples, 0.15%)</title><rect x="1137.4" y="37" width="1.8" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="1140.40" y="47.5" ></text> +</g> +<g > +<title>/.gosdir (423 samples, 0.04%)</title><rect x="804.1" y="181" width="0.5" height="15.0" fill="rgb(238,141,37)" rx="2" ry="2" /> +<text x="807.06" y="191.5" ></text> +</g> +<g > +<title>/memory.low (271 samples, 0.03%)</title><rect x="724.8" y="85" width="0.3" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="727.75" y="95.5" ></text> +</g> +<g > +<title>.. (177 samples, 0.02%)</title><rect x="875.8" y="229" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> +<text x="878.83" y="239.5" ></text> +</g> +<g > +<title>/omf (351 samples, 0.04%)</title><rect x="675.1" y="117" width="0.5" height="15.0" fill="rgb(238,165,36)" rx="2" ry="2" /> +<text x="678.14" y="127.5" ></text> +</g> +<g > +<title>enter_newfstat (104 samples, 0.01%)</title><rect x="248.9" y="149" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="251.90" y="159.5" ></text> +</g> +<g > +<title>/memory.stat (276 samples, 0.03%)</title><rect x="727.8" y="85" width="0.4" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="730.84" y="95.5" ></text> +</g> +<g > +<title>/user-1001@00063555eafacda0-a2a950e965f4bb01.journal~ (85 samples, 0.01%)</title><rect x="1184.3" y="149" width="0.1" height="15.0" fill="rgb(233,116,31)" rx="2" ry="2" /> +<text x="1187.31" y="159.5" ></text> +</g> +<g > +<title>/x86_64-redhat-linux (693 samples, 0.07%)</title><rect x="1085.9" y="165" width="0.8" height="15.0" fill="rgb(245,97,45)" rx="2" ry="2" /> +<text x="1088.89" y="175.5" ></text> +</g> +<g > +<title>/ (250 samples, 0.03%)</title><rect x="807.5" y="213" width="0.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> +<text x="810.52" y="223.5" ></text> +</g> +<g > +<title>com.github.wwmm.pulseeffects.Locale (91 samples, 0.01%)</title><rect x="300.5" y="229" width="0.1" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="303.49" y="239.5" ></text> +</g> +<g > +<title>/5d (100 samples, 0.01%)</title><rect x="1049.8" y="149" width="0.1" height="15.0" fill="rgb(237,115,35)" rx="2" ry="2" /> +<text x="1052.83" y="159.5" ></text> +</g> +<g > +<title>enter_write (221 samples, 0.02%)</title><rect x="542.4" y="133" width="0.3" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="545.43" y="143.5" ></text> +</g> +<g > +<title>enter_write (380 samples, 0.04%)</title><rect x="777.6" y="213" width="0.5" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="780.64" y="223.5" ></text> +</g> +<g > +<title>/styles (706 samples, 0.07%)</title><rect x="869.5" y="181" width="0.8" height="15.0" fill="rgb(244,122,43)" rx="2" ry="2" /> +<text x="872.46" y="191.5" ></text> +</g> +<g > +<title>/ld-linux-x86-64.so.2 (107 samples, 0.01%)</title><rect x="1089.4" y="197" width="0.1" height="15.0" fill="rgb(250,115,50)" rx="2" ry="2" /> +<text x="1092.40" y="207.5" ></text> +</g> +<g > +<title> (879 samples, 0.09%)</title><rect x="871.5" y="229" width="1.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="874.50" y="239.5" ></text> +</g> +<g > +<title>enter_read (372 samples, 0.04%)</title><rect x="802.6" y="213" width="0.5" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="805.62" y="223.5" ></text> +</g> +<g > +<title>/system@00062bf70d98712e-5a890f1a0a652c47.journal~ (87 samples, 0.01%)</title><rect x="1176.9" y="149" width="0.2" height="15.0" fill="rgb(233,145,31)" rx="2" ry="2" /> +<text x="1179.95" y="159.5" ></text> +</g> +<g > +<title>com.bitwarden.desktop.Locale (91 samples, 0.01%)</title><rect x="299.5" y="229" width="0.1" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="302.49" y="239.5" ></text> +</g> +<g > +<title>/memory.swap.current (270 samples, 0.03%)</title><rect x="709.8" y="85" width="0.4" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="712.83" y="95.5" ></text> +</g> +<g > +<title>/23.08-extra (101 samples, 0.01%)</title><rect x="234.6" y="117" width="0.1" height="15.0" fill="rgb(232,134,30)" rx="2" ry="2" /> +<text x="237.57" y="127.5" ></text> +</g> +<g > +<title>/__pycache__ (261 samples, 0.03%)</title><rect x="1035.5" y="149" width="0.3" height="15.0" fill="rgb(235,103,33)" rx="2" ry="2" /> +<text x="1038.46" y="159.5" ></text> +</g> +<g > +<title>enter_mmap (112 samples, 0.01%)</title><rect x="1093.6" y="181" width="0.1" height="15.0" fill="rgb(240,196,39)" rx="2" ry="2" /> +<text x="1096.59" y="191.5" ></text> +</g> +<g > +<title>enter_read (226 samples, 0.02%)</title><rect x="39.9" y="133" width="0.3" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="42.91" y="143.5" ></text> +</g> +<g > +<title>/memory.current (264 samples, 0.03%)</title><rect x="728.5" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="731.51" y="95.5" ></text> +</g> +<g > +<title>/app-git\x2dmaintenance.slice (1,690 samples, 0.17%)</title><rect x="752.9" y="101" width="2.1" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="755.93" y="111.5" ></text> +</g> +<g > +<title> (327 samples, 0.03%)</title><rect x="880.3" y="229" width="0.4" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="883.33" y="239.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="741.1" y="69" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="744.14" y="79.5" ></text> +</g> +<g > +<title>/usr (3,059 samples, 0.32%)</title><rect x="809.0" y="213" width="3.8" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="812.02" y="223.5" ></text> +</g> +<g > +<title>/memory.stat (275 samples, 0.03%)</title><rect x="685.2" y="149" width="0.4" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="688.23" y="159.5" ></text> +</g> +<g > +<title>/libnss_systemd.so.2 (306 samples, 0.03%)</title><rect x="342.0" y="197" width="0.4" height="15.0" fill="rgb(250,99,50)" rx="2" ry="2" /> +<text x="345.05" y="207.5" ></text> +</g> +<g > +<title>enter_write (82 samples, 0.01%)</title><rect x="800.9" y="213" width="0.1" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="803.94" y="223.5" ></text> +</g> +<g > +<title>/memory.current (270 samples, 0.03%)</title><rect x="732.6" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="735.55" y="95.5" ></text> +</g> +<g > +<title>301433 (45,839 samples, 4.74%)</title><rect x="617.9" y="245" width="56.0" height="15.0" fill="rgb(242,198,41)" rx="2" ry="2" /> +<text x="620.94" y="255.5" >301433</text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="732.4" y="69" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="735.44" y="79.5" ></text> +</g> +<g > +<title>/memory.min (264 samples, 0.03%)</title><rect x="725.1" y="85" width="0.3" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="728.09" y="95.5" ></text> +</g> +<g > +<title>/user@1001.service (354 samples, 0.04%)</title><rect x="622.4" y="133" width="0.5" height="15.0" fill="rgb(246,116,46)" rx="2" ry="2" /> +<text x="625.44" y="143.5" ></text> +</g> +<g > +<title>596019 (2,669 samples, 0.28%)</title><rect x="778.1" y="245" width="3.3" height="15.0" fill="rgb(237,176,35)" rx="2" ry="2" /> +<text x="781.11" y="255.5" ></text> +</g> +<g > +<title>/memory.stat (276 samples, 0.03%)</title><rect x="758.4" y="85" width="0.4" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="761.44" y="95.5" ></text> +</g> +<g > +<title>enter_newfstat (116 samples, 0.01%)</title><rect x="483.7" y="165" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="486.68" y="175.5" ></text> +</g> +<g > +<title>/home (184 samples, 0.02%)</title><rect x="862.0" y="213" width="0.2" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="865.00" y="223.5" ></text> +</g> +<g > +<title>enter_read (185 samples, 0.02%)</title><rect x="465.2" y="213" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="468.22" y="223.5" ></text> +</g> +<g > +<title>enter_read (94 samples, 0.01%)</title><rect x="747.6" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="750.63" y="79.5" ></text> +</g> +<g > +<title>/lib (702 samples, 0.07%)</title><rect x="1083.7" y="197" width="0.9" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="1086.74" y="207.5" ></text> +</g> +<g > +<title>/log (86 samples, 0.01%)</title><rect x="777.2" y="197" width="0.1" height="15.0" fill="rgb(248,118,48)" rx="2" ry="2" /> +<text x="780.17" y="207.5" ></text> +</g> +<g > +<title>enter_close (148 samples, 0.02%)</title><rect x="832.3" y="213" width="0.2" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="835.30" y="223.5" ></text> +</g> +<g > +<title>/go-link-2935705061 (146 samples, 0.02%)</title><rect x="1083.5" y="197" width="0.2" height="15.0" fill="rgb(228,144,25)" rx="2" ry="2" /> +<text x="1086.48" y="207.5" ></text> +</g> +<g > +<title>/tmp (87 samples, 0.01%)</title><rect x="1093.3" y="213" width="0.1" height="15.0" fill="rgb(234,140,32)" rx="2" ry="2" /> +<text x="1096.29" y="223.5" ></text> +</g> +<g > +<title>pipe:[1148912] (16,780 samples, 1.74%)</title><rect x="550.0" y="229" width="20.5" height="15.0" fill="rgb(242,170,41)" rx="2" ry="2" /> +<text x="553.02" y="239.5" ></text> +</g> +<g > +<title>/dev (86 samples, 0.01%)</title><rect x="776.5" y="213" width="0.1" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" /> +<text x="779.46" y="223.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="757.6" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="760.59" y="79.5" ></text> +</g> +<g > +<title> (225 samples, 0.02%)</title><rect x="868.1" y="229" width="0.3" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="871.13" y="239.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="719.0" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="721.97" y="79.5" ></text> +</g> +<g > +<title>/com.github.wwmm.pulseeffects.Locale (196 samples, 0.02%)</title><rect x="232.1" y="149" width="0.2" height="15.0" fill="rgb(242,164,41)" rx="2" ry="2" /> +<text x="235.09" y="159.5" ></text> +</g> +<g > +<title>/conf.d (290 samples, 0.03%)</title><rect x="797.4" y="181" width="0.3" height="15.0" fill="rgb(248,164,47)" rx="2" ry="2" /> +<text x="800.39" y="191.5" ></text> +</g> +<g > +<title>/4b (98 samples, 0.01%)</title><rect x="1047.7" y="149" width="0.1" height="15.0" fill="rgb(224,127,21)" rx="2" ry="2" /> +<text x="1050.72" y="159.5" ></text> +</g> +<g > +<title>enter_openat (356 samples, 0.04%)</title><rect x="830.6" y="197" width="0.4" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="833.58" y="207.5" ></text> +</g> +<g > +<title>/0f (118 samples, 0.01%)</title><rect x="1040.6" y="149" width="0.1" height="15.0" fill="rgb(239,134,37)" rx="2" ry="2" /> +<text x="1043.55" y="159.5" ></text> +</g> +<g > +<title>/memory.swap.current (276 samples, 0.03%)</title><rect x="711.9" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="714.91" y="95.5" ></text> +</g> +<g > +<title>enter_newfstat (88 samples, 0.01%)</title><rect x="697.4" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="700.40" y="79.5" ></text> +</g> +<g > +<title>/memory.min (276 samples, 0.03%)</title><rect x="763.9" y="101" width="0.3" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="766.88" y="111.5" ></text> +</g> +<g > +<title>/system@a76544c2185a4e0d95d841276470efd6-00000000004ff7a9-0006208fd108652e.journal (90 samples, 0.01%)</title><rect x="1179.8" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1182.81" y="159.5" ></text> +</g> +<g > +<title>/lib64 (142 samples, 0.01%)</title><rect x="878.8" y="213" width="0.2" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="881.82" y="223.5" ></text> +</g> +<g > +<title>/15 (159 samples, 0.02%)</title><rect x="541.9" y="149" width="0.2" height="15.0" fill="rgb(236,132,34)" rx="2" ry="2" /> +<text x="544.87" y="159.5" ></text> +</g> +<g > +<title>anon_inode:[eventfd] (377 samples, 0.04%)</title><rect x="488.2" y="229" width="0.5" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="491.22" y="239.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="759.0" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="762.00" y="79.5" ></text> +</g> +<g > +<title>/org.darktable.Darktable (106 samples, 0.01%)</title><rect x="218.9" y="149" width="0.1" height="15.0" fill="rgb(241,149,40)" rx="2" ry="2" /> +<text x="221.90" y="159.5" ></text> +</g> +<g > +<title>enter_read (814 samples, 0.08%)</title><rect x="328.4" y="213" width="1.0" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="331.45" y="223.5" ></text> +</g> +<g > +<title>/usr (115 samples, 0.01%)</title><rect x="1084.8" y="213" width="0.1" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="1087.80" y="223.5" ></text> +</g> +<g > +<title>/org.fedoraproject.Platform.Locale (202 samples, 0.02%)</title><rect x="233.6" y="149" width="0.2" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="236.59" y="159.5" ></text> +</g> +<g > +<title>/org.freedesktop.Platform.GL.default (93 samples, 0.01%)</title><rect x="316.8" y="213" width="0.1" height="15.0" fill="rgb(228,149,25)" rx="2" ry="2" /> +<text x="319.83" y="223.5" ></text> +</g> +<g > +<title>/54 (106 samples, 0.01%)</title><rect x="1048.8" y="149" width="0.1" height="15.0" fill="rgb(233,115,31)" rx="2" ry="2" /> +<text x="1051.78" y="159.5" ></text> +</g> +<g > +<title>/knghtbrd (747 samples, 0.08%)</title><rect x="545.3" y="149" width="1.0" height="15.0" fill="rgb(249,127,48)" rx="2" ry="2" /> +<text x="548.34" y="159.5" ></text> +</g> +<g > +<title>/fontconfig (214 samples, 0.02%)</title><rect x="865.3" y="165" width="0.3" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="868.30" y="175.5" ></text> +</g> +<g > +<title>/memory.pressure (325 samples, 0.03%)</title><rect x="760.1" y="101" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="763.10" y="111.5" ></text> +</g> +<g > +<title>/dnf (366 samples, 0.04%)</title><rect x="396.4" y="181" width="0.5" height="15.0" fill="rgb(248,162,48)" rx="2" ry="2" /> +<text x="399.44" y="191.5" ></text> +</g> +<g > +<title>/memory.min (270 samples, 0.03%)</title><rect x="715.0" y="85" width="0.4" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="718.02" y="95.5" ></text> +</g> +<g > +<title>enter_newfstat (87 samples, 0.01%)</title><rect x="1177.4" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1180.37" y="143.5" ></text> +</g> +<g > +<title>socket:[9680] (152 samples, 0.02%)</title><rect x="683.5" y="229" width="0.2" height="15.0" fill="rgb(239,175,38)" rx="2" ry="2" /> +<text x="686.52" y="239.5" ></text> +</g> +<g > +<title> (150 samples, 0.02%)</title><rect x="1091.3" y="229" width="0.2" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1094.34" y="239.5" ></text> +</g> +<g > +<title> (1,282 samples, 0.13%)</title><rect x="878.2" y="229" width="1.6" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="881.23" y="239.5" ></text> +</g> +<g > +<title>/LNXSYSTM:00 (146 samples, 0.02%)</title><rect x="775.9" y="181" width="0.2" height="15.0" fill="rgb(229,104,27)" rx="2" ry="2" /> +<text x="778.95" y="191.5" ></text> +</g> +<g > +<title>/ld-linux-x86-64.so.2 (157 samples, 0.02%)</title><rect x="541.3" y="197" width="0.1" height="15.0" fill="rgb(250,115,50)" rx="2" ry="2" /> +<text x="544.25" y="207.5" ></text> +</g> +<g > +<title>/user-1001@000633084aec57f3-a2f484c693562478.journal~ (86 samples, 0.01%)</title><rect x="1183.9" y="149" width="0.1" height="15.0" fill="rgb(233,116,31)" rx="2" ry="2" /> +<text x="1186.94" y="159.5" ></text> +</g> +<g > +<title>/paul (1,643 samples, 0.17%)</title><rect x="674.5" y="197" width="2.1" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="677.55" y="207.5" ></text> +</g> +<g > +<title>enter_writev (175 samples, 0.02%)</title><rect x="549.7" y="213" width="0.2" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="552.72" y="223.5" ></text> +</g> +<g > +<title>/ethnic (347 samples, 0.04%)</title><rect x="40.8" y="149" width="0.4" height="15.0" fill="rgb(231,138,28)" rx="2" ry="2" /> +<text x="43.82" y="159.5" ></text> +</g> +<g > +<title>enter_read (116 samples, 0.01%)</title><rect x="483.9" y="165" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="486.90" y="175.5" ></text> +</g> +<g > +<title>/libgcc_eh.a (164 samples, 0.02%)</title><rect x="1141.5" y="133" width="0.2" height="15.0" fill="rgb(235,99,33)" rx="2" ry="2" /> +<text x="1144.55" y="143.5" ></text> +</g> +<g > +<title>/79 (92 samples, 0.01%)</title><rect x="1053.2" y="149" width="0.1" height="15.0" fill="rgb(235,145,33)" rx="2" ry="2" /> +<text x="1056.17" y="159.5" ></text> +</g> +<g > +<title> (772 samples, 0.08%)</title><rect x="681.5" y="229" width="0.9" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="684.48" y="239.5" ></text> +</g> +<g > +<title>enter_writev (1,106 samples, 0.11%)</title><rect x="443.1" y="213" width="1.4" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="446.12" y="223.5" ></text> +</g> +<g > +<title>/.linuxbrew (248 samples, 0.03%)</title><rect x="674.2" y="181" width="0.3" height="15.0" fill="rgb(232,163,30)" rx="2" ry="2" /> +<text x="677.25" y="191.5" ></text> +</g> +<g > +<title>/x86_64-redhat-linux (692 samples, 0.07%)</title><rect x="1083.7" y="165" width="0.9" height="15.0" fill="rgb(245,97,45)" rx="2" ry="2" /> +<text x="1086.74" y="175.5" ></text> +</g> +<g > +<title>/wallpaper-auto-rotated-4c4638d235761885c1d93a3458dd25e1.jpg (478 samples, 0.05%)</title><rect x="1143.8" y="133" width="0.6" height="15.0" fill="rgb(240,125,39)" rx="2" ry="2" /> +<text x="1146.82" y="143.5" ></text> +</g> +<g > +<title>/71 (121 samples, 0.01%)</title><rect x="1052.1" y="149" width="0.2" height="15.0" fill="rgb(231,170,29)" rx="2" ry="2" /> +<text x="1055.12" y="159.5" ></text> +</g> +<g > +<title>/org.inkscape.Inkscape (100 samples, 0.01%)</title><rect x="220.5" y="149" width="0.2" height="15.0" fill="rgb(250,149,49)" rx="2" ry="2" /> +<text x="223.53" y="159.5" ></text> +</g> +<g > +<title>enter_fcntl (441 samples, 0.05%)</title><rect x="817.1" y="149" width="0.6" height="15.0" fill="rgb(233,196,30)" rx="2" ry="2" /> +<text x="820.14" y="159.5" ></text> +</g> +<g > +<title>/.. (271 samples, 0.03%)</title><rect x="1087.9" y="101" width="0.4" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1090.94" y="111.5" ></text> +</g> +<g > +<title>/dri (8,290 samples, 0.86%)</title><rect x="448.2" y="197" width="10.1" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="451.20" y="207.5" ></text> +</g> +<g > +<title>enter_openat (83 samples, 0.01%)</title><rect x="620.1" y="181" width="0.1" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="623.10" y="191.5" ></text> +</g> +<g > +<title>enter_read (3,528 samples, 0.37%)</title><rect x="660.2" y="213" width="4.3" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="663.22" y="223.5" ></text> +</g> +<g > +<title>enter_write (12,021 samples, 1.24%)</title><rect x="645.2" y="213" width="14.7" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="648.24" y="223.5" ></text> +</g> +<g > +<title>/systemd (100 samples, 0.01%)</title><rect x="879.1" y="197" width="0.1" height="15.0" fill="rgb(240,145,39)" rx="2" ry="2" /> +<text x="882.07" y="207.5" ></text> +</g> +<g > +<title>/.. (253 samples, 0.03%)</title><rect x="1085.9" y="133" width="0.3" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1088.89" y="143.5" ></text> +</g> +<g > +<title>/PNP0C09:00 (146 samples, 0.02%)</title><rect x="775.9" y="117" width="0.2" height="15.0" fill="rgb(229,139,27)" rx="2" ry="2" /> +<text x="778.95" y="127.5" ></text> +</g> +<g > +<title>/ (890 samples, 0.09%)</title><rect x="832.7" y="213" width="1.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> +<text x="835.71" y="223.5" ></text> +</g> +<g > +<title>/usr (59,537 samples, 6.16%)</title><rect x="143.0" y="213" width="72.7" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="146.02" y="223.5" >/usr</text> +</g> +<g > +<title>/var (11,590 samples, 1.20%)</title><rect x="812.8" y="213" width="14.1" height="15.0" fill="rgb(231,130,28)" rx="2" ry="2" /> +<text x="815.76" y="223.5" ></text> +</g> +<g > +<title>/sbin (124 samples, 0.01%)</title><rect x="677.1" y="181" width="0.2" height="15.0" fill="rgb(247,142,46)" rx="2" ry="2" /> +<text x="680.14" y="191.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="701.5" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="704.54" y="79.5" ></text> +</g> +<g > +<title>enter_newfstat (88 samples, 0.01%)</title><rect x="701.4" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="704.38" y="79.5" ></text> +</g> +<g > +<title>/user.slice (100 samples, 0.01%)</title><rect x="445.5" y="165" width="0.1" height="15.0" fill="rgb(246,116,46)" rx="2" ry="2" /> +<text x="448.49" y="175.5" ></text> +</g> +<g > +<title>/styles (706 samples, 0.07%)</title><rect x="870.5" y="181" width="0.9" height="15.0" fill="rgb(244,122,43)" rx="2" ry="2" /> +<text x="873.54" y="191.5" ></text> +</g> +<g > +<title>/lib (268 samples, 0.03%)</title><rect x="1167.0" y="197" width="0.3" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="1170.00" y="207.5" ></text> +</g> +<g > +<title>/proselint (316 samples, 0.03%)</title><rect x="871.0" y="165" width="0.4" height="15.0" fill="rgb(238,144,36)" rx="2" ry="2" /> +<text x="874.01" y="175.5" ></text> +</g> +<g > +<title>/601308 (156 samples, 0.02%)</title><rect x="779.6" y="197" width="0.2" height="15.0" fill="rgb(238,123,36)" rx="2" ry="2" /> +<text x="782.63" y="207.5" ></text> +</g> +<g > +<title>/memory.swap.current (270 samples, 0.03%)</title><rect x="746.4" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="749.39" y="95.5" ></text> +</g> +<g > +<title>/1a (115 samples, 0.01%)</title><rect x="1041.8" y="149" width="0.2" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1044.81" y="159.5" ></text> +</g> +<g > +<title>/.. (35,331 samples, 3.66%)</title><rect x="145.3" y="101" width="43.2" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="148.33" y="111.5" >/..</text> +</g> +<g > +<title>/org.freedesktop.Platform.openh264 (428 samples, 0.04%)</title><rect x="240.9" y="149" width="0.5" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="243.86" y="159.5" ></text> +</g> +<g > +<title>/var (379 samples, 0.04%)</title><rect x="463.1" y="213" width="0.4" height="15.0" fill="rgb(231,130,28)" rx="2" ry="2" /> +<text x="466.05" y="223.5" ></text> +</g> +<g > +<title>anon_inode:[eventfd] (2,958 samples, 0.31%)</title><rect x="336.7" y="229" width="3.6" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="339.69" y="239.5" ></text> +</g> +<g > +<title>/io.github.kotatogram (109 samples, 0.01%)</title><rect x="218.6" y="149" width="0.2" height="15.0" fill="rgb(225,134,22)" rx="2" ry="2" /> +<text x="221.64" y="159.5" ></text> +</g> +<g > +<title> (111 samples, 0.01%)</title><rect x="1142.4" y="229" width="0.2" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1145.45" y="239.5" ></text> +</g> +<g > +<title> (86 samples, 0.01%)</title><rect x="765.5" y="229" width="0.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="768.48" y="239.5" ></text> +</g> +<g > +<title>dev.geopjr.Calligraphy.Locale (101 samples, 0.01%)</title><rect x="306.8" y="229" width="0.1" height="15.0" fill="rgb(242,187,41)" rx="2" ry="2" /> +<text x="309.78" y="239.5" ></text> +</g> +<g > +<title>/tmp (222 samples, 0.02%)</title><rect x="1087.6" y="213" width="0.3" height="15.0" fill="rgb(234,140,32)" rx="2" ry="2" /> +<text x="1090.64" y="223.5" ></text> +</g> +<g > +<title>enter_read (91 samples, 0.01%)</title><rect x="753.8" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="756.83" y="79.5" ></text> +</g> +<g > +<title>/15 (687 samples, 0.07%)</title><rect x="1083.7" y="149" width="0.9" height="15.0" fill="rgb(236,132,34)" rx="2" ry="2" /> +<text x="1086.74" y="159.5" ></text> +</g> +<g > +<title>/home (758 samples, 0.08%)</title><rect x="869.4" y="213" width="1.0" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="872.43" y="223.5" ></text> +</g> +<g > +<title>/sys (146 samples, 0.02%)</title><rect x="775.9" y="213" width="0.2" height="15.0" fill="rgb(241,145,40)" rx="2" ry="2" /> +<text x="778.95" y="223.5" ></text> +</g> +<g > +<title>/cgroup (174 samples, 0.02%)</title><rect x="775.1" y="181" width="0.2" height="15.0" fill="rgb(241,151,40)" rx="2" ry="2" /> +<text x="778.07" y="191.5" ></text> +</g> +<g > +<title>/memory.swap.current (276 samples, 0.03%)</title><rect x="758.8" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="761.78" y="95.5" ></text> +</g> +<g > +<title>/7e (95 samples, 0.01%)</title><rect x="1053.8" y="149" width="0.1" height="15.0" fill="rgb(245,157,44)" rx="2" ry="2" /> +<text x="1056.79" y="159.5" ></text> +</g> +<g > +<title>/system@e787b310a4d743b4a3376463d97f0ded-000000000052342e-000621d2b17641ff.journal (89 samples, 0.01%)</title><rect x="1182.3" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1185.31" y="159.5" ></text> +</g> +<g > +<title>enter_write (196 samples, 0.02%)</title><rect x="488.9" y="213" width="0.3" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="491.93" y="223.5" ></text> +</g> +<g > +<title>/memory.min (276 samples, 0.03%)</title><rect x="743.3" y="85" width="0.4" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="746.32" y="95.5" ></text> +</g> +<g > +<title>com.skype.Client (86 samples, 0.01%)</title><rect x="301.2" y="229" width="0.1" height="15.0" fill="rgb(241,149,39)" rx="2" ry="2" /> +<text x="304.20" y="239.5" ></text> +</g> +<g > +<title>enter_writev (366 samples, 0.04%)</title><rect x="396.4" y="149" width="0.5" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="399.44" y="159.5" ></text> +</g> +<g > +<title>/system@0006231482ddf657-d3974264a7e70d85.journal~ (88 samples, 0.01%)</title><rect x="1176.6" y="149" width="0.1" height="15.0" fill="rgb(233,145,31)" rx="2" ry="2" /> +<text x="1179.61" y="159.5" ></text> +</g> +<g > +<title>enter_ioctl (15,067 samples, 1.56%)</title><rect x="10.3" y="165" width="18.4" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="13.33" y="175.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Shell.Screencast.slice (1,632 samples, 0.17%)</title><rect x="738.6" y="101" width="2.0" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="741.59" y="111.5" ></text> +</g> +<g > +<title>/usr (703 samples, 0.07%)</title><rect x="462.2" y="213" width="0.9" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="465.20" y="223.5" ></text> +</g> +<g > +<title>/!data!dog (815 samples, 0.08%)</title><rect x="1069.9" y="117" width="0.9" height="15.0" fill="rgb(245,161,44)" rx="2" ry="2" /> +<text x="1072.85" y="127.5" ></text> +</g> +<g > +<title>/x86_64 (95 samples, 0.01%)</title><rect x="232.4" y="133" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="235.36" y="143.5" ></text> +</g> +<g > +<title>/org.gnome.SoundRecorder (114 samples, 0.01%)</title><rect x="220.3" y="149" width="0.1" height="15.0" fill="rgb(243,149,41)" rx="2" ry="2" /> +<text x="223.27" y="159.5" ></text> +</g> +<g > +<title>/.. (252 samples, 0.03%)</title><rect x="1083.7" y="133" width="0.3" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1086.74" y="143.5" ></text> +</g> +<g > +<title>/linuxbrew (1,172 samples, 0.12%)</title><rect x="119.3" y="197" width="1.4" height="15.0" fill="rgb(232,99,30)" rx="2" ry="2" /> +<text x="122.30" y="207.5" ></text> +</g> +<g > +<title>627441 (377 samples, 0.04%)</title><rect x="1038.0" y="245" width="0.4" height="15.0" fill="rgb(227,145,25)" rx="2" ry="2" /> +<text x="1040.97" y="255.5" ></text> +</g> +<g > +<title>enter_writev (157 samples, 0.02%)</title><rect x="541.3" y="181" width="0.1" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="544.25" y="191.5" ></text> +</g> +<g > +<title>/07 (96 samples, 0.01%)</title><rect x="1039.5" y="149" width="0.1" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1042.52" y="159.5" ></text> +</g> +<g > +<title>/034a94fdac460f9d0ab7f40381c9e7d214a307054fbbf254ac47d3025f51feb8-d (92 samples, 0.01%)</title><rect x="1076.6" y="133" width="0.1" height="15.0" fill="rgb(248,144,47)" rx="2" ry="2" /> +<text x="1079.55" y="143.5" ></text> +</g> +<g > +<title> (2,607 samples, 0.27%)</title><rect x="861.3" y="229" width="3.2" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="864.30" y="239.5" ></text> +</g> +<g > +<title>/null (86 samples, 0.01%)</title><rect x="776.5" y="197" width="0.1" height="15.0" fill="rgb(224,145,21)" rx="2" ry="2" /> +<text x="779.46" y="207.5" ></text> +</g> +<g > +<title>/io.github.btpf.alexandria (103 samples, 0.01%)</title><rect x="218.4" y="149" width="0.1" height="15.0" fill="rgb(232,134,29)" rx="2" ry="2" /> +<text x="221.36" y="159.5" ></text> +</g> +<g > +<title>/52 (119 samples, 0.01%)</title><rect x="621.8" y="197" width="0.2" height="15.0" fill="rgb(237,122,35)" rx="2" ry="2" /> +<text x="624.84" y="207.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="734.5" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="737.49" y="79.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="708.7" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="711.67" y="79.5" ></text> +</g> +<g > +<title>627381 (385 samples, 0.04%)</title><rect x="877.6" y="245" width="0.5" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> +<text x="880.61" y="255.5" ></text> +</g> +<g > +<title>/2 (1,155 samples, 0.12%)</title><rect x="784.4" y="197" width="1.4" height="15.0" fill="rgb(251,127,50)" rx="2" ry="2" /> +<text x="787.42" y="207.5" ></text> +</g> +<g > +<title>627549 (150 samples, 0.02%)</title><rect x="1089.2" y="245" width="0.2" height="15.0" fill="rgb(230,145,28)" rx="2" ry="2" /> +<text x="1092.18" y="255.5" ></text> +</g> +<g > +<title>/cgroup (228 samples, 0.02%)</title><rect x="808.6" y="181" width="0.3" height="15.0" fill="rgb(241,151,40)" rx="2" ry="2" /> +<text x="811.60" y="191.5" ></text> +</g> +<g > +<title>/.. (122 samples, 0.01%)</title><rect x="541.9" y="85" width="0.1" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="544.87" y="95.5" ></text> +</g> +<g > +<title>enter_close (116 samples, 0.01%)</title><rect x="480.0" y="165" width="0.1" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="483.00" y="175.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="749.7" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="752.71" y="79.5" ></text> +</g> +<g > +<title> (819 samples, 0.08%)</title><rect x="335.2" y="229" width="1.0" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="338.20" y="239.5" ></text> +</g> +<g > +<title>/dev (104 samples, 0.01%)</title><rect x="861.3" y="213" width="0.1" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" /> +<text x="864.30" y="223.5" ></text> +</g> +<g > +<title>/memory.current (264 samples, 0.03%)</title><rect x="700.0" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="702.98" y="95.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.mozilla.firefox.SearchProvider.slice (1,683 samples, 0.17%)</title><rect x="748.8" y="101" width="2.1" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="751.83" y="111.5" ></text> +</g> +<g > +<title>/dev.geopjr.Calligraphy.Locale (175 samples, 0.02%)</title><rect x="232.6" y="149" width="0.2" height="15.0" fill="rgb(242,152,41)" rx="2" ry="2" /> +<text x="235.57" y="159.5" ></text> +</g> +<g > +<title>/596019 (244 samples, 0.03%)</title><rect x="778.2" y="197" width="0.3" height="15.0" fill="rgb(237,99,35)" rx="2" ry="2" /> +<text x="781.23" y="207.5" ></text> +</g> +<g > +<title>enter_write (474 samples, 0.05%)</title><rect x="836.4" y="117" width="0.6" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="839.42" y="127.5" ></text> +</g> +<g > +<title>/chrome (626 samples, 0.06%)</title><rect x="798.0" y="101" width="0.7" height="15.0" fill="rgb(240,148,38)" rx="2" ry="2" /> +<text x="800.97" y="111.5" ></text> +</g> +<g > +<title>anon_inode:[eventfd] (102 samples, 0.01%)</title><rect x="682.4" y="229" width="0.2" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="685.43" y="239.5" ></text> +</g> +<g > +<title>/passwd (144 samples, 0.01%)</title><rect x="447.5" y="197" width="0.2" height="15.0" fill="rgb(240,160,38)" rx="2" ry="2" /> +<text x="450.53" y="207.5" ></text> +</g> +<g > +<title>all (966,341 samples, 100%)</title><rect x="10.0" y="261" width="1180.0" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="13.00" y="271.5" ></text> +</g> +<g > +<title>enter_ioctl (121 samples, 0.01%)</title><rect x="804.8" y="181" width="0.2" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="807.84" y="191.5" ></text> +</g> +<g > +<title>/var (134 samples, 0.01%)</title><rect x="775.5" y="213" width="0.2" height="15.0" fill="rgb(231,130,28)" rx="2" ry="2" /> +<text x="778.54" y="223.5" ></text> +</g> +<g > +<title>/org.fooyin.fooyin (122 samples, 0.01%)</title><rect x="219.0" y="149" width="0.2" height="15.0" fill="rgb(247,149,46)" rx="2" ry="2" /> +<text x="222.03" y="159.5" ></text> +</g> +<g > +<title>/1001 (114 samples, 0.01%)</title><rect x="808.9" y="165" width="0.1" height="15.0" fill="rgb(234,148,32)" rx="2" ry="2" /> +<text x="811.88" y="175.5" ></text> +</g> +<g > +<title>/memory.low (274 samples, 0.03%)</title><rect x="706.4" y="85" width="0.3" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="709.38" y="95.5" ></text> +</g> +<g > +<title>enter_ioctl (88 samples, 0.01%)</title><rect x="723.5" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="726.46" y="79.5" ></text> +</g> +<g > +<title>enter_writev (456 samples, 0.05%)</title><rect x="442.6" y="213" width="0.5" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="445.57" y="223.5" ></text> +</g> +<g > +<title>/00 (84 samples, 0.01%)</title><rect x="1038.7" y="149" width="0.1" height="15.0" fill="rgb(228,153,26)" rx="2" ry="2" /> +<text x="1041.73" y="159.5" ></text> +</g> +<g > +<title>enter_newfstat (93 samples, 0.01%)</title><rect x="685.3" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="688.28" y="143.5" ></text> +</g> +<g > +<title>enter_newfstat (93 samples, 0.01%)</title><rect x="1176.5" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1179.49" y="143.5" ></text> +</g> +<g > +<title>.. (296 samples, 0.03%)</title><rect x="829.7" y="229" width="0.3" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> +<text x="832.67" y="239.5" ></text> +</g> +<g > +<title>/games (1,158 samples, 0.12%)</title><rect x="623.3" y="181" width="1.4" height="15.0" fill="rgb(243,150,42)" rx="2" ry="2" /> +<text x="626.28" y="191.5" ></text> +</g> +<g > +<title>/dconf (232 samples, 0.02%)</title><rect x="461.6" y="165" width="0.3" height="15.0" fill="rgb(249,159,48)" rx="2" ry="2" /> +<text x="464.60" y="175.5" ></text> +</g> +<g > +<title>/.. (21,728 samples, 2.25%)</title><rect x="1114.7" y="101" width="26.5" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1117.72" y="111.5" >/..</text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="735.5" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="738.46" y="79.5" ></text> +</g> +<g > +<title>enter_ioctl (100 samples, 0.01%)</title><rect x="619.7" y="181" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="622.69" y="191.5" ></text> +</g> +<g > +<title>/.. (186 samples, 0.02%)</title><rect x="38.7" y="101" width="0.2" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="41.67" y="111.5" ></text> +</g> +<g > +<title>/click (139 samples, 0.01%)</title><rect x="1037.0" y="149" width="0.2" height="15.0" fill="rgb(236,173,34)" rx="2" ry="2" /> +<text x="1040.01" y="159.5" ></text> +</g> +<g > +<title>/9d (106 samples, 0.01%)</title><rect x="1057.5" y="149" width="0.1" height="15.0" fill="rgb(245,150,44)" rx="2" ry="2" /> +<text x="1060.52" y="159.5" ></text> +</g> +<g > +<title>627317 (881 samples, 0.09%)</title><rect x="871.5" y="245" width="1.1" height="15.0" fill="rgb(238,145,37)" rx="2" ry="2" /> +<text x="874.49" y="255.5" ></text> +</g> +<g > +<title>/dev (1,429 samples, 0.15%)</title><rect x="445.8" y="213" width="1.7" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" /> +<text x="448.76" y="223.5" ></text> +</g> +<g > +<title>/org.freedesktop.Platform.ffmpeg-full (107 samples, 0.01%)</title><rect x="304.7" y="197" width="0.1" height="15.0" fill="rgb(224,149,21)" rx="2" ry="2" /> +<text x="307.65" y="207.5" ></text> +</g> +<g > +<title>/23 (135 samples, 0.01%)</title><rect x="1042.9" y="149" width="0.2" height="15.0" fill="rgb(238,134,37)" rx="2" ry="2" /> +<text x="1045.93" y="159.5" ></text> +</g> +<g > +<title>/home (273 samples, 0.03%)</title><rect x="680.8" y="213" width="0.3" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="683.81" y="223.5" ></text> +</g> +<g > +<title>enter_newfstat (90 samples, 0.01%)</title><rect x="1179.7" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1182.70" y="143.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="718.7" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="721.65" y="79.5" ></text> +</g> +<g > +<title>/python3.13 (251 samples, 0.03%)</title><rect x="1037.0" y="181" width="0.3" height="15.0" fill="rgb(240,160,39)" rx="2" ry="2" /> +<text x="1039.99" y="191.5" ></text> +</g> +<g > +<title>enter_read (104 samples, 0.01%)</title><rect x="796.0" y="133" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="799.04" y="143.5" ></text> +</g> +<g > +<title>627605 (2,868 samples, 0.30%)</title><rect x="1165.9" y="245" width="3.5" height="15.0" fill="rgb(241,145,39)" rx="2" ry="2" /> +<text x="1168.88" y="255.5" ></text> +</g> +<g > +<title>/bb (96 samples, 0.01%)</title><rect x="1061.2" y="149" width="0.1" height="15.0" fill="rgb(222,117,19)" rx="2" ry="2" /> +<text x="1064.20" y="159.5" ></text> +</g> +<g > +<title>/event3 (606 samples, 0.06%)</title><rect x="29.7" y="181" width="0.8" height="15.0" fill="rgb(245,131,44)" rx="2" ry="2" /> +<text x="32.75" y="191.5" ></text> +</g> +<g > +<title>enter_pread64 (1,208 samples, 0.13%)</title><rect x="815.4" y="149" width="1.5" height="15.0" fill="rgb(237,196,36)" rx="2" ry="2" /> +<text x="818.44" y="159.5" ></text> +</g> +<g > +<title>627450 (127 samples, 0.01%)</title><rect x="1075.3" y="245" width="0.2" height="15.0" fill="rgb(228,145,25)" rx="2" ry="2" /> +<text x="1078.32" y="255.5" ></text> +</g> +<g > +<title>/etc (139 samples, 0.01%)</title><rect x="119.1" y="213" width="0.2" height="15.0" fill="rgb(229,138,26)" rx="2" ry="2" /> +<text x="122.13" y="223.5" ></text> +</g> +<g > +<title>/memory.swap.current (276 samples, 0.03%)</title><rect x="742.3" y="85" width="0.4" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="745.32" y="95.5" ></text> +</g> +<g > +<title>enter_newfstat (86 samples, 0.01%)</title><rect x="1183.9" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1186.94" y="143.5" ></text> +</g> +<g > +<title>/ (803 samples, 0.08%)</title><rect x="830.0" y="213" width="1.0" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> +<text x="833.03" y="223.5" ></text> +</g> +<g > +<title>com.calibre_ebook.calibre (88 samples, 0.01%)</title><rect x="299.7" y="229" width="0.1" height="15.0" fill="rgb(247,149,46)" rx="2" ry="2" /> +<text x="302.73" y="239.5" ></text> +</g> +<g > +<title>org.freedesktop.Platform.GL.default (169 samples, 0.02%)</title><rect x="310.6" y="229" width="0.2" height="15.0" fill="rgb(228,179,25)" rx="2" ry="2" /> +<text x="313.64" y="239.5" ></text> +</g> +<g > +<title>/proc (1,696 samples, 0.18%)</title><rect x="620.3" y="213" width="2.1" height="15.0" fill="rgb(234,144,31)" rx="2" ry="2" /> +<text x="623.33" y="223.5" ></text> +</g> +<g > +<title>/system@00062cef3dc987bb-a4b9e39179a7d20a.journal~ (85 samples, 0.01%)</title><rect x="1177.1" y="149" width="0.1" height="15.0" fill="rgb(233,145,31)" rx="2" ry="2" /> +<text x="1180.05" y="159.5" ></text> +</g> +<g > +<title>/a.out (174 samples, 0.02%)</title><rect x="1089.8" y="181" width="0.2" height="15.0" fill="rgb(234,96,32)" rx="2" ry="2" /> +<text x="1092.80" y="191.5" ></text> +</g> +<g > +<title>627529 (5,154 samples, 0.53%)</title><rect x="1076.2" y="245" width="6.3" height="15.0" fill="rgb(232,145,30)" rx="2" ry="2" /> +<text x="1079.21" y="255.5" ></text> +</g> +<g > +<title> (1,725 samples, 0.18%)</title><rect x="881.8" y="229" width="2.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="884.83" y="239.5" ></text> +</g> +<g > +<title>enter_read (94 samples, 0.01%)</title><rect x="714.2" y="69" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="717.25" y="79.5" ></text> +</g> +<g > +<title>/lib (159 samples, 0.02%)</title><rect x="1175.0" y="197" width="0.2" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="1178.05" y="207.5" ></text> +</g> +<g > +<title>/cgo (219 samples, 0.02%)</title><rect x="1072.9" y="133" width="0.3" height="15.0" fill="rgb(246,151,45)" rx="2" ry="2" /> +<text x="1075.94" y="143.5" ></text> +</g> +<g > +<title>enter_read (126 samples, 0.01%)</title><rect x="799.9" y="165" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="802.88" y="175.5" ></text> +</g> +<g > +<title>/d4 (102 samples, 0.01%)</title><rect x="1064.2" y="149" width="0.2" height="15.0" fill="rgb(242,156,41)" rx="2" ry="2" /> +<text x="1067.24" y="159.5" ></text> +</g> +<g > +<title>anon_inode:[eventfd] (133 samples, 0.01%)</title><rect x="807.0" y="229" width="0.2" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="810.02" y="239.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="740.8" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="743.81" y="79.5" ></text> +</g> +<g > +<title>/NotoSerif[wght].ttf (16,731 samples, 1.73%)</title><rect x="840.5" y="149" width="20.4" height="15.0" fill="rgb(239,159,37)" rx="2" ry="2" /> +<text x="843.51" y="159.5" ></text> +</g> +<g > +<title>/stat (83 samples, 0.01%)</title><rect x="621.9" y="181" width="0.1" height="15.0" fill="rgb(229,122,26)" rx="2" ry="2" /> +<text x="624.86" y="191.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Contacts.SearchProvider.slice (1,709 samples, 0.18%)</title><rect x="710.2" y="101" width="2.0" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="713.16" y="111.5" ></text> +</g> +<g > +<title>/dmabuf: (1,717 samples, 0.18%)</title><rect x="459.5" y="213" width="2.1" height="15.0" fill="rgb(231,165,29)" rx="2" ry="2" /> +<text x="462.46" y="223.5" ></text> +</g> +<g > +<title>/libc.so (122 samples, 0.01%)</title><rect x="1090.3" y="53" width="0.1" height="15.0" fill="rgb(240,99,39)" rx="2" ry="2" /> +<text x="1093.26" y="63.5" ></text> +</g> +<g > +<title>/systemd (271 samples, 0.03%)</title><rect x="767.2" y="197" width="0.3" height="15.0" fill="rgb(240,145,39)" rx="2" ry="2" /> +<text x="770.21" y="207.5" ></text> +</g> +<g > +<title>/null (111 samples, 0.01%)</title><rect x="673.9" y="197" width="0.2" height="15.0" fill="rgb(224,145,21)" rx="2" ry="2" /> +<text x="676.93" y="207.5" ></text> +</g> +<g > +<title>/system@c9e095ab43864b41b4f737a014eaaa58-000000000052120a-000621d29f42ea46.journal (90 samples, 0.01%)</title><rect x="1180.5" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1183.54" y="159.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="764.1" y="85" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="767.10" y="95.5" ></text> +</g> +<g > +<title>enter_statx (88 samples, 0.01%)</title><rect x="241.6" y="133" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> +<text x="244.56" y="143.5" ></text> +</g> +<g > +<title> (214 samples, 0.02%)</title><rect x="776.8" y="229" width="0.2" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="779.75" y="239.5" ></text> +</g> +<g > +<title>/8d (126 samples, 0.01%)</title><rect x="1055.6" y="149" width="0.2" height="15.0" fill="rgb(246,156,45)" rx="2" ry="2" /> +<text x="1058.60" y="159.5" ></text> +</g> +<g > +<title>/user-1001@000635427d4e119f-67763b8dac2b799f.journal~ (85 samples, 0.01%)</title><rect x="1184.2" y="149" width="0.1" height="15.0" fill="rgb(233,116,31)" rx="2" ry="2" /> +<text x="1187.20" y="159.5" ></text> +</g> +<g > +<title>com.slack.Slack (84 samples, 0.01%)</title><rect x="301.3" y="229" width="0.1" height="15.0" fill="rgb(242,149,40)" rx="2" ry="2" /> +<text x="304.30" y="239.5" ></text> +</g> +<g > +<title>/usr (1,693 samples, 0.18%)</title><rect x="1170.3" y="213" width="2.1" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="1173.33" y="223.5" ></text> +</g> +<g > +<title>/memory.stat (264 samples, 0.03%)</title><rect x="721.8" y="85" width="0.3" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="724.78" y="95.5" ></text> +</g> +<g > +<title>/.config (321 samples, 0.03%)</title><rect x="1144.8" y="181" width="0.3" height="15.0" fill="rgb(239,154,37)" rx="2" ry="2" /> +<text x="1147.75" y="191.5" ></text> +</g> +<g > +<title>enter_statx (120 samples, 0.01%)</title><rect x="235.5" y="133" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> +<text x="238.47" y="143.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="721.3" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="724.29" y="79.5" ></text> +</g> +<g > +<title> (150 samples, 0.02%)</title><rect x="1089.2" y="229" width="0.2" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1092.18" y="239.5" ></text> +</g> +<g > +<title>/e7 (112 samples, 0.01%)</title><rect x="1066.6" y="149" width="0.1" height="15.0" fill="rgb(236,141,34)" rx="2" ry="2" /> +<text x="1069.60" y="159.5" ></text> +</g> +<g > +<title>enter_read (89 samples, 0.01%)</title><rect x="690.5" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="693.53" y="79.5" ></text> +</g> +<g > +<title>/io.github.Hexchat (122 samples, 0.01%)</title><rect x="218.2" y="149" width="0.2" height="15.0" fill="rgb(229,134,26)" rx="2" ry="2" /> +<text x="221.21" y="159.5" ></text> +</g> +<g > +<title>627294 (880 samples, 0.09%)</title><rect x="869.3" y="245" width="1.1" height="15.0" fill="rgb(247,145,47)" rx="2" ry="2" /> +<text x="872.35" y="255.5" ></text> +</g> +<g > +<title>/.cache (205 samples, 0.02%)</title><rect x="1166.6" y="181" width="0.3" height="15.0" fill="rgb(245,154,44)" rx="2" ry="2" /> +<text x="1169.63" y="191.5" ></text> +</g> +<g > +<title>enter_statx (546 samples, 0.06%)</title><rect x="679.3" y="213" width="0.6" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> +<text x="682.25" y="223.5" ></text> +</g> +<g > +<title>usr (129 samples, 0.01%)</title><rect x="832.1" y="229" width="0.2" height="15.0" fill="rgb(236,129,34)" rx="2" ry="2" /> +<text x="835.14" y="239.5" ></text> +</g> +<g > +<title>/libbpf (2,384 samples, 0.25%)</title><rect x="1093.8" y="101" width="2.9" height="15.0" fill="rgb(247,99,47)" rx="2" ry="2" /> +<text x="1096.79" y="111.5" ></text> +</g> +<g > +<title>/lib (548 samples, 0.06%)</title><rect x="391.3" y="197" width="0.7" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="394.31" y="207.5" ></text> +</g> +<g > +<title>enter_openat (602 samples, 0.06%)</title><rect x="618.1" y="165" width="0.7" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="621.07" y="175.5" ></text> +</g> +<g > +<title>/ior (134 samples, 0.01%)</title><rect x="1069.6" y="165" width="0.2" height="15.0" fill="rgb(240,134,39)" rx="2" ry="2" /> +<text x="1072.64" y="175.5" ></text> +</g> +<g > +<title>/flushed (194 samples, 0.02%)</title><rect x="683.1" y="165" width="0.3" height="15.0" fill="rgb(247,158,46)" rx="2" ry="2" /> +<text x="686.12" y="175.5" ></text> +</g> +<g > +<title>/34 (89 samples, 0.01%)</title><rect x="621.6" y="197" width="0.1" height="15.0" fill="rgb(236,125,34)" rx="2" ry="2" /> +<text x="624.63" y="207.5" ></text> +</g> +<g > +<title>/gcc (35,344 samples, 3.66%)</title><rect x="145.3" y="181" width="43.2" height="15.0" fill="rgb(234,144,32)" rx="2" ry="2" /> +<text x="148.33" y="191.5" >/gcc</text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="704.2" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="707.22" y="79.5" ></text> +</g> +<g > +<title>/renderD128 (8,253 samples, 0.85%)</title><rect x="448.2" y="181" width="10.1" height="15.0" fill="rgb(237,137,35)" rx="2" ry="2" /> +<text x="451.25" y="191.5" ></text> +</g> +<g > +<title>enter_close (116 samples, 0.01%)</title><rect x="476.5" y="165" width="0.1" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="479.46" y="175.5" ></text> +</g> +<g > +<title>/bffc4771459b78ae9567a3002e6934a36114a08f472877ac245907c4b4c70243-d (296 samples, 0.03%)</title><rect x="1080.0" y="133" width="0.3" height="15.0" fill="rgb(251,104,51)" rx="2" ry="2" /> +<text x="1082.97" y="143.5" ></text> +</g> +<g > +<title>625680 (179 samples, 0.02%)</title><rect x="806.3" y="245" width="0.3" height="15.0" fill="rgb(235,151,33)" rx="2" ry="2" /> +<text x="809.33" y="255.5" ></text> +</g> +<g > +<title>/system@d62e597f0e2949bda5784759a1e3ccf2-0000000000630a49-00062a295d150579.journal (83 samples, 0.01%)</title><rect x="1180.8" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1183.82" y="159.5" ></text> +</g> +<g > +<title>/16 (96 samples, 0.01%)</title><rect x="1041.3" y="149" width="0.2" height="15.0" fill="rgb(234,129,32)" rx="2" ry="2" /> +<text x="1044.34" y="159.5" ></text> +</g> +<g > +<title>/go.o (4,644 samples, 0.48%)</title><rect x="1108.8" y="181" width="5.7" height="15.0" fill="rgb(248,144,48)" rx="2" ry="2" /> +<text x="1111.79" y="191.5" ></text> +</g> +<g > +<title>/.. (253 samples, 0.03%)</title><rect x="1085.9" y="101" width="0.3" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1088.89" y="111.5" ></text> +</g> +<g > +<title>enter_openat (84 samples, 0.01%)</title><rect x="875.9" y="213" width="0.1" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="878.94" y="223.5" ></text> +</g> +<g > +<title>/memory.pressure (308 samples, 0.03%)</title><rect x="729.5" y="85" width="0.4" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="732.48" y="95.5" ></text> +</g> +<g > +<title>enter_lseek (960 samples, 0.10%)</title><rect x="1139.3" y="37" width="1.2" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="1142.28" y="47.5" ></text> +</g> +<g > +<title>/idb (626 samples, 0.06%)</title><rect x="798.0" y="85" width="0.7" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" /> +<text x="800.97" y="95.5" ></text> +</g> +<g > +<title>/f42 (95 samples, 0.01%)</title><rect x="234.1" y="117" width="0.1" height="15.0" fill="rgb(242,145,40)" rx="2" ry="2" /> +<text x="237.05" y="127.5" ></text> +</g> +<g > +<title>enter_read (86 samples, 0.01%)</title><rect x="736.2" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="739.16" y="79.5" ></text> +</g> +<g > +<title>/__pycache__ (99 samples, 0.01%)</title><rect x="1036.5" y="133" width="0.2" height="15.0" fill="rgb(235,103,33)" rx="2" ry="2" /> +<text x="1039.54" y="143.5" ></text> +</g> +<g > +<title>/power_supply (146 samples, 0.02%)</title><rect x="775.9" y="85" width="0.2" height="15.0" fill="rgb(240,154,39)" rx="2" ry="2" /> +<text x="778.95" y="95.5" ></text> +</g> +<g > +<title>/io.github.celluloid_player.Celluloid (124 samples, 0.01%)</title><rect x="218.5" y="149" width="0.1" height="15.0" fill="rgb(246,134,45)" rx="2" ry="2" /> +<text x="221.49" y="159.5" ></text> +</g> +<g > +<title>enter_ioctl (261 samples, 0.03%)</title><rect x="463.1" y="149" width="0.3" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="466.06" y="159.5" ></text> +</g> +<g > +<title>anon_inode:[eventfd] (82 samples, 0.01%)</title><rect x="617.8" y="229" width="0.1" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="620.83" y="239.5" ></text> +</g> +<g > +<title>enter_read (100 samples, 0.01%)</title><rect x="802.3" y="165" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="805.35" y="175.5" ></text> +</g> +<g > +<title>/home (493 samples, 0.05%)</title><rect x="1143.8" y="213" width="0.6" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="1146.81" y="223.5" ></text> +</g> +<g > +<title>/memory.swap.current (270 samples, 0.03%)</title><rect x="756.7" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="759.70" y="95.5" ></text> +</g> +<g > +<title>625670 (1,284 samples, 0.13%)</title><rect x="804.6" y="245" width="1.6" height="15.0" fill="rgb(236,151,35)" rx="2" ry="2" /> +<text x="807.62" y="255.5" ></text> +</g> +<g > +<title>/lib (285 samples, 0.03%)</title><rect x="865.7" y="197" width="0.3" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="868.68" y="207.5" ></text> +</g> +<g > +<title>enter_read (520 samples, 0.05%)</title><rect x="1071.2" y="133" width="0.6" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="1074.16" y="143.5" ></text> +</g> +<g > +<title>enter_newfstat (90 samples, 0.01%)</title><rect x="709.6" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="712.56" y="79.5" ></text> +</g> +<g > +<title>/a.out (174 samples, 0.02%)</title><rect x="1087.6" y="181" width="0.3" height="15.0" fill="rgb(234,96,32)" rx="2" ry="2" /> +<text x="1090.64" y="191.5" ></text> +</g> +<g > +<title>301263 (105,115 samples, 10.88%)</title><rect x="489.3" y="245" width="128.3" height="15.0" fill="rgb(240,198,39)" rx="2" ry="2" /> +<text x="492.28" y="255.5" >301263</text> +</g> +<g > +<title>/usr (734 samples, 0.08%)</title><rect x="1087.9" y="213" width="0.9" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="1090.91" y="223.5" ></text> +</g> +<g > +<title> (290 samples, 0.03%)</title><rect x="1082.5" y="229" width="0.4" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1085.50" y="239.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.BrowserConnector.slice (1,665 samples, 0.17%)</title><rect x="702.0" y="101" width="2.0" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="704.97" y="111.5" ></text> +</g> +<g > +<title>/fonts (495 samples, 0.05%)</title><rect x="864.7" y="197" width="0.6" height="15.0" fill="rgb(238,149,36)" rx="2" ry="2" /> +<text x="867.69" y="207.5" ></text> +</g> +<g > +<title>/3c (103 samples, 0.01%)</title><rect x="1046.0" y="149" width="0.1" height="15.0" fill="rgb(223,128,20)" rx="2" ry="2" /> +<text x="1048.97" y="159.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="724.6" y="69" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="727.65" y="79.5" ></text> +</g> +<g > +<title>enter_read (94 samples, 0.01%)</title><rect x="1077.7" y="117" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="1080.72" y="127.5" ></text> +</g> +<g > +<title>/org.videolan.VLC.Locale (212 samples, 0.02%)</title><rect x="248.1" y="149" width="0.2" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="251.06" y="159.5" ></text> +</g> +<g > +<title>/conf.avail (1,359 samples, 0.14%)</title><rect x="866.0" y="165" width="1.7" height="15.0" fill="rgb(233,164,31)" rx="2" ry="2" /> +<text x="869.04" y="175.5" ></text> +</g> +<g > +<title> (514 samples, 0.05%)</title><rect x="781.4" y="229" width="0.6" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="784.37" y="239.5" ></text> +</g> +<g > +<title>/system@5d71b28e8a574021b181e0c340c01308-00000000004dc291-00061ee1568dc06b.journal (97 samples, 0.01%)</title><rect x="1179.0" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1181.99" y="159.5" ></text> +</g> +<g > +<title>enter_write (212 samples, 0.02%)</title><rect x="328.1" y="213" width="0.3" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="331.14" y="223.5" ></text> +</g> +<g > +<title>/fortune (725 samples, 0.08%)</title><rect x="1142.9" y="165" width="0.8" height="15.0" fill="rgb(246,149,46)" rx="2" ry="2" /> +<text x="1145.85" y="175.5" ></text> +</g> +<g > +<title>/conf.d (482 samples, 0.05%)</title><rect x="1166.0" y="181" width="0.6" height="15.0" fill="rgb(248,164,47)" rx="2" ry="2" /> +<text x="1169.02" y="191.5" ></text> +</g> +<g > +<title>enter_newfstat (86 samples, 0.01%)</title><rect x="1183.4" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1186.41" y="143.5" ></text> +</g> +<g > +<title>/flathub (905 samples, 0.09%)</title><rect x="315.4" y="197" width="1.1" height="15.0" fill="rgb(227,158,25)" rx="2" ry="2" /> +<text x="318.42" y="207.5" ></text> +</g> +<g > +<title>/4d (98 samples, 0.01%)</title><rect x="1048.0" y="149" width="0.1" height="15.0" fill="rgb(238,120,36)" rx="2" ry="2" /> +<text x="1050.96" y="159.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="739.8" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="742.83" y="79.5" ></text> +</g> +<g > +<title>/libnss_systemd.so.2 (1,494 samples, 0.15%)</title><rect x="99.5" y="197" width="1.9" height="15.0" fill="rgb(250,99,50)" rx="2" ry="2" /> +<text x="102.53" y="207.5" ></text> +</g> +<g > +<title>enter_newfstat (90 samples, 0.01%)</title><rect x="762.6" y="85" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="765.60" y="95.5" ></text> +</g> +<g > +<title>/passwd (105 samples, 0.01%)</title><rect x="878.6" y="197" width="0.1" height="15.0" fill="rgb(240,160,38)" rx="2" ry="2" /> +<text x="881.57" y="207.5" ></text> +</g> +<g > +<title>/system@7068484a0f964aa6b6df909badc186fe-0000000000546f24-0006232fb4be18fe.journal (85 samples, 0.01%)</title><rect x="1179.3" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1182.27" y="159.5" ></text> +</g> +<g > +<title>/.. (271 samples, 0.03%)</title><rect x="1087.9" y="117" width="0.4" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1090.94" y="127.5" ></text> +</g> +<g > +<title> (290 samples, 0.03%)</title><rect x="1086.8" y="229" width="0.3" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1089.78" y="239.5" ></text> +</g> +<g > +<title>/46 (86 samples, 0.01%)</title><rect x="243.0" y="117" width="0.1" height="15.0" fill="rgb(231,114,29)" rx="2" ry="2" /> +<text x="245.97" y="127.5" ></text> +</g> +<g > +<title> (358 samples, 0.04%)</title><rect x="807.5" y="229" width="0.5" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="810.52" y="239.5" ></text> +</g> +<g > +<title>socket:[71370] (456 samples, 0.05%)</title><rect x="442.6" y="229" width="0.5" height="15.0" fill="rgb(240,175,39)" rx="2" ry="2" /> +<text x="445.57" y="239.5" ></text> +</g> +<g > +<title>/system@0aea203ba61848c3941e879d6c338702-00000000004d0347-00061dc3f341e4cc.journal (94 samples, 0.01%)</title><rect x="1178.0" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1181.01" y="159.5" ></text> +</g> +<g > +<title>enter_read (232 samples, 0.02%)</title><rect x="483.3" y="165" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="486.26" y="175.5" ></text> +</g> +<g > +<title>/smaps_rollup (144 samples, 0.01%)</title><rect x="781.0" y="181" width="0.1" height="15.0" fill="rgb(243,145,42)" rx="2" ry="2" /> +<text x="783.95" y="191.5" ></text> +</g> +<g > +<title>/etc (346 samples, 0.04%)</title><rect x="766.3" y="213" width="0.4" height="15.0" fill="rgb(229,138,26)" rx="2" ry="2" /> +<text x="769.33" y="223.5" ></text> +</g> +<g > +<title>/pts (143 samples, 0.01%)</title><rect x="674.1" y="197" width="0.1" height="15.0" fill="rgb(236,138,35)" rx="2" ry="2" /> +<text x="677.07" y="207.5" ></text> +</g> +<g > +<title>/48 (97 samples, 0.01%)</title><rect x="242.6" y="117" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> +<text x="245.57" y="127.5" ></text> +</g> +<g > +<title>enter_newfstat (85 samples, 0.01%)</title><rect x="1177.8" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1180.79" y="143.5" ></text> +</g> +<g > +<title>/fortune (120 samples, 0.01%)</title><rect x="1175.2" y="165" width="0.2" height="15.0" fill="rgb(246,149,46)" rx="2" ry="2" /> +<text x="1178.24" y="175.5" ></text> +</g> +<g > +<title>/dev.geopjr.Calligraphy (128 samples, 0.01%)</title><rect x="217.9" y="149" width="0.2" height="15.0" fill="rgb(244,152,43)" rx="2" ry="2" /> +<text x="220.94" y="159.5" ></text> +</g> +<g > +<title>/48x48 (219 samples, 0.02%)</title><rect x="221.1" y="85" width="0.3" height="15.0" fill="rgb(235,107,33)" rx="2" ry="2" /> +<text x="224.14" y="95.5" ></text> +</g> +<g > +<title>enter_lseek (15,894 samples, 1.64%)</title><rect x="840.5" y="133" width="19.4" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="843.53" y="143.5" ></text> +</g> +<g > +<title>enter_statx (107 samples, 0.01%)</title><rect x="240.3" y="133" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> +<text x="243.30" y="143.5" ></text> +</g> +<g > +<title>/a.out (557 samples, 0.06%)</title><rect x="1071.1" y="149" width="0.7" height="15.0" fill="rgb(234,96,32)" rx="2" ry="2" /> +<text x="1074.12" y="159.5" ></text> +</g> +<g > +<title>enter_write (196 samples, 0.02%)</title><rect x="45.3" y="213" width="0.2" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="48.30" y="223.5" ></text> +</g> +<g > +<title>/sudo (118 samples, 0.01%)</title><rect x="676.7" y="181" width="0.1" height="15.0" fill="rgb(245,119,44)" rx="2" ry="2" /> +<text x="679.67" y="191.5" ></text> +</g> +<g > +<title>/memory.current (276 samples, 0.03%)</title><rect x="757.0" y="85" width="0.4" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="760.03" y="95.5" ></text> +</g> +<g > +<title>/fonts (224 samples, 0.02%)</title><rect x="867.7" y="181" width="0.3" height="15.0" fill="rgb(238,149,36)" rx="2" ry="2" /> +<text x="870.70" y="191.5" ></text> +</g> +<g > +<title>/d8 (112 samples, 0.01%)</title><rect x="1064.7" y="149" width="0.2" height="15.0" fill="rgb(235,143,33)" rx="2" ry="2" /> +<text x="1067.72" y="159.5" ></text> +</g> +<g > +<title>/memory.stat (270 samples, 0.03%)</title><rect x="689.3" y="85" width="0.4" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="692.32" y="95.5" ></text> +</g> +<g > +<title> (763 samples, 0.08%)</title><rect x="682.6" y="229" width="0.9" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="685.55" y="239.5" ></text> +</g> +<g > +<title>enter_newfstat (90 samples, 0.01%)</title><rect x="1179.2" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1182.16" y="143.5" ></text> +</g> +<g > +<title> (1,180 samples, 0.12%)</title><rect x="830.0" y="229" width="1.5" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="833.03" y="239.5" ></text> +</g> +<g > +<title>/games (436 samples, 0.05%)</title><rect x="101.4" y="181" width="0.5" height="15.0" fill="rgb(243,150,42)" rx="2" ry="2" /> +<text x="104.36" y="191.5" ></text> +</g> +<g > +<title>/runtime (2,560 samples, 0.26%)</title><rect x="303.3" y="213" width="3.2" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" /> +<text x="306.33" y="223.5" ></text> +</g> +<g > +<title>/event9 (1,919 samples, 0.20%)</title><rect x="30.5" y="181" width="2.3" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="33.49" y="191.5" ></text> +</g> +<g > +<title>enter_newfstat (103 samples, 0.01%)</title><rect x="1175.0" y="37" width="0.2" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1178.05" y="47.5" ></text> +</g> +<g > +<title>/usr (118 samples, 0.01%)</title><rect x="1093.4" y="213" width="0.1" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="1096.40" y="223.5" ></text> +</g> +<g > +<title>/x86_64 (104 samples, 0.01%)</title><rect x="232.6" y="133" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="235.57" y="143.5" ></text> +</g> +<g > +<title>enter_mmap (118 samples, 0.01%)</title><rect x="1076.4" y="181" width="0.1" height="15.0" fill="rgb(240,196,39)" rx="2" ry="2" /> +<text x="1079.35" y="191.5" ></text> +</g> +<g > +<title>/home (1,891 samples, 0.20%)</title><rect x="674.2" y="213" width="2.4" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="677.25" y="223.5" ></text> +</g> +<g > +<title> (44,269 samples, 4.58%)</title><rect x="343.6" y="229" width="54.0" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="346.58" y="239.5" ></text> +</g> +<g > +<title>enter_ioctl (92 samples, 0.01%)</title><rect x="743.7" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="746.71" y="79.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="719.7" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="722.67" y="79.5" ></text> +</g> +<g > +<title>/lib64 (147 samples, 0.02%)</title><rect x="1175.0" y="69" width="0.2" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="1178.05" y="79.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="706.3" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="709.27" y="79.5" ></text> +</g> +<g > +<title>enter_newfstat (86 samples, 0.01%)</title><rect x="736.0" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="739.00" y="79.5" ></text> +</g> +<g > +<title>/user-1001@00061c9741dc2cf6-94e8180c6871d756.journal~ (114 samples, 0.01%)</title><rect x="1182.9" y="149" width="0.1" height="15.0" fill="rgb(233,116,31)" rx="2" ry="2" /> +<text x="1185.85" y="159.5" ></text> +</g> +<g > +<title>/.local (316 samples, 0.03%)</title><rect x="681.6" y="181" width="0.4" height="15.0" fill="rgb(229,163,26)" rx="2" ry="2" /> +<text x="684.62" y="191.5" ></text> +</g> +<g > +<title>enter_read (232 samples, 0.02%)</title><rect x="481.5" y="165" width="0.3" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="484.49" y="175.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="691.6" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="694.57" y="79.5" ></text> +</g> +<g > +<title>/memory.low (276 samples, 0.03%)</title><rect x="763.5" y="101" width="0.4" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="766.54" y="111.5" ></text> +</g> +<g > +<title>enter_read (646 samples, 0.07%)</title><rect x="827.3" y="213" width="0.7" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="830.26" y="223.5" ></text> +</g> +<g > +<title>/memory.min (276 samples, 0.03%)</title><rect x="757.7" y="85" width="0.3" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="760.71" y="95.5" ></text> +</g> +<g > +<title>/.. (101 samples, 0.01%)</title><rect x="676.8" y="85" width="0.1" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="679.82" y="95.5" ></text> +</g> +<g > +<title>enter_newfstat (232 samples, 0.02%)</title><rect x="480.3" y="165" width="0.3" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="483.28" y="175.5" ></text> +</g> +<g > +<title>/app.slice (59,953 samples, 6.20%)</title><rect x="687.9" y="117" width="73.3" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="690.95" y="127.5" >/app.slice</text> +</g> +<g > +<title>/local (346 samples, 0.04%)</title><rect x="676.9" y="197" width="0.5" height="15.0" fill="rgb(229,118,26)" rx="2" ry="2" /> +<text x="679.95" y="207.5" ></text> +</g> +<g > +<title>enter_newfstat (88 samples, 0.01%)</title><rect x="738.0" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="740.99" y="79.5" ></text> +</g> +<g > +<title>enter_writev (88 samples, 0.01%)</title><rect x="397.8" y="213" width="0.1" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="400.77" y="223.5" ></text> +</g> +<g > +<title>enter_newfstat (85 samples, 0.01%)</title><rect x="1177.7" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1180.69" y="143.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="717.3" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="720.28" y="79.5" ></text> +</g> +<g > +<title>/memory.swap.current (270 samples, 0.03%)</title><rect x="689.7" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="692.65" y="95.5" ></text> +</g> +<g > +<title>/7d (94 samples, 0.01%)</title><rect x="1053.7" y="149" width="0.1" height="15.0" fill="rgb(247,161,46)" rx="2" ry="2" /> +<text x="1056.68" y="159.5" ></text> +</g> +<g > +<title>/gcc (101 samples, 0.01%)</title><rect x="676.8" y="181" width="0.1" height="15.0" fill="rgb(234,144,32)" rx="2" ry="2" /> +<text x="679.82" y="191.5" ></text> +</g> +<g > +<title>enter_close (134 samples, 0.01%)</title><rect x="1074.3" y="213" width="0.1" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="1077.28" y="223.5" ></text> +</g> +<g > +<title>/memory.min (270 samples, 0.03%)</title><rect x="690.6" y="85" width="0.4" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="693.64" y="95.5" ></text> +</g> +<g > +<title>/usr (731 samples, 0.08%)</title><rect x="1092.2" y="213" width="0.9" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="1095.23" y="223.5" ></text> +</g> +<g > +<title>/memory.stat (270 samples, 0.03%)</title><rect x="733.9" y="85" width="0.4" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="736.94" y="95.5" ></text> +</g> +<g > +<title>/gcc (204 samples, 0.02%)</title><rect x="38.7" y="181" width="0.2" height="15.0" fill="rgb(234,144,32)" rx="2" ry="2" /> +<text x="41.67" y="191.5" ></text> +</g> +<g > +<title>enter_read (94 samples, 0.01%)</title><rect x="748.7" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="751.72" y="79.5" ></text> +</g> +<g > +<title>/usr (821 samples, 0.08%)</title><rect x="676.6" y="213" width="1.0" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="679.56" y="223.5" ></text> +</g> +<g > +<title>enter_newfstat (87 samples, 0.01%)</title><rect x="1181.0" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1184.03" y="143.5" ></text> +</g> +<g > +<title>/memory.low (270 samples, 0.03%)</title><rect x="714.7" y="85" width="0.3" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="717.69" y="95.5" ></text> +</g> +<g > +<title>/status (638 samples, 0.07%)</title><rect x="482.8" y="181" width="0.7" height="15.0" fill="rgb(233,122,30)" rx="2" ry="2" /> +<text x="485.76" y="191.5" ></text> +</g> +<g > +<title>enter_newfstat (87 samples, 0.01%)</title><rect x="1181.7" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1184.66" y="143.5" ></text> +</g> +<g > +<title>/x86_64 (86 samples, 0.01%)</title><rect x="247.8" y="133" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="250.83" y="143.5" ></text> +</g> +<g > +<title>enter_ioctl (88 samples, 0.01%)</title><rect x="693.0" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="696.03" y="79.5" ></text> +</g> +<g > +<title>enter_ioctl (42,516 samples, 4.40%)</title><rect x="489.3" y="165" width="51.9" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="492.28" y="175.5" >enter..</text> +</g> +<g > +<title>socket:[1154081] (107 samples, 0.01%)</title><rect x="476.2" y="229" width="0.1" height="15.0" fill="rgb(238,175,37)" rx="2" ry="2" /> +<text x="479.20" y="239.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="729.0" y="69" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="732.05" y="79.5" ></text> +</g> +<g > +<title>/fortune (111 samples, 0.01%)</title><rect x="812.6" y="165" width="0.1" height="15.0" fill="rgb(246,149,46)" rx="2" ry="2" /> +<text x="815.55" y="175.5" ></text> +</g> +<g > +<title>/36a1e8a7fd435c3ac73e34109f9465af4958f95fa58b7d6ff0f5cd70b9a1bf7e (103 samples, 0.01%)</title><rect x="234.7" y="101" width="0.1" height="15.0" fill="rgb(249,119,48)" rx="2" ry="2" /> +<text x="237.69" y="111.5" ></text> +</g> +<g > +<title>/paul (182 samples, 0.02%)</title><rect x="862.0" y="197" width="0.2" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="865.00" y="207.5" ></text> +</g> +<g > +<title>/fc (95 samples, 0.01%)</title><rect x="1069.1" y="149" width="0.1" height="15.0" fill="rgb(228,149,25)" rx="2" ry="2" /> +<text x="1072.09" y="159.5" ></text> +</g> +<g > +<title>/x86_64 (161 samples, 0.02%)</title><rect x="305.3" y="181" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="308.27" y="191.5" ></text> +</g> +<g > +<title>/icons (326 samples, 0.03%)</title><rect x="795.6" y="165" width="0.4" height="15.0" fill="rgb(244,134,43)" rx="2" ry="2" /> +<text x="798.58" y="175.5" ></text> +</g> +<g > +<title>/share (1,514 samples, 0.16%)</title><rect x="1170.6" y="197" width="1.8" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="1173.55" y="207.5" ></text> +</g> +<g > +<title>enter_read (94 samples, 0.01%)</title><rect x="764.5" y="85" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="767.50" y="95.5" ></text> +</g> +<g > +<title> (2,525 samples, 0.26%)</title><rect x="778.1" y="229" width="3.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="781.11" y="239.5" ></text> +</g> +<g > +<title>enter_read (1,594 samples, 0.16%)</title><rect x="881.9" y="149" width="2.0" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="884.95" y="159.5" ></text> +</g> +<g > +<title>/memory.low (270 samples, 0.03%)</title><rect x="749.2" y="85" width="0.3" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="752.16" y="95.5" ></text> +</g> +<g > +<title>enter_newfstat (88 samples, 0.01%)</title><rect x="729.9" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="732.91" y="79.5" ></text> +</g> +<g > +<title>/dev (99 samples, 0.01%)</title><rect x="774.7" y="213" width="0.1" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" /> +<text x="777.67" y="223.5" ></text> +</g> +<g > +<title>/23.08 (120 samples, 0.01%)</title><rect x="239.9" y="117" width="0.1" height="15.0" fill="rgb(233,134,30)" rx="2" ry="2" /> +<text x="242.90" y="127.5" ></text> +</g> +<g > +<title>enter_close (116 samples, 0.01%)</title><rect x="479.2" y="165" width="0.2" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="482.22" y="175.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="731.1" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="734.06" y="79.5" ></text> +</g> +<g > +<title>enter_ioctl (92 samples, 0.01%)</title><rect x="717.4" y="69" width="0.2" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="720.44" y="79.5" ></text> +</g> +<g > +<title> (192 samples, 0.02%)</title><rect x="784.0" y="229" width="0.2" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="786.98" y="239.5" ></text> +</g> +<g > +<title> (29,613 samples, 3.06%)</title><rect x="1038.6" y="229" width="36.2" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1041.61" y="239.5" ></text> +</g> +<g > +<title>enter_read (162 samples, 0.02%)</title><rect x="331.6" y="181" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="334.60" y="191.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="731.8" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="734.78" y="79.5" ></text> +</g> +<g > +<title>10829 (13,821 samples, 1.43%)</title><rect x="99.0" y="245" width="16.9" height="15.0" fill="rgb(230,112,28)" rx="2" ry="2" /> +<text x="101.99" y="255.5" ></text> +</g> +<g > +<title>/libc.so.6 (97 samples, 0.01%)</title><rect x="1083.2" y="197" width="0.1" height="15.0" fill="rgb(243,99,42)" rx="2" ry="2" /> +<text x="1086.21" y="207.5" ></text> +</g> +<g > +<title>enter_ioctl (156 samples, 0.02%)</title><rect x="391.1" y="165" width="0.2" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="394.12" y="175.5" ></text> +</g> +<g > +<title>org.gnome.Screenshot (100 samples, 0.01%)</title><rect x="312.6" y="229" width="0.1" height="15.0" fill="rgb(237,179,36)" rx="2" ry="2" /> +<text x="315.56" y="239.5" ></text> +</g> +<g > +<title>enter_mmap (92 samples, 0.01%)</title><rect x="777.0" y="181" width="0.2" height="15.0" fill="rgb(240,196,39)" rx="2" ry="2" /> +<text x="780.05" y="191.5" ></text> +</g> +<g > +<title>/lib64 (156 samples, 0.02%)</title><rect x="391.1" y="197" width="0.2" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="394.12" y="207.5" ></text> +</g> +<g > +<title>/15 (690 samples, 0.07%)</title><rect x="1087.9" y="149" width="0.9" height="15.0" fill="rgb(236,132,34)" rx="2" ry="2" /> +<text x="1090.94" y="159.5" ></text> +</g> +<g > +<title>/null (92 samples, 0.01%)</title><rect x="777.0" y="197" width="0.2" height="15.0" fill="rgb(224,145,21)" rx="2" ry="2" /> +<text x="780.05" y="207.5" ></text> +</g> +<g > +<title>enter_write (1,620 samples, 0.17%)</title><rect x="146.0" y="37" width="2.0" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="148.98" y="47.5" ></text> +</g> +<g > +<title>/libgcc_s.so.1 (106 samples, 0.01%)</title><rect x="1089.7" y="197" width="0.1" height="15.0" fill="rgb(235,99,33)" rx="2" ry="2" /> +<text x="1092.65" y="207.5" ></text> +</g> +<g > +<title>/622015 (304 samples, 0.03%)</title><rect x="799.2" y="197" width="0.4" height="15.0" fill="rgb(244,117,43)" rx="2" ry="2" /> +<text x="802.19" y="207.5" ></text> +</g> +<g > +<title>/renderD128 (414 samples, 0.04%)</title><rect x="781.4" y="181" width="0.5" height="15.0" fill="rgb(237,137,35)" rx="2" ry="2" /> +<text x="784.37" y="191.5" ></text> +</g> +<g > +<title>enter_newfstat (90 samples, 0.01%)</title><rect x="715.8" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="718.79" y="79.5" ></text> +</g> +<g > +<title>anon_inode:[eventfd] (607 samples, 0.06%)</title><rect x="680.0" y="229" width="0.8" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="683.04" y="239.5" ></text> +</g> +<g > +<title>enter_newfstat (116 samples, 0.01%)</title><rect x="483.0" y="165" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="485.98" y="175.5" ></text> +</g> +<g > +<title>/aa (87 samples, 0.01%)</title><rect x="1059.1" y="149" width="0.1" height="15.0" fill="rgb(225,125,22)" rx="2" ry="2" /> +<text x="1062.11" y="159.5" ></text> +</g> +<g > +<title> (150 samples, 0.02%)</title><rect x="1087.1" y="229" width="0.2" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1090.13" y="239.5" ></text> +</g> +<g > +<title>/35 (89 samples, 0.01%)</title><rect x="1045.1" y="149" width="0.2" height="15.0" fill="rgb(234,122,32)" rx="2" ry="2" /> +<text x="1048.15" y="159.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="698.9" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="701.85" y="79.5" ></text> +</g> +<g > +<title>enter_lseek (196 samples, 0.02%)</title><rect x="1088.5" y="117" width="0.2" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="1091.50" y="127.5" ></text> +</g> +<g > +<title>/x86_64 (123 samples, 0.01%)</title><rect x="241.4" y="133" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="244.38" y="143.5" ></text> +</g> +<g > +<title>/system@d62e597f0e2949bda5784759a1e3ccf2-000000000076c008-000630537d852534.journal (85 samples, 0.01%)</title><rect x="1181.4" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1184.35" y="159.5" ></text> +</g> +<g > +<title>enter_newfstat (86 samples, 0.01%)</title><rect x="1181.6" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1184.56" y="143.5" ></text> +</g> +<g > +<title> (903 samples, 0.09%)</title><rect x="782.6" y="229" width="1.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="785.56" y="239.5" ></text> +</g> +<g > +<title>/fontconfig (165 samples, 0.02%)</title><rect x="862.0" y="165" width="0.2" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="865.00" y="175.5" ></text> +</g> +<g > +<title>/games (1,884 samples, 0.19%)</title><rect x="39.9" y="181" width="2.3" height="15.0" fill="rgb(243,150,42)" rx="2" ry="2" /> +<text x="42.88" y="191.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="686.4" y="85" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="689.45" y="95.5" ></text> +</g> +<g > +<title>/git (2,461 samples, 0.25%)</title><rect x="1093.7" y="181" width="3.0" height="15.0" fill="rgb(233,124,30)" rx="2" ry="2" /> +<text x="1096.73" y="191.5" ></text> +</g> +<g > +<title>enter_mmap (214 samples, 0.02%)</title><rect x="1037.4" y="213" width="0.2" height="15.0" fill="rgb(240,196,39)" rx="2" ry="2" /> +<text x="1040.36" y="223.5" ></text> +</g> +<g > +<title>/cmdline (140 samples, 0.01%)</title><rect x="447.9" y="181" width="0.1" height="15.0" fill="rgb(246,170,46)" rx="2" ry="2" /> +<text x="450.88" y="191.5" ></text> +</g> +<g > +<title>/451c975916dc4536919a44482a914925 (97 samples, 0.01%)</title><rect x="776.9" y="165" width="0.1" height="15.0" fill="rgb(236,117,35)" rx="2" ry="2" /> +<text x="779.88" y="175.5" ></text> +</g> +<g > +<title>anon_inode:[eventfd] (84 samples, 0.01%)</title><rect x="331.3" y="229" width="0.1" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="334.34" y="239.5" ></text> +</g> +<g > +<title>enter_write (194 samples, 0.02%)</title><rect x="488.4" y="213" width="0.3" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="491.45" y="223.5" ></text> +</g> +<g > +<title>enter_ioctl (38,691 samples, 4.00%)</title><rect x="343.6" y="165" width="47.2" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="346.58" y="175.5" >ente..</text> +</g> +<g > +<title>10494 (92 samples, 0.01%)</title><rect x="10.0" y="245" width="0.1" height="15.0" fill="rgb(246,124,45)" rx="2" ry="2" /> +<text x="13.01" y="255.5" ></text> +</g> +<g > +<title>enter_write (294 samples, 0.03%)</title><rect x="1144.8" y="117" width="0.3" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="1147.76" y="127.5" ></text> +</g> +<g > +<title>16733 (82,662 samples, 8.55%)</title><rect x="343.6" y="245" width="100.9" height="15.0" fill="rgb(240,84,39)" rx="2" ry="2" /> +<text x="346.58" y="255.5" >16733</text> +</g> +<g > +<title>/self (536 samples, 0.06%)</title><rect x="800.0" y="197" width="0.7" height="15.0" fill="rgb(238,132,36)" rx="2" ry="2" /> +<text x="803.04" y="207.5" ></text> +</g> +<g > +<title>/scripts (558 samples, 0.06%)</title><rect x="142.1" y="181" width="0.7" height="15.0" fill="rgb(236,139,35)" rx="2" ry="2" /> +<text x="145.14" y="191.5" ></text> +</g> +<g > +<title>/memory.swap.current (270 samples, 0.03%)</title><rect x="718.1" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="721.11" y="95.5" ></text> +</g> +<g > +<title>enter_newfstat (88 samples, 0.01%)</title><rect x="1176.6" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1179.61" y="143.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="728.7" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="731.73" y="79.5" ></text> +</g> +<g > +<title>/smaps (114 samples, 0.01%)</title><rect x="802.3" y="181" width="0.2" height="15.0" fill="rgb(243,145,42)" rx="2" ry="2" /> +<text x="805.33" y="191.5" ></text> +</g> +<g > +<title>/__pycache__ (99 samples, 0.01%)</title><rect x="1037.0" y="133" width="0.1" height="15.0" fill="rgb(235,103,33)" rx="2" ry="2" /> +<text x="1040.01" y="143.5" ></text> +</g> +<g > +<title>/memory.pressure (308 samples, 0.03%)</title><rect x="699.0" y="85" width="0.3" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> +<text x="701.96" y="95.5" ></text> +</g> +<g > +<title>/memory.low (276 samples, 0.03%)</title><rect x="759.4" y="101" width="0.4" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="762.44" y="111.5" ></text> +</g> +<g > +<title>301270 (247 samples, 0.03%)</title><rect x="617.6" y="245" width="0.3" height="15.0" fill="rgb(239,198,38)" rx="2" ry="2" /> +<text x="620.64" y="255.5" ></text> +</g> +<g > +<title>/c7 (111 samples, 0.01%)</title><rect x="1062.7" y="149" width="0.1" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" /> +<text x="1065.71" y="159.5" ></text> +</g> +<g > +<title>/rpmdb.sqlite-shm (1,166 samples, 0.12%)</title><rect x="809.1" y="149" width="1.4" height="15.0" fill="rgb(228,140,26)" rx="2" ry="2" /> +<text x="812.06" y="159.5" ></text> +</g> +<g > +<title>/kvm (245 samples, 0.03%)</title><rect x="1189.7" y="165" width="0.3" height="15.0" fill="rgb(222,101,19)" rx="2" ry="2" /> +<text x="1192.68" y="175.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="725.3" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="728.30" y="79.5" ></text> +</g> +<g > +<title>enter_read (86 samples, 0.01%)</title><rect x="461.6" y="149" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="464.60" y="159.5" ></text> +</g> +<g > +<title>enter_write (128 samples, 0.01%)</title><rect x="343.4" y="213" width="0.2" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="346.42" y="223.5" ></text> +</g> +<g > +<title>/0c (103 samples, 0.01%)</title><rect x="1040.2" y="149" width="0.1" height="15.0" fill="rgb(227,144,24)" rx="2" ry="2" /> +<text x="1043.18" y="159.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="707.3" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="710.34" y="79.5" ></text> +</g> +<g > +<title>/app-gnome\x2dsession\x2dmanager.slice (1,671 samples, 0.17%)</title><rect x="755.0" y="101" width="2.0" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="757.99" y="111.5" ></text> +</g> +<g > +<title>/app-ghostty-transient-297925.scope (1,671 samples, 0.17%)</title><rect x="750.9" y="101" width="2.0" height="15.0" fill="rgb(248,115,48)" rx="2" ry="2" /> +<text x="753.89" y="111.5" ></text> +</g> +<g > +<title>enter_read (94 samples, 0.01%)</title><rect x="764.8" y="85" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="767.85" y="95.5" ></text> +</g> +<g > +<title>/.local (754 samples, 0.08%)</title><rect x="674.8" y="181" width="0.9" height="15.0" fill="rgb(229,163,26)" rx="2" ry="2" /> +<text x="677.77" y="191.5" ></text> +</g> +<g > +<title>/x86_64 (124 samples, 0.01%)</title><rect x="246.8" y="133" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="249.77" y="143.5" ></text> +</g> +<g > +<title>/libpcre2-8.so.0 (111 samples, 0.01%)</title><rect x="37.5" y="197" width="0.1" height="15.0" fill="rgb(236,99,34)" rx="2" ry="2" /> +<text x="40.50" y="207.5" ></text> +</g> +<g > +<title>/75 (111 samples, 0.01%)</title><rect x="1052.7" y="149" width="0.1" height="15.0" fill="rgb(242,157,40)" rx="2" ry="2" /> +<text x="1055.66" y="159.5" ></text> +</g> +<g > +<title>enter_lseek (98 samples, 0.01%)</title><rect x="1083.9" y="37" width="0.1" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="1086.91" y="47.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="699.9" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="702.87" y="79.5" ></text> +</g> +<g > +<title> (91 samples, 0.01%)</title><rect x="98.8" y="229" width="0.2" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="101.84" y="239.5" ></text> +</g> +<g > +<title>627338 (351 samples, 0.04%)</title><rect x="872.7" y="245" width="0.5" height="15.0" fill="rgb(234,145,32)" rx="2" ry="2" /> +<text x="875.73" y="255.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.21\x2dorg.a11y.atspi.Registry.slice (1,665 samples, 0.17%)</title><rect x="687.9" y="101" width="2.1" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="690.95" y="111.5" ></text> +</g> +<g > +<title>/zstd@v1.5.7 (815 samples, 0.08%)</title><rect x="1069.9" y="101" width="0.9" height="15.0" fill="rgb(240,146,39)" rx="2" ry="2" /> +<text x="1072.85" y="111.5" ></text> +</g> +<g > +<title>enter_newfstat (92 samples, 0.01%)</title><rect x="742.0" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="745.04" y="79.5" ></text> +</g> +<g > +<title>/lib (1,510 samples, 0.16%)</title><rect x="547.8" y="197" width="1.8" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="550.80" y="207.5" ></text> +</g> +<g > +<title>enter_lseek (116 samples, 0.01%)</title><rect x="478.4" y="165" width="0.1" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="481.37" y="175.5" ></text> +</g> +<g > +<title>/fontconfig (205 samples, 0.02%)</title><rect x="1166.6" y="165" width="0.3" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="1169.63" y="175.5" ></text> +</g> +<g > +<title>/log (94 samples, 0.01%)</title><rect x="776.6" y="197" width="0.1" height="15.0" fill="rgb(248,118,48)" rx="2" ry="2" /> +<text x="779.57" y="207.5" ></text> +</g> +<g > +<title>enter_newfstat (86 samples, 0.01%)</title><rect x="1178.8" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1181.77" y="143.5" ></text> +</g> +<g > +<title>/system@c32c65e2f14f4168bb0fe59124681a98-00000000004ac636-00061c98220a7fa0.journal (91 samples, 0.01%)</title><rect x="1180.2" y="149" width="0.1" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="1183.21" y="159.5" ></text> +</g> +<g > +<title>/fontconfig (1,359 samples, 0.14%)</title><rect x="866.0" y="181" width="1.7" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="869.04" y="191.5" ></text> +</g> +<g > +<title>enter_ioctl (90 samples, 0.01%)</title><rect x="703.0" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="706.01" y="79.5" ></text> +</g> +<g > +<title>anon_inode:[timerfd] (881 samples, 0.09%)</title><rect x="93.7" y="229" width="1.1" height="15.0" fill="rgb(244,164,43)" rx="2" ry="2" /> +<text x="96.72" y="239.5" ></text> +</g> +<g > +<title>/history.sqlite-shm (366 samples, 0.04%)</title><rect x="396.4" y="165" width="0.5" height="15.0" fill="rgb(228,119,26)" rx="2" ry="2" /> +<text x="399.44" y="175.5" ></text> +</g> +<g > +<title>/extension (5,694 samples, 0.59%)</title><rect x="223.3" y="165" width="7.0" height="15.0" fill="rgb(247,163,46)" rx="2" ry="2" /> +<text x="226.32" y="175.5" ></text> +</g> +<g > +<title>/go.o (103 samples, 0.01%)</title><rect x="541.7" y="181" width="0.1" height="15.0" fill="rgb(248,144,48)" rx="2" ry="2" /> +<text x="544.72" y="191.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Epiphany.WebAppProvider.slice (1,733 samples, 0.18%)</title><rect x="712.2" y="101" width="2.2" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="715.25" y="111.5" ></text> +</g> +<g > +<title>enter_write (139 samples, 0.01%)</title><rect x="765.9" y="213" width="0.2" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="768.89" y="223.5" ></text> +</g> +<g > +<title>/fortune (726 samples, 0.08%)</title><rect x="796.2" y="165" width="0.9" height="15.0" fill="rgb(246,149,46)" rx="2" ry="2" /> +<text x="799.17" y="175.5" ></text> +</g> +<g > +<title>622015 (301 samples, 0.03%)</title><rect x="803.5" y="245" width="0.4" height="15.0" fill="rgb(244,161,43)" rx="2" ry="2" /> +<text x="806.53" y="255.5" ></text> +</g> +<g > +<title>/tmp (191 samples, 0.02%)</title><rect x="1083.5" y="213" width="0.2" height="15.0" fill="rgb(234,140,32)" rx="2" ry="2" /> +<text x="1086.48" y="223.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="699.2" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="702.23" y="79.5" ></text> +</g> +<g > +<title> (869 samples, 0.09%)</title><rect x="774.7" y="229" width="1.0" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="777.67" y="239.5" ></text> +</g> +<g > +<title>/gcc (698 samples, 0.07%)</title><rect x="1085.9" y="181" width="0.8" height="15.0" fill="rgb(234,144,32)" rx="2" ry="2" /> +<text x="1088.89" y="191.5" ></text> +</g> +<g > +<title>/libc.so.6 (97 samples, 0.01%)</title><rect x="1089.5" y="197" width="0.1" height="15.0" fill="rgb(243,99,42)" rx="2" ry="2" /> +<text x="1092.53" y="207.5" ></text> +</g> +<g > +<title>/com.discordapp.Discord (104 samples, 0.01%)</title><rect x="216.3" y="149" width="0.1" height="15.0" fill="rgb(248,164,47)" rx="2" ry="2" /> +<text x="219.29" y="159.5" ></text> +</g> +<g > +<title>/memory.low (264 samples, 0.03%)</title><rect x="698.3" y="85" width="0.3" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="701.32" y="95.5" ></text> +</g> +<g > +<title>/32 (106 samples, 0.01%)</title><rect x="1044.8" y="149" width="0.1" height="15.0" fill="rgb(239,132,38)" rx="2" ry="2" /> +<text x="1047.79" y="159.5" ></text> +</g> +<g > +<title>/home (26,513 samples, 2.74%)</title><rect x="1038.7" y="213" width="32.4" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="1041.73" y="223.5" >/h..</text> +</g> +<g > +<title>627623 (300 samples, 0.03%)</title><rect x="1173.3" y="245" width="0.4" height="15.0" fill="rgb(242,145,41)" rx="2" ry="2" /> +<text x="1176.32" y="255.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="695.6" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="698.57" y="79.5" ></text> +</g> +<g > +<title>net.sourceforge.osmo (84 samples, 0.01%)</title><rect x="309.4" y="229" width="0.1" height="15.0" fill="rgb(237,194,35)" rx="2" ry="2" /> +<text x="312.36" y="239.5" ></text> +</g> +<g > +<title>/variety (2,146 samples, 0.22%)</title><rect x="837.6" y="165" width="2.6" height="15.0" fill="rgb(243,130,42)" rx="2" ry="2" /> +<text x="840.61" y="175.5" ></text> +</g> +<g > +<title>/1 (228 samples, 0.02%)</title><rect x="808.6" y="197" width="0.3" height="15.0" fill="rgb(232,133,30)" rx="2" ry="2" /> +<text x="811.60" y="207.5" ></text> +</g> +<g > +<title>/dev (83 samples, 0.01%)</title><rect x="1169.4" y="213" width="0.1" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" /> +<text x="1172.38" y="223.5" ></text> +</g> +<g > +<title>/bin (105 samples, 0.01%)</title><rect x="1035.0" y="197" width="0.1" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="1037.96" y="207.5" ></text> +</g> +<g > +<title>/bf (133 samples, 0.01%)</title><rect x="1061.7" y="149" width="0.1" height="15.0" fill="rgb(232,104,30)" rx="2" ry="2" /> +<text x="1064.66" y="159.5" ></text> +</g> +<g > +<title>627550 (1,323 samples, 0.14%)</title><rect x="1089.4" y="245" width="1.6" height="15.0" fill="rgb(227,145,24)" rx="2" ry="2" /> +<text x="1092.37" y="255.5" ></text> +</g> +<g > +<title>/memory.current (285 samples, 0.03%)</title><rect x="752.9" y="85" width="0.4" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="755.93" y="95.5" ></text> +</g> +<g > +<title>org.kde.PlatformTheme.QtSNI (110 samples, 0.01%)</title><rect x="313.7" y="229" width="0.1" height="15.0" fill="rgb(240,179,39)" rx="2" ry="2" /> +<text x="316.70" y="239.5" ></text> +</g> +<g > +<title>enter_lseek (116 samples, 0.01%)</title><rect x="476.6" y="165" width="0.1" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="479.60" y="175.5" ></text> +</g> +<g > +<title>/user-1001.slice (63,345 samples, 6.56%)</title><rect x="687.9" y="149" width="77.4" height="15.0" fill="rgb(246,116,46)" rx="2" ry="2" /> +<text x="690.95" y="159.5" >/user-10..</text> +</g> +<g > +<title>/fonts (292 samples, 0.03%)</title><rect x="797.4" y="197" width="0.3" height="15.0" fill="rgb(238,149,36)" rx="2" ry="2" /> +<text x="800.39" y="207.5" ></text> +</g> +<g > +<title>/sbin (215 samples, 0.02%)</title><rect x="39.5" y="197" width="0.2" height="15.0" fill="rgb(247,142,46)" rx="2" ry="2" /> +<text x="42.46" y="207.5" ></text> +</g> +<g > +<title>/x86_64 (165 samples, 0.02%)</title><rect x="239.5" y="133" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="242.51" y="143.5" ></text> +</g> +<g > +<title>/ptmx (888 samples, 0.09%)</title><rect x="445.8" y="197" width="1.0" height="15.0" fill="rgb(238,138,36)" rx="2" ry="2" /> +<text x="448.76" y="207.5" ></text> +</g> +<g > +<title>enter_newfstat (88 samples, 0.01%)</title><rect x="746.1" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="749.12" y="79.5" ></text> +</g> +<g > +<title>/user-1001@00062efc1a6346f5-3b16b0ffba37ad57.journal~ (88 samples, 0.01%)</title><rect x="1183.7" y="149" width="0.1" height="15.0" fill="rgb(233,116,31)" rx="2" ry="2" /> +<text x="1186.73" y="159.5" ></text> +</g> +<g > +<title>/org.gnome.Platform.Locale (161 samples, 0.02%)</title><rect x="305.3" y="197" width="0.2" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="308.27" y="207.5" ></text> +</g> +<g > +<title>/ior (442 samples, 0.05%)</title><rect x="99.0" y="165" width="0.5" height="15.0" fill="rgb(240,134,39)" rx="2" ry="2" /> +<text x="101.99" y="175.5" ></text> +</g> +<g > +<title>/etc (435 samples, 0.05%)</title><rect x="878.3" y="213" width="0.5" height="15.0" fill="rgb(229,138,26)" rx="2" ry="2" /> +<text x="881.28" y="223.5" ></text> +</g> +<g > +<title>/omf (296 samples, 0.03%)</title><rect x="681.6" y="149" width="0.4" height="15.0" fill="rgb(238,165,36)" rx="2" ry="2" /> +<text x="684.64" y="159.5" ></text> +</g> +<g > +<title> (164 samples, 0.02%)</title><rect x="875.0" y="229" width="0.2" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="878.02" y="239.5" ></text> +</g> +<g > +<title>627443 (84 samples, 0.01%)</title><rect x="1038.4" y="245" width="0.1" height="15.0" fill="rgb(241,145,40)" rx="2" ry="2" /> +<text x="1041.43" y="255.5" ></text> +</g> +<g > +<title>org.telegram.desktop.webview.Locale (107 samples, 0.01%)</title><rect x="314.5" y="229" width="0.2" height="15.0" fill="rgb(242,179,41)" rx="2" ry="2" /> +<text x="317.54" y="239.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="755.5" y="69" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="758.54" y="79.5" ></text> +</g> +<g > +<title>/5a (116 samples, 0.01%)</title><rect x="1049.5" y="149" width="0.1" height="15.0" fill="rgb(225,125,22)" rx="2" ry="2" /> +<text x="1052.45" y="159.5" ></text> +</g> +<g > +<title> (404 samples, 0.04%)</title><rect x="342.0" y="229" width="0.5" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="345.05" y="239.5" ></text> +</g> +<g > +<title>/games (582 samples, 0.06%)</title><rect x="462.3" y="181" width="0.8" height="15.0" fill="rgb(243,150,42)" rx="2" ry="2" /> +<text x="465.34" y="191.5" ></text> +</g> +<g > +<title>/dev (157 samples, 0.02%)</title><rect x="1076.3" y="213" width="0.2" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" /> +<text x="1079.31" y="223.5" ></text> +</g> +<g > +<title>net.werwolv.ImHex (94 samples, 0.01%)</title><rect x="309.5" y="229" width="0.1" height="15.0" fill="rgb(252,194,52)" rx="2" ry="2" /> +<text x="312.46" y="239.5" ></text> +</g> +<g > +<title>enter_writev (281 samples, 0.03%)</title><rect x="447.2" y="165" width="0.3" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="450.16" y="175.5" ></text> +</g> +<g > +<title> (760 samples, 0.08%)</title><rect x="1142.8" y="229" width="1.0" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="1145.83" y="239.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="711.1" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="714.06" y="79.5" ></text> +</g> +<g > +<title>/share (195 samples, 0.02%)</title><rect x="117.0" y="197" width="0.3" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="120.02" y="207.5" ></text> +</g> +<g > +<title>/share (1,135 samples, 0.12%)</title><rect x="221.9" y="149" width="1.4" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="224.93" y="159.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="714.9" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="717.91" y="79.5" ></text> +</g> +<g > +<title>5230 (235 samples, 0.02%)</title><rect x="765.8" y="245" width="0.3" height="15.0" fill="rgb(231,166,29)" rx="2" ry="2" /> +<text x="768.78" y="255.5" ></text> +</g> +<g > +<title>enter_newfstat (85 samples, 0.01%)</title><rect x="1180.9" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1183.93" y="143.5" ></text> +</g> +<g > +<title>enter_newfstat (90 samples, 0.01%)</title><rect x="717.8" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="720.83" y="79.5" ></text> +</g> +<g > +<title>enter_openat (401 samples, 0.04%)</title><rect x="833.3" y="197" width="0.5" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="836.30" y="207.5" ></text> +</g> +<g > +<title>io.gitlab.librewolf-community (156 samples, 0.02%)</title><rect x="308.7" y="229" width="0.2" height="15.0" fill="rgb(240,152,38)" rx="2" ry="2" /> +<text x="311.67" y="239.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="737.5" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="740.45" y="79.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="802.5" y="213" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="805.51" y="223.5" ></text> +</g> +<g > +<title>enter_read (870 samples, 0.09%)</title><rect x="487.1" y="181" width="1.0" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="490.08" y="191.5" ></text> +</g> +<g > +<title>/77 (97 samples, 0.01%)</title><rect x="1052.9" y="149" width="0.1" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" /> +<text x="1055.92" y="159.5" ></text> +</g> +<g > +<title>/596085 (196 samples, 0.02%)</title><rect x="778.5" y="197" width="0.3" height="15.0" fill="rgb(248,99,48)" rx="2" ry="2" /> +<text x="781.53" y="207.5" ></text> +</g> +<g > +<title>/db (381 samples, 0.04%)</title><rect x="804.1" y="165" width="0.5" height="15.0" fill="rgb(232,162,30)" rx="2" ry="2" /> +<text x="807.11" y="175.5" ></text> +</g> +<g > +<title>/git (128 samples, 0.01%)</title><rect x="331.4" y="181" width="0.2" height="15.0" fill="rgb(233,124,30)" rx="2" ry="2" /> +<text x="334.45" y="191.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="707.7" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="710.67" y="79.5" ></text> +</g> +<g > +<title>/system@000633084abc4c31-f3da7132076b7570.journal~ (87 samples, 0.01%)</title><rect x="1177.4" y="149" width="0.1" height="15.0" fill="rgb(233,145,31)" rx="2" ry="2" /> +<text x="1180.37" y="159.5" ></text> +</g> +<g > +<title>/repo (881 samples, 0.09%)</title><rect x="230.3" y="165" width="1.1" height="15.0" fill="rgb(247,137,46)" rx="2" ry="2" /> +<text x="233.28" y="175.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="702.2" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="705.19" y="79.5" ></text> +</g> +<g > +<title>5253 (1,911 samples, 0.20%)</title><rect x="766.3" y="245" width="2.3" height="15.0" fill="rgb(241,159,40)" rx="2" ry="2" /> +<text x="769.31" y="255.5" ></text> +</g> +<g > +<title>/lib (96 samples, 0.01%)</title><rect x="462.2" y="197" width="0.1" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="465.20" y="207.5" ></text> +</g> +<g > +<title>/flathub (256 samples, 0.03%)</title><rect x="231.0" y="117" width="0.3" height="15.0" fill="rgb(227,158,25)" rx="2" ry="2" /> +<text x="233.99" y="127.5" ></text> +</g> +<g > +<title>/fonts (212 samples, 0.02%)</title><rect x="1169.0" y="181" width="0.3" height="15.0" fill="rgb(238,149,36)" rx="2" ry="2" /> +<text x="1172.03" y="191.5" ></text> +</g> +<g > +<title>/pack (152 samples, 0.02%)</title><rect x="873.7" y="197" width="0.2" height="15.0" fill="rgb(242,160,40)" rx="2" ry="2" /> +<text x="876.74" y="207.5" ></text> +</g> +<g > +<title>socket:[72210] (570 samples, 0.06%)</title><rect x="444.6" y="229" width="0.7" height="15.0" fill="rgb(244,175,43)" rx="2" ry="2" /> +<text x="447.63" y="239.5" ></text> +</g> +<g > +<title>/share (120 samples, 0.01%)</title><rect x="1175.2" y="197" width="0.2" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="1178.24" y="207.5" ></text> +</g> +<g > +<title>/libc.so.6 (97 samples, 0.01%)</title><rect x="1091.7" y="197" width="0.1" height="15.0" fill="rgb(243,99,42)" rx="2" ry="2" /> +<text x="1094.69" y="207.5" ></text> +</g> +<g > +<title>/memory.min (270 samples, 0.03%)</title><rect x="751.5" y="85" width="0.4" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="754.55" y="95.5" ></text> +</g> +<g > +<title>/com.bitwarden.desktop.Locale (213 samples, 0.02%)</title><rect x="231.6" y="149" width="0.3" height="15.0" fill="rgb(242,164,41)" rx="2" ry="2" /> +<text x="234.61" y="159.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="717.7" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="720.67" y="79.5" ></text> +</g> +<g > +<title>/memory.min (270 samples, 0.03%)</title><rect x="686.6" y="101" width="0.3" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="689.56" y="111.5" ></text> +</g> +<g > +<title>/conf.d (464 samples, 0.05%)</title><rect x="1169.5" y="181" width="0.5" height="15.0" fill="rgb(248,164,47)" rx="2" ry="2" /> +<text x="1172.48" y="191.5" ></text> +</g> +<g > +<title>/games (726 samples, 0.08%)</title><rect x="796.2" y="181" width="0.9" height="15.0" fill="rgb(243,150,42)" rx="2" ry="2" /> +<text x="799.17" y="191.5" ></text> +</g> +<g > +<title>/rpm (105 samples, 0.01%)</title><rect x="796.0" y="165" width="0.2" height="15.0" fill="rgb(232,140,30)" rx="2" ry="2" /> +<text x="799.04" y="175.5" ></text> +</g> +<g > +<title>/lib (35,345 samples, 3.66%)</title><rect x="145.3" y="197" width="43.2" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="148.33" y="207.5" >/lib</text> +</g> +<g > +<title>/share (1,422 samples, 0.15%)</title><rect x="862.7" y="197" width="1.7" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="865.67" y="207.5" ></text> +</g> +<g > +<title>enter_write (290 samples, 0.03%)</title><rect x="805.3" y="213" width="0.4" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="808.34" y="223.5" ></text> +</g> +<g > +<title>/ad (110 samples, 0.01%)</title><rect x="1059.5" y="149" width="0.1" height="15.0" fill="rgb(237,115,35)" rx="2" ry="2" /> +<text x="1062.46" y="159.5" ></text> +</g> +<g > +<title>enter_newfstatat (134 samples, 0.01%)</title><rect x="823.9" y="149" width="0.2" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="826.91" y="159.5" ></text> +</g> +<g > +<title>6919 (1,874 samples, 0.19%)</title><rect x="1186.6" y="245" width="2.3" height="15.0" fill="rgb(231,184,28)" rx="2" ry="2" /> +<text x="1189.64" y="255.5" ></text> +</g> +<g > +<title>enter_lseek (196 samples, 0.02%)</title><rect x="1090.7" y="117" width="0.2" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="1093.66" y="127.5" ></text> +</g> +<g > +<title>/x86_64 (97 samples, 0.01%)</title><rect x="247.6" y="133" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="250.60" y="143.5" ></text> +</g> +<g > +<title>/paul (213 samples, 0.02%)</title><rect x="680.9" y="197" width="0.2" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="683.89" y="207.5" ></text> +</g> +<g > +<title>/f42 (86 samples, 0.01%)</title><rect x="233.6" y="117" width="0.1" height="15.0" fill="rgb(242,145,40)" rx="2" ry="2" /> +<text x="236.59" y="127.5" ></text> +</g> +<g > +<title>/journal (8,178 samples, 0.85%)</title><rect x="1176.2" y="181" width="10.0" height="15.0" fill="rgb(229,128,27)" rx="2" ry="2" /> +<text x="1179.19" y="191.5" ></text> +</g> +<g > +<title>/etc (168 samples, 0.02%)</title><rect x="447.5" y="213" width="0.2" height="15.0" fill="rgb(229,138,26)" rx="2" ry="2" /> +<text x="450.50" y="223.5" ></text> +</g> +<g > +<title>enter_close (116 samples, 0.01%)</title><rect x="481.8" y="165" width="0.1" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" /> +<text x="484.77" y="175.5" ></text> +</g> +<g > +<title>/icons (83 samples, 0.01%)</title><rect x="221.0" y="117" width="0.1" height="15.0" fill="rgb(244,134,43)" rx="2" ry="2" /> +<text x="224.03" y="127.5" ></text> +</g> +<g > +<title>/games (4,693 samples, 0.49%)</title><rect x="542.1" y="181" width="5.7" height="15.0" fill="rgb(243,150,42)" rx="2" ry="2" /> +<text x="545.06" y="191.5" ></text> +</g> +<g > +<title>enter_newfstat (92 samples, 0.01%)</title><rect x="687.3" y="85" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="690.33" y="95.5" ></text> +</g> +<g > +<title>enter_read (88 samples, 0.01%)</title><rect x="722.6" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="725.64" y="79.5" ></text> +</g> +<g > +<title>/memory.min (264 samples, 0.03%)</title><rect x="729.2" y="85" width="0.3" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="732.16" y="95.5" ></text> +</g> +<g > +<title> (86 samples, 0.01%)</title><rect x="10.0" y="229" width="0.1" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="13.01" y="239.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="752.2" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="755.16" y="79.5" ></text> +</g> +<g > +<title>/6a (83 samples, 0.01%)</title><rect x="1051.4" y="149" width="0.1" height="15.0" fill="rgb(224,120,21)" rx="2" ry="2" /> +<text x="1054.40" y="159.5" ></text> +</g> +<g > +<title>627351 (130 samples, 0.01%)</title><rect x="874.4" y="245" width="0.2" height="15.0" fill="rgb(227,145,24)" rx="2" ry="2" /> +<text x="877.42" y="255.5" ></text> +</g> +<g > +<title>enter_ioctl (91 samples, 0.01%)</title><rect x="733.6" y="69" width="0.1" height="15.0" fill="rgb(232,196,30)" rx="2" ry="2" /> +<text x="736.60" y="79.5" ></text> +</g> +<g > +<title>/usr (89 samples, 0.01%)</title><rect x="879.2" y="213" width="0.1" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" /> +<text x="882.20" y="223.5" ></text> +</g> +<g > +<title>/memory.current (270 samples, 0.03%)</title><rect x="714.4" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="717.36" y="95.5" ></text> +</g> +<g > +<title>enter_mmap (83 samples, 0.01%)</title><rect x="1038.3" y="213" width="0.1" height="15.0" fill="rgb(240,196,39)" rx="2" ry="2" /> +<text x="1041.30" y="223.5" ></text> +</g> +<g > +<title>/git (140 samples, 0.01%)</title><rect x="1069.6" y="181" width="0.2" height="15.0" fill="rgb(233,124,30)" rx="2" ry="2" /> +<text x="1072.64" y="191.5" ></text> +</g> +<g > +<title>/.. (186 samples, 0.02%)</title><rect x="38.7" y="133" width="0.2" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="41.67" y="143.5" ></text> +</g> +<g > +<title>/5 (1,044 samples, 0.11%)</title><rect x="483.5" y="197" width="1.3" height="15.0" fill="rgb(244,110,43)" rx="2" ry="2" /> +<text x="486.54" y="207.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="741.5" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="744.48" y="79.5" ></text> +</g> +<g > +<title>/background.slice (1,677 samples, 0.17%)</title><rect x="761.2" y="117" width="2.0" height="15.0" fill="rgb(246,120,46)" rx="2" ry="2" /> +<text x="764.16" y="127.5" ></text> +</g> +<g > +<title>/.. (252 samples, 0.03%)</title><rect x="1090.1" y="101" width="0.3" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="1093.10" y="111.5" ></text> +</g> +<g > +<title>627337 (131 samples, 0.01%)</title><rect x="872.6" y="245" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> +<text x="875.57" y="255.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="754.6" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="757.55" y="79.5" ></text> +</g> +<g > +<title>/b001 (4,989 samples, 0.52%)</title><rect x="1096.8" y="181" width="6.1" height="15.0" fill="rgb(234,123,32)" rx="2" ry="2" /> +<text x="1099.78" y="191.5" ></text> +</g> +<g > +<title>enter_writev (682 samples, 0.07%)</title><rect x="395.6" y="133" width="0.8" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="398.58" y="143.5" ></text> +</g> +<g > +<title>/org.kde.Platform.Locale (265 samples, 0.03%)</title><rect x="246.5" y="149" width="0.3" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="249.45" y="159.5" ></text> +</g> +<g > +<title>enter_read (90 samples, 0.01%)</title><rect x="688.8" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="691.83" y="79.5" ></text> +</g> +<g > +<title>627444 (30,122 samples, 3.12%)</title><rect x="1038.5" y="245" width="36.8" height="15.0" fill="rgb(239,145,38)" rx="2" ry="2" /> +<text x="1041.54" y="255.5" >627..</text> +</g> +<g > +<title>/lib64 (252 samples, 0.03%)</title><rect x="1083.7" y="69" width="0.3" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="1086.74" y="79.5" ></text> +</g> +<g > +<title>/maps (148 samples, 0.02%)</title><rect x="778.2" y="181" width="0.2" height="15.0" fill="rgb(243,120,42)" rx="2" ry="2" /> +<text x="781.25" y="191.5" ></text> +</g> +<g > +<title>/fontconfig (265 samples, 0.03%)</title><rect x="1167.0" y="181" width="0.3" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="1170.00" y="191.5" ></text> +</g> +<g > +<title>/memory.current (270 samples, 0.03%)</title><rect x="683.8" y="149" width="0.4" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="686.84" y="159.5" ></text> +</g> +<g > +<title>enter_openat (290 samples, 0.03%)</title><rect x="486.7" y="181" width="0.4" height="15.0" fill="rgb(233,196,31)" rx="2" ry="2" /> +<text x="489.73" y="191.5" ></text> +</g> +<g > +<title>/memory.min (270 samples, 0.03%)</title><rect x="717.1" y="85" width="0.3" height="15.0" fill="rgb(247,107,46)" rx="2" ry="2" /> +<text x="720.06" y="95.5" ></text> +</g> +<g > +<title>/nsswitch.conf (117 samples, 0.01%)</title><rect x="335.2" y="197" width="0.1" height="15.0" fill="rgb(249,151,48)" rx="2" ry="2" /> +<text x="338.20" y="207.5" ></text> +</g> +<g > +<title>/libbpfgo@v0.6.0-libbpf-1.3.0.20240111220235-90dbffffbdab (193 samples, 0.02%)</title><rect x="1070.8" y="101" width="0.3" height="15.0" fill="rgb(228,99,25)" rx="2" ry="2" /> +<text x="1073.85" y="111.5" ></text> +</g> +<g > +<title>enter_pread64 (116 samples, 0.01%)</title><rect x="806.8" y="165" width="0.1" height="15.0" fill="rgb(237,196,36)" rx="2" ry="2" /> +<text x="809.80" y="175.5" ></text> +</g> +<g > +<title>enter_newfstat (90 samples, 0.01%)</title><rect x="691.4" y="69" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="694.40" y="79.5" ></text> +</g> +<g > +<title>enter_pwrite64 (152 samples, 0.02%)</title><rect x="817.8" y="149" width="0.2" height="15.0" fill="rgb(237,196,35)" rx="2" ry="2" /> +<text x="820.79" y="159.5" ></text> +</g> +<g > +<title>627552 (150 samples, 0.02%)</title><rect x="1091.3" y="245" width="0.2" height="15.0" fill="rgb(241,145,40)" rx="2" ry="2" /> +<text x="1094.34" y="255.5" ></text> +</g> +<g > +<title>/gcc (697 samples, 0.07%)</title><rect x="1092.3" y="181" width="0.8" height="15.0" fill="rgb(234,144,32)" rx="2" ry="2" /> +<text x="1095.26" y="191.5" ></text> +</g> +<g > +<title>enter_read (136 samples, 0.01%)</title><rect x="803.6" y="213" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="806.58" y="223.5" ></text> +</g> +<g > +<title>enter_read (91 samples, 0.01%)</title><rect x="706.6" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="709.61" y="79.5" ></text> +</g> +<g > +<title>/PackageKit (344 samples, 0.04%)</title><rect x="463.1" y="181" width="0.4" height="15.0" fill="rgb(235,155,33)" rx="2" ry="2" /> +<text x="466.05" y="191.5" ></text> +</g> +<g > +<title>627369 (129 samples, 0.01%)</title><rect x="875.6" y="245" width="0.2" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="878.63" y="255.5" ></text> +</g> +<g > +<title>/lib64 (166 samples, 0.02%)</title><rect x="840.2" y="213" width="0.2" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="843.24" y="223.5" ></text> +</g> +<g > +<title>/memory.low (268 samples, 0.03%)</title><rect x="690.3" y="85" width="0.3" height="15.0" fill="rgb(238,107,36)" rx="2" ry="2" /> +<text x="693.31" y="95.5" ></text> +</g> +<g > +<title>/bin (585 samples, 0.06%)</title><rect x="37.9" y="197" width="0.8" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="40.95" y="207.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="765.2" y="85" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="768.19" y="95.5" ></text> +</g> +<g > +<title>/db (347 samples, 0.04%)</title><rect x="782.6" y="117" width="0.5" height="15.0" fill="rgb(232,162,30)" rx="2" ry="2" /> +<text x="785.64" y="127.5" ></text> +</g> +<g > +<title>runtime (971 samples, 0.10%)</title><rect x="316.6" y="229" width="1.2" height="15.0" fill="rgb(236,156,34)" rx="2" ry="2" /> +<text x="319.56" y="239.5" ></text> +</g> +<g > +<title>enter_newfstat (89 samples, 0.01%)</title><rect x="1185.4" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1188.39" y="143.5" ></text> +</g> +<g > +<title>627553 (1,323 samples, 0.14%)</title><rect x="1091.5" y="245" width="1.6" height="15.0" fill="rgb(239,145,38)" rx="2" ry="2" /> +<text x="1094.52" y="255.5" ></text> +</g> +<g > +<title>enter_write (134 samples, 0.01%)</title><rect x="861.1" y="213" width="0.2" height="15.0" fill="rgb(240,196,38)" rx="2" ry="2" /> +<text x="864.13" y="223.5" ></text> +</g> +<g > +<title>enter_read (92 samples, 0.01%)</title><rect x="757.9" y="69" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" /> +<text x="760.93" y="79.5" ></text> +</g> +<g > +<title>enter_newfstat (88 samples, 0.01%)</title><rect x="1181.1" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1184.14" y="143.5" ></text> +</g> +<g > +<title>/memory.swap.current (270 samples, 0.03%)</title><rect x="716.1" y="85" width="0.3" height="15.0" fill="rgb(241,107,39)" rx="2" ry="2" /> +<text x="719.07" y="95.5" ></text> +</g> +<g > +<title>/paul (758 samples, 0.08%)</title><rect x="869.4" y="197" width="1.0" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="872.43" y="207.5" ></text> +</g> +<g > +<title>enter_newfstat (88 samples, 0.01%)</title><rect x="1183.5" y="133" width="0.1" height="15.0" fill="rgb(229,196,26)" rx="2" ry="2" /> +<text x="1186.51" y="143.5" ></text> +</g> +<g > +<title>/lib (356 samples, 0.04%)</title><rect x="463.1" y="197" width="0.4" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="466.05" y="207.5" ></text> +</g> +<g > +<title>/memory.stat (264 samples, 0.03%)</title><rect x="739.9" y="85" width="0.4" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" /> +<text x="742.94" y="95.5" ></text> +</g> +<g > +<title>enter_statx (231 samples, 0.02%)</title><rect x="831.2" y="213" width="0.3" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> +<text x="834.19" y="223.5" ></text> +</g> +<g > +<title>/sbin (124 samples, 0.01%)</title><rect x="674.4" y="165" width="0.1" height="15.0" fill="rgb(247,142,46)" rx="2" ry="2" /> +<text x="677.40" y="175.5" ></text> +</g> +</g> +</svg> |
