diff options
| author | Paul Buetow <paul@buetow.org> | 2025-03-12 23:22:58 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-03-12 23:22:58 +0200 |
| commit | 4b537ee80a028bf0e002045ba0d1db85e1197df4 (patch) | |
| tree | 507c3ce1074eb28a07b3c7e1c50b1f05243e7f19 /assets | |
| parent | 507073a912c23bd94a425b2b05779c65bee676e2 (diff) | |
add sample
Diffstat (limited to 'assets')
| -rw-r--r-- | assets/ior-by-count-flamegraph.svg | 7134 |
1 files changed, 7134 insertions, 0 deletions
diff --git a/assets/ior-by-count-flamegraph.svg b/assets/ior-by-count-flamegraph.svg new file mode 100644 index 0000000..a565939 --- /dev/null +++ b/assets/ior-by-count-flamegraph.svg @@ -0,0 +1,7134 @@ +<?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="262" onload="init(evt)" viewBox="0 0 1200 262" 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 = "Path " + 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="262.0" fill="url(#background)" /> +<text id="title" x="600.00" y="24" >I/O Syscall Count</text> +<text id="details" x="10.00" y="245" > </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="245" > </text> +<g id="frames"> +<g > +<title>syscall`enter_newfstatat (219 samples, 0.02%)</title><rect x="385.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="388.23" y="111.5" ></text> +</g> +<g > +<title>/24.08 (116 samples, 0.01%)</title><rect x="1165.6" y="101" width="0.1" height="15.0" fill="rgb(233,130,30)" rx="2" ry="2" /> +<text x="1168.56" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_read (136 samples, 0.01%)</title><rect x="853.2" y="85" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="856.23" y="95.5" ></text> +</g> +<g > +<title>/fd (148 samples, 0.01%)</title><rect x="509.8" y="165" width="0.1" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="512.78" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (1,106 samples, 0.09%)</title><rect x="874.4" y="133" width="1.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="877.41" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_close (245 samples, 0.02%)</title><rect x="722.9" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="725.91" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (356 samples, 0.03%)</title><rect x="849.7" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="852.67" y="111.5" ></text> +</g> +<g > +<title>/a1 (287 samples, 0.02%)</title><rect x="373.7" y="117" width="0.3" height="15.0" fill="rgb(221,125,18)" rx="2" ry="2" /> +<text x="376.71" y="127.5" ></text> +</g> +<g > +<title>/9b (240 samples, 0.02%)</title><rect x="372.4" y="117" width="0.2" height="15.0" fill="rgb(231,157,28)" rx="2" ry="2" /> +<text x="375.37" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_write (435 samples, 0.04%)</title><rect x="449.5" y="181" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="452.48" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (250 samples, 0.02%)</title><rect x="374.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="377.88" y="111.5" ></text> +</g> +<g > +<title>/telemetry (1,842 samples, 0.15%)</title><rect x="405.5" y="133" width="1.8" height="15.0" fill="rgb(243,127,42)" rx="2" ry="2" /> +<text x="408.47" y="143.5" ></text> +</g> +<g > +<title>/fd (2,472 samples, 0.20%)</title><rect x="633.2" y="165" width="2.4" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="636.22" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_openat (282 samples, 0.02%)</title><rect x="830.9" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="833.93" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (263 samples, 0.02%)</title><rect x="368.1" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="371.14" y="111.5" ></text> +</g> +<g > +<title>/05 (283 samples, 0.02%)</title><rect x="337.2" y="117" width="0.2" height="15.0" fill="rgb(237,137,35)" rx="2" ry="2" /> +<text x="340.17" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (236 samples, 0.02%)</title><rect x="359.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="362.01" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_statx (411 samples, 0.03%)</title><rect x="972.2" y="149" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="975.21" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_read (108 samples, 0.01%)</title><rect x="270.7" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="273.71" y="159.5" ></text> +</g> +<g > +<title>/fd (264 samples, 0.02%)</title><rect x="506.2" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="509.19" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (2,411 samples, 0.20%)</title><rect x="835.8" y="165" width="2.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="838.78" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (139 samples, 0.01%)</title><rect x="841.5" y="133" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="844.52" y="143.5" ></text> +</g> +<g > +<title>/0f (303 samples, 0.02%)</title><rect x="339.7" y="117" width="0.3" height="15.0" fill="rgb(239,134,37)" rx="2" ry="2" /> +<text x="342.68" y="127.5" ></text> +</g> +<g > +<title>/fe (248 samples, 0.02%)</title><rect x="395.3" y="117" width="0.2" height="15.0" fill="rgb(242,142,41)" rx="2" ry="2" /> +<text x="398.30" y="127.5" ></text> +</g> +<g > +<title>/cpu (220 samples, 0.02%)</title><rect x="765.9" y="149" width="0.2" height="15.0" fill="rgb(238,161,36)" rx="2" ry="2" /> +<text x="768.92" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_close (276 samples, 0.02%)</title><rect x="768.4" y="85" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="771.38" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (228 samples, 0.02%)</title><rect x="385.9" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="388.95" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_statx (1,874 samples, 0.15%)</title><rect x="322.5" y="133" width="1.8" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="325.50" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_close (201 samples, 0.02%)</title><rect x="1153.7" y="101" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1156.65" y="111.5" ></text> +</g> +<g > +<title>/1c (259 samples, 0.02%)</title><rect x="342.8" y="117" width="0.2" height="15.0" fill="rgb(226,139,23)" rx="2" ry="2" /> +<text x="345.78" y="127.5" ></text> +</g> +<g > +<title>/user.slice (65,871 samples, 5.40%)</title><rect x="768.4" y="149" width="63.7" height="15.0" fill="rgb(246,116,46)" rx="2" ry="2" /> +<text x="771.38" y="159.5" >/user...</text> +</g> +<g > +<title>syscall`enter_ioctl (286 samples, 0.02%)</title><rect x="821.4" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="824.44" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (161 samples, 0.01%)</title><rect x="516.9" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="519.90" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (120 samples, 0.01%)</title><rect x="478.7" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="481.71" y="159.5" ></text> +</g> +<g > +<title>/1d (239 samples, 0.02%)</title><rect x="343.0" y="117" width="0.3" height="15.0" fill="rgb(241,135,40)" rx="2" ry="2" /> +<text x="346.03" y="127.5" ></text> +</g> +<g > +<title>/5.9 (437 samples, 0.04%)</title><rect x="996.8" y="149" width="0.4" height="15.0" fill="rgb(237,96,35)" rx="2" ry="2" /> +<text x="999.76" y="159.5" ></text> +</g> +<g > +<title>/02 (240 samples, 0.02%)</title><rect x="336.5" y="117" width="0.2" height="15.0" fill="rgb(242,147,41)" rx="2" ry="2" /> +<text x="339.49" y="127.5" ></text> +</g> +<g > +<title>/flatpak (5,162 samples, 0.42%)</title><rect x="410.0" y="133" width="5.0" height="15.0" fill="rgb(230,158,27)" rx="2" ry="2" /> +<text x="412.97" y="143.5" ></text> +</g> +<g > +<title>/org.kde.Platform.Locale (136 samples, 0.01%)</title><rect x="272.0" y="181" width="0.1" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="274.97" y="191.5" ></text> +</g> +<g > +<title>/23.08 (172 samples, 0.01%)</title><rect x="1162.0" y="101" width="0.1" height="15.0" fill="rgb(233,134,30)" rx="2" ry="2" /> +<text x="1164.98" y="111.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.freedesktop.problems.applet.slice (1,776 samples, 0.15%)</title><rect x="781.9" y="85" width="1.8" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="784.94" y="95.5" ></text> +</g> +<g > +<title>/252750 (439 samples, 0.04%)</title><rect x="539.6" y="181" width="0.4" height="15.0" fill="rgb(226,127,23)" rx="2" ry="2" /> +<text x="542.60" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_write (899 samples, 0.07%)</title><rect x="744.6" y="165" width="0.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="747.63" y="175.5" ></text> +</g> +<g > +<title>/user-0.slice (1,702 samples, 0.14%)</title><rect x="768.4" y="133" width="1.6" height="15.0" fill="rgb(246,116,46)" rx="2" ry="2" /> +<text x="771.38" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (229 samples, 0.02%)</title><rect x="380.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="383.29" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="815.2" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="818.19" y="79.5" ></text> +</g> +<g > +<title>/gconv (316 samples, 0.03%)</title><rect x="841.1" y="165" width="0.3" height="15.0" fill="rgb(238,144,37)" rx="2" ry="2" /> +<text x="844.14" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_openat (129 samples, 0.01%)</title><rect x="440.3" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="443.32" y="175.5" ></text> +</g> +<g > +<title>/repodata (20,620 samples, 1.69%)</title><rect x="1109.5" y="101" width="19.9" height="15.0" fill="rgb(235,137,33)" rx="2" ry="2" /> +<text x="1112.50" y="111.5" ></text> +</g> +<g > +<title>/dnf (13,724 samples, 1.12%)</title><rect x="1136.7" y="165" width="13.2" height="15.0" fill="rgb(248,162,48)" rx="2" ry="2" /> +<text x="1139.65" y="175.5" ></text> +</g> +<g > +<title>/bin (6,742 samples, 0.55%)</title><rect x="832.7" y="181" width="6.5" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="835.71" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (815 samples, 0.07%)</title><rect x="968.0" y="149" width="0.8" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="970.97" y="159.5" ></text> +</g> +<g > +<title>/systemd-hostnamed.service (140 samples, 0.01%)</title><rect x="766.5" y="133" width="0.1" height="15.0" fill="rgb(246,145,46)" rx="2" ry="2" /> +<text x="769.46" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_read (572 samples, 0.05%)</title><rect x="812.1" y="69" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="815.07" y="79.5" ></text> +</g> +<g > +<title>/d1 (265 samples, 0.02%)</title><rect x="384.8" y="117" width="0.2" height="15.0" fill="rgb(230,165,28)" rx="2" ry="2" /> +<text x="387.75" y="127.5" ></text> +</g> +<g > +<title>/5023 (164 samples, 0.01%)</title><rect x="722.3" y="181" width="0.2" height="15.0" fill="rgb(246,128,45)" rx="2" ry="2" /> +<text x="725.35" y="191.5" ></text> +</g> +<g > +<title>/c2 (223 samples, 0.02%)</title><rect x="381.3" y="117" width="0.2" height="15.0" fill="rgb(247,167,46)" rx="2" ry="2" /> +<text x="384.29" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (204 samples, 0.02%)</title><rect x="390.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="393.53" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_openat (137 samples, 0.01%)</title><rect x="1171.0" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1173.99" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="798.1" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="801.13" y="79.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Shell.Screencast.slice (1,741 samples, 0.14%)</title><rect x="812.6" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="815.62" y="95.5" ></text> +</g> +<g > +<title>/f2 (243 samples, 0.02%)</title><rect x="392.6" y="117" width="0.2" height="15.0" fill="rgb(244,152,42)" rx="2" ry="2" /> +<text x="395.61" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (20,169 samples, 1.65%)</title><rect x="450.6" y="149" width="19.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="453.62" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (230 samples, 0.02%)</title><rect x="361.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="364.57" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_close (244 samples, 0.02%)</title><rect x="497.4" y="165" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="500.44" y="175.5" ></text> +</g> +<g > +<title>/1656149 (113 samples, 0.01%)</title><rect x="517.7" y="181" width="0.1" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" /> +<text x="520.72" y="191.5" ></text> +</g> +<g > +<title>/41 (222 samples, 0.02%)</title><rect x="351.3" y="117" width="0.2" height="15.0" fill="rgb(222,130,19)" rx="2" ry="2" /> +<text x="354.29" y="127.5" ></text> +</g> +<g > +<title>/queries (1,326 samples, 0.11%)</title><rect x="842.0" y="133" width="1.3" height="15.0" fill="rgb(237,129,36)" rx="2" ry="2" /> +<text x="844.99" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (226 samples, 0.02%)</title><rect x="391.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="394.93" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (2,472 samples, 0.20%)</title><rect x="633.2" y="149" width="2.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="636.22" y="159.5" ></text> +</g> +<g > +<title>/6f (256 samples, 0.02%)</title><rect x="362.0" y="117" width="0.2" height="15.0" fill="rgb(232,104,30)" rx="2" ry="2" /> +<text x="365.00" y="127.5" ></text> +</g> +<g > +<title>/x86_64 (172 samples, 0.01%)</title><rect x="1165.2" y="117" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="1168.21" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (203 samples, 0.02%)</title><rect x="346.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="349.22" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (282 samples, 0.02%)</title><rect x="770.3" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="773.29" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_read (574 samples, 0.05%)</title><rect x="781.4" y="69" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="784.39" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_read (569 samples, 0.05%)</title><rect x="779.7" y="69" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="782.67" y="79.5" ></text> +</g> +<g > +<title>/icons (961 samples, 0.08%)</title><rect x="321.5" y="133" width="1.0" height="15.0" fill="rgb(244,134,43)" rx="2" ry="2" /> +<text x="324.54" y="143.5" ></text> +</g> +<g > +<title>/functions (421 samples, 0.03%)</title><rect x="996.8" y="133" width="0.4" height="15.0" fill="rgb(244,129,43)" rx="2" ry="2" /> +<text x="999.76" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (289 samples, 0.02%)</title><rect x="350.5" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="353.54" y="111.5" ></text> +</g> +<g > +<title>/fd (132 samples, 0.01%)</title><rect x="514.2" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="517.25" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (222 samples, 0.02%)</title><rect x="853.0" y="85" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="855.95" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="827.1" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="830.12" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (244 samples, 0.02%)</title><rect x="367.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="369.96" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (219 samples, 0.02%)</title><rect x="379.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="382.62" y="111.5" ></text> +</g> +<g > +<title>/6018 (8,181 samples, 0.67%)</title><rect x="725.9" y="181" width="8.0" height="15.0" fill="rgb(239,123,37)" rx="2" ry="2" /> +<text x="728.94" y="191.5" ></text> +</g> +<g > +<title>/1532717 (354 samples, 0.03%)</title><rect x="499.2" y="181" width="0.4" height="15.0" fill="rgb(235,132,34)" rx="2" ry="2" /> +<text x="502.24" y="191.5" ></text> +</g> +<g > +<title>/4744 (116 samples, 0.01%)</title><rect x="718.8" y="181" width="0.2" height="15.0" fill="rgb(237,111,36)" rx="2" ry="2" /> +<text x="721.84" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (136 samples, 0.01%)</title><rect x="1176.0" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1178.96" y="143.5" ></text> +</g> +<g > +<title>/appstream (212 samples, 0.02%)</title><rect x="1153.4" y="149" width="0.2" height="15.0" fill="rgb(225,115,23)" rx="2" ry="2" /> +<text x="1156.44" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_getdents64 (107 samples, 0.01%)</title><rect x="260.2" y="181" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="263.15" y="191.5" ></text> +</g> +<g > +<title>/23.08 (150 samples, 0.01%)</title><rect x="1165.4" y="101" width="0.2" height="15.0" fill="rgb(233,134,30)" rx="2" ry="2" /> +<text x="1168.41" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_close (891 samples, 0.07%)</title><rect x="745.8" y="181" width="0.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="748.82" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (189 samples, 0.02%)</title><rect x="1170.8" y="133" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1173.81" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (282 samples, 0.02%)</title><rect x="363.9" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="366.93" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (104 samples, 0.01%)</title><rect x="443.1" y="181" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="446.08" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (201 samples, 0.02%)</title><rect x="1153.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1156.85" y="111.5" ></text> +</g> +<g > +<title>/4d (186 samples, 0.02%)</title><rect x="354.0" y="117" width="0.2" height="15.0" fill="rgb(238,120,36)" rx="2" ry="2" /> +<text x="357.02" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (178 samples, 0.01%)</title><rect x="378.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="381.79" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_openat (283 samples, 0.02%)</title><rect x="796.4" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="799.43" y="79.5" ></text> +</g> +<g > +<title>/x86_64 (242 samples, 0.02%)</title><rect x="1169.7" y="117" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="1172.66" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (348 samples, 0.03%)</title><rect x="435.6" y="117" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="438.60" y="127.5" ></text> +</g> +<g > +<title>/gopls (64,648 samples, 5.30%)</title><rect x="336.0" y="149" width="62.5" height="15.0" fill="rgb(233,144,31)" rx="2" ry="2" /> +<text x="339.03" y="159.5" >/gopls</text> +</g> +<g > +<title>syscall`enter_pread64 (10,437 samples, 0.86%)</title><rect x="1138.0" y="149" width="10.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1141.00" y="159.5" ></text> +</g> +<g > +<title>/.task (254 samples, 0.02%)</title><rect x="432.8" y="165" width="0.3" height="15.0" fill="rgb(236,138,34)" rx="2" ry="2" /> +<text x="435.84" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_close (1,809 samples, 0.15%)</title><rect x="258.3" y="181" width="1.8" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="261.33" y="191.5" ></text> +</g> +<g > +<title>/0b (198 samples, 0.02%)</title><rect x="338.7" y="117" width="0.2" height="15.0" fill="rgb(228,147,26)" rx="2" ry="2" /> +<text x="341.66" y="127.5" ></text> +</g> +<g > +<title>/bits (119 samples, 0.01%)</title><rect x="854.3" y="117" width="0.1" height="15.0" fill="rgb(233,94,31)" rx="2" ry="2" /> +<text x="857.30" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (255 samples, 0.02%)</title><rect x="343.7" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="346.71" y="111.5" ></text> +</g> +<g > +<title>/site-packages (319 samples, 0.03%)</title><rect x="872.9" y="149" width="0.3" height="15.0" fill="rgb(239,119,37)" rx="2" ry="2" /> +<text x="875.94" y="159.5" ></text> +</g> +<g > +<title>dev (38,470 samples, 3.15%)</title><rect x="272.6" y="197" width="37.2" height="15.0" fill="rgb(236,187,34)" rx="2" ry="2" /> +<text x="275.60" y="207.5" >dev</text> +</g> +<g > +<title>syscall`enter_newfstatat (231 samples, 0.02%)</title><rect x="348.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="351.49" y="111.5" ></text> +</g> +<g > +<title>/profile.d (302 samples, 0.02%)</title><rect x="311.8" y="181" width="0.3" height="15.0" fill="rgb(249,144,48)" rx="2" ry="2" /> +<text x="314.84" y="191.5" ></text> +</g> +<g > +<title>usr (170,671 samples, 13.99%)</title><rect x="832.7" y="197" width="165.0" height="15.0" fill="rgb(236,129,34)" rx="2" ry="2" /> +<text x="835.71" y="207.5" >usr</text> +</g> +<g > +<title>/org.gnome.Platform.Locale (293 samples, 0.02%)</title><rect x="1166.5" y="133" width="0.3" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="1169.50" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (262 samples, 0.02%)</title><rect x="368.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="371.67" y="111.5" ></text> +</g> +<g > +<title>/runtime (9,225 samples, 0.76%)</title><rect x="859.0" y="133" width="8.9" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" /> +<text x="862.00" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_read (720 samples, 0.06%)</title><rect x="294.2" y="165" width="0.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="297.16" y="175.5" ></text> +</g> +<g > +<title>/x86_64 (136 samples, 0.01%)</title><rect x="272.0" y="165" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="274.97" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (135 samples, 0.01%)</title><rect x="840.9" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="843.89" y="159.5" ></text> +</g> +<g > +<title>/f3 (199 samples, 0.02%)</title><rect x="392.8" y="117" width="0.2" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="395.84" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_read (569 samples, 0.05%)</title><rect x="800.1" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="803.11" y="79.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.21\x2dorg.a11y.atspi.Registry.slice (1,739 samples, 0.14%)</title><rect x="770.0" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="773.02" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (288 samples, 0.02%)</title><rect x="807.8" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="810.77" y="79.5" ></text> +</g> +<g > +<title>/2d (211 samples, 0.02%)</title><rect x="346.7" y="117" width="0.2" height="15.0" fill="rgb(240,130,39)" rx="2" ry="2" /> +<text x="349.66" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (131 samples, 0.01%)</title><rect x="479.1" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="482.07" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (582 samples, 0.05%)</title><rect x="1136.8" y="149" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1139.76" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_close (125 samples, 0.01%)</title><rect x="439.7" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="442.71" y="175.5" ></text> +</g> +<g > +<title>/68 (224 samples, 0.02%)</title><rect x="360.3" y="117" width="0.3" height="15.0" fill="rgb(225,97,22)" rx="2" ry="2" /> +<text x="363.33" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_read (564 samples, 0.05%)</title><rect x="767.8" y="133" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="770.81" y="143.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dcom.intel.dleyna\x5cx2drenderer.slice (1,776 samples, 0.15%)</title><rect x="773.4" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="776.41" y="95.5" ></text> +</g> +<g > +<title>/Unsplash (126 samples, 0.01%)</title><rect x="407.7" y="117" width="0.2" height="15.0" fill="rgb(241,127,40)" rx="2" ry="2" /> +<text x="410.75" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_openat (244 samples, 0.02%)</title><rect x="498.2" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="501.19" y="175.5" ></text> +</g> +<g > +<title>/.ruby-lsp (117 samples, 0.01%)</title><rect x="436.8" y="133" width="0.1" height="15.0" fill="rgb(246,144,45)" rx="2" ry="2" /> +<text x="439.79" y="143.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Nautilus.slice (1,768 samples, 0.14%)</title><rect x="797.3" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="800.25" y="95.5" ></text> +</g> +<g > +<title>/2e (235 samples, 0.02%)</title><rect x="346.9" y="117" width="0.2" height="15.0" fill="rgb(238,127,37)" rx="2" ry="2" /> +<text x="349.86" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (315 samples, 0.03%)</title><rect x="855.6" y="117" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="858.64" y="127.5" ></text> +</g> +<g > +<title>/repodata (98,940 samples, 8.11%)</title><rect x="1013.0" y="101" width="95.6" height="15.0" fill="rgb(235,137,33)" rx="2" ry="2" /> +<text x="1015.97" y="111.5" >/repodata</text> +</g> +<g > +<title>syscall`enter_io_uring_enter (1,601 samples, 0.13%)</title><rect x="43.1" y="181" width="1.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="46.11" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (153 samples, 0.01%)</title><rect x="722.3" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="725.35" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_close (288 samples, 0.02%)</title><rect x="783.7" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="786.66" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (3,316 samples, 0.27%)</title><rect x="427.0" y="117" width="3.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="430.04" y="127.5" ></text> +</g> +<g > +<title>/ea (249 samples, 0.02%)</title><rect x="390.7" y="117" width="0.3" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="393.72" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_getdents64 (7,484 samples, 0.61%)</title><rect x="35.9" y="181" width="7.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="38.87" y="191.5" ></text> +</g> +<g > +<title>/python3.13 (1,435 samples, 0.12%)</title><rect x="844.2" y="165" width="1.4" height="15.0" fill="rgb(240,160,39)" rx="2" ry="2" /> +<text x="847.22" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_read (564 samples, 0.05%)</title><rect x="788.2" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="791.23" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (282 samples, 0.02%)</title><rect x="787.4" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="790.37" y="79.5" ></text> +</g> +<g > +<title>/07 (254 samples, 0.02%)</title><rect x="337.7" y="117" width="0.2" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" /> +<text x="340.69" y="127.5" ></text> +</g> +<g > +<title>/applications (1,270 samples, 0.10%)</title><rect x="1153.7" y="117" width="1.2" height="15.0" fill="rgb(244,115,43)" rx="2" ry="2" /> +<text x="1156.65" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="774.3" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="777.29" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (13,695 samples, 1.12%)</title><rect x="619.4" y="149" width="13.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="622.42" y="159.5" ></text> +</g> +<g > +<title>/b5 (225 samples, 0.02%)</title><rect x="378.4" y="117" width="0.2" height="15.0" fill="rgb(231,107,28)" rx="2" ry="2" /> +<text x="381.37" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (265 samples, 0.02%)</title><rect x="357.5" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="360.53" y="111.5" ></text> +</g> +<g > +<title>internalgenerated (264 samples, 0.02%)</title><rect x="443.8" y="197" width="0.2" height="15.0" fill="rgb(247,164,46)" rx="2" ry="2" /> +<text x="446.76" y="207.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (329 samples, 0.03%)</title><rect x="775.7" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="778.67" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_read (135 samples, 0.01%)</title><rect x="434.8" y="85" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="437.84" y="95.5" ></text> +</g> +<g > +<title>/92 (269 samples, 0.02%)</title><rect x="370.2" y="117" width="0.3" height="15.0" fill="rgb(245,157,44)" rx="2" ry="2" /> +<text x="373.24" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="784.2" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="787.22" y="79.5" ></text> +</g> +<g > +<title>/85 (212 samples, 0.02%)</title><rect x="367.2" y="117" width="0.2" height="15.0" fill="rgb(240,152,39)" rx="2" ry="2" /> +<text x="370.20" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_read (572 samples, 0.05%)</title><rect x="772.9" y="69" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="775.86" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="774.0" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="776.97" y="79.5" ></text> +</g> +<g > +<title>/ssh (124 samples, 0.01%)</title><rect x="312.2" y="181" width="0.1" height="15.0" fill="rgb(237,126,35)" rx="2" ry="2" /> +<text x="315.22" y="191.5" ></text> +</g> +<g > +<title>bin (136 samples, 0.01%)</title><rect x="267.7" y="197" width="0.2" height="15.0" fill="rgb(247,129,46)" rx="2" ry="2" /> +<text x="270.72" y="207.5" ></text> +</g> +<g > +<title>/01 (243 samples, 0.02%)</title><rect x="336.3" y="117" width="0.2" height="15.0" fill="rgb(227,150,24)" rx="2" ry="2" /> +<text x="339.25" y="127.5" ></text> +</g> +<g > +<title>/app (125 samples, 0.01%)</title><rect x="1159.8" y="85" width="0.1" height="15.0" fill="rgb(248,115,47)" rx="2" ry="2" /> +<text x="1162.78" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_statx (164 samples, 0.01%)</title><rect x="442.1" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="445.09" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (337 samples, 0.03%)</title><rect x="804.6" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="807.61" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_openat (141 samples, 0.01%)</title><rect x="1174.8" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1177.78" y="159.5" ></text> +</g> +<g > +<title>/256811 (25,144 samples, 2.06%)</title><rect x="540.1" y="181" width="24.3" height="15.0" fill="rgb(228,127,25)" rx="2" ry="2" /> +<text x="543.06" y="191.5" >/..</text> +</g> +<g > +<title>/goexperiment (805 samples, 0.07%)</title><rect x="849.6" y="117" width="0.8" height="15.0" fill="rgb(241,144,39)" rx="2" ry="2" /> +<text x="852.58" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (1,013 samples, 0.08%)</title><rect x="854.7" y="117" width="0.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="857.66" y="127.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.freedesktop.portal.IBus.slice (1,775 samples, 0.15%)</title><rect x="780.2" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="783.22" y="95.5" ></text> +</g> +<g > +<title>/f0 (227 samples, 0.02%)</title><rect x="392.1" y="117" width="0.3" height="15.0" fill="rgb(230,158,27)" rx="2" ry="2" /> +<text x="395.14" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (222 samples, 0.02%)</title><rect x="346.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="349.00" y="111.5" ></text> +</g> +<g > +<title>/08 (247 samples, 0.02%)</title><rect x="337.9" y="117" width="0.3" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> +<text x="340.94" y="127.5" ></text> +</g> +<g > +<title>/bytealg (574 samples, 0.05%)</title><rect x="848.1" y="117" width="0.5" height="15.0" fill="rgb(239,120,37)" rx="2" ry="2" /> +<text x="851.09" y="127.5" ></text> +</g> +<g > +<title>/fedora-41-x86_64 (98,986 samples, 8.11%)</title><rect x="1013.0" y="117" width="95.7" height="15.0" fill="rgb(232,142,30)" rx="2" ry="2" /> +<text x="1015.97" y="127.5" >/fedora-41-..</text> +</g> +<g > +<title>/gvfs (118 samples, 0.01%)</title><rect x="841.9" y="165" width="0.1" height="15.0" fill="rgb(236,121,34)" rx="2" ry="2" /> +<text x="844.86" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (584 samples, 0.05%)</title><rect x="511.1" y="149" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="514.07" y="159.5" ></text> +</g> +<g > +<title>/PNP0A08:00 (147 samples, 0.01%)</title><rect x="765.8" y="133" width="0.1" height="15.0" fill="rgb(229,139,27)" rx="2" ry="2" /> +<text x="768.78" y="143.5" ></text> +</g> +<g > +<title>refsremotes (1,190 samples, 0.10%)</title><rect x="760.1" y="197" width="1.2" height="15.0" fill="rgb(238,168,36)" rx="2" ry="2" /> +<text x="763.11" y="207.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (138 samples, 0.01%)</title><rect x="873.6" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="876.60" y="143.5" ></text> +</g> +<g > +<title>/fd (123 samples, 0.01%)</title><rect x="515.5" y="165" width="0.1" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="518.46" y="175.5" ></text> +</g> +<g > +<title>/c3 (258 samples, 0.02%)</title><rect x="381.5" y="117" width="0.3" height="15.0" fill="rgb(245,164,44)" rx="2" ry="2" /> +<text x="384.50" y="127.5" ></text> +</g> +<g > +<title>/5.15-24.08 (110 samples, 0.01%)</title><rect x="1169.0" y="101" width="0.1" height="15.0" fill="rgb(233,96,30)" rx="2" ry="2" /> +<text x="1171.95" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (262 samples, 0.02%)</title><rect x="344.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="347.87" y="111.5" ></text> +</g> +<g > +<title>/4602 (118 samples, 0.01%)</title><rect x="718.7" y="181" width="0.1" height="15.0" fill="rgb(246,114,45)" rx="2" ry="2" /> +<text x="721.68" y="191.5" ></text> +</g> +<g > +<title>/PNP0C09:00 (147 samples, 0.01%)</title><rect x="765.8" y="101" width="0.1" height="15.0" fill="rgb(229,139,27)" rx="2" ry="2" /> +<text x="768.78" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (228 samples, 0.02%)</title><rect x="347.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="350.79" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (535 samples, 0.04%)</title><rect x="869.6" y="117" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="872.62" y="127.5" ></text> +</g> +<g > +<title>/runtime (343 samples, 0.03%)</title><rect x="832.7" y="165" width="0.4" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" /> +<text x="835.73" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (329 samples, 0.03%)</title><rect x="830.6" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="833.61" y="95.5" ></text> +</g> +<g > +<title>/go (1,866 samples, 0.15%)</title><rect x="405.5" y="149" width="1.8" height="15.0" fill="rgb(241,144,39)" rx="2" ry="2" /> +<text x="408.47" y="159.5" ></text> +</g> +<g > +<title>/8d (249 samples, 0.02%)</title><rect x="369.1" y="117" width="0.3" height="15.0" fill="rgb(246,156,45)" rx="2" ry="2" /> +<text x="372.14" y="127.5" ></text> +</g> +<g > +<title>/95 (207 samples, 0.02%)</title><rect x="371.0" y="117" width="0.2" height="15.0" fill="rgb(239,147,38)" rx="2" ry="2" /> +<text x="373.99" y="127.5" ></text> +</g> +<g > +<title>/fd (141 samples, 0.01%)</title><rect x="478.5" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="481.54" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_read (142 samples, 0.01%)</title><rect x="718.3" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="721.33" y="175.5" ></text> +</g> +<g > +<title>/users (291 samples, 0.02%)</title><rect x="762.4" y="165" width="0.3" height="15.0" fill="rgb(238,116,36)" rx="2" ry="2" /> +<text x="765.38" y="175.5" ></text> +</g> +<g > +<title>/99 (263 samples, 0.02%)</title><rect x="371.9" y="117" width="0.2" height="15.0" fill="rgb(232,134,30)" rx="2" ry="2" /> +<text x="374.88" y="127.5" ></text> +</g> +<g > +<title>/self (7,593 samples, 0.62%)</title><rect x="738.2" y="181" width="7.3" height="15.0" fill="rgb(238,132,36)" rx="2" ry="2" /> +<text x="741.16" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (246 samples, 0.02%)</title><rect x="363.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="365.98" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (198 samples, 0.02%)</title><rect x="338.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="341.66" y="111.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Shell.Notifications.slice (1,767 samples, 0.14%)</title><rect x="810.9" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="813.91" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (281 samples, 0.02%)</title><rect x="802.6" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="805.64" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (189 samples, 0.02%)</title><rect x="843.5" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="846.49" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (771 samples, 0.06%)</title><rect x="335.3" y="133" width="0.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="338.28" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_openat (182 samples, 0.01%)</title><rect x="857.9" y="117" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="860.86" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_openat (310 samples, 0.03%)</title><rect x="974.1" y="133" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="977.14" y="143.5" ></text> +</g> +<g > +<title>/1655698 (1,128 samples, 0.09%)</title><rect x="512.4" y="181" width="1.1" height="15.0" fill="rgb(238,129,36)" rx="2" ry="2" /> +<text x="515.38" y="191.5" ></text> +</g> +<g > +<title>/fd (312 samples, 0.03%)</title><rect x="506.9" y="165" width="0.3" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="509.89" y="175.5" ></text> +</g> +<g > +<title>/37 (233 samples, 0.02%)</title><rect x="348.9" y="117" width="0.2" height="15.0" fill="rgb(230,116,28)" rx="2" ry="2" /> +<text x="351.92" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (777 samples, 0.06%)</title><rect x="314.1" y="181" width="0.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="317.06" y="191.5" ></text> +</g> +<g > +<title>/tracker3 (6,526 samples, 0.53%)</title><rect x="398.7" y="149" width="6.3" height="15.0" fill="rgb(245,124,44)" rx="2" ry="2" /> +<text x="401.68" y="159.5" ></text> +</g> +<g > +<title>/b8 (202 samples, 0.02%)</title><rect x="379.0" y="117" width="0.2" height="15.0" fill="rgb(225,97,22)" rx="2" ry="2" /> +<text x="381.96" y="127.5" ></text> +</g> +<g > +<title>/1656481 (280 samples, 0.02%)</title><rect x="527.6" y="181" width="0.2" height="15.0" fill="rgb(235,129,33)" rx="2" ry="2" /> +<text x="530.56" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (223 samples, 0.02%)</title><rect x="388.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="391.12" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (678 samples, 0.06%)</title><rect x="51.3" y="181" width="0.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="54.31" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_statx (126 samples, 0.01%)</title><rect x="839.1" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="842.10" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_read (621 samples, 0.05%)</title><rect x="827.7" y="85" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="830.74" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_io_uring_enter (193 samples, 0.02%)</title><rect x="1131.1" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1134.07" y="159.5" ></text> +</g> +<g > +<title>/org.freedesktop.Platform.Locale (127 samples, 0.01%)</title><rect x="270.8" y="181" width="0.1" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="273.81" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (245 samples, 0.02%)</title><rect x="358.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="361.77" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (238 samples, 0.02%)</title><rect x="362.2" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="365.25" y="111.5" ></text> +</g> +<g > +<title>/ca (271 samples, 0.02%)</title><rect x="383.1" y="117" width="0.2" height="15.0" fill="rgb(235,170,33)" rx="2" ry="2" /> +<text x="386.08" y="127.5" ></text> +</g> +<g > +<title>deployruntime (2,784 samples, 0.23%)</title><rect x="269.9" y="197" width="2.7" height="15.0" fill="rgb(236,207,34)" rx="2" ry="2" /> +<text x="272.91" y="207.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (152 samples, 0.01%)</title><rect x="871.5" y="117" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="874.52" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (335 samples, 0.03%)</title><rect x="772.3" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="775.26" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (338 samples, 0.03%)</title><rect x="780.8" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="783.78" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_lseek (174 samples, 0.01%)</title><rect x="497.7" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="500.67" y="175.5" ></text> +</g> +<g > +<title>/4787 (2,933 samples, 0.24%)</title><rect x="719.1" y="181" width="2.9" height="15.0" fill="rgb(240,111,38)" rx="2" ry="2" /> +<text x="722.14" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (248 samples, 0.02%)</title><rect x="381.0" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="384.05" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_unlinkat (128 samples, 0.01%)</title><rect x="120.8" y="181" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="123.84" y="191.5" ></text> +</g> +<g > +<title>/errors (105 samples, 0.01%)</title><rect x="847.0" y="133" width="0.1" height="15.0" fill="rgb(239,144,38)" rx="2" ry="2" /> +<text x="850.04" y="143.5" ></text> +</g> +<g > +<title>/fd (280 samples, 0.02%)</title><rect x="527.6" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="530.56" y="175.5" ></text> +</g> +<g > +<title>/x86_64 (132 samples, 0.01%)</title><rect x="764.0" y="181" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="766.96" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (219 samples, 0.02%)</title><rect x="365.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="368.31" y="111.5" ></text> +</g> +<g > +<title>/a5 (248 samples, 0.02%)</title><rect x="374.6" y="117" width="0.3" height="15.0" fill="rgb(232,112,29)" rx="2" ry="2" /> +<text x="377.64" y="127.5" ></text> +</g> +<g > +<title>/idb (676 samples, 0.06%)</title><rect x="415.3" y="69" width="0.7" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" /> +<text x="418.33" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (224 samples, 0.02%)</title><rect x="360.3" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="363.33" y="111.5" ></text> +</g> +<g > +<title>/db (235 samples, 0.02%)</title><rect x="387.2" y="117" width="0.2" height="15.0" fill="rgb(232,162,30)" rx="2" ry="2" /> +<text x="390.16" y="127.5" ></text> +</g> +<g > +<title>/.aws (126 samples, 0.01%)</title><rect x="321.0" y="165" width="0.2" height="15.0" fill="rgb(235,160,33)" rx="2" ry="2" /> +<text x="324.05" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (25,133 samples, 2.06%)</title><rect x="540.1" y="149" width="24.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="543.06" y="159.5" >s..</text> +</g> +<g > +<title>/61 (245 samples, 0.02%)</title><rect x="358.8" y="117" width="0.2" height="15.0" fill="rgb(220,120,17)" rx="2" ry="2" /> +<text x="361.77" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (592 samples, 0.05%)</title><rect x="1131.3" y="149" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1134.26" y="159.5" ></text> +</g> +<g > +<title>/fd (4,932 samples, 0.40%)</title><rect x="519.0" y="165" width="4.8" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="521.98" y="175.5" ></text> +</g> +<g > +<title>/debug (250 samples, 0.02%)</title><rect x="832.2" y="165" width="0.2" height="15.0" fill="rgb(240,152,39)" rx="2" ry="2" /> +<text x="835.15" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_read (20,527 samples, 1.68%)</title><rect x="1109.6" y="85" width="19.8" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1112.59" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (281 samples, 0.02%)</title><rect x="361.3" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="364.30" y="111.5" ></text> +</g> +<g > +<title>/d8 (231 samples, 0.02%)</title><rect x="386.4" y="117" width="0.2" height="15.0" fill="rgb(235,143,33)" rx="2" ry="2" /> +<text x="389.41" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (275 samples, 0.02%)</title><rect x="438.8" y="149" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="441.83" y="159.5" ></text> +</g> +<g > +<title>/1647032 (790 samples, 0.06%)</title><rect x="509.0" y="181" width="0.8" height="15.0" fill="rgb(247,129,46)" rx="2" ry="2" /> +<text x="512.01" y="191.5" ></text> +</g> +<g > +<title>/.cache (86,856 samples, 7.12%)</title><rect x="321.2" y="165" width="84.0" height="15.0" fill="rgb(245,154,44)" rx="2" ry="2" /> +<text x="324.17" y="175.5" >/.cache</text> +</g> +<g > +<title>syscall`enter_newfstat (1,292 samples, 0.11%)</title><rect x="445.3" y="181" width="1.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="448.27" y="191.5" ></text> +</g> +<g > +<title>/f6 (244 samples, 0.02%)</title><rect x="393.5" y="117" width="0.2" height="15.0" fill="rgb(237,139,35)" rx="2" ry="2" /> +<text x="396.50" y="127.5" ></text> +</g> +<g > +<title>/1652716 (115 samples, 0.01%)</title><rect x="510.1" y="181" width="0.1" height="15.0" fill="rgb(237,129,35)" rx="2" ry="2" /> +<text x="513.07" y="191.5" ></text> +</g> +<g > +<title>/11 (234 samples, 0.02%)</title><rect x="340.2" y="117" width="0.2" height="15.0" fill="rgb(226,145,23)" rx="2" ry="2" /> +<text x="343.17" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_close (282 samples, 0.02%)</title><rect x="822.9" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="825.87" y="79.5" ></text> +</g> +<g > +<title>/helix (467 samples, 0.04%)</title><rect x="407.3" y="149" width="0.4" height="15.0" fill="rgb(248,132,47)" rx="2" ry="2" /> +<text x="410.28" y="159.5" ></text> +</g> +<g > +<title>/2a (805 samples, 0.07%)</title><rect x="325.6" y="133" width="0.8" height="15.0" fill="rgb(228,140,25)" rx="2" ry="2" /> +<text x="328.60" y="143.5" ></text> +</g> +<g > +<title>/fb (201 samples, 0.02%)</title><rect x="394.6" y="117" width="0.2" height="15.0" fill="rgb(230,152,27)" rx="2" ry="2" /> +<text x="397.65" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (223 samples, 0.02%)</title><rect x="367.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="370.93" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_close (114 samples, 0.01%)</title><rect x="405.5" y="101" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="408.47" y="111.5" ></text> +</g> +<g > +<title>/24.08 (175 samples, 0.01%)</title><rect x="1162.1" y="101" width="0.2" height="15.0" fill="rgb(233,130,30)" rx="2" ry="2" /> +<text x="1165.15" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (285 samples, 0.02%)</title><rect x="778.8" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="781.80" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_getdents64 (348 samples, 0.03%)</title><rect x="1174.3" y="149" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1177.30" y="159.5" ></text> +</g> +<g > +<title>/7f (236 samples, 0.02%)</title><rect x="365.7" y="117" width="0.3" height="15.0" fill="rgb(243,154,42)" rx="2" ry="2" /> +<text x="368.75" y="127.5" ></text> +</g> +<g > +<title>/da (276 samples, 0.02%)</title><rect x="386.9" y="117" width="0.3" height="15.0" fill="rgb(234,165,31)" rx="2" ry="2" /> +<text x="389.89" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (163 samples, 0.01%)</title><rect x="511.7" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="514.69" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_close (112 samples, 0.01%)</title><rect x="765.2" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="768.17" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (245 samples, 0.02%)</title><rect x="388.8" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="391.84" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_read (191 samples, 0.02%)</title><rect x="995.5" y="133" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="998.51" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_read (572 samples, 0.05%)</title><rect x="825.7" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="828.71" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (142 samples, 0.01%)</title><rect x="354.2" y="101" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="357.20" y="111.5" ></text> +</g> +<g > +<title>/15 (248 samples, 0.02%)</title><rect x="341.1" y="117" width="0.3" height="15.0" fill="rgb(236,132,34)" rx="2" ry="2" /> +<text x="344.12" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (303 samples, 0.02%)</title><rect x="339.7" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="342.68" y="111.5" ></text> +</g> +<g > +<title>/49 (273 samples, 0.02%)</title><rect x="353.1" y="117" width="0.2" height="15.0" fill="rgb(226,104,23)" rx="2" ry="2" /> +<text x="356.06" y="127.5" ></text> +</g> +<g > +<title>/72 (291 samples, 0.02%)</title><rect x="362.7" y="117" width="0.3" height="15.0" fill="rgb(247,167,46)" rx="2" ry="2" /> +<text x="365.69" y="127.5" ></text> +</g> +<g > +<title>/c1 (248 samples, 0.02%)</title><rect x="381.0" y="117" width="0.3" height="15.0" fill="rgb(231,170,29)" rx="2" ry="2" /> +<text x="384.05" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_statx (285 samples, 0.02%)</title><rect x="436.5" y="117" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="439.48" y="127.5" ></text> +</g> +<g > +<title>/53 (228 samples, 0.02%)</title><rect x="355.4" y="117" width="0.2" height="15.0" fill="rgb(235,118,33)" rx="2" ry="2" /> +<text x="358.35" y="127.5" ></text> +</g> +<g > +<title>/syscall (2,066 samples, 0.17%)</title><rect x="869.5" y="133" width="2.0" height="15.0" fill="rgb(230,145,28)" rx="2" ry="2" /> +<text x="872.49" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (282 samples, 0.02%)</title><rect x="794.2" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="797.16" y="79.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dio.github.celluloid_player.Celluloid.slice (1,774 samples, 0.15%)</title><rect x="776.8" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="779.80" y="95.5" ></text> +</g> +<g > +<title>/__pycache__ (424 samples, 0.03%)</title><rect x="844.2" y="149" width="0.4" height="15.0" fill="rgb(235,103,33)" rx="2" ry="2" /> +<text x="847.22" y="159.5" ></text> +</g> +<g > +<title>/2b (203 samples, 0.02%)</title><rect x="346.2" y="117" width="0.2" height="15.0" fill="rgb(226,137,23)" rx="2" ry="2" /> +<text x="349.22" y="127.5" ></text> +</g> +<g > +<title>/1488 (397 samples, 0.03%)</title><rect x="497.1" y="181" width="0.3" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" /> +<text x="500.06" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_read (488 samples, 0.04%)</title><rect x="471.9" y="165" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="474.93" y="175.5" ></text> +</g> +<g > +<title>/c7 (204 samples, 0.02%)</title><rect x="382.5" y="117" width="0.2" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" /> +<text x="385.46" y="127.5" ></text> +</g> +<g > +<title>/1656332 (2,806 samples, 0.23%)</title><rect x="524.3" y="181" width="2.7" height="15.0" fill="rgb(245,129,44)" rx="2" ry="2" /> +<text x="527.29" y="191.5" ></text> +</g> +<g > +<title>/x86_64 (142 samples, 0.01%)</title><rect x="272.1" y="165" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="275.10" y="175.5" ></text> +</g> +<g > +<title>/a0 (213 samples, 0.02%)</title><rect x="373.5" y="117" width="0.2" height="15.0" fill="rgb(223,128,20)" rx="2" ry="2" /> +<text x="376.50" y="127.5" ></text> +</g> +<g > +<title>/dnf (350 samples, 0.03%)</title><rect x="310.2" y="181" width="0.4" height="15.0" fill="rgb(248,162,48)" rx="2" ry="2" /> +<text x="313.22" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (212 samples, 0.02%)</title><rect x="373.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="376.50" y="111.5" ></text> +</g> +<g > +<title>/fedora (300 samples, 0.02%)</title><rect x="760.1" y="181" width="0.3" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" /> +<text x="763.11" y="191.5" ></text> +</g> +<g > +<title>/BAT0 (496 samples, 0.04%)</title><rect x="765.2" y="149" width="0.5" height="15.0" fill="rgb(229,157,27)" rx="2" ry="2" /> +<text x="768.17" y="159.5" ></text> +</g> +<g > +<title>/localauthority (180 samples, 0.01%)</title><rect x="311.6" y="165" width="0.2" height="15.0" fill="rgb(240,118,38)" rx="2" ry="2" /> +<text x="314.63" y="175.5" ></text> +</g> +<g > +<title>/x86_64 (120 samples, 0.01%)</title><rect x="270.9" y="165" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="273.94" y="175.5" ></text> +</g> +<g > +<title>/org.gnome.Platform (197 samples, 0.02%)</title><rect x="271.7" y="181" width="0.2" height="15.0" fill="rgb(232,149,30)" rx="2" ry="2" /> +<text x="274.66" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (367 samples, 0.03%)</title><rect x="816.6" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="819.57" y="79.5" ></text> +</g> +<g > +<title>/fd (132 samples, 0.01%)</title><rect x="514.1" y="165" width="0.1" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="517.11" y="175.5" ></text> +</g> +<g > +<title>/46 (223 samples, 0.02%)</title><rect x="352.4" y="117" width="0.2" height="15.0" fill="rgb(231,114,29)" rx="2" ry="2" /> +<text x="355.39" y="127.5" ></text> +</g> +<g > +<title>/ab (219 samples, 0.02%)</title><rect x="376.1" y="117" width="0.2" height="15.0" fill="rgb(223,122,20)" rx="2" ry="2" /> +<text x="379.06" y="127.5" ></text> +</g> +<g > +<title>/icons (190 samples, 0.02%)</title><rect x="1153.5" y="85" width="0.1" height="15.0" fill="rgb(244,134,43)" rx="2" ry="2" /> +<text x="1156.46" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (218 samples, 0.02%)</title><rect x="528.1" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="531.14" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (262 samples, 0.02%)</title><rect x="351.0" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="354.04" y="111.5" ></text> +</g> +<g > +<title>/12 (253 samples, 0.02%)</title><rect x="340.4" y="117" width="0.2" height="15.0" fill="rgb(241,142,40)" rx="2" ry="2" /> +<text x="343.40" y="127.5" ></text> +</g> +<g > +<title>/commit-graphs (122 samples, 0.01%)</title><rect x="255.8" y="165" width="0.1" height="15.0" fill="rgb(238,164,36)" rx="2" ry="2" /> +<text x="258.79" y="175.5" ></text> +</g> +<g > +<title>/kvm (242 samples, 0.02%)</title><rect x="832.2" y="149" width="0.2" height="15.0" fill="rgb(222,101,19)" rx="2" ry="2" /> +<text x="835.15" y="159.5" ></text> +</g> +<g > +<title>/en_GB (183 samples, 0.01%)</title><rect x="994.4" y="149" width="0.1" height="15.0" fill="rgb(231,157,29)" rx="2" ry="2" /> +<text x="997.37" y="159.5" ></text> +</g> +<g > +<title>/x86_64 (112 samples, 0.01%)</title><rect x="1166.2" y="117" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="1169.22" y="127.5" ></text> +</g> +<g > +<title>/org.gnome.Platform (270 samples, 0.02%)</title><rect x="1166.8" y="133" width="0.2" height="15.0" fill="rgb(232,149,30)" rx="2" ry="2" /> +<text x="1169.78" y="143.5" ></text> +</g> +<g > +<title>/e8 (236 samples, 0.02%)</title><rect x="390.3" y="117" width="0.2" height="15.0" fill="rgb(234,138,32)" rx="2" ry="2" /> +<text x="393.30" y="127.5" ></text> +</g> +<g > +<title>/1b (230 samples, 0.02%)</title><rect x="342.6" y="117" width="0.2" height="15.0" fill="rgb(227,142,25)" rx="2" ry="2" /> +<text x="345.56" y="127.5" ></text> +</g> +<g > +<title>/BraveSoftware (619 samples, 0.05%)</title><rect x="433.1" y="101" width="0.6" height="15.0" fill="rgb(248,154,47)" rx="2" ry="2" /> +<text x="436.08" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (232 samples, 0.02%)</title><rect x="345.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="348.12" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (9,166 samples, 0.75%)</title><rect x="416.2" y="117" width="8.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="419.24" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (284 samples, 0.02%)</title><rect x="795.8" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="798.84" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (215 samples, 0.02%)</title><rect x="359.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="362.23" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="793.1" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="796.05" y="79.5" ></text> +</g> +<g > +<title>/user@1001.service (63,942 samples, 5.24%)</title><rect x="770.0" y="117" width="61.9" height="15.0" fill="rgb(246,116,46)" rx="2" ry="2" /> +<text x="773.02" y="127.5" >/user@..</text> +</g> +<g > +<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="829.2" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="832.23" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (208 samples, 0.02%)</title><rect x="340.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="342.97" y="111.5" ></text> +</g> +<g > +<title>/83 (250 samples, 0.02%)</title><rect x="366.7" y="117" width="0.3" height="15.0" fill="rgb(244,159,43)" rx="2" ry="2" /> +<text x="369.72" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_openat (286 samples, 0.02%)</title><rect x="801.5" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="804.53" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_lseek (105 samples, 0.01%)</title><rect x="415.1" y="37" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="418.10" y="47.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="825.1" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="828.11" y="79.5" ></text> +</g> +<g > +<title>/6.7 (119 samples, 0.01%)</title><rect x="1169.8" y="101" width="0.1" height="15.0" fill="rgb(239,91,38)" rx="2" ry="2" /> +<text x="1172.77" y="111.5" ></text> +</g> +<g > +<title>/fd (205 samples, 0.02%)</title><rect x="515.1" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="518.13" y="175.5" ></text> +</g> +<g > +<title>/fontconfig (402 samples, 0.03%)</title><rect x="846.2" y="165" width="0.4" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="849.23" y="175.5" ></text> +</g> +<g > +<title>/dd (249 samples, 0.02%)</title><rect x="387.6" y="117" width="0.3" height="15.0" fill="rgb(246,156,45)" rx="2" ry="2" /> +<text x="390.62" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_pwrite64 (1,744 samples, 0.14%)</title><rect x="1148.1" y="149" width="1.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1151.09" y="159.5" ></text> +</g> +<g > +<title>/1640421 (152 samples, 0.01%)</title><rect x="508.7" y="181" width="0.1" height="15.0" fill="rgb(229,129,27)" rx="2" ry="2" /> +<text x="511.68" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (288 samples, 0.02%)</title><rect x="792.4" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="795.45" y="79.5" ></text> +</g> +<g > +<title>/local (4,091 samples, 0.34%)</title><rect x="962.5" y="181" width="4.0" height="15.0" fill="rgb(229,118,26)" rx="2" ry="2" /> +<text x="965.52" y="191.5" ></text> +</g> +<g > +<title>.gitrefs (501 samples, 0.04%)</title><rect x="256.5" y="197" width="0.5" height="15.0" fill="rgb(239,132,37)" rx="2" ry="2" /> +<text x="259.50" y="207.5" ></text> +</g> +<g > +<title>/remotes (170 samples, 0.01%)</title><rect x="256.7" y="181" width="0.2" height="15.0" fill="rgb(238,137,36)" rx="2" ry="2" /> +<text x="259.73" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (2,595 samples, 0.21%)</title><rect x="479.8" y="149" width="2.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="482.83" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (280 samples, 0.02%)</title><rect x="342.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="345.06" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (727 samples, 0.06%)</title><rect x="856.9" y="117" width="0.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="859.86" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_close (282 samples, 0.02%)</title><rect x="816.0" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="819.02" y="79.5" ></text> +</g> +<g > +<title>/22 (223 samples, 0.02%)</title><rect x="344.2" y="117" width="0.2" height="15.0" fill="rgb(240,137,39)" rx="2" ry="2" /> +<text x="347.20" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_read (564 samples, 0.05%)</title><rect x="813.8" y="69" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="816.76" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (235 samples, 0.02%)</title><rect x="395.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="398.07" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (124 samples, 0.01%)</title><rect x="1153.0" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1155.96" y="143.5" ></text> +</g> +<g > +<title>/rules.d (270 samples, 0.02%)</title><rect x="961.9" y="149" width="0.3" height="15.0" fill="rgb(247,124,47)" rx="2" ry="2" /> +<text x="964.93" y="159.5" ></text> +</g> +<g > +<title>/cache (402 samples, 0.03%)</title><rect x="846.2" y="149" width="0.4" height="15.0" fill="rgb(245,170,44)" rx="2" ry="2" /> +<text x="849.23" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (225 samples, 0.02%)</title><rect x="385.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="388.01" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_close (288 samples, 0.02%)</title><rect x="792.2" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="795.17" y="79.5" ></text> +</g> +<g > +<title>/refs (572 samples, 0.05%)</title><rect x="434.6" y="117" width="0.6" height="15.0" fill="rgb(239,137,37)" rx="2" ry="2" /> +<text x="437.62" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (360 samples, 0.03%)</title><rect x="471.3" y="165" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="474.35" y="175.5" ></text> +</g> +<g > +<title>/1637219 (718 samples, 0.06%)</title><rect x="506.2" y="181" width="0.7" height="15.0" fill="rgb(235,129,34)" rx="2" ry="2" /> +<text x="509.19" y="191.5" ></text> +</g> +<g > +<title>/fd (105 samples, 0.01%)</title><rect x="718.8" y="165" width="0.1" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="721.84" y="175.5" ></text> +</g> +<g > +<title>/fd (409 samples, 0.03%)</title><rect x="450.1" y="165" width="0.4" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="453.08" y="175.5" ></text> +</g> +<g > +<title>/1655774 (206 samples, 0.02%)</title><rect x="515.1" y="181" width="0.2" height="15.0" fill="rgb(246,129,45)" rx="2" ry="2" /> +<text x="518.13" y="191.5" ></text> +</g> +<g > +<title>/ec (220 samples, 0.02%)</title><rect x="391.2" y="117" width="0.2" height="15.0" fill="rgb(229,154,26)" rx="2" ry="2" /> +<text x="394.22" y="127.5" ></text> +</g> +<g > +<title>/54 (217 samples, 0.02%)</title><rect x="355.6" y="117" width="0.2" height="15.0" fill="rgb(233,115,31)" rx="2" ry="2" /> +<text x="358.57" y="127.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Photos.slice (1,748 samples, 0.14%)</title><rect x="802.4" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="805.36" y="95.5" ></text> +</g> +<g > +<title>/2 (1,418 samples, 0.12%)</title><rect x="564.6" y="181" width="1.4" height="15.0" fill="rgb(251,127,50)" rx="2" ry="2" /> +<text x="567.61" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_read (214 samples, 0.02%)</title><rect x="851.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="854.48" y="111.5" ></text> +</g> +<g > +<title>/fd (521 samples, 0.04%)</title><rect x="735.4" y="165" width="0.5" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="738.44" y="175.5" ></text> +</g> +<g > +<title>runtimeorg.freedesktop.Platform.GL.default (176 samples, 0.01%)</title><rect x="763.5" y="197" width="0.2" height="15.0" fill="rgb(228,156,25)" rx="2" ry="2" /> +<text x="766.50" y="207.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (329 samples, 0.03%)</title><rect x="789.3" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="792.32" y="79.5" ></text> +</g> +<g > +<title>/34 (216 samples, 0.02%)</title><rect x="348.3" y="117" width="0.2" height="15.0" fill="rgb(236,125,34)" rx="2" ry="2" /> +<text x="351.28" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_read (611 samples, 0.05%)</title><rect x="320.3" y="181" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="323.30" y="191.5" ></text> +</g> +<g > +<title>/c0 (301 samples, 0.02%)</title><rect x="380.8" y="117" width="0.2" height="15.0" fill="rgb(233,173,31)" rx="2" ry="2" /> +<text x="383.76" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_close (282 samples, 0.02%)</title><rect x="787.1" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="790.09" y="79.5" ></text> +</g> +<g > +<title>/aa (187 samples, 0.02%)</title><rect x="375.9" y="117" width="0.2" height="15.0" fill="rgb(225,125,22)" rx="2" ry="2" /> +<text x="378.88" y="127.5" ></text> +</g> +<g > +<title>/app (235 samples, 0.02%)</title><rect x="760.4" y="165" width="0.2" height="15.0" fill="rgb(248,115,47)" rx="2" ry="2" /> +<text x="763.40" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_read (146 samples, 0.01%)</title><rect x="508.5" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="511.54" y="175.5" ></text> +</g> +<g > +<title>/org.kde.Platform.Locale (196 samples, 0.02%)</title><rect x="1169.2" y="133" width="0.2" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="1172.21" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (247 samples, 0.02%)</title><rect x="337.9" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="340.94" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_read (392 samples, 0.03%)</title><rect x="508.0" y="165" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="510.99" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (287 samples, 0.02%)</title><rect x="811.2" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="814.19" y="79.5" ></text> +</g> +<g > +<title>/45 (105 samples, 0.01%)</title><rect x="1166.8" y="101" width="0.1" height="15.0" fill="rgb(233,117,31)" rx="2" ry="2" /> +<text x="1169.78" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (257 samples, 0.02%)</title><rect x="340.6" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="343.64" y="111.5" ></text> +</g> +<g > +<title>/2c478f68 (64,639 samples, 5.30%)</title><rect x="336.0" y="133" width="62.5" height="15.0" fill="rgb(229,134,26)" rx="2" ry="2" /> +<text x="339.03" y="143.5" >/2c478..</text> +</g> +<g > +<title>syscall`enter_newfstatat (201 samples, 0.02%)</title><rect x="352.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="354.99" y="111.5" ></text> +</g> +<g > +<title>/tracker3-miners (332 samples, 0.03%)</title><rect x="996.4" y="165" width="0.3" height="15.0" fill="rgb(238,124,36)" rx="2" ry="2" /> +<text x="999.39" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="782.8" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="785.82" y="79.5" ></text> +</g> +<g > +<title>deployapp (1,719 samples, 0.14%)</title><rect x="268.2" y="197" width="1.7" height="15.0" fill="rgb(248,207,47)" rx="2" ry="2" /> +<text x="271.24" y="207.5" ></text> +</g> +<g > +<title>/e4 (242 samples, 0.02%)</title><rect x="389.4" y="117" width="0.2" height="15.0" fill="rgb(241,150,40)" rx="2" ry="2" /> +<text x="392.36" y="127.5" ></text> +</g> +<g > +<title>/fd (9,537 samples, 0.78%)</title><rect x="530.1" y="165" width="9.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="533.10" y="175.5" ></text> +</g> +<g > +<title>/fd (194 samples, 0.02%)</title><rect x="528.8" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="531.77" y="175.5" ></text> +</g> +<g > +<title>/13136 (641 samples, 0.05%)</title><rect x="472.8" y="181" width="0.6" height="15.0" fill="rgb(239,139,38)" rx="2" ry="2" /> +<text x="475.78" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_getdents64 (1,078 samples, 0.09%)</title><rect x="397.0" y="117" width="1.0" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="399.99" y="127.5" ></text> +</g> +<g > +<title>/4333 (13,706 samples, 1.12%)</title><rect x="619.4" y="181" width="13.3" height="15.0" fill="rgb(243,123,42)" rx="2" ry="2" /> +<text x="622.42" y="191.5" ></text> +</g> +<g > +<title>/d2 (225 samples, 0.02%)</title><rect x="385.0" y="117" width="0.2" height="15.0" fill="rgb(246,162,45)" rx="2" ry="2" /> +<text x="388.01" y="127.5" ></text> +</g> +<g > +<title>/27 (234 samples, 0.02%)</title><rect x="345.3" y="117" width="0.3" height="15.0" fill="rgb(232,121,29)" rx="2" ry="2" /> +<text x="348.35" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (220 samples, 0.02%)</title><rect x="345.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="348.57" y="111.5" ></text> +</g> +<g > +<title>/91 (196 samples, 0.02%)</title><rect x="370.1" y="117" width="0.1" height="15.0" fill="rgb(229,160,26)" rx="2" ry="2" /> +<text x="373.05" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="806.3" y="69" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="809.33" y="79.5" ></text> +</g> +<g > +<title>/fd (218 samples, 0.02%)</title><rect x="528.1" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="531.14" y="175.5" ></text> +</g> +<g > +<title>/org.kde.PlatformTheme.QGnomePlatform (125 samples, 0.01%)</title><rect x="1169.5" y="133" width="0.2" height="15.0" fill="rgb(232,149,30)" rx="2" ry="2" /> +<text x="1172.53" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_read (571 samples, 0.05%)</title><rect x="798.4" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="801.41" y="79.5" ></text> +</g> +<g > +<title>/user-1001.slice (64,058 samples, 5.25%)</title><rect x="770.0" y="133" width="62.0" height="15.0" fill="rgb(246,116,46)" rx="2" ry="2" /> +<text x="773.02" y="143.5" >/user-..</text> +</g> +<g > +<title>syscall`enter_newfstatat (250 samples, 0.02%)</title><rect x="375.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="378.36" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (285 samples, 0.02%)</title><rect x="809.5" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="812.48" y="79.5" ></text> +</g> +<g > +<title>/5a (269 samples, 0.02%)</title><rect x="357.1" y="117" width="0.2" height="15.0" fill="rgb(225,125,22)" rx="2" ry="2" /> +<text x="360.06" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_read (297 samples, 0.02%)</title><rect x="529.5" y="165" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="532.52" y="175.5" ></text> +</g> +<g > +<title>/e0 (269 samples, 0.02%)</title><rect x="388.3" y="117" width="0.3" height="15.0" fill="rgb(231,163,28)" rx="2" ry="2" /> +<text x="391.33" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_lseek (209 samples, 0.02%)</title><rect x="967.8" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="970.76" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_pread64 (621 samples, 0.05%)</title><rect x="415.4" y="53" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="418.39" y="63.5" ></text> +</g> +<g > +<title>syscall`enter_lseek (194 samples, 0.02%)</title><rect x="738.9" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="741.90" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (571 samples, 0.05%)</title><rect x="300.4" y="165" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="303.42" y="175.5" ></text> +</g> +<g > +<title>/x86_64 (128 samples, 0.01%)</title><rect x="271.3" y="165" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="274.26" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (212 samples, 0.02%)</title><rect x="367.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="370.20" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_pread64 (87,326 samples, 7.16%)</title><rect x="876.4" y="133" width="84.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="879.44" y="143.5" >syscall`e..</text> +</g> +<g > +<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="779.4" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="782.40" y="79.5" ></text> +</g> +<g > +<title>/8f (230 samples, 0.02%)</title><rect x="369.6" y="117" width="0.2" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="372.62" y="127.5" ></text> +</g> +<g > +<title>/internal (768 samples, 0.06%)</title><rect x="437.0" y="133" width="0.7" height="15.0" fill="rgb(229,137,27)" rx="2" ry="2" /> +<text x="440.00" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (256 samples, 0.02%)</title><rect x="370.7" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="373.74" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_openat (282 samples, 0.02%)</title><rect x="770.9" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="773.89" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (264 samples, 0.02%)</title><rect x="506.2" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="509.19" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (168 samples, 0.01%)</title><rect x="472.5" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="475.54" y="159.5" ></text> +</g> +<g > +<title>/com.belmoussaoui.ReadItLater.Locale (118 samples, 0.01%)</title><rect x="1160.5" y="133" width="0.1" height="15.0" fill="rgb(242,164,41)" rx="2" ry="2" /> +<text x="1163.49" y="143.5" ></text> +</g> +<g > +<title>/8e (244 samples, 0.02%)</title><rect x="369.4" y="117" width="0.2" height="15.0" fill="rgb(244,152,43)" rx="2" ry="2" /> +<text x="372.39" y="127.5" ></text> +</g> +<g > +<title>/src (26,545 samples, 2.18%)</title><rect x="846.7" y="149" width="25.7" height="15.0" fill="rgb(230,129,27)" rx="2" ry="2" /> +<text x="849.73" y="159.5" >/..</text> +</g> +<g > +<title>syscall`enter_newfstatat (226 samples, 0.02%)</title><rect x="377.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="380.71" y="111.5" ></text> +</g> +<g > +<title>/BAT0 (147 samples, 0.01%)</title><rect x="765.8" y="53" width="0.1" height="15.0" fill="rgb(229,157,27)" rx="2" ry="2" /> +<text x="768.78" y="63.5" ></text> +</g> +<g > +<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="781.1" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="784.11" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newstat (168 samples, 0.01%)</title><rect x="748.7" y="181" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="751.67" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_read (1,314 samples, 0.11%)</title><rect x="564.7" y="165" width="1.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="567.71" y="175.5" ></text> +</g> +<g > +<title>/f8 (236 samples, 0.02%)</title><rect x="394.0" y="117" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" /> +<text x="396.96" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_lseek (485 samples, 0.04%)</title><rect x="313.6" y="181" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="316.59" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (117 samples, 0.01%)</title><rect x="962.3" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="965.25" y="175.5" ></text> +</g> +<g > +<title>/fd (280 samples, 0.02%)</title><rect x="517.1" y="165" width="0.3" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="520.08" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (288 samples, 0.02%)</title><rect x="828.6" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="831.63" y="95.5" ></text> +</g> +<g > +<title>/fd (250 samples, 0.02%)</title><rect x="499.6" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="502.59" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (329 samples, 0.03%)</title><rect x="770.6" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="773.57" y="79.5" ></text> +</g> +<g > +<title>/25 (262 samples, 0.02%)</title><rect x="344.9" y="117" width="0.2" height="15.0" fill="rgb(235,127,33)" rx="2" ry="2" /> +<text x="347.87" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_close (288 samples, 0.02%)</title><rect x="781.9" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="784.94" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (5,901 samples, 0.48%)</title><rect x="500.5" y="149" width="5.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="503.45" y="159.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.NautilusPreviewer.slice (1,752 samples, 0.14%)</title><rect x="799.0" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="801.96" y="95.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dapp.drey.Dialect.SearchProvider.slice (1,768 samples, 0.14%)</title><rect x="771.7" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="774.70" y="95.5" ></text> +</g> +<g > +<title>/3d (217 samples, 0.02%)</title><rect x="350.3" y="117" width="0.2" height="15.0" fill="rgb(239,125,38)" rx="2" ry="2" /> +<text x="353.33" y="127.5" ></text> +</g> +<g > +<title>/x86_64 (718 samples, 0.06%)</title><rect x="1161.8" y="117" width="0.7" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="1164.82" y="127.5" ></text> +</g> +<g > +<title>/4a (245 samples, 0.02%)</title><rect x="353.3" y="117" width="0.3" height="15.0" fill="rgb(226,130,23)" rx="2" ry="2" /> +<text x="356.33" y="127.5" ></text> +</g> +<g > +<title>/x86_64 (126 samples, 0.01%)</title><rect x="271.9" y="165" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="274.85" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (231 samples, 0.02%)</title><rect x="386.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="389.41" y="111.5" ></text> +</g> +<g > +<title>/7c (192 samples, 0.02%)</title><rect x="365.1" y="117" width="0.2" height="15.0" fill="rgb(231,164,29)" rx="2" ry="2" /> +<text x="368.13" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (350 samples, 0.03%)</title><rect x="507.6" y="149" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="510.62" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (222 samples, 0.02%)</title><rect x="353.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="356.56" y="111.5" ></text> +</g> +<g > +<title>/systemd (1,530 samples, 0.13%)</title><rect x="761.4" y="181" width="1.5" height="15.0" fill="rgb(240,145,39)" rx="2" ry="2" /> +<text x="764.40" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (222 samples, 0.02%)</title><rect x="344.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="347.65" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (1,542 samples, 0.13%)</title><rect x="333.7" y="133" width="1.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="336.72" y="143.5" ></text> +</g> +<g > +<title>/93 (246 samples, 0.02%)</title><rect x="370.5" y="117" width="0.2" height="15.0" fill="rgb(243,154,42)" rx="2" ry="2" /> +<text x="373.50" y="127.5" ></text> +</g> +<g > +<title>/fd (131 samples, 0.01%)</title><rect x="498.9" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="501.93" y="175.5" ></text> +</g> +<g > +<title>/fd (569 samples, 0.05%)</title><rect x="509.0" y="165" width="0.6" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="512.01" y="175.5" ></text> +</g> +<g > +<title>/60 (231 samples, 0.02%)</title><rect x="358.5" y="117" width="0.3" height="15.0" fill="rgb(222,123,19)" rx="2" ry="2" /> +<text x="361.55" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (244 samples, 0.02%)</title><rect x="353.3" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="356.33" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (282 samples, 0.02%)</title><rect x="789.0" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="792.05" y="79.5" ></text> +</g> +<g > +<title>/6b (275 samples, 0.02%)</title><rect x="361.0" y="117" width="0.3" height="15.0" fill="rgb(222,117,19)" rx="2" ry="2" /> +<text x="364.03" y="127.5" ></text> +</g> +<g > +<title>/variety (594 samples, 0.05%)</title><rect x="407.7" y="149" width="0.6" height="15.0" fill="rgb(243,130,42)" rx="2" ry="2" /> +<text x="410.73" y="159.5" ></text> +</g> +<g > +<title>/gnome-software (2,879 samples, 0.24%)</title><rect x="321.5" y="149" width="2.8" height="15.0" fill="rgb(248,147,47)" rx="2" ry="2" /> +<text x="324.53" y="159.5" ></text> +</g> +<g > +<title>lib64 (6,088 samples, 0.50%)</title><rect x="444.0" y="197" width="5.9" height="15.0" fill="rgb(239,129,37)" rx="2" ry="2" /> +<text x="447.02" y="207.5" ></text> +</g> +<g > +<title>/7d (219 samples, 0.02%)</title><rect x="365.3" y="117" width="0.2" height="15.0" fill="rgb(247,161,46)" rx="2" ry="2" /> +<text x="368.31" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_access (620 samples, 0.05%)</title><rect x="972.9" y="133" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="975.94" y="143.5" ></text> +</g> +<g > +<title>/flathub (333 samples, 0.03%)</title><rect x="1160.1" y="101" width="0.3" height="15.0" fill="rgb(227,158,25)" rx="2" ry="2" /> +<text x="1163.12" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (288 samples, 0.02%)</title><rect x="804.3" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="807.33" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_close (286 samples, 0.02%)</title><rect x="800.7" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="803.66" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_close (286 samples, 0.02%)</title><rect x="797.3" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="800.25" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_statx (137 samples, 0.01%)</title><rect x="439.1" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="442.14" y="159.5" ></text> +</g> +<g > +<title>/4212 (54,490 samples, 4.47%)</title><rect x="566.6" y="181" width="52.7" height="15.0" fill="rgb(248,127,47)" rx="2" ry="2" /> +<text x="569.58" y="191.5" >/4212</text> +</g> +<g > +<title>/scripts (110 samples, 0.01%)</title><rect x="439.5" y="165" width="0.1" height="15.0" fill="rgb(236,139,35)" rx="2" ry="2" /> +<text x="442.50" y="175.5" ></text> +</g> +<g > +<title>/runtime (14,155 samples, 1.16%)</title><rect x="1160.5" y="149" width="13.7" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" /> +<text x="1163.49" y="159.5" ></text> +</g> +<g > +<title>/x86_64 (168 samples, 0.01%)</title><rect x="1169.2" y="117" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="1172.21" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (285 samples, 0.02%)</title><rect x="800.9" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="803.93" y="79.5" ></text> +</g> +<g > +<title>/dri (23,011 samples, 1.89%)</title><rect x="272.6" y="181" width="22.3" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="275.60" y="191.5" >/..</text> +</g> +<g > +<title>/f7 (230 samples, 0.02%)</title><rect x="393.7" y="117" width="0.3" height="15.0" fill="rgb(235,136,33)" rx="2" ry="2" /> +<text x="396.73" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_read (558 samples, 0.05%)</title><rect x="817.2" y="69" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="820.20" y="79.5" ></text> +</g> +<g > +<title>/289122 (119 samples, 0.01%)</title><rect x="564.5" y="181" width="0.1" height="15.0" fill="rgb(247,117,46)" rx="2" ry="2" /> +<text x="567.46" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (241 samples, 0.02%)</title><rect x="387.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="390.39" y="111.5" ></text> +</g> +<g > +<title>/syscall (148 samples, 0.01%)</title><rect x="852.4" y="101" width="0.1" height="15.0" fill="rgb(230,145,28)" rx="2" ry="2" /> +<text x="855.37" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (132 samples, 0.01%)</title><rect x="514.2" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="517.25" y="159.5" ></text> +</g> +<g > +<title>/fd (331 samples, 0.03%)</title><rect x="499.2" y="165" width="0.4" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="502.24" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (232 samples, 0.02%)</title><rect x="349.1" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="352.15" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (192 samples, 0.02%)</title><rect x="993.2" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="996.23" y="159.5" ></text> +</g> +<g > +<title>/runtime (1,355 samples, 0.11%)</title><rect x="842.0" y="149" width="1.3" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" /> +<text x="844.98" y="159.5" ></text> +</g> +<g > +<title>/6d (230 samples, 0.02%)</title><rect x="361.6" y="117" width="0.2" height="15.0" fill="rgb(236,110,34)" rx="2" ry="2" /> +<text x="364.57" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (246 samples, 0.02%)</title><rect x="370.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="373.50" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (189 samples, 0.02%)</title><rect x="845.4" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="848.41" y="159.5" ></text> +</g> +<g > +<title>/51 (250 samples, 0.02%)</title><rect x="354.9" y="117" width="0.2" height="15.0" fill="rgb(221,125,18)" rx="2" ry="2" /> +<text x="357.87" y="127.5" ></text> +</g> +<g > +<title>/LC_MESSAGES (181 samples, 0.01%)</title><rect x="994.4" y="133" width="0.1" height="15.0" fill="rgb(238,100,37)" rx="2" ry="2" /> +<text x="997.37" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (210 samples, 0.02%)</title><rect x="346.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="349.66" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_read (145 samples, 0.01%)</title><rect x="508.4" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="511.39" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_write (823 samples, 0.07%)</title><rect x="1135.8" y="149" width="0.8" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1138.85" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (207 samples, 0.02%)</title><rect x="378.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="381.59" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (176 samples, 0.01%)</title><rect x="300.2" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="303.25" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (192 samples, 0.02%)</title><rect x="365.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="368.13" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (216 samples, 0.02%)</title><rect x="348.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="351.28" y="111.5" ></text> +</g> +<g > +<title>/os (1,768 samples, 0.14%)</title><rect x="856.7" y="133" width="1.7" height="15.0" fill="rgb(237,146,35)" rx="2" ry="2" /> +<text x="859.68" y="143.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.BrowserConnector.slice (1,776 samples, 0.15%)</title><rect x="783.7" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="786.66" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (231 samples, 0.02%)</title><rect x="394.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="397.42" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (338 samples, 0.03%)</title><rect x="262.9" y="181" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="265.93" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_close (836 samples, 0.07%)</title><rect x="302.4" y="181" width="0.8" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="305.35" y="191.5" ></text> +</g> +<g > +<title>runtimeorg.kde.Platform.Locale (113 samples, 0.01%)</title><rect x="764.5" y="197" width="0.1" height="15.0" fill="rgb(242,156,41)" rx="2" ry="2" /> +<text x="767.46" y="207.5" ></text> +</g> +<g > +<title>syscall`enter_openat (283 samples, 0.02%)</title><rect x="816.9" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="819.92" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_statx (278 samples, 0.02%)</title><rect x="438.4" y="133" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="441.38" y="143.5" ></text> +</g> +<g > +<title>/metainfo (308 samples, 0.03%)</title><rect x="994.8" y="165" width="0.3" height="15.0" fill="rgb(248,107,47)" rx="2" ry="2" /> +<text x="997.84" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_read (320 samples, 0.03%)</title><rect x="961.0" y="133" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="964.05" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (276 samples, 0.02%)</title><rect x="768.6" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="771.64" y="95.5" ></text> +</g> +<g > +<title>/org.freedesktop.Platform (153 samples, 0.01%)</title><rect x="1166.2" y="133" width="0.2" height="15.0" fill="rgb(232,149,30)" rx="2" ry="2" /> +<text x="1169.22" y="143.5" ></text> +</g> +<g > +<title>/2.4.1 (159 samples, 0.01%)</title><rect x="1166.0" y="101" width="0.2" height="15.0" fill="rgb(234,111,32)" rx="2" ry="2" /> +<text x="1169.01" y="111.5" ></text> +</g> +<g > +<title>/81 (266 samples, 0.02%)</title><rect x="366.2" y="117" width="0.3" height="15.0" fill="rgb(230,165,28)" rx="2" ry="2" /> +<text x="369.22" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (409 samples, 0.03%)</title><rect x="450.1" y="149" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="453.08" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (222 samples, 0.02%)</title><rect x="351.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="354.29" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_read (304 samples, 0.02%)</title><rect x="873.9" y="133" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="876.87" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (245 samples, 0.02%)</title><rect x="518.4" y="149" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="521.45" y="159.5" ></text> +</g> +<g > +<title>/metadata (120,833 samples, 9.90%)</title><rect x="1012.6" y="133" width="116.9" height="15.0" fill="rgb(235,107,33)" rx="2" ry="2" /> +<text x="1015.64" y="143.5" >/metadata</text> +</g> +<g > +<title>/runtime (426 samples, 0.03%)</title><rect x="407.3" y="133" width="0.4" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" /> +<text x="410.28" y="143.5" ></text> +</g> +<g > +<title>/57 (282 samples, 0.02%)</title><rect x="356.3" y="117" width="0.3" height="15.0" fill="rgb(228,106,26)" rx="2" ry="2" /> +<text x="359.32" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (194 samples, 0.02%)</title><rect x="528.8" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="531.77" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (6,175 samples, 0.51%)</title><rect x="45.3" y="181" width="6.0" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="48.34" y="191.5" ></text> +</g> +<g > +<title>/54 (1,518 samples, 0.12%)</title><rect x="722.9" y="181" width="1.5" height="15.0" fill="rgb(233,115,31)" rx="2" ry="2" /> +<text x="725.91" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_read (404 samples, 0.03%)</title><rect x="507.2" y="165" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="510.22" y="175.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.ScreenSaver.slice (1,777 samples, 0.15%)</title><rect x="804.1" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="807.05" y="95.5" ></text> +</g> +<g > +<title>/localauthority (180 samples, 0.01%)</title><rect x="1175.1" y="149" width="0.2" height="15.0" fill="rgb(240,118,38)" rx="2" ry="2" /> +<text x="1178.08" y="159.5" ></text> +</g> +<g > +<title>/PNP0C0A:00 (147 samples, 0.01%)</title><rect x="765.8" y="85" width="0.1" height="15.0" fill="rgb(229,139,27)" rx="2" ry="2" /> +<text x="768.78" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (233 samples, 0.02%)</title><rect x="348.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="351.92" y="111.5" ></text> +</g> +<g > +<title>/x86_64 (142 samples, 0.01%)</title><rect x="271.1" y="165" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="274.12" y="175.5" ></text> +</g> +<g > +<title>/1450 (189 samples, 0.02%)</title><rect x="479.5" y="181" width="0.2" height="15.0" fill="rgb(228,135,25)" rx="2" ry="2" /> +<text x="482.53" y="191.5" ></text> +</g> +<g > +<title>/fd (147 samples, 0.01%)</title><rect x="527.4" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="530.42" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_close (125 samples, 0.01%)</title><rect x="1152.5" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1155.48" y="143.5" ></text> +</g> +<g > +<title>/kernel (378 samples, 0.03%)</title><rect x="832.2" y="181" width="0.3" height="15.0" fill="rgb(237,117,35)" rx="2" ry="2" /> +<text x="835.15" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (217 samples, 0.02%)</title><rect x="343.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="346.50" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (221 samples, 0.02%)</title><rect x="358.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="361.33" y="111.5" ></text> +</g> +<g > +<title>/36 (214 samples, 0.02%)</title><rect x="348.7" y="117" width="0.2" height="15.0" fill="rgb(232,119,30)" rx="2" ry="2" /> +<text x="351.71" y="127.5" ></text> +</g> +<g > +<title>/fd (665 samples, 0.05%)</title><rect x="736.4" y="165" width="0.6" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="739.37" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (288 samples, 0.02%)</title><rect x="783.9" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="786.94" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_pread64 (466 samples, 0.04%)</title><rect x="447.8" y="181" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="450.77" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_close (288 samples, 0.02%)</title><rect x="807.5" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="810.49" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (332 samples, 0.03%)</title><rect x="767.2" y="133" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="770.20" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_close (282 samples, 0.02%)</title><rect x="788.8" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="791.77" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (198 samples, 0.02%)</title><rect x="392.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="395.84" y="111.5" ></text> +</g> +<g > +<title>/fd (429 samples, 0.04%)</title><rect x="539.6" y="165" width="0.4" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="542.60" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (242 samples, 0.02%)</title><rect x="344.4" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="347.42" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_write (255 samples, 0.02%)</title><rect x="256.2" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="259.19" y="175.5" ></text> +</g> +<g > +<title>/golangci-lint (855 samples, 0.07%)</title><rect x="335.2" y="149" width="0.8" height="15.0" fill="rgb(238,144,36)" rx="2" ry="2" /> +<text x="338.21" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (242 samples, 0.02%)</title><rect x="375.1" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="378.12" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_openat (183 samples, 0.01%)</title><rect x="406.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="409.53" y="111.5" ></text> +</g> +<g > +<title>/python3.13 (355 samples, 0.03%)</title><rect x="872.9" y="165" width="0.4" height="15.0" fill="rgb(240,160,39)" rx="2" ry="2" /> +<text x="875.94" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_openat (311 samples, 0.03%)</title><rect x="827.4" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="830.44" y="95.5" ></text> +</g> +<g > +<title>/6a (274 samples, 0.02%)</title><rect x="360.8" y="117" width="0.2" height="15.0" fill="rgb(224,120,21)" rx="2" ry="2" /> +<text x="363.77" y="127.5" ></text> +</g> +<g > +<title>/snap (135 samples, 0.01%)</title><rect x="1175.5" y="149" width="0.1" height="15.0" fill="rgb(240,142,38)" rx="2" ry="2" /> +<text x="1178.47" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_statx (105 samples, 0.01%)</title><rect x="1153.5" y="53" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1156.55" y="63.5" ></text> +</g> +<g > +<title>syscall`enter_read (286 samples, 0.02%)</title><rect x="301.0" y="165" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="303.99" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_close (288 samples, 0.02%)</title><rect x="785.4" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="788.38" y="79.5" ></text> +</g> +<g > +<title>/a3 (215 samples, 0.02%)</title><rect x="374.2" y="117" width="0.2" height="15.0" fill="rgb(235,118,33)" rx="2" ry="2" /> +<text x="377.20" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (214 samples, 0.02%)</title><rect x="369.8" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="372.84" y="111.5" ></text> +</g> +<g > +<title>/f4 (235 samples, 0.02%)</title><rect x="393.0" y="117" width="0.3" height="15.0" fill="rgb(240,145,39)" rx="2" ry="2" /> +<text x="396.03" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (219 samples, 0.02%)</title><rect x="384.5" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="387.54" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (224 samples, 0.02%)</title><rect x="336.0" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="339.03" y="111.5" ></text> +</g> +<g > +<title>/de (266 samples, 0.02%)</title><rect x="387.9" y="117" width="0.2" height="15.0" fill="rgb(244,152,43)" rx="2" ry="2" /> +<text x="390.86" y="127.5" ></text> +</g> +<g > +<title>/pki (195 samples, 0.02%)</title><rect x="311.4" y="181" width="0.2" height="15.0" fill="rgb(234,128,32)" rx="2" ry="2" /> +<text x="314.44" y="191.5" ></text> +</g> +<g > +<title>/rpm (1,037 samples, 0.08%)</title><rect x="873.3" y="165" width="1.0" height="15.0" fill="rgb(232,140,30)" rx="2" ry="2" /> +<text x="876.28" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (309 samples, 0.03%)</title><rect x="857.6" y="117" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="860.56" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (132 samples, 0.01%)</title><rect x="514.1" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="517.11" y="159.5" ></text> +</g> +<g > +<title>/6e (212 samples, 0.02%)</title><rect x="361.8" y="117" width="0.2" height="15.0" fill="rgb(234,107,32)" rx="2" ry="2" /> +<text x="364.79" y="127.5" ></text> +</g> +<g > +<title>/flatpak (25,974 samples, 2.13%)</title><rect x="1149.9" y="165" width="25.1" height="15.0" fill="rgb(230,158,27)" rx="2" ry="2" /> +<text x="1152.93" y="175.5" >/..</text> +</g> +<g > +<title>.git (581 samples, 0.05%)</title><rect x="254.8" y="197" width="0.6" height="15.0" fill="rgb(233,132,30)" rx="2" ry="2" /> +<text x="257.83" y="207.5" ></text> +</g> +<g > +<title>/c8 (235 samples, 0.02%)</title><rect x="382.7" y="117" width="0.2" height="15.0" fill="rgb(236,148,35)" rx="2" ry="2" /> +<text x="385.65" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (874 samples, 0.07%)</title><rect x="1131.8" y="149" width="0.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1134.83" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (215 samples, 0.02%)</title><rect x="352.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="355.18" y="111.5" ></text> +</g> +<g > +<title>/fonts (889 samples, 0.07%)</title><rect x="310.6" y="181" width="0.8" height="15.0" fill="rgb(238,149,36)" rx="2" ry="2" /> +<text x="313.57" y="191.5" ></text> +</g> +<g > +<title>/click (126 samples, 0.01%)</title><rect x="873.0" y="133" width="0.1" height="15.0" fill="rgb(236,173,34)" rx="2" ry="2" /> +<text x="875.96" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (2,793 samples, 0.23%)</title><rect x="524.3" y="149" width="2.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="527.29" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (234 samples, 0.02%)</title><rect x="345.3" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="348.35" y="111.5" ></text> +</g> +<g > +<title>/app (3,631 samples, 0.30%)</title><rect x="1149.9" y="149" width="3.5" height="15.0" fill="rgb(248,115,47)" rx="2" ry="2" /> +<text x="1152.93" y="159.5" ></text> +</g> +<g > +<title>/bin (112 samples, 0.01%)</title><rect x="409.8" y="149" width="0.1" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="412.78" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (255 samples, 0.02%)</title><rect x="337.4" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="340.45" y="111.5" ></text> +</g> +<g > +<title>/gi (200 samples, 0.02%)</title><rect x="845.1" y="133" width="0.2" height="15.0" fill="rgb(234,124,32)" rx="2" ry="2" /> +<text x="848.11" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_close (291 samples, 0.02%)</title><rect x="766.6" y="133" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="769.63" y="143.5" ></text> +</g> +<g > +<title>/1379 (142 samples, 0.01%)</title><rect x="479.1" y="181" width="0.1" height="15.0" fill="rgb(240,139,39)" rx="2" ry="2" /> +<text x="482.07" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (191 samples, 0.02%)</title><rect x="372.9" y="101" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="375.86" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_read (564 samples, 0.05%)</title><rect x="771.2" y="69" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="774.16" y="79.5" ></text> +</g> +<g > +<title>/exports (244 samples, 0.02%)</title><rect x="410.0" y="117" width="0.2" height="15.0" fill="rgb(235,163,33)" rx="2" ry="2" /> +<text x="412.97" y="127.5" ></text> +</g> +<g > +<title>/git (5,634 samples, 0.46%)</title><rect x="433.8" y="165" width="5.5" height="15.0" fill="rgb(233,124,30)" rx="2" ry="2" /> +<text x="436.82" y="175.5" ></text> +</g> +<g > +<title>/1656150 (145 samples, 0.01%)</title><rect x="517.8" y="181" width="0.2" height="15.0" fill="rgb(230,129,28)" rx="2" ry="2" /> +<text x="520.83" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (104 samples, 0.01%)</title><rect x="847.2" y="117" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="850.16" y="127.5" ></text> +</g> +<g > +<title>/fd (131 samples, 0.01%)</title><rect x="479.1" y="165" width="0.1" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="482.07" y="175.5" ></text> +</g> +<g > +<title>/7341 (964 samples, 0.08%)</title><rect x="736.4" y="181" width="0.9" height="15.0" fill="rgb(228,164,25)" rx="2" ry="2" /> +<text x="739.37" y="191.5" ></text> +</g> +<g > +<title>/math (2,463 samples, 0.20%)</title><rect x="854.3" y="133" width="2.4" height="15.0" fill="rgb(240,120,39)" rx="2" ry="2" /> +<text x="857.30" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (166 samples, 0.01%)</title><rect x="997.6" y="181" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1000.55" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (208 samples, 0.02%)</title><rect x="347.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="350.59" y="111.5" ></text> +</g> +<g > +<title>/x86_64 (144 samples, 0.01%)</title><rect x="764.1" y="181" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="767.13" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (265 samples, 0.02%)</title><rect x="366.2" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="369.22" y="111.5" ></text> +</g> +<g > +<title>var (198,801 samples, 16.29%)</title><rect x="997.8" y="197" width="192.2" height="15.0" fill="rgb(231,101,28)" rx="2" ry="2" /> +<text x="1000.76" y="207.5" >var</text> +</g> +<g > +<title>syscall`enter_close (137 samples, 0.01%)</title><rect x="1170.3" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1173.28" y="143.5" ></text> +</g> +<g > +<title>/idb (242 samples, 0.02%)</title><rect x="415.1" y="69" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" /> +<text x="418.10" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (256 samples, 0.02%)</title><rect x="362.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="365.00" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (288 samples, 0.02%)</title><rect x="381.9" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="384.94" y="111.5" ></text> +</g> +<g > +<title>/89 (263 samples, 0.02%)</title><rect x="368.1" y="117" width="0.3" height="15.0" fill="rgb(234,139,31)" rx="2" ry="2" /> +<text x="371.14" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (329 samples, 0.03%)</title><rect x="813.2" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="816.17" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_read (636 samples, 0.05%)</title><rect x="974.4" y="133" width="0.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="977.44" y="143.5" ></text> +</g> +<g > +<title>/bin (115 samples, 0.01%)</title><rect x="405.2" y="149" width="0.1" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="408.15" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (221 samples, 0.02%)</title><rect x="350.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="353.82" y="111.5" ></text> +</g> +<g > +<title>/goarch (265 samples, 0.02%)</title><rect x="849.2" y="117" width="0.3" height="15.0" fill="rgb(243,144,42)" rx="2" ry="2" /> +<text x="852.23" y="127.5" ></text> +</g> +<g > +<title>/24.08extra (182 samples, 0.01%)</title><rect x="1162.3" y="101" width="0.2" height="15.0" fill="rgb(232,130,30)" rx="2" ry="2" /> +<text x="1165.32" y="111.5" ></text> +</g> +<g > +<title>/x86_64 (127 samples, 0.01%)</title><rect x="270.8" y="165" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="273.81" y="175.5" ></text> +</g> +<g > +<title>/fd (159 samples, 0.01%)</title><rect x="738.2" y="165" width="0.1" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="741.16" y="175.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Shell.CalendarServer.slice (1,768 samples, 0.14%)</title><rect x="809.2" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="812.21" y="95.5" ></text> +</g> +<g > +<title>/x86_64 (235 samples, 0.02%)</title><rect x="1169.0" y="117" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="1171.95" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="808.0" y="69" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="811.04" y="79.5" ></text> +</g> +<g > +<title>/82 (250 samples, 0.02%)</title><rect x="366.5" y="117" width="0.2" height="15.0" fill="rgb(246,162,45)" rx="2" ry="2" /> +<text x="369.48" y="127.5" ></text> +</g> +<g > +<title>/1593751 (109 samples, 0.01%)</title><rect x="500.1" y="181" width="0.1" height="15.0" fill="rgb(224,132,21)" rx="2" ry="2" /> +<text x="503.10" y="191.5" ></text> +</g> +<g > +<title>/56 (256 samples, 0.02%)</title><rect x="724.4" y="181" width="0.3" height="15.0" fill="rgb(230,109,28)" rx="2" ry="2" /> +<text x="727.41" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (297 samples, 0.02%)</title><rect x="389.1" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="392.07" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (581 samples, 0.05%)</title><rect x="513.5" y="149" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="516.49" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (272 samples, 0.02%)</title><rect x="852.7" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="855.69" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_read (574 samples, 0.05%)</title><rect x="829.5" y="85" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="832.51" y="95.5" ></text> +</g> +<g > +<title>/52 (253 samples, 0.02%)</title><rect x="355.1" y="117" width="0.3" height="15.0" fill="rgb(237,122,35)" rx="2" ry="2" /> +<text x="358.11" y="127.5" ></text> +</g> +<g > +<title>/fonts (19,051 samples, 1.56%)</title><rect x="975.1" y="165" width="18.4" height="15.0" fill="rgb(238,149,36)" rx="2" ry="2" /> +<text x="978.08" y="175.5" ></text> +</g> +<g > +<title>/bin (211 samples, 0.02%)</title><rect x="439.3" y="149" width="0.2" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="442.27" y="159.5" ></text> +</g> +<g > +<title>/dev.bragefuglseth.Keypunch.Locale (124 samples, 0.01%)</title><rect x="1160.8" y="133" width="0.1" height="15.0" fill="rgb(242,152,41)" rx="2" ry="2" /> +<text x="1163.76" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (331 samples, 0.03%)</title><rect x="799.5" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="802.51" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (260 samples, 0.02%)</title><rect x="384.0" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="387.04" y="111.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.mozilla.firefox.SearchProvider.slice (1,765 samples, 0.14%)</title><rect x="817.7" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="820.74" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (231 samples, 0.02%)</title><rect x="358.5" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="361.55" y="111.5" ></text> +</g> +<g > +<title>/tmp (2,119 samples, 0.17%)</title><rect x="1187.9" y="181" width="2.0" height="15.0" fill="rgb(234,140,32)" rx="2" ry="2" /> +<text x="1190.90" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_read (564 samples, 0.05%)</title><rect x="824.0" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="827.01" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (205 samples, 0.02%)</title><rect x="515.1" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="518.13" y="159.5" ></text> +</g> +<g > +<title>/ef (226 samples, 0.02%)</title><rect x="391.9" y="117" width="0.2" height="15.0" fill="rgb(241,144,40)" rx="2" ry="2" /> +<text x="394.93" y="127.5" ></text> +</g> +<g > +<title>/e9 (204 samples, 0.02%)</title><rect x="390.5" y="117" width="0.2" height="15.0" fill="rgb(232,134,30)" rx="2" ry="2" /> +<text x="393.53" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (429 samples, 0.04%)</title><rect x="539.6" y="149" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="542.60" y="159.5" ></text> +</g> +<g > +<title>/syscall (836 samples, 0.07%)</title><rect x="852.6" y="117" width="0.8" height="15.0" fill="rgb(230,145,28)" rx="2" ry="2" /> +<text x="855.58" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (138 samples, 0.01%)</title><rect x="965.8" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="968.80" y="159.5" ></text> +</g> +<g > +<title>/fs (68,076 samples, 5.58%)</title><rect x="766.3" y="181" width="65.9" height="15.0" fill="rgb(235,136,33)" rx="2" ry="2" /> +<text x="769.32" y="191.5" >/fs</text> +</g> +<g > +<title>/config (619 samples, 0.05%)</title><rect x="433.1" y="117" width="0.6" height="15.0" fill="rgb(239,164,37)" rx="2" ry="2" /> +<text x="436.08" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="809.8" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="812.76" y="79.5" ></text> +</g> +<g > +<title>/d5 (288 samples, 0.02%)</title><rect x="385.7" y="117" width="0.2" height="15.0" fill="rgb(240,152,39)" rx="2" ry="2" /> +<text x="388.67" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (237 samples, 0.02%)</title><rect x="372.1" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="375.14" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_close (288 samples, 0.02%)</title><rect x="780.2" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="783.22" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_getdents64 (180 samples, 0.01%)</title><rect x="762.0" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="765.03" y="159.5" ></text> +</g> +<g > +<title>/d7 (246 samples, 0.02%)</title><rect x="386.2" y="117" width="0.2" height="15.0" fill="rgb(237,146,35)" rx="2" ry="2" /> +<text x="389.17" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (237 samples, 0.02%)</title><rect x="363.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="366.21" y="111.5" ></text> +</g> +<g > +<title>/.config (4,475 samples, 0.37%)</title><rect x="405.3" y="165" width="4.3" height="15.0" fill="rgb(239,154,37)" rx="2" ry="2" /> +<text x="408.27" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (149 samples, 0.01%)</title><rect x="529.2" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="532.23" y="175.5" ></text> +</g> +<g > +<title>/1319536 (3,863 samples, 0.32%)</title><rect x="474.8" y="181" width="3.7" height="15.0" fill="rgb(236,139,35)" rx="2" ry="2" /> +<text x="477.80" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (280 samples, 0.02%)</title><rect x="527.6" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="530.56" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (286 samples, 0.02%)</title><rect x="818.0" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="821.01" y="79.5" ></text> +</g> +<g > +<title>/4511 (2,483 samples, 0.20%)</title><rect x="633.2" y="181" width="2.4" height="15.0" fill="rgb(230,117,27)" rx="2" ry="2" /> +<text x="636.22" y="191.5" ></text> +</g> +<g > +<title>/queries (342 samples, 0.03%)</title><rect x="832.7" y="149" width="0.4" height="15.0" fill="rgb(237,129,36)" rx="2" ry="2" /> +<text x="835.73" y="159.5" ></text> +</g> +<g > +<title>/session.slice (1,739 samples, 0.14%)</title><rect x="830.1" y="101" width="1.6" height="15.0" fill="rgb(246,132,46)" rx="2" ry="2" /> +<text x="833.06" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (10,386 samples, 0.85%)</title><rect x="1176.1" y="133" width="10.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1179.11" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_close (247 samples, 0.02%)</title><rect x="734.0" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="736.97" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (217 samples, 0.02%)</title><rect x="389.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="392.60" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (1,020 samples, 0.08%)</title><rect x="396.0" y="117" width="1.0" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="399.00" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_read (98,866 samples, 8.10%)</title><rect x="1013.0" y="85" width="95.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1016.04" y="95.5" >syscall`ent..</text> +</g> +<g > +<title>/x86_64 (218 samples, 0.02%)</title><rect x="271.4" y="165" width="0.3" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="274.45" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (312 samples, 0.03%)</title><rect x="506.9" y="149" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="509.89" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (253 samples, 0.02%)</title><rect x="388.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="391.59" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_read (575 samples, 0.05%)</title><rect x="778.0" y="69" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="780.96" y="79.5" ></text> +</g> +<g > +<title>/go-build (11,263 samples, 0.92%)</title><rect x="324.3" y="149" width="10.9" height="15.0" fill="rgb(238,144,37)" rx="2" ry="2" /> +<text x="327.32" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (186 samples, 0.02%)</title><rect x="354.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="357.02" y="111.5" ></text> +</g> +<g > +<title>/cd (218 samples, 0.02%)</title><rect x="383.8" y="117" width="0.2" height="15.0" fill="rgb(247,161,46)" rx="2" ry="2" /> +<text x="386.83" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (250 samples, 0.02%)</title><rect x="366.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="369.48" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_read (5,531 samples, 0.45%)</title><rect x="294.9" y="165" width="5.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="297.85" y="175.5" ></text> +</g> +<g > +<title>/atomic (370 samples, 0.03%)</title><rect x="852.0" y="101" width="0.3" height="15.0" fill="rgb(232,102,29)" rx="2" ry="2" /> +<text x="854.98" y="111.5" ></text> +</g> +<g > +<title>/storage (918 samples, 0.08%)</title><rect x="415.1" y="117" width="0.9" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="418.10" y="127.5" ></text> +</g> +<g > +<title>/udev (139 samples, 0.01%)</title><rect x="762.9" y="181" width="0.1" height="15.0" fill="rgb(236,125,34)" rx="2" ry="2" /> +<text x="765.88" y="191.5" ></text> +</g> +<g > +<title>/app-ghostty-transient-256811.scope (1,776 samples, 0.15%)</title><rect x="819.4" y="85" width="1.8" height="15.0" fill="rgb(248,115,48)" rx="2" ry="2" /> +<text x="822.44" y="95.5" ></text> +</g> +<g > +<title>/lib (120,121 samples, 9.84%)</title><rect x="846.2" y="181" width="116.2" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="849.21" y="191.5" >/lib</text> +</g> +<g > +<title>syscall`enter_newfstatat (235 samples, 0.02%)</title><rect x="376.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="379.27" y="111.5" ></text> +</g> +<g > +<title>/devices (554 samples, 0.05%)</title><rect x="765.8" y="181" width="0.5" height="15.0" fill="rgb(242,152,40)" rx="2" ry="2" /> +<text x="768.78" y="191.5" ></text> +</g> +<g > +<title>/info (171 samples, 0.01%)</title><rect x="434.2" y="101" width="0.2" height="15.0" fill="rgb(248,137,47)" rx="2" ry="2" /> +<text x="437.19" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (246 samples, 0.02%)</title><rect x="359.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="362.88" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (274 samples, 0.02%)</title><rect x="311.1" y="149" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="314.10" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (242 samples, 0.02%)</title><rect x="341.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="344.36" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (137 samples, 0.01%)</title><rect x="517.8" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="520.83" y="159.5" ></text> +</g> +<g > +<title>/4c (248 samples, 0.02%)</title><rect x="353.8" y="117" width="0.2" height="15.0" fill="rgb(222,123,19)" rx="2" ry="2" /> +<text x="356.78" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (255 samples, 0.02%)</title><rect x="363.4" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="366.44" y="111.5" ></text> +</g> +<g > +<title>runtimeorg.freedesktop.Platform (132 samples, 0.01%)</title><rect x="764.0" y="197" width="0.1" height="15.0" fill="rgb(232,156,30)" rx="2" ry="2" /> +<text x="766.96" y="207.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (259 samples, 0.02%)</title><rect x="391.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="393.96" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_openat (224 samples, 0.02%)</title><rect x="435.9" y="117" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="438.94" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_read (376 samples, 0.03%)</title><rect x="725.6" y="165" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="728.58" y="175.5" ></text> +</g> +<g > +<title>/4927 (249 samples, 0.02%)</title><rect x="722.1" y="181" width="0.2" height="15.0" fill="rgb(233,104,31)" rx="2" ry="2" /> +<text x="725.09" y="191.5" ></text> +</g> +<g > +<title>/user@0.service (1,702 samples, 0.14%)</title><rect x="768.4" y="117" width="1.6" height="15.0" fill="rgb(246,116,46)" rx="2" ry="2" /> +<text x="771.38" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_close (310 samples, 0.03%)</title><rect x="973.5" y="133" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="976.54" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (248 samples, 0.02%)</title><rect x="394.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="397.18" y="111.5" ></text> +</g> +<g > +<title>/tracker-miners-3.0 (270 samples, 0.02%)</title><rect x="845.7" y="165" width="0.3" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" /> +<text x="848.71" y="175.5" ></text> +</g> +<g > +<title>/share (31,798 samples, 2.61%)</title><rect x="966.7" y="181" width="30.8" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="969.71" y="191.5" >/s..</text> +</g> +<g > +<title>syscall`enter_newfstatat (250 samples, 0.02%)</title><rect x="354.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="357.87" y="111.5" ></text> +</g> +<g > +<title>/pkg (108 samples, 0.01%)</title><rect x="846.6" y="149" width="0.1" height="15.0" fill="rgb(238,128,36)" rx="2" ry="2" /> +<text x="849.62" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (240 samples, 0.02%)</title><rect x="342.3" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="345.33" y="111.5" ></text> +</g> +<g > +<title>/9f (221 samples, 0.02%)</title><rect x="373.3" y="117" width="0.2" height="15.0" fill="rgb(241,144,40)" rx="2" ry="2" /> +<text x="376.29" y="127.5" ></text> +</g> +<g > +<title>/fontconfig (2,215 samples, 0.18%)</title><rect x="972.9" y="165" width="2.2" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="975.94" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (85,237 samples, 6.98%)</title><rect x="635.6" y="149" width="82.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="638.62" y="159.5" >syscall`e..</text> +</g> +<g > +<title>syscall`enter_newfstatat (291 samples, 0.02%)</title><rect x="362.7" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="365.69" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (276 samples, 0.02%)</title><rect x="386.9" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="389.89" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (108 samples, 0.01%)</title><rect x="564.5" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="567.46" y="159.5" ></text> +</g> +<g > +<title>/c5 (288 samples, 0.02%)</title><rect x="381.9" y="117" width="0.3" height="15.0" fill="rgb(242,157,40)" rx="2" ry="2" /> +<text x="384.94" y="127.5" ></text> +</g> +<g > +<title>.gitobjects (1,072 samples, 0.09%)</title><rect x="255.5" y="197" width="1.0" height="15.0" fill="rgb(237,132,35)" rx="2" ry="2" /> +<text x="258.46" y="207.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (267 samples, 0.02%)</title><rect x="372.6" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="375.60" y="111.5" ></text> +</g> +<g > +<title>/tls (119 samples, 0.01%)</title><rect x="311.5" y="165" width="0.1" height="15.0" fill="rgb(230,143,28)" rx="2" ry="2" /> +<text x="314.52" y="175.5" ></text> +</g> +<g > +<title>/1090 (105 samples, 0.01%)</title><rect x="470.4" y="181" width="0.1" height="15.0" fill="rgb(238,148,37)" rx="2" ry="2" /> +<text x="473.44" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (236 samples, 0.02%)</title><rect x="365.7" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="368.75" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (235 samples, 0.02%)</title><rect x="393.0" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="396.03" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (288 samples, 0.02%)</title><rect x="773.7" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="776.69" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (271 samples, 0.02%)</title><rect x="386.6" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="389.63" y="111.5" ></text> +</g> +<g > +<title>/eb (260 samples, 0.02%)</title><rect x="391.0" y="117" width="0.2" height="15.0" fill="rgb(231,157,28)" rx="2" ry="2" /> +<text x="393.96" y="127.5" ></text> +</g> +<g > +<title>/1655582 (163 samples, 0.01%)</title><rect x="511.7" y="181" width="0.1" height="15.0" fill="rgb(250,129,49)" rx="2" ry="2" /> +<text x="514.69" y="191.5" ></text> +</g> +<g > +<title>/.git (3,051 samples, 0.25%)</title><rect x="433.8" y="133" width="3.0" height="15.0" fill="rgb(233,141,30)" rx="2" ry="2" /> +<text x="436.84" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_statx (308 samples, 0.03%)</title><rect x="994.8" y="149" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="997.84" y="159.5" ></text> +</g> +<g > +<title>/ba (223 samples, 0.02%)</title><rect x="379.4" y="117" width="0.2" height="15.0" fill="rgb(224,120,21)" rx="2" ry="2" /> +<text x="382.41" y="127.5" ></text> +</g> +<g > +<title>/c4 (196 samples, 0.02%)</title><rect x="381.8" y="117" width="0.1" height="15.0" fill="rgb(243,161,42)" rx="2" ry="2" /> +<text x="384.75" y="127.5" ></text> +</g> +<g > +<title>/b7 (178 samples, 0.01%)</title><rect x="378.8" y="117" width="0.2" height="15.0" fill="rgb(227,100,24)" rx="2" ry="2" /> +<text x="381.79" y="127.5" ></text> +</g> +<g > +<title>/50 (240 samples, 0.02%)</title><rect x="354.6" y="117" width="0.3" height="15.0" fill="rgb(223,128,20)" rx="2" ry="2" /> +<text x="357.64" y="127.5" ></text> +</g> +<g > +<title>/dc (241 samples, 0.02%)</title><rect x="387.4" y="117" width="0.2" height="15.0" fill="rgb(230,159,28)" rx="2" ry="2" /> +<text x="390.39" y="127.5" ></text> +</g> +<g > +<title>/451c975916dc4536919a44482a914925 (10,652 samples, 0.87%)</title><rect x="1175.9" y="149" width="10.3" height="15.0" fill="rgb(236,117,35)" rx="2" ry="2" /> +<text x="1178.92" y="159.5" ></text> +</g> +<g > +<title>/commit-graphs (136 samples, 0.01%)</title><rect x="434.2" y="85" width="0.1" height="15.0" fill="rgb(238,164,36)" rx="2" ry="2" /> +<text x="437.19" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (207 samples, 0.02%)</title><rect x="383.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="386.62" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (194 samples, 0.02%)</title><rect x="364.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="367.41" y="111.5" ></text> +</g> +<g > +<title>/desktop (140 samples, 0.01%)</title><rect x="1175.3" y="149" width="0.2" height="15.0" fill="rgb(244,152,43)" rx="2" ry="2" /> +<text x="1178.33" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (287 samples, 0.02%)</title><rect x="797.5" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="800.53" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="779.1" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="782.07" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_read (117 samples, 0.01%)</title><rect x="994.7" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="997.72" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_read (959 samples, 0.08%)</title><rect x="308.8" y="181" width="0.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="311.82" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_read (378 samples, 0.03%)</title><rect x="843.9" y="149" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="846.85" y="159.5" ></text> +</g> +<g > +<title>/x86_64 (190 samples, 0.02%)</title><rect x="1153.5" y="117" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="1156.46" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_getdents64 (138 samples, 0.01%)</title><rect x="853.6" y="117" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="856.57" y="127.5" ></text> +</g> +<g > +<title>/org.fedoraproject.Platform.VAAPI.Intel (131 samples, 0.01%)</title><rect x="1161.6" y="133" width="0.1" height="15.0" fill="rgb(233,149,31)" rx="2" ry="2" /> +<text x="1164.57" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (234 samples, 0.02%)</title><rect x="356.8" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="359.83" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (202 samples, 0.02%)</title><rect x="739.1" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="742.09" y="175.5" ></text> +</g> +<g > +<title>/filepathlite (137 samples, 0.01%)</title><rect x="849.1" y="117" width="0.1" height="15.0" fill="rgb(240,129,38)" rx="2" ry="2" /> +<text x="852.07" y="127.5" ></text> +</g> +<g > +<title>/0a (262 samples, 0.02%)</title><rect x="338.4" y="117" width="0.3" height="15.0" fill="rgb(230,150,28)" rx="2" ry="2" /> +<text x="341.41" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (224 samples, 0.02%)</title><rect x="858.5" y="117" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="861.51" y="127.5" ></text> +</g> +<g > +<title>/extract-modules (230 samples, 0.02%)</title><rect x="845.7" y="149" width="0.2" height="15.0" fill="rgb(244,163,43)" rx="2" ry="2" /> +<text x="848.71" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_openat (176 samples, 0.01%)</title><rect x="1175.6" y="133" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1178.60" y="143.5" ></text> +</g> +<g > +<title>/heads (372 samples, 0.03%)</title><rect x="434.6" y="101" width="0.4" height="15.0" fill="rgb(244,132,43)" rx="2" ry="2" /> +<text x="437.62" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (1,276 samples, 0.10%)</title><rect x="1129.8" y="149" width="1.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1132.81" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (227 samples, 0.02%)</title><rect x="392.1" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="395.14" y="111.5" ></text> +</g> +<g > +<title>/fd (2,595 samples, 0.21%)</title><rect x="479.8" y="165" width="2.5" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="482.83" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (521 samples, 0.04%)</title><rect x="735.4" y="149" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="738.44" y="159.5" ></text> +</g> +<g > +<title>/bin (130 samples, 0.01%)</title><rect x="1175.5" y="133" width="0.1" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="1178.47" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_read (144 samples, 0.01%)</title><rect x="847.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="850.84" y="111.5" ></text> +</g> +<g > +<title>/search-providers (210 samples, 0.02%)</title><rect x="993.6" y="149" width="0.2" height="15.0" fill="rgb(238,132,36)" rx="2" ry="2" /> +<text x="996.55" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_write (454 samples, 0.04%)</title><rect x="442.3" y="165" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="445.27" y="175.5" ></text> +</g> +<g > +<title>/d4 (236 samples, 0.02%)</title><rect x="385.4" y="117" width="0.3" height="15.0" fill="rgb(242,156,41)" rx="2" ry="2" /> +<text x="388.44" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_statx (248 samples, 0.02%)</title><rect x="1153.2" y="133" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1156.20" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (270 samples, 0.02%)</title><rect x="961.9" y="133" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="964.93" y="143.5" ></text> +</g> +<g > +<title>/ksm (111 samples, 0.01%)</title><rect x="832.4" y="149" width="0.1" height="15.0" fill="rgb(226,111,23)" rx="2" ry="2" /> +<text x="835.39" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_read (1,196 samples, 0.10%)</title><rect x="991.8" y="133" width="1.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="994.81" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (250 samples, 0.02%)</title><rect x="366.7" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="369.72" y="111.5" ></text> +</g> +<g > +<title>/org.freedesktop.Platform.ffmpeg-full (124 samples, 0.01%)</title><rect x="1165.8" y="133" width="0.1" height="15.0" fill="rgb(224,149,21)" rx="2" ry="2" /> +<text x="1168.75" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (184 samples, 0.02%)</title><rect x="1137.8" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1140.76" y="159.5" ></text> +</g> +<g > +<title>/a8 (251 samples, 0.02%)</title><rect x="375.4" y="117" width="0.2" height="15.0" fill="rgb(226,102,24)" rx="2" ry="2" /> +<text x="378.36" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (221 samples, 0.02%)</title><rect x="360.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="363.12" y="111.5" ></text> +</g> +<g > +<title>/2a (222 samples, 0.02%)</title><rect x="346.0" y="117" width="0.2" height="15.0" fill="rgb(228,140,25)" rx="2" ry="2" /> +<text x="349.00" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (246 samples, 0.02%)</title><rect x="363.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="366.69" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (277 samples, 0.02%)</title><rect x="348.0" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="351.01" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (218 samples, 0.02%)</title><rect x="510.5" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="513.51" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_close (133 samples, 0.01%)</title><rect x="869.5" y="117" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="872.49" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_read (633 samples, 0.05%)</title><rect x="995.8" y="133" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="998.77" y="143.5" ></text> +</g> +<g > +<title>/fd (164 samples, 0.01%)</title><rect x="510.9" y="165" width="0.1" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="513.89" y="175.5" ></text> +</g> +<g > +<title>/1040413 (229 samples, 0.02%)</title><rect x="470.2" y="181" width="0.2" height="15.0" fill="rgb(244,148,43)" rx="2" ry="2" /> +<text x="473.17" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (220 samples, 0.02%)</title><rect x="336.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="339.72" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="822.0" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="825.04" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (129 samples, 0.01%)</title><rect x="1174.6" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1177.65" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (248 samples, 0.02%)</title><rect x="371.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="374.19" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_read (199 samples, 0.02%)</title><rect x="724.5" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="727.47" y="175.5" ></text> +</g> +<g > +<title>/app-ghostty-transient-7266.scope (1,772 samples, 0.15%)</title><rect x="821.2" y="85" width="1.7" height="15.0" fill="rgb(248,115,48)" rx="2" ry="2" /> +<text x="824.16" y="95.5" ></text> +</g> +<g > +<title>/PackageKit (7,217 samples, 0.59%)</title><rect x="1129.7" y="165" width="6.9" height="15.0" fill="rgb(235,155,33)" rx="2" ry="2" /> +<text x="1132.66" y="175.5" ></text> +</g> +<g > +<title>/6118 (532 samples, 0.04%)</title><rect x="735.4" y="181" width="0.6" height="15.0" fill="rgb(238,120,36)" rx="2" ry="2" /> +<text x="738.44" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (240 samples, 0.02%)</title><rect x="515.6" y="149" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="518.63" y="159.5" ></text> +</g> +<g > +<title>/dev.geopjr.Calligraphy.Locale (183 samples, 0.01%)</title><rect x="1160.9" y="133" width="0.2" height="15.0" fill="rgb(242,152,41)" rx="2" ry="2" /> +<text x="1163.88" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (215 samples, 0.02%)</title><rect x="374.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="377.20" y="111.5" ></text> +</g> +<g > +<title>run (1,970 samples, 0.16%)</title><rect x="761.3" y="197" width="1.9" height="15.0" fill="rgb(243,156,41)" rx="2" ry="2" /> +<text x="764.27" y="207.5" ></text> +</g> +<g > +<title>/slices (183 samples, 0.01%)</title><rect x="867.9" y="133" width="0.2" height="15.0" fill="rgb(242,148,40)" rx="2" ry="2" /> +<text x="870.92" y="143.5" ></text> +</g> +<g > +<title>/7b (259 samples, 0.02%)</title><rect x="364.9" y="117" width="0.2" height="15.0" fill="rgb(233,167,31)" rx="2" ry="2" /> +<text x="367.88" y="127.5" ></text> +</g> +<g > +<title>/info (176 samples, 0.01%)</title><rect x="433.9" y="117" width="0.1" height="15.0" fill="rgb(248,137,47)" rx="2" ry="2" /> +<text x="436.86" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (219 samples, 0.02%)</title><rect x="376.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="379.06" y="111.5" ></text> +</g> +<g > +<title>/61 (148 samples, 0.01%)</title><rect x="736.0" y="181" width="0.1" height="15.0" fill="rgb(220,120,17)" rx="2" ry="2" /> +<text x="738.98" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_read (492 samples, 0.04%)</title><rect x="735.0" y="165" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="737.97" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="785.9" y="69" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="788.93" y="79.5" ></text> +</g> +<g > +<title>/a9 (289 samples, 0.02%)</title><rect x="375.6" y="117" width="0.3" height="15.0" fill="rgb(225,99,22)" rx="2" ry="2" /> +<text x="378.60" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (224 samples, 0.02%)</title><rect x="360.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="363.55" y="111.5" ></text> +</g> +<g > +<title>/3a (276 samples, 0.02%)</title><rect x="349.6" y="117" width="0.2" height="15.0" fill="rgb(227,135,24)" rx="2" ry="2" /> +<text x="352.57" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_openat (276 samples, 0.02%)</title><rect x="769.2" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="772.22" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (204 samples, 0.02%)</title><rect x="382.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="385.46" y="111.5" ></text> +</g> +<g > +<title>/share (5,296 samples, 0.43%)</title><rect x="409.9" y="149" width="5.1" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="412.93" y="159.5" ></text> +</g> +<g > +<title>/go (235 samples, 0.02%)</title><rect x="439.3" y="165" width="0.2" height="15.0" fill="rgb(241,144,39)" rx="2" ry="2" /> +<text x="442.27" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (229 samples, 0.02%)</title><rect x="371.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="374.66" y="111.5" ></text> +</g> +<g > +<title>/2.2.0 (134 samples, 0.01%)</title><rect x="1165.9" y="101" width="0.1" height="15.0" fill="rgb(237,111,35)" rx="2" ry="2" /> +<text x="1168.87" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (788 samples, 0.06%)</title><rect x="1186.2" y="165" width="0.8" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1189.24" y="175.5" ></text> +</g> +<g > +<title>/local (1,583 samples, 0.13%)</title><rect x="405.5" y="117" width="1.5" height="15.0" fill="rgb(229,118,26)" rx="2" ry="2" /> +<text x="408.47" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (287 samples, 0.02%)</title><rect x="367.6" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="370.65" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="810.1" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="813.08" y="79.5" ></text> +</g> +<g > +<title>/org.telegram.desktop.webview (118 samples, 0.01%)</title><rect x="1170.0" y="133" width="0.1" height="15.0" fill="rgb(230,149,28)" rx="2" ry="2" /> +<text x="1173.03" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_read (1,014 samples, 0.08%)</title><rect x="838.1" y="165" width="1.0" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="841.12" y="175.5" ></text> +</g> +<g > +<title>/bytes (129 samples, 0.01%)</title><rect x="846.7" y="133" width="0.2" height="15.0" fill="rgb(238,120,36)" rx="2" ry="2" /> +<text x="849.73" y="143.5" ></text> +</g> +<g > +<title>/b0 (235 samples, 0.02%)</title><rect x="377.2" y="117" width="0.3" height="15.0" fill="rgb(222,123,19)" rx="2" ry="2" /> +<text x="380.24" y="127.5" ></text> +</g> +<g > +<title>/macros.d (718 samples, 0.06%)</title><rect x="873.5" y="149" width="0.7" height="15.0" fill="rgb(247,120,47)" rx="2" ry="2" /> +<text x="876.46" y="159.5" ></text> +</g> +<g > +<title>/fontconfig (344 samples, 0.03%)</title><rect x="321.2" y="149" width="0.3" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="324.20" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (248 samples, 0.02%)</title><rect x="341.1" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="344.12" y="111.5" ></text> +</g> +<g > +<title>/race (105 samples, 0.01%)</title><rect x="851.7" y="117" width="0.1" height="15.0" fill="rgb(252,150,52)" rx="2" ry="2" /> +<text x="854.73" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_close (185 samples, 0.02%)</title><rect x="856.7" y="117" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="859.68" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (238 samples, 0.02%)</title><rect x="722.1" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="725.09" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="808.4" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="811.37" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_openat (135 samples, 0.01%)</title><rect x="765.3" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="768.28" y="143.5" ></text> +</g> +<g > +<title>/35 (231 samples, 0.02%)</title><rect x="348.5" y="117" width="0.2" height="15.0" fill="rgb(234,122,32)" rx="2" ry="2" /> +<text x="351.49" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_read (131 samples, 0.01%)</title><rect x="972.7" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="975.74" y="159.5" ></text> +</g> +<g > +<title>/9e (258 samples, 0.02%)</title><rect x="373.0" y="117" width="0.3" height="15.0" fill="rgb(243,147,42)" rx="2" ry="2" /> +<text x="376.04" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (9,537 samples, 0.78%)</title><rect x="530.1" y="149" width="9.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="533.10" y="159.5" ></text> +</g> +<g > +<title>/fileattrs (190 samples, 0.02%)</title><rect x="873.3" y="149" width="0.2" height="15.0" fill="rgb(236,129,34)" rx="2" ry="2" /> +<text x="876.28" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_openat (900 samples, 0.07%)</title><rect x="748.8" y="181" width="0.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="751.83" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (234 samples, 0.02%)</title><rect x="340.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="343.17" y="111.5" ></text> +</g> +<g > +<title>/ee (261 samples, 0.02%)</title><rect x="391.7" y="117" width="0.2" height="15.0" fill="rgb(243,147,42)" rx="2" ry="2" /> +<text x="394.67" y="127.5" ></text> +</g> +<g > +<title>/t (689 samples, 0.06%)</title><rect x="995.7" y="149" width="0.7" height="15.0" fill="rgb(238,127,37)" rx="2" ry="2" /> +<text x="998.72" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (269 samples, 0.02%)</title><rect x="388.3" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="391.33" y="111.5" ></text> +</g> +<g > +<title>/0c (284 samples, 0.02%)</title><rect x="338.9" y="117" width="0.2" height="15.0" fill="rgb(227,144,24)" rx="2" ry="2" /> +<text x="341.86" y="127.5" ></text> +</g> +<g > +<title>/d6 (228 samples, 0.02%)</title><rect x="385.9" y="117" width="0.3" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="388.95" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="777.4" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="780.36" y="79.5" ></text> +</g> +<g > +<title>/b4e2d2792a39744a823c8f43ec4ae5d3dc0d113fd4669933325cf0dab9b03790 (104 samples, 0.01%)</title><rect x="1162.2" y="85" width="0.1" height="15.0" fill="rgb(233,110,31)" rx="2" ry="2" /> +<text x="1165.15" y="95.5" ></text> +</g> +<g > +<title>/chacha8rand (117 samples, 0.01%)</title><rect x="848.7" y="117" width="0.1" height="15.0" fill="rgb(254,148,54)" rx="2" ry="2" /> +<text x="851.70" y="127.5" ></text> +</g> +<g > +<title>/1655791 (124 samples, 0.01%)</title><rect x="515.5" y="181" width="0.1" height="15.0" fill="rgb(232,129,29)" rx="2" ry="2" /> +<text x="518.46" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_close (287 samples, 0.02%)</title><rect x="809.2" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="812.21" y="79.5" ></text> +</g> +<g > +<title>/1640116 (153 samples, 0.01%)</title><rect x="508.4" y="181" width="0.1" height="15.0" fill="rgb(241,129,40)" rx="2" ry="2" /> +<text x="511.38" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_read (576 samples, 0.05%)</title><rect x="793.3" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="796.33" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (282 samples, 0.02%)</title><rect x="356.3" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="359.32" y="111.5" ></text> +</g> +<g > +<title>/fd (245 samples, 0.02%)</title><rect x="518.4" y="165" width="0.3" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="521.45" y="175.5" ></text> +</g> +<g > +<title>/en_GB.UTF-8 (116 samples, 0.01%)</title><rect x="994.2" y="149" width="0.1" height="15.0" fill="rgb(236,157,34)" rx="2" ry="2" /> +<text x="997.18" y="159.5" ></text> +</g> +<g > +<title>/48 (260 samples, 0.02%)</title><rect x="352.8" y="117" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> +<text x="355.81" y="127.5" ></text> +</g> +<g > +<title>/flamegraph (306 samples, 0.03%)</title><rect x="437.1" y="117" width="0.3" height="15.0" fill="rgb(245,158,44)" rx="2" ry="2" /> +<text x="440.11" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_close (311 samples, 0.03%)</title><rect x="826.5" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="829.51" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (4,911 samples, 0.40%)</title><rect x="314.8" y="181" width="4.8" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="317.81" y="191.5" ></text> +</g> +<g > +<title>/id (140 samples, 0.01%)</title><rect x="766.2" y="133" width="0.1" height="15.0" fill="rgb(240,130,39)" rx="2" ry="2" /> +<text x="769.16" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (192 samples, 0.02%)</title><rect x="869.1" y="117" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="872.12" y="127.5" ></text> +</g> +<g > +<title>/b3 (224 samples, 0.02%)</title><rect x="377.9" y="117" width="0.2" height="15.0" fill="rgb(234,113,32)" rx="2" ry="2" /> +<text x="380.93" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_openat (282 samples, 0.02%)</title><rect x="813.5" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="816.49" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_openat (108 samples, 0.01%)</title><rect x="851.4" y="101" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="854.37" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (196 samples, 0.02%)</title><rect x="370.1" y="101" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="373.05" y="111.5" ></text> +</g> +<g > +<title>/45 (215 samples, 0.02%)</title><rect x="352.2" y="117" width="0.2" height="15.0" fill="rgb(233,117,31)" rx="2" ry="2" /> +<text x="355.18" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_execve (231 samples, 0.02%)</title><rect x="835.4" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="838.38" y="175.5" ></text> +</g> +<g > +<title>runtimeorg.gnome.Platform (124 samples, 0.01%)</title><rect x="764.3" y="197" width="0.1" height="15.0" fill="rgb(232,156,30)" rx="2" ry="2" /> +<text x="767.27" y="207.5" ></text> +</g> +<g > +<title>/00 (224 samples, 0.02%)</title><rect x="336.0" y="117" width="0.3" height="15.0" fill="rgb(228,153,26)" rx="2" ry="2" /> +<text x="339.03" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_read (564 samples, 0.05%)</title><rect x="796.7" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="799.71" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (435 samples, 0.04%)</title><rect x="511.9" y="149" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="514.88" y="159.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Settings.SearchProvider.slice (1,776 samples, 0.15%)</title><rect x="807.5" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="810.49" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (291 samples, 0.02%)</title><rect x="847.4" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="850.42" y="111.5" ></text> +</g> +<g > +<title>/mm (116 samples, 0.01%)</title><rect x="832.4" y="165" width="0.1" height="15.0" fill="rgb(220,120,17)" rx="2" ry="2" /> +<text x="835.39" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_close (138 samples, 0.01%)</title><rect x="873.5" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="876.46" y="143.5" ></text> +</g> +<g > +<title>/58 (250 samples, 0.02%)</title><rect x="356.6" y="117" width="0.2" height="15.0" fill="rgb(226,102,24)" rx="2" ry="2" /> +<text x="359.59" y="127.5" ></text> +</g> +<g > +<title>/1498492 (142 samples, 0.01%)</title><rect x="498.9" y="181" width="0.2" height="15.0" fill="rgb(250,135,49)" rx="2" ry="2" /> +<text x="501.93" y="191.5" ></text> +</g> +<g > +<title>/16 (242 samples, 0.02%)</title><rect x="341.4" y="117" width="0.2" height="15.0" fill="rgb(234,129,32)" rx="2" ry="2" /> +<text x="344.36" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_read (564 samples, 0.05%)</title><rect x="831.2" y="85" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="834.20" y="95.5" ></text> +</g> +<g > +<title>/site-packages (250 samples, 0.02%)</title><rect x="845.1" y="149" width="0.2" height="15.0" fill="rgb(239,119,37)" rx="2" ry="2" /> +<text x="848.10" y="159.5" ></text> +</g> +<g > +<title>/59 (234 samples, 0.02%)</title><rect x="356.8" y="117" width="0.3" height="15.0" fill="rgb(225,99,22)" rx="2" ry="2" /> +<text x="359.83" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (330 samples, 0.03%)</title><rect x="823.4" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="826.42" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_read (576 samples, 0.05%)</title><rect x="786.5" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="789.54" y="79.5" ></text> +</g> +<g > +<title>/udev (270 samples, 0.02%)</title><rect x="961.9" y="165" width="0.3" height="15.0" fill="rgb(236,125,34)" rx="2" ry="2" /> +<text x="964.93" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (214 samples, 0.02%)</title><rect x="348.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="351.71" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_openat (170 samples, 0.01%)</title><rect x="407.1" y="117" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="410.09" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (237 samples, 0.02%)</title><rect x="394.8" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="397.84" y="111.5" ></text> +</g> +<g > +<title>/ac (144 samples, 0.01%)</title><rect x="330.5" y="133" width="0.1" height="15.0" fill="rgb(221,118,18)" rx="2" ry="2" /> +<text x="333.47" y="143.5" ></text> +</g> +<g > +<title>/6.7 (117 samples, 0.01%)</title><rect x="1169.1" y="101" width="0.1" height="15.0" fill="rgb(239,91,38)" rx="2" ry="2" /> +<text x="1172.06" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="811.8" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="814.79" y="79.5" ></text> +</g> +<g > +<title>/8c (225 samples, 0.02%)</title><rect x="368.9" y="117" width="0.2" height="15.0" fill="rgb(230,159,28)" rx="2" ry="2" /> +<text x="371.93" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (109 samples, 0.01%)</title><rect x="738.4" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="741.42" y="159.5" ></text> +</g> +<g > +<title>/1f (217 samples, 0.02%)</title><rect x="343.5" y="117" width="0.2" height="15.0" fill="rgb(238,129,36)" rx="2" ry="2" /> +<text x="346.50" y="127.5" ></text> +</g> +<g > +<title>/fd (1,238 samples, 0.10%)</title><rect x="473.5" y="165" width="1.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="476.49" y="175.5" ></text> +</g> +<g > +<title>/fd (5,901 samples, 0.48%)</title><rect x="500.5" y="165" width="5.7" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="503.45" y="175.5" ></text> +</g> +<g > +<title>/strconv (531 samples, 0.04%)</title><rect x="868.1" y="133" width="0.5" height="15.0" fill="rgb(238,122,37)" rx="2" ry="2" /> +<text x="871.10" y="143.5" ></text> +</g> +<g > +<title>/com.bitwarden.desktop.Locale (134 samples, 0.01%)</title><rect x="1160.6" y="133" width="0.1" height="15.0" fill="rgb(242,164,41)" rx="2" ry="2" /> +<text x="1163.61" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_openat (244 samples, 0.02%)</title><rect x="471.7" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="474.69" y="175.5" ></text> +</g> +<g > +<title>/PackageKit (136,230 samples, 11.16%)</title><rect x="997.8" y="165" width="131.7" height="15.0" fill="rgb(235,155,33)" rx="2" ry="2" /> +<text x="1000.76" y="175.5" >/PackageKit</text> +</g> +<g > +<title>syscall`enter_openat (296 samples, 0.02%)</title><rect x="767.5" y="133" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="770.52" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_read (217 samples, 0.02%)</title><rect x="432.9" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="435.87" y="159.5" ></text> +</g> +<g > +<title>/5b (217 samples, 0.02%)</title><rect x="357.3" y="117" width="0.2" height="15.0" fill="rgb(223,122,20)" rx="2" ry="2" /> +<text x="360.32" y="127.5" ></text> +</g> +<g > +<title>all (1,220,309 samples, 100%)</title><rect x="10.0" y="213" width="1180.0" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="13.00" y="223.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (243 samples, 0.02%)</title><rect x="392.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="395.61" y="111.5" ></text> +</g> +<g > +<title>/pack (526 samples, 0.04%)</title><rect x="255.9" y="181" width="0.5" height="15.0" fill="rgb(242,160,40)" rx="2" ry="2" /> +<text x="258.93" y="191.5" ></text> +</g> +<g > +<title>/heads (267 samples, 0.02%)</title><rect x="1159.8" y="117" width="0.2" height="15.0" fill="rgb(244,132,43)" rx="2" ry="2" /> +<text x="1162.78" y="127.5" ></text> +</g> +<g > +<title>/mount-rootfs (239 samples, 0.02%)</title><rect x="761.5" y="165" width="0.2" height="15.0" fill="rgb(237,113,35)" rx="2" ry="2" /> +<text x="764.50" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (235 samples, 0.02%)</title><rect x="377.2" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="380.24" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (251 samples, 0.02%)</title><rect x="336.9" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="339.93" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_pread64 (1,564 samples, 0.13%)</title><rect x="1133.4" y="149" width="1.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1136.37" y="159.5" ></text> +</g> +<g > +<title>/x86_64 (276 samples, 0.02%)</title><rect x="1165.4" y="117" width="0.3" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="1168.41" y="127.5" ></text> +</g> +<g > +<title>/2f (250 samples, 0.02%)</title><rect x="347.1" y="117" width="0.2" height="15.0" fill="rgb(237,124,35)" rx="2" ry="2" /> +<text x="350.09" y="127.5" ></text> +</g> +<g > +<title>/ad (250 samples, 0.02%)</title><rect x="376.5" y="117" width="0.2" height="15.0" fill="rgb(237,115,35)" rx="2" ry="2" /> +<text x="379.50" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_close (282 samples, 0.02%)</title><rect x="795.6" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="798.57" y="79.5" ></text> +</g> +<g > +<title>/x86_64 (197 samples, 0.02%)</title><rect x="271.7" y="165" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="274.66" y="175.5" ></text> +</g> +<g > +<title>/1461865 (2,666 samples, 0.22%)</title><rect x="479.8" y="181" width="2.6" height="15.0" fill="rgb(233,135,31)" rx="2" ry="2" /> +<text x="482.83" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (288 samples, 0.02%)</title><rect x="819.7" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="822.72" y="79.5" ></text> +</g> +<g > +<title>/fd (178 samples, 0.01%)</title><rect x="479.5" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="482.53" y="175.5" ></text> +</g> +<g > +<title>/e7 (268 samples, 0.02%)</title><rect x="390.0" y="117" width="0.3" height="15.0" fill="rgb(236,141,34)" rx="2" ry="2" /> +<text x="393.04" y="127.5" ></text> +</g> +<g > +<title>/ior (4,985 samples, 0.41%)</title><rect x="433.8" y="149" width="4.9" height="15.0" fill="rgb(240,134,39)" rx="2" ry="2" /> +<text x="436.84" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (123 samples, 0.01%)</title><rect x="515.5" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="518.46" y="159.5" ></text> +</g> +<g > +<title>/41 (136,228 samples, 11.16%)</title><rect x="997.8" y="149" width="131.7" height="15.0" fill="rgb(222,130,19)" rx="2" ry="2" /> +<text x="1000.76" y="159.5" >/41</text> +</g> +<g > +<title>/1655491 (584 samples, 0.05%)</title><rect x="511.1" y="181" width="0.5" height="15.0" fill="rgb(234,129,32)" rx="2" ry="2" /> +<text x="514.07" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (105 samples, 0.01%)</title><rect x="718.8" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="721.84" y="159.5" ></text> +</g> +<g > +<title>/43 (234 samples, 0.02%)</title><rect x="351.8" y="117" width="0.2" height="15.0" fill="rgb(236,123,34)" rx="2" ry="2" /> +<text x="354.76" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_close (288 samples, 0.02%)</title><rect x="821.2" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="824.16" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (244 samples, 0.02%)</title><rect x="393.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="396.26" y="111.5" ></text> +</g> +<g > +<title>/40 (262 samples, 0.02%)</title><rect x="351.0" y="117" width="0.3" height="15.0" fill="rgb(224,133,21)" rx="2" ry="2" /> +<text x="354.04" y="127.5" ></text> +</g> +<g > +<title>/kernel (169 samples, 0.01%)</title><rect x="745.6" y="165" width="0.1" height="15.0" fill="rgb(237,117,35)" rx="2" ry="2" /> +<text x="748.57" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (287 samples, 0.02%)</title><rect x="373.7" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="376.71" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (254 samples, 0.02%)</title><rect x="391.4" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="394.43" y="111.5" ></text> +</g> +<g > +<title>/9c (507 samples, 0.04%)</title><rect x="329.6" y="133" width="0.5" height="15.0" fill="rgb(229,154,26)" rx="2" ry="2" /> +<text x="332.62" y="143.5" ></text> +</g> +<g > +<title>/org.freedesktop.Platform.VAAPI.Intel (120 samples, 0.01%)</title><rect x="270.9" y="181" width="0.2" height="15.0" fill="rgb(233,149,31)" rx="2" ry="2" /> +<text x="273.94" y="191.5" ></text> +</g> +<g > +<title>/io (447 samples, 0.04%)</title><rect x="853.8" y="133" width="0.4" height="15.0" fill="rgb(238,134,37)" rx="2" ry="2" /> +<text x="856.77" y="143.5" ></text> +</g> +<g > +<title>/org.freedesktop.Platform.VAAPI.Intel (311 samples, 0.03%)</title><rect x="1165.4" y="133" width="0.3" height="15.0" fill="rgb(233,149,31)" rx="2" ry="2" /> +<text x="1168.41" y="143.5" ></text> +</g> +<g > +<title>/21 (261 samples, 0.02%)</title><rect x="344.0" y="117" width="0.2" height="15.0" fill="rgb(225,140,22)" rx="2" ry="2" /> +<text x="346.95" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (1,988 samples, 0.16%)</title><rect x="425.1" y="117" width="1.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="428.12" y="127.5" ></text> +</g> +<g > +<title>/lib (47,850 samples, 3.92%)</title><rect x="1129.6" y="181" width="46.3" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" /> +<text x="1132.63" y="191.5" >/lib</text> +</g> +<g > +<title>/e5 (217 samples, 0.02%)</title><rect x="389.6" y="117" width="0.2" height="15.0" fill="rgb(239,147,38)" rx="2" ry="2" /> +<text x="392.60" y="127.5" ></text> +</g> +<g > +<title>/be (229 samples, 0.02%)</title><rect x="380.3" y="117" width="0.2" height="15.0" fill="rgb(234,107,32)" rx="2" ry="2" /> +<text x="383.29" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (321 samples, 0.03%)</title><rect x="339.1" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="342.13" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_close (132 samples, 0.01%)</title><rect x="1174.2" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1177.17" y="159.5" ></text> +</g> +<g > +<title>/102161 (20,180 samples, 1.65%)</title><rect x="450.6" y="181" width="19.5" height="15.0" fill="rgb(227,148,24)" rx="2" ry="2" /> +<text x="453.62" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (248 samples, 0.02%)</title><rect x="353.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="356.78" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (231 samples, 0.02%)</title><rect x="406.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="409.28" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (242 samples, 0.02%)</title><rect x="349.8" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="352.84" y="111.5" ></text> +</g> +<g > +<title>/fd (219 samples, 0.02%)</title><rect x="470.2" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="473.17" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (223 samples, 0.02%)</title><rect x="344.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="347.20" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (239 samples, 0.02%)</title><rect x="343.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="346.26" y="111.5" ></text> +</g> +<g > +<title>/libexec (160 samples, 0.01%)</title><rect x="962.4" y="181" width="0.1" height="15.0" fill="rgb(237,99,35)" rx="2" ry="2" /> +<text x="965.37" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_read (144 samples, 0.01%)</title><rect x="508.7" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="511.69" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (125 samples, 0.01%)</title><rect x="529.1" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="532.11" y="175.5" ></text> +</g> +<g > +<title>/42 (270 samples, 0.02%)</title><rect x="351.5" y="117" width="0.3" height="15.0" fill="rgb(238,127,36)" rx="2" ry="2" /> +<text x="354.50" y="127.5" ></text> +</g> +<g > +<title>/1655395 (229 samples, 0.02%)</title><rect x="510.5" y="181" width="0.2" height="15.0" fill="rgb(245,129,44)" rx="2" ry="2" /> +<text x="513.51" y="191.5" ></text> +</g> +<g > +<title>/xml (224 samples, 0.02%)</title><rect x="995.5" y="149" width="0.2" height="15.0" fill="rgb(230,120,27)" rx="2" ry="2" /> +<text x="998.49" y="159.5" ></text> +</g> +<g > +<title>/1656475 (148 samples, 0.01%)</title><rect x="527.4" y="181" width="0.2" height="15.0" fill="rgb(246,129,46)" rx="2" ry="2" /> +<text x="530.42" y="191.5" ></text> +</g> +<g > +<title>/x86_64 (257 samples, 0.02%)</title><rect x="1166.5" y="117" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="1169.50" y="127.5" ></text> +</g> +<g > +<title>/sys (309 samples, 0.03%)</title><rect x="745.5" y="181" width="0.3" height="15.0" fill="rgb(241,145,40)" rx="2" ry="2" /> +<text x="748.50" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_openat (246 samples, 0.02%)</title><rect x="723.7" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="726.67" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_openat (189 samples, 0.02%)</title><rect x="725.4" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="728.39" y="175.5" ></text> +</g> +<g > +<title>/4b (222 samples, 0.02%)</title><rect x="353.6" y="117" width="0.2" height="15.0" fill="rgb(224,127,21)" rx="2" ry="2" /> +<text x="356.56" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (249 samples, 0.02%)</title><rect x="369.1" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="372.14" y="111.5" ></text> +</g> +<g > +<title>/org.fedoraproject.Platform.Locale (119 samples, 0.01%)</title><rect x="1161.5" y="133" width="0.1" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="1164.45" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (265 samples, 0.02%)</title><rect x="384.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="387.75" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (10,792 samples, 0.88%)</title><rect x="25.4" y="181" width="10.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="28.39" y="191.5" ></text> +</g> +<g > +<title>/pkgconfig (182 samples, 0.01%)</title><rect x="995.2" y="165" width="0.2" height="15.0" fill="rgb(239,128,37)" rx="2" ry="2" /> +<text x="998.18" y="175.5" ></text> +</g> +<g > +<title>/input (5,531 samples, 0.45%)</title><rect x="294.9" y="181" width="5.3" height="15.0" fill="rgb(234,137,31)" rx="2" ry="2" /> +<text x="297.85" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="772.6" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="775.58" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_pwrite64 (1,062 samples, 0.09%)</title><rect x="1188.9" y="165" width="1.0" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1191.92" y="175.5" ></text> +</g> +<g > +<title>/19 (280 samples, 0.02%)</title><rect x="342.1" y="117" width="0.2" height="15.0" fill="rgb(229,119,27)" rx="2" ry="2" /> +<text x="345.06" y="127.5" ></text> +</g> +<g > +<title>/sss (212 samples, 0.02%)</title><rect x="1175.6" y="165" width="0.2" height="15.0" fill="rgb(235,126,34)" rx="2" ry="2" /> +<text x="1178.60" y="175.5" ></text> +</g> +<g > +<title>/fd (108 samples, 0.01%)</title><rect x="564.5" y="165" width="0.1" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="567.46" y="175.5" ></text> +</g> +<g > +<title>/67 (221 samples, 0.02%)</title><rect x="360.1" y="117" width="0.2" height="15.0" fill="rgb(227,100,24)" rx="2" ry="2" /> +<text x="363.12" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_statx (207 samples, 0.02%)</title><rect x="965.9" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="968.94" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_openat (4,126 samples, 0.34%)</title><rect x="304.8" y="181" width="4.0" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="307.83" y="191.5" ></text> +</g> +<g > +<title>/0e (244 samples, 0.02%)</title><rect x="339.4" y="117" width="0.3" height="15.0" fill="rgb(241,137,39)" rx="2" ry="2" /> +<text x="342.44" y="127.5" ></text> +</g> +<g > +<title>/org.kde.WaylandDecoration.QAdwaitaDecorations (277 samples, 0.02%)</title><rect x="1169.7" y="133" width="0.2" height="15.0" fill="rgb(244,149,43)" rx="2" ry="2" /> +<text x="1172.66" y="143.5" ></text> +</g> +<g > +<title>/active (190 samples, 0.02%)</title><rect x="1153.5" y="101" width="0.1" height="15.0" fill="rgb(238,118,36)" rx="2" ry="2" /> +<text x="1156.46" y="111.5" ></text> +</g> +<g > +<title>/62 (236 samples, 0.02%)</title><rect x="359.0" y="117" width="0.2" height="15.0" fill="rgb(236,117,34)" rx="2" ry="2" /> +<text x="362.01" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="791.0" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="794.01" y="79.5" ></text> +</g> +<g > +<title>/polkit-1 (217 samples, 0.02%)</title><rect x="311.6" y="181" width="0.2" height="15.0" fill="rgb(232,154,30)" rx="2" ry="2" /> +<text x="314.63" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (337 samples, 0.03%)</title><rect x="792.7" y="69" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="795.72" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (1,238 samples, 0.10%)</title><rect x="473.5" y="149" width="1.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="476.49" y="159.5" ></text> +</g> +<g > +<title>/queries (421 samples, 0.03%)</title><rect x="407.3" y="117" width="0.4" height="15.0" fill="rgb(237,129,36)" rx="2" ry="2" /> +<text x="410.28" y="127.5" ></text> +</g> +<g > +<title>/runtime (655 samples, 0.05%)</title><rect x="760.6" y="165" width="0.7" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" /> +<text x="763.62" y="175.5" ></text> +</g> +<g > +<title>/org.telegram.desktop.webview.Locale (110 samples, 0.01%)</title><rect x="1169.9" y="133" width="0.1" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="1172.93" y="143.5" ></text> +</g> +<g > +<title>/modules (327 samples, 0.03%)</title><rect x="841.4" y="149" width="0.4" height="15.0" fill="rgb(244,113,43)" rx="2" ry="2" /> +<text x="844.45" y="159.5" ></text> +</g> +<g > +<title>/e1 (253 samples, 0.02%)</title><rect x="388.6" y="117" width="0.2" height="15.0" fill="rgb(229,160,26)" rx="2" ry="2" /> +<text x="391.59" y="127.5" ></text> +</g> +<g > +<title>home (126,149 samples, 10.34%)</title><rect x="321.0" y="197" width="122.0" height="15.0" fill="rgb(240,189,38)" rx="2" ry="2" /> +<text x="324.03" y="207.5" >home</text> +</g> +<g > +<title>/73 (246 samples, 0.02%)</title><rect x="363.0" y="117" width="0.2" height="15.0" fill="rgb(245,164,44)" rx="2" ry="2" /> +<text x="365.98" y="127.5" ></text> +</g> +<g > +<title>/a7 (242 samples, 0.02%)</title><rect x="375.1" y="117" width="0.3" height="15.0" fill="rgb(228,106,26)" rx="2" ry="2" /> +<text x="378.12" y="127.5" ></text> +</g> +<g > +<title>/locale (314 samples, 0.03%)</title><rect x="872.6" y="165" width="0.3" height="15.0" fill="rgb(242,118,41)" rx="2" ry="2" /> +<text x="875.63" y="175.5" ></text> +</g> +<g > +<title>/ae (272 samples, 0.02%)</title><rect x="376.7" y="117" width="0.3" height="15.0" fill="rgb(235,112,33)" rx="2" ry="2" /> +<text x="379.74" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (226 samples, 0.02%)</title><rect x="362.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="365.48" y="111.5" ></text> +</g> +<g > +<title>/1640373 (154 samples, 0.01%)</title><rect x="508.5" y="181" width="0.2" height="15.0" fill="rgb(251,129,50)" rx="2" ry="2" /> +<text x="511.53" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (240 samples, 0.02%)</title><rect x="354.6" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="357.64" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (228 samples, 0.02%)</title><rect x="355.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="358.35" y="111.5" ></text> +</g> +<g > +<title>/df (223 samples, 0.02%)</title><rect x="388.1" y="117" width="0.2" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="391.12" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_getdents64 (136 samples, 0.01%)</title><rect x="872.2" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="875.20" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (569 samples, 0.05%)</title><rect x="509.0" y="149" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="512.01" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_statx (127 samples, 0.01%)</title><rect x="841.0" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="844.02" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_close (879 samples, 0.07%)</title><rect x="859.3" y="117" width="0.8" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="862.28" y="127.5" ></text> +</g> +<g > +<title>/tmux-spawn-fac5a323-c44b-4e5c-967a-c8fe8dfdee71.scope (150 samples, 0.01%)</title><rect x="826.4" y="85" width="0.1" height="15.0" fill="rgb(248,140,48)" rx="2" ry="2" /> +<text x="829.37" y="95.5" ></text> +</g> +<g > +<title>/atomic (162 samples, 0.01%)</title><rect x="868.9" y="117" width="0.2" height="15.0" fill="rgb(232,102,29)" rx="2" ry="2" /> +<text x="871.91" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (288 samples, 0.02%)</title><rect x="785.7" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="788.65" y="79.5" ></text> +</g> +<g > +<title>/44 (201 samples, 0.02%)</title><rect x="352.0" y="117" width="0.2" height="15.0" fill="rgb(235,120,33)" rx="2" ry="2" /> +<text x="354.99" y="127.5" ></text> +</g> +<g > +<title>/a2 (221 samples, 0.02%)</title><rect x="374.0" y="117" width="0.2" height="15.0" fill="rgb(237,122,35)" rx="2" ry="2" /> +<text x="376.99" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (270 samples, 0.02%)</title><rect x="383.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="386.08" y="111.5" ></text> +</g> +<g > +<title>/1319468 (1,249 samples, 0.10%)</title><rect x="473.5" y="181" width="1.2" height="15.0" fill="rgb(230,139,28)" rx="2" ry="2" /> +<text x="476.49" y="191.5" ></text> +</g> +<g > +<title>/bin (1,790 samples, 0.15%)</title><rect x="962.5" y="165" width="1.8" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="965.52" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (111 samples, 0.01%)</title><rect x="964.0" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="967.02" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (235 samples, 0.02%)</title><rect x="382.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="385.65" y="111.5" ></text> +</g> +<g > +<title>/poll (994 samples, 0.08%)</title><rect x="850.7" y="117" width="1.0" height="15.0" fill="rgb(229,154,26)" rx="2" ry="2" /> +<text x="853.72" y="127.5" ></text> +</g> +<g > +<title>/fd (584 samples, 0.05%)</title><rect x="511.1" y="165" width="0.5" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="514.07" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (253 samples, 0.02%)</title><rect x="340.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="343.40" y="111.5" ></text> +</g> +<g > +<title>/pkgconfig (947 samples, 0.08%)</title><rect x="843.3" y="165" width="0.9" height="15.0" fill="rgb(239,128,37)" rx="2" ry="2" /> +<text x="846.30" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (328 samples, 0.03%)</title><rect x="796.1" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="799.12" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (148 samples, 0.01%)</title><rect x="853.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="856.81" y="111.5" ></text> +</g> +<g > +<title>/LNXSYBUS:00 (147 samples, 0.01%)</title><rect x="765.8" y="149" width="0.1" height="15.0" fill="rgb(229,104,27)" rx="2" ry="2" /> +<text x="768.78" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_close (287 samples, 0.02%)</title><rect x="828.3" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="831.35" y="95.5" ></text> +</g> +<g > +<title>/5e (303 samples, 0.02%)</title><rect x="358.0" y="117" width="0.3" height="15.0" fill="rgb(235,112,33)" rx="2" ry="2" /> +<text x="361.04" y="127.5" ></text> +</g> +<g > +<title>/cf (264 samples, 0.02%)</title><rect x="384.3" y="117" width="0.2" height="15.0" fill="rgb(243,154,42)" rx="2" ry="2" /> +<text x="387.29" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (1,721 samples, 0.14%)</title><rect x="482.4" y="149" width="1.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="485.43" y="159.5" ></text> +</g> +<g > +<title>/64x64 (105 samples, 0.01%)</title><rect x="1153.5" y="69" width="0.1" height="15.0" fill="rgb(240,110,39)" rx="2" ry="2" /> +<text x="1156.55" y="79.5" ></text> +</g> +<g > +<title>/70 (238 samples, 0.02%)</title><rect x="362.2" y="117" width="0.3" height="15.0" fill="rgb(233,173,31)" rx="2" ry="2" /> +<text x="365.25" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (244 samples, 0.02%)</title><rect x="339.4" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="342.44" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (223 samples, 0.02%)</title><rect x="352.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="355.39" y="111.5" ></text> +</g> +<g > +<title>/task (546 samples, 0.04%)</title><rect x="472.8" y="165" width="0.5" height="15.0" fill="rgb(236,140,34)" rx="2" ry="2" /> +<text x="475.78" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (196 samples, 0.02%)</title><rect x="848.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="851.14" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_read (175 samples, 0.01%)</title><rect x="329.7" y="117" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="332.67" y="127.5" ></text> +</g> +<g > +<title>/fd (120 samples, 0.01%)</title><rect x="478.7" y="165" width="0.1" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="481.71" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (225 samples, 0.02%)</title><rect x="378.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="381.37" y="111.5" ></text> +</g> +<g > +<title>/29 (226 samples, 0.02%)</title><rect x="345.8" y="117" width="0.2" height="15.0" fill="rgb(228,114,25)" rx="2" ry="2" /> +<text x="348.79" y="127.5" ></text> +</g> +<g > +<title>/e6 (241 samples, 0.02%)</title><rect x="389.8" y="117" width="0.2" height="15.0" fill="rgb(238,144,36)" rx="2" ry="2" /> +<text x="392.81" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_close (282 samples, 0.02%)</title><rect x="793.9" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="796.89" y="79.5" ></text> +</g> +<g > +<title>/google-noto-vf (18,455 samples, 1.51%)</title><rect x="975.1" y="149" width="17.9" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> +<text x="978.12" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_read (251 samples, 0.02%)</title><rect x="406.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="409.71" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (280 samples, 0.02%)</title><rect x="816.3" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="819.30" y="79.5" ></text> +</g> +<g > +<title>/7a (293 samples, 0.02%)</title><rect x="364.6" y="117" width="0.3" height="15.0" fill="rgb(235,170,33)" rx="2" ry="2" /> +<text x="367.59" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (240 samples, 0.02%)</title><rect x="338.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="341.18" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (212 samples, 0.02%)</title><rect x="361.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="364.79" y="111.5" ></text> +</g> +<g > +<title>/c9 (209 samples, 0.02%)</title><rect x="382.9" y="117" width="0.2" height="15.0" fill="rgb(235,145,33)" rx="2" ry="2" /> +<text x="385.88" y="127.5" ></text> +</g> +<g > +<title>/87 (287 samples, 0.02%)</title><rect x="367.6" y="117" width="0.3" height="15.0" fill="rgb(237,146,35)" rx="2" ry="2" /> +<text x="370.65" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_getdents64 (372 samples, 0.03%)</title><rect x="1152.6" y="133" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1155.60" y="143.5" ></text> +</g> +<g > +<title>/9a (237 samples, 0.02%)</title><rect x="372.1" y="117" width="0.3" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="375.14" y="127.5" ></text> +</g> +<g > +<title>/1637367 (767 samples, 0.06%)</title><rect x="507.6" y="181" width="0.8" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" /> +<text x="510.62" y="191.5" ></text> +</g> +<g > +<title>/x86_64 (316 samples, 0.03%)</title><rect x="1165.9" y="117" width="0.3" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="1168.87" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (310 samples, 0.03%)</title><rect x="973.8" y="133" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="976.84" y="143.5" ></text> +</g> +<g > +<title>/chrome (676 samples, 0.06%)</title><rect x="415.3" y="85" width="0.7" height="15.0" fill="rgb(240,148,38)" rx="2" ry="2" /> +<text x="418.33" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (240 samples, 0.02%)</title><rect x="359.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="362.65" y="111.5" ></text> +</g> +<g > +<title>/fd (238 samples, 0.02%)</title><rect x="722.1" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="725.09" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="786.3" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="789.26" y="79.5" ></text> +</g> +<g > +<title>/13103 (179 samples, 0.01%)</title><rect x="472.5" y="181" width="0.2" height="15.0" fill="rgb(248,139,47)" rx="2" ry="2" /> +<text x="475.54" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (131 samples, 0.01%)</title><rect x="498.9" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="501.93" y="159.5" ></text> +</g> +<g > +<title>/153593 (261 samples, 0.02%)</title><rect x="499.6" y="181" width="0.2" height="15.0" fill="rgb(247,132,46)" rx="2" ry="2" /> +<text x="502.59" y="191.5" ></text> +</g> +<g > +<title>/77 (282 samples, 0.02%)</title><rect x="363.9" y="117" width="0.3" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" /> +<text x="366.93" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_close (288 samples, 0.02%)</title><rect x="773.4" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="776.41" y="79.5" ></text> +</g> +<g > +<title>/855779566tedgsaSrto.files (145 samples, 0.01%)</title><rect x="415.1" y="53" width="0.1" height="15.0" fill="rgb(244,152,43)" rx="2" ry="2" /> +<text x="418.10" y="63.5" ></text> +</g> +<g > +<title>syscall`enter_openat (153 samples, 0.01%)</title><rect x="529.4" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="532.37" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="784.5" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="787.54" y="79.5" ></text> +</g> +<g > +<title>/1479 (13,349 samples, 1.09%)</title><rect x="484.1" y="181" width="12.9" height="15.0" fill="rgb(240,135,38)" rx="2" ry="2" /> +<text x="487.12" y="191.5" ></text> +</g> +<g > +<title>/fd (581 samples, 0.05%)</title><rect x="513.5" y="165" width="0.6" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="516.49" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (209 samples, 0.02%)</title><rect x="382.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="385.88" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (263 samples, 0.02%)</title><rect x="355.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="358.78" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (288 samples, 0.02%)</title><rect x="814.6" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="817.59" y="79.5" ></text> +</g> +<g > +<title>/1655459 (164 samples, 0.01%)</title><rect x="510.9" y="181" width="0.1" height="15.0" fill="rgb(230,129,27)" rx="2" ry="2" /> +<text x="513.89" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (439 samples, 0.04%)</title><rect x="850.8" y="101" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="853.83" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_access (2,334 samples, 0.19%)</title><rect x="833.1" y="165" width="2.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="836.06" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (347 samples, 0.03%)</title><rect x="996.8" y="117" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="999.81" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_read (574 samples, 0.05%)</title><rect x="822.3" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="825.32" y="79.5" ></text> +</g> +<g > +<title>/locale (946 samples, 0.08%)</title><rect x="993.9" y="165" width="0.9" height="15.0" fill="rgb(242,118,41)" rx="2" ry="2" /> +<text x="996.92" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_openat (282 samples, 0.02%)</title><rect x="794.8" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="797.75" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (614 samples, 0.05%)</title><rect x="262.3" y="181" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="265.34" y="191.5" ></text> +</g> +<g > +<title>/deploy (267 samples, 0.02%)</title><rect x="1159.8" y="101" width="0.2" height="15.0" fill="rgb(252,152,51)" rx="2" ry="2" /> +<text x="1162.78" y="111.5" ></text> +</g> +<g > +<title>/ff (223 samples, 0.02%)</title><rect x="395.5" y="117" width="0.3" height="15.0" fill="rgb(240,139,39)" rx="2" ry="2" /> +<text x="398.54" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_read (286 samples, 0.02%)</title><rect x="871.2" y="117" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="874.21" y="127.5" ></text> +</g> +<g > +<title>/strings (310 samples, 0.03%)</title><rect x="868.6" y="133" width="0.3" height="15.0" fill="rgb(240,122,39)" rx="2" ry="2" /> +<text x="871.61" y="143.5" ></text> +</g> +<g > +<title>/x86_64 (124 samples, 0.01%)</title><rect x="272.3" y="165" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="275.29" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_openat (201 samples, 0.02%)</title><rect x="1154.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1157.04" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (220 samples, 0.02%)</title><rect x="391.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="394.22" y="111.5" ></text> +</g> +<g > +<title>/app.slice (1,702 samples, 0.14%)</title><rect x="768.4" y="101" width="1.6" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="771.38" y="111.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dcom.redhat.imsettings.slice (1,729 samples, 0.14%)</title><rect x="775.1" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="778.13" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (303 samples, 0.02%)</title><rect x="358.0" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="361.04" y="111.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.evince.Daemon.slice (1,770 samples, 0.15%)</title><rect x="816.0" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="819.02" y="95.5" ></text> +</g> +<g > +<title>/1a (240 samples, 0.02%)</title><rect x="342.3" y="117" width="0.3" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" /> +<text x="345.33" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_statx (169 samples, 0.01%)</title><rect x="966.6" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="969.55" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_read (5,224 samples, 0.43%)</title><rect x="739.6" y="165" width="5.0" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="742.56" y="175.5" ></text> +</g> +<g > +<title>/exports (1,442 samples, 0.12%)</title><rect x="1153.6" y="149" width="1.4" height="15.0" fill="rgb(235,163,33)" rx="2" ry="2" /> +<text x="1156.65" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (259 samples, 0.02%)</title><rect x="364.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="367.88" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_openat (282 samples, 0.02%)</title><rect x="788.0" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="790.96" y="79.5" ></text> +</g> +<g > +<title>/org.kde.Platform (128 samples, 0.01%)</title><rect x="1169.4" y="133" width="0.1" height="15.0" fill="rgb(232,149,30)" rx="2" ry="2" /> +<text x="1172.40" y="143.5" ></text> +</g> +<g > +<title>/fd (137 samples, 0.01%)</title><rect x="517.8" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="520.83" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_close (282 samples, 0.02%)</title><rect x="770.0" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="773.02" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (187 samples, 0.02%)</title><rect x="375.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="378.88" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (239 samples, 0.02%)</title><rect x="868.2" y="117" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="871.16" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (147 samples, 0.01%)</title><rect x="527.4" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="530.42" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_read (572 samples, 0.05%)</title><rect x="810.4" y="69" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="813.36" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (241 samples, 0.02%)</title><rect x="374.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="377.41" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_openat (282 samples, 0.02%)</title><rect x="776.0" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="778.99" y="79.5" ></text> +</g> +<g > +<title>/ac14a7c1d57ff6de1ec07ddc1606a45a0c660e003df507769f73e0444e08ae8e (109 samples, 0.01%)</title><rect x="1162.3" y="85" width="0.1" height="15.0" fill="rgb(248,118,48)" rx="2" ry="2" /> +<text x="1165.32" y="95.5" ></text> +</g> +<g > +<title>/Downloaded (173 samples, 0.01%)</title><rect x="407.7" y="133" width="0.2" height="15.0" fill="rgb(250,154,49)" rx="2" ry="2" /> +<text x="410.73" y="143.5" ></text> +</g> +<g > +<title>/fd (8,170 samples, 0.67%)</title><rect x="725.9" y="165" width="7.9" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="728.94" y="175.5" ></text> +</g> +<g > +<title>/irq (164 samples, 0.01%)</title><rect x="737.9" y="181" width="0.1" height="15.0" fill="rgb(239,124,37)" rx="2" ry="2" /> +<text x="740.87" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_statx (127 samples, 0.01%)</title><rect x="964.1" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="967.13" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_close (255 samples, 0.02%)</title><rect x="395.8" y="117" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="398.75" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_read (124 samples, 0.01%)</title><rect x="996.6" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="999.58" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (233 samples, 0.02%)</title><rect x="341.8" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="344.83" y="111.5" ></text> +</g> +<g > +<title>/fd (163 samples, 0.01%)</title><rect x="511.7" y="165" width="0.1" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="514.69" y="175.5" ></text> +</g> +<g > +<title>/fd (25,133 samples, 2.06%)</title><rect x="540.1" y="165" width="24.3" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="543.06" y="175.5" >/fd</text> +</g> +<g > +<title>/bf (259 samples, 0.02%)</title><rect x="380.5" y="117" width="0.3" height="15.0" fill="rgb(232,104,30)" rx="2" ry="2" /> +<text x="383.51" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (240 samples, 0.02%)</title><rect x="336.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="339.49" y="111.5" ></text> +</g> +<g > +<title>/org.kde.KStyle.Adwaita (126 samples, 0.01%)</title><rect x="271.9" y="181" width="0.1" height="15.0" fill="rgb(229,149,27)" rx="2" ry="2" /> +<text x="274.85" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_read (122 samples, 0.01%)</title><rect x="868.5" y="117" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="871.49" y="127.5" ></text> +</g> +<g > +<title>/unix (767 samples, 0.06%)</title><rect x="852.6" y="101" width="0.8" height="15.0" fill="rgb(247,132,46)" rx="2" ry="2" /> +<text x="855.62" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_read (572 samples, 0.05%)</title><rect x="801.8" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="804.81" y="79.5" ></text> +</g> +<g > +<title>/1 (1,077 samples, 0.09%)</title><rect x="528.8" y="181" width="1.0" height="15.0" fill="rgb(232,133,30)" rx="2" ry="2" /> +<text x="531.77" y="191.5" ></text> +</g> +<g > +<title>/unicode (255 samples, 0.02%)</title><rect x="871.9" y="133" width="0.2" height="15.0" fill="rgb(250,132,49)" rx="2" ry="2" /> +<text x="874.85" y="143.5" ></text> +</g> +<g > +<title>/share (290 samples, 0.02%)</title><rect x="966.1" y="165" width="0.3" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="969.14" y="175.5" ></text> +</g> +<g > +<title>/fd (1,721 samples, 0.14%)</title><rect x="482.4" y="165" width="1.7" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="485.43" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_close (288 samples, 0.02%)</title><rect x="804.1" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="807.05" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (665 samples, 0.05%)</title><rect x="736.4" y="149" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="739.37" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="821.7" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="824.71" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_close (1,257 samples, 0.10%)</title><rect x="444.0" y="181" width="1.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="447.05" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_read (565 samples, 0.05%)</title><rect x="795.0" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="798.02" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (177 samples, 0.01%)</title><rect x="848.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="851.33" y="111.5" ></text> +</g> +<g > +<title>/app (210 samples, 0.02%)</title><rect x="760.1" y="165" width="0.2" height="15.0" fill="rgb(248,115,47)" rx="2" ry="2" /> +<text x="763.11" y="175.5" ></text> +</g> +<g > +<title>/d9 (271 samples, 0.02%)</title><rect x="386.6" y="117" width="0.3" height="15.0" fill="rgb(234,139,31)" rx="2" ry="2" /> +<text x="389.63" y="127.5" ></text> +</g> +<g > +<title>/LNXSYSTM:00 (147 samples, 0.01%)</title><rect x="765.8" y="165" width="0.1" height="15.0" fill="rgb(229,104,27)" rx="2" ry="2" /> +<text x="768.78" y="175.5" ></text> +</g> +<g > +<title>/e3 (297 samples, 0.02%)</title><rect x="389.1" y="117" width="0.3" height="15.0" fill="rgb(243,154,42)" rx="2" ry="2" /> +<text x="392.07" y="127.5" ></text> +</g> +<g > +<title>/bc (235 samples, 0.02%)</title><rect x="379.8" y="117" width="0.3" height="15.0" fill="rgb(220,113,17)" rx="2" ry="2" /> +<text x="382.83" y="127.5" ></text> +</g> +<g > +<title>/cpu (209 samples, 0.02%)</title><rect x="848.9" y="117" width="0.2" height="15.0" fill="rgb(238,161,36)" rx="2" ry="2" /> +<text x="851.87" y="127.5" ></text> +</g> +<g > +<title>/org.gnome.Decibels.Locale (131 samples, 0.01%)</title><rect x="1166.4" y="133" width="0.1" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="1169.37" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_read (552 samples, 0.05%)</title><rect x="769.5" y="85" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="772.49" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_read (490 samples, 0.04%)</title><rect x="723.9" y="165" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="726.91" y="175.5" ></text> +</g> +<g > +<title>/fd (350 samples, 0.03%)</title><rect x="507.6" y="165" width="0.4" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="510.62" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_statx (3,150 samples, 0.26%)</title><rect x="1171.1" y="133" width="3.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1174.13" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (243 samples, 0.02%)</title><rect x="336.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="339.25" y="111.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dio.github.kotatogram.slice (1,766 samples, 0.14%)</title><rect x="778.5" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="781.52" y="95.5" ></text> +</g> +<g > +<title>/pts (1,975 samples, 0.16%)</title><rect x="300.2" y="181" width="1.9" height="15.0" fill="rgb(236,138,35)" rx="2" ry="2" /> +<text x="303.20" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (54,360 samples, 4.45%)</title><rect x="566.6" y="149" width="52.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="569.58" y="159.5" >sysca..</text> +</g> +<g > +<title>syscall`enter_newfstatat (126 samples, 0.01%)</title><rect x="851.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="854.25" y="111.5" ></text> +</g> +<g > +<title>/org.fedoraproject.Platform.GL.default (164 samples, 0.01%)</title><rect x="1161.3" y="133" width="0.1" height="15.0" fill="rgb(228,149,25)" rx="2" ry="2" /> +<text x="1164.29" y="143.5" ></text> +</g> +<g > +<title>/f1 (250 samples, 0.02%)</title><rect x="392.4" y="117" width="0.2" height="15.0" fill="rgb(228,155,25)" rx="2" ry="2" /> +<text x="395.36" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (264 samples, 0.02%)</title><rect x="384.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="387.29" y="111.5" ></text> +</g> +<g > +<title>/sysimage (90,511 samples, 7.42%)</title><rect x="874.3" y="165" width="87.5" height="15.0" fill="rgb(248,145,47)" rx="2" ry="2" /> +<text x="877.28" y="175.5" >/sysimage</text> +</g> +<g > +<title>syscall`enter_ioctl (284 samples, 0.02%)</title><rect x="799.2" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="802.24" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (386 samples, 0.03%)</title><rect x="497.1" y="149" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="500.06" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_openat (255 samples, 0.02%)</title><rect x="398.3" y="117" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="401.28" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (643 samples, 0.05%)</title><rect x="1132.7" y="149" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1135.68" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (642 samples, 0.05%)</title><rect x="875.6" y="133" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="878.58" y="143.5" ></text> +</g> +<g > +<title>/fd (168 samples, 0.01%)</title><rect x="472.5" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="475.54" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_read (365 samples, 0.03%)</title><rect x="858.0" y="117" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="861.04" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (291 samples, 0.02%)</title><rect x="356.0" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="359.04" y="111.5" ></text> +</g> +<g > +<title>/148 (1,510 samples, 0.12%)</title><rect x="497.4" y="181" width="1.5" height="15.0" fill="rgb(235,135,33)" rx="2" ry="2" /> +<text x="500.44" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_close (287 samples, 0.02%)</title><rect x="778.5" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="781.52" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (611 samples, 0.05%)</title><rect x="44.7" y="181" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="47.66" y="191.5" ></text> +</g> +<g > +<title>/flathub (890 samples, 0.07%)</title><rect x="760.4" y="181" width="0.9" height="15.0" fill="rgb(227,158,25)" rx="2" ry="2" /> +<text x="763.40" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (196 samples, 0.02%)</title><rect x="381.8" y="101" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="384.75" y="111.5" ></text> +</g> +<g > +<title>/1797 (229 samples, 0.02%)</title><rect x="528.1" y="181" width="0.3" height="15.0" fill="rgb(239,126,37)" rx="2" ry="2" /> +<text x="531.14" y="191.5" ></text> +</g> +<g > +<title>/fdinfo (406 samples, 0.03%)</title><rect x="738.3" y="165" width="0.4" height="15.0" fill="rgb(248,145,47)" rx="2" ry="2" /> +<text x="741.31" y="175.5" ></text> +</g> +<g > +<title>/69 (224 samples, 0.02%)</title><rect x="360.6" y="117" width="0.2" height="15.0" fill="rgb(224,94,21)" rx="2" ry="2" /> +<text x="363.55" y="127.5" ></text> +</g> +<g > +<title>/runtime (136 samples, 0.01%)</title><rect x="1159.9" y="85" width="0.1" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" /> +<text x="1162.90" y="95.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Geary.slice (1,741 samples, 0.14%)</title><rect x="793.9" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="796.89" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (230 samples, 0.02%)</title><rect x="365.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="368.53" y="111.5" ></text> +</g> +<g > +<title>/sbin (1,899 samples, 0.16%)</title><rect x="964.3" y="165" width="1.8" height="15.0" fill="rgb(247,142,46)" rx="2" ry="2" /> +<text x="967.30" y="175.5" ></text> +</g> +<g > +<title>/swcatalog (297 samples, 0.02%)</title><rect x="995.4" y="165" width="0.3" height="15.0" fill="rgb(248,113,48)" rx="2" ry="2" /> +<text x="998.43" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (287 samples, 0.02%)</title><rect x="777.1" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="780.08" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_lseek (17,201 samples, 1.41%)</title><rect x="975.1" y="133" width="16.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="978.14" y="143.5" ></text> +</g> +<g > +<title>/virtual (162 samples, 0.01%)</title><rect x="766.2" y="165" width="0.1" height="15.0" fill="rgb(224,104,21)" rx="2" ry="2" /> +<text x="769.16" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (241 samples, 0.02%)</title><rect x="389.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="392.81" y="111.5" ></text> +</g> +<g > +<title>/f41 (123 samples, 0.01%)</title><rect x="1161.3" y="101" width="0.1" height="15.0" fill="rgb(226,145,23)" rx="2" ry="2" /> +<text x="1164.29" y="111.5" ></text> +</g> +<g > +<title>/88 (223 samples, 0.02%)</title><rect x="367.9" y="117" width="0.2" height="15.0" fill="rgb(235,143,33)" rx="2" ry="2" /> +<text x="370.93" y="127.5" ></text> +</g> +<g > +<title>/system.slice (2,076 samples, 0.17%)</title><rect x="766.4" y="149" width="2.0" height="15.0" fill="rgb(246,145,46)" rx="2" ry="2" /> +<text x="769.37" y="159.5" ></text> +</g> +<g > +<title>/org.freedesktop.Platform.openh264 (142 samples, 0.01%)</title><rect x="271.1" y="181" width="0.2" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="274.12" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_read (126 samples, 0.01%)</title><rect x="255.3" y="181" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="258.26" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="818.6" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="821.61" y="79.5" ></text> +</g> +<g > +<title>internalflamegraph (129 samples, 0.01%)</title><rect x="443.6" y="197" width="0.2" height="15.0" fill="rgb(245,164,44)" rx="2" ry="2" /> +<text x="446.64" y="207.5" ></text> +</g> +<g > +<title>syscall`enter_read (177 samples, 0.01%)</title><rect x="256.0" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="259.02" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (261 samples, 0.02%)</title><rect x="344.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="346.95" y="111.5" ></text> +</g> +<g > +<title>/journal (104 samples, 0.01%)</title><rect x="761.4" y="165" width="0.1" height="15.0" fill="rgb(229,128,27)" rx="2" ry="2" /> +<text x="764.40" y="175.5" ></text> +</g> +<g > +<title>/sys (217 samples, 0.02%)</title><rect x="859.0" y="101" width="0.3" height="15.0" fill="rgb(241,145,40)" rx="2" ry="2" /> +<text x="862.05" y="111.5" ></text> +</g> +<g > +<title>/fd (2,922 samples, 0.24%)</title><rect x="719.1" y="165" width="2.9" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="722.14" y="175.5" ></text> +</g> +<g > +<title>/snapd (275 samples, 0.02%)</title><rect x="1175.3" y="165" width="0.3" height="15.0" fill="rgb(252,142,51)" rx="2" ry="2" /> +<text x="1178.33" y="175.5" ></text> +</g> +<g > +<title>/extension (4,883 samples, 0.40%)</title><rect x="410.2" y="117" width="4.7" height="15.0" fill="rgb(247,163,46)" rx="2" ry="2" /> +<text x="413.20" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (259 samples, 0.02%)</title><rect x="342.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="345.78" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (240 samples, 0.02%)</title><rect x="372.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="375.37" y="111.5" ></text> +</g> +<g > +<title>/24 (222 samples, 0.02%)</title><rect x="344.7" y="117" width="0.2" height="15.0" fill="rgb(237,130,35)" rx="2" ry="2" /> +<text x="347.65" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (217 samples, 0.02%)</title><rect x="357.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="360.32" y="111.5" ></text> +</g> +<g > +<title>/app-git\x2dmaintenance.slice (1,740 samples, 0.14%)</title><rect x="822.9" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="825.87" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (258 samples, 0.02%)</title><rect x="373.0" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="376.04" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_access (301 samples, 0.02%)</title><rect x="312.5" y="181" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="315.55" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_read (667 samples, 0.05%)</title><rect x="1154.2" y="101" width="0.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1157.23" y="111.5" ></text> +</g> +<g > +<title>/data (118 samples, 0.01%)</title><rect x="762.9" y="165" width="0.1" height="15.0" fill="rgb(235,165,33)" rx="2" ry="2" /> +<text x="765.88" y="175.5" ></text> +</g> +<g > +<title>/13 (257 samples, 0.02%)</title><rect x="340.6" y="117" width="0.3" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="343.64" y="127.5" ></text> +</g> +<g > +<title>/icons (123 samples, 0.01%)</title><rect x="993.8" y="165" width="0.1" height="15.0" fill="rgb(244,134,43)" rx="2" ry="2" /> +<text x="996.81" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (207 samples, 0.02%)</title><rect x="371.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="373.99" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_lseek (116 samples, 0.01%)</title><rect x="725.0" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="728.05" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_read (60,561 samples, 4.96%)</title><rect x="58.6" y="181" width="58.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="61.65" y="191.5" >syscal..</text> +</g> +<g > +<title>syscall`enter_newfstatat (268 samples, 0.02%)</title><rect x="357.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="360.06" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (301 samples, 0.02%)</title><rect x="380.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="383.76" y="111.5" ></text> +</g> +<g > +<title>/bb (219 samples, 0.02%)</title><rect x="379.6" y="117" width="0.2" height="15.0" fill="rgb(222,117,19)" rx="2" ry="2" /> +<text x="382.62" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_read (308 samples, 0.03%)</title><rect x="325.6" y="117" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="328.63" y="127.5" ></text> +</g> +<g > +<title>/4388 (194 samples, 0.02%)</title><rect x="632.9" y="181" width="0.2" height="15.0" fill="rgb(241,123,39)" rx="2" ry="2" /> +<text x="635.93" y="191.5" ></text> +</g> +<g > +<title>/20 (255 samples, 0.02%)</title><rect x="343.7" y="117" width="0.3" height="15.0" fill="rgb(226,143,23)" rx="2" ry="2" /> +<text x="346.71" y="127.5" ></text> +</g> +<g > +<title>/gnome-shell (230 samples, 0.02%)</title><rect x="993.6" y="165" width="0.2" height="15.0" fill="rgb(227,147,24)" rx="2" ry="2" /> +<text x="996.55" y="175.5" ></text> +</g> +<g > +<title>/cache (136,348 samples, 11.17%)</title><rect x="997.8" y="181" width="131.8" height="15.0" fill="rgb(245,170,44)" rx="2" ry="2" /> +<text x="1000.76" y="191.5" >/cache</text> +</g> +<g > +<title>syscall`enter_newfstatat (283 samples, 0.02%)</title><rect x="337.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="340.17" y="111.5" ></text> +</g> +<g > +<title>/weave (242 samples, 0.02%)</title><rect x="416.0" y="117" width="0.2" height="15.0" fill="rgb(243,112,42)" rx="2" ry="2" /> +<text x="418.99" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (360 samples, 0.03%)</title><rect x="734.4" y="165" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="737.38" y="175.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Identity.slice (1,741 samples, 0.14%)</title><rect x="795.6" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="798.57" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (284 samples, 0.02%)</title><rect x="338.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="341.86" y="111.5" ></text> +</g> +<g > +<title>/d3 (221 samples, 0.02%)</title><rect x="385.2" y="117" width="0.2" height="15.0" fill="rgb(244,159,43)" rx="2" ry="2" /> +<text x="388.23" y="127.5" ></text> +</g> +<g > +<title>/fc (237 samples, 0.02%)</title><rect x="394.8" y="117" width="0.3" height="15.0" fill="rgb(228,149,25)" rx="2" ry="2" /> +<text x="397.84" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="820.3" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="823.32" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (235 samples, 0.02%)</title><rect x="387.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="390.16" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (242 samples, 0.02%)</title><rect x="389.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="392.36" y="111.5" ></text> +</g> +<g > +<title>/terminfo (689 samples, 0.06%)</title><rect x="995.7" y="165" width="0.7" height="15.0" fill="rgb(248,127,47)" rx="2" ry="2" /> +<text x="998.72" y="175.5" ></text> +</g> +<g > +<title>/80 (254 samples, 0.02%)</title><rect x="366.0" y="117" width="0.2" height="15.0" fill="rgb(232,168,30)" rx="2" ry="2" /> +<text x="368.98" y="127.5" ></text> +</g> +<g > +<title>/power_supply (604 samples, 0.05%)</title><rect x="765.1" y="165" width="0.6" height="15.0" fill="rgb(240,154,39)" rx="2" ry="2" /> +<text x="768.14" y="175.5" ></text> +</g> +<g > +<title>/cc (207 samples, 0.02%)</title><rect x="383.6" y="117" width="0.2" height="15.0" fill="rgb(231,164,29)" rx="2" ry="2" /> +<text x="386.62" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_lseek (314 samples, 0.03%)</title><rect x="746.8" y="181" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="749.75" y="191.5" ></text> +</g> +<g > +<title>/47 (211 samples, 0.02%)</title><rect x="352.6" y="117" width="0.2" height="15.0" fill="rgb(229,111,27)" rx="2" ry="2" /> +<text x="355.61" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (261 samples, 0.02%)</title><rect x="391.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="394.67" y="111.5" ></text> +</g> +<g > +<title>/30 (270 samples, 0.02%)</title><rect x="347.3" y="117" width="0.3" height="15.0" fill="rgb(225,138,22)" rx="2" ry="2" /> +<text x="350.33" y="127.5" ></text> +</g> +<g > +<title>. (253,185 samples, 20.75%)</title><rect x="10.0" y="197" width="244.8" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> +<text x="13.00" y="207.5" >.</text> +</g> +<g > +<title>syscall`enter_ioctl (286 samples, 0.02%)</title><rect x="790.7" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="793.73" y="79.5" ></text> +</g> +<g > +<title>/14 (238 samples, 0.02%)</title><rect x="340.9" y="117" width="0.2" height="15.0" fill="rgb(238,135,36)" rx="2" ry="2" /> +<text x="343.89" y="127.5" ></text> +</g> +<g > +<title>/8b (262 samples, 0.02%)</title><rect x="368.7" y="117" width="0.2" height="15.0" fill="rgb(232,162,30)" rx="2" ry="2" /> +<text x="371.67" y="127.5" ></text> +</g> +<g > +<title>/firefox (18,103 samples, 1.48%)</title><rect x="415.1" y="149" width="17.5" height="15.0" fill="rgb(249,129,49)" rx="2" ry="2" /> +<text x="418.09" y="159.5" ></text> +</g> +<g > +<title>/b6 (207 samples, 0.02%)</title><rect x="378.6" y="117" width="0.2" height="15.0" fill="rgb(229,104,26)" rx="2" ry="2" /> +<text x="381.59" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="782.5" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="785.50" y="79.5" ></text> +</g> +<g > +<title>/78 (214 samples, 0.02%)</title><rect x="364.2" y="117" width="0.2" height="15.0" fill="rgb(236,148,35)" rx="2" ry="2" /> +<text x="367.20" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_write (415 samples, 0.03%)</title><rect x="961.4" y="133" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="964.36" y="143.5" ></text> +</g> +<g > +<title>/games (116 samples, 0.01%)</title><rect x="839.2" y="181" width="0.1" height="15.0" fill="rgb(243,150,42)" rx="2" ry="2" /> +<text x="842.23" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_close (286 samples, 0.02%)</title><rect x="817.7" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="820.74" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (272 samples, 0.02%)</title><rect x="376.7" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="379.74" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_read (576 samples, 0.05%)</title><rect x="805.2" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="808.21" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (261 samples, 0.02%)</title><rect x="379.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="382.15" y="111.5" ></text> +</g> +<g > +<title>/org.freedesktop.Platform.GL.default (753 samples, 0.06%)</title><rect x="1161.8" y="133" width="0.7" height="15.0" fill="rgb(228,149,25)" rx="2" ry="2" /> +<text x="1164.82" y="143.5" ></text> +</g> +<g > +<title>etc (11,324 samples, 0.93%)</title><rect x="310.0" y="197" width="10.9" height="15.0" fill="rgb(229,182,26)" rx="2" ry="2" /> +<text x="312.97" y="207.5" ></text> +</g> +<g > +<title>/importlib (163 samples, 0.01%)</title><rect x="844.7" y="149" width="0.2" height="15.0" fill="rgb(234,140,32)" rx="2" ry="2" /> +<text x="847.70" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (282 samples, 0.02%)</title><rect x="766.9" y="133" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="769.92" y="143.5" ></text> +</g> +<g > +<title>/remotes (432 samples, 0.04%)</title><rect x="1160.0" y="117" width="0.5" height="15.0" fill="rgb(238,137,36)" rx="2" ry="2" /> +<text x="1163.04" y="127.5" ></text> +</g> +<g > +<title>/fd (54,360 samples, 4.45%)</title><rect x="566.6" y="165" width="52.5" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="569.58" y="175.5" >/fd</text> +</g> +<g > +<title>syscall`enter_pread64 (6,258 samples, 0.51%)</title><rect x="398.8" y="117" width="6.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="401.83" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (484 samples, 0.04%)</title><rect x="748.2" y="181" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="751.20" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_openat (1,293 samples, 0.11%)</title><rect x="446.5" y="181" width="1.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="449.52" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (379 samples, 0.03%)</title><rect x="332.2" y="117" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="335.24" y="127.5" ></text> +</g> +<g > +<title>/b2 (226 samples, 0.02%)</title><rect x="377.7" y="117" width="0.2" height="15.0" fill="rgb(236,117,34)" rx="2" ry="2" /> +<text x="380.71" y="127.5" ></text> +</g> +<g > +<title>sbin (115 samples, 0.01%)</title><rect x="764.9" y="197" width="0.1" height="15.0" fill="rgb(247,110,46)" rx="2" ry="2" /> +<text x="767.88" y="207.5" ></text> +</g> +<g > +<title>/conf.d (830 samples, 0.07%)</title><rect x="310.6" y="165" width="0.8" height="15.0" fill="rgb(248,164,47)" rx="2" ry="2" /> +<text x="313.57" y="175.5" ></text> +</g> +<g > +<title>/extension (4,889 samples, 0.40%)</title><rect x="1155.0" y="149" width="4.8" height="15.0" fill="rgb(247,163,46)" rx="2" ry="2" /> +<text x="1158.04" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_write (140 samples, 0.01%)</title><rect x="759.9" y="181" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="762.88" y="191.5" ></text> +</g> +<g > +<title>/fd (13,695 samples, 1.12%)</title><rect x="619.4" y="165" width="13.3" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="622.42" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_read (573 samples, 0.05%)</title><rect x="791.6" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="794.61" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (132 samples, 0.01%)</title><rect x="514.4" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="517.37" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (223 samples, 0.02%)</title><rect x="379.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="382.41" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_read (331 samples, 0.03%)</title><rect x="436.2" y="117" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="439.16" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (258 samples, 0.02%)</title><rect x="381.5" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="384.50" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (282 samples, 0.02%)</title><rect x="830.3" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="833.34" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (1,748 samples, 0.14%)</title><rect x="863.5" y="117" width="1.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="866.51" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="814.9" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="817.86" y="79.5" ></text> +</g> +<g > +<title>/7e (230 samples, 0.02%)</title><rect x="365.5" y="117" width="0.2" height="15.0" fill="rgb(245,157,44)" rx="2" ry="2" /> +<text x="368.53" y="127.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Screenshot.slice (1,776 samples, 0.15%)</title><rect x="805.8" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="808.77" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_openat (134 samples, 0.01%)</title><rect x="871.1" y="117" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="874.08" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (190 samples, 0.02%)</title><rect x="442.7" y="181" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="445.75" y="191.5" ></text> +</g> +<g > +<title>/85 (115 samples, 0.01%)</title><rect x="737.5" y="181" width="0.1" height="15.0" fill="rgb(240,152,39)" rx="2" ry="2" /> +<text x="740.51" y="191.5" ></text> +</g> +<g > +<title>/log (12,014 samples, 0.98%)</title><rect x="1175.9" y="181" width="11.6" height="15.0" fill="rgb(248,118,48)" rx="2" ry="2" /> +<text x="1178.90" y="191.5" ></text> +</g> +<g > +<title>internalc (242 samples, 0.02%)</title><rect x="443.2" y="197" width="0.2" height="15.0" fill="rgb(228,164,26)" rx="2" ry="2" /> +<text x="446.21" y="207.5" ></text> +</g> +<g > +<title>syscall`enter_openat (284 samples, 0.02%)</title><rect x="799.8" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="802.83" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (286 samples, 0.02%)</title><rect x="772.0" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="774.98" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_openat (108 samples, 0.01%)</title><rect x="438.2" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="441.22" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (216 samples, 0.02%)</title><rect x="359.4" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="362.44" y="111.5" ></text> +</g> +<g > +<title>/1656216 (246 samples, 0.02%)</title><rect x="518.4" y="181" width="0.3" height="15.0" fill="rgb(241,129,39)" rx="2" ry="2" /> +<text x="521.45" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_lseek (1,428 samples, 0.12%)</title><rect x="997.8" y="117" width="1.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1000.84" y="127.5" ></text> +</g> +<g > +<title>/1655614 (435 samples, 0.04%)</title><rect x="511.9" y="181" width="0.4" height="15.0" fill="rgb(241,129,40)" rx="2" ry="2" /> +<text x="514.88" y="191.5" ></text> +</g> +<g > +<title>/background.slice (1,773 samples, 0.15%)</title><rect x="828.3" y="101" width="1.8" height="15.0" fill="rgb(246,120,46)" rx="2" ry="2" /> +<text x="831.35" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (238 samples, 0.02%)</title><rect x="340.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="343.89" y="111.5" ></text> +</g> +<g > +<title>/fd (149 samples, 0.01%)</title><rect x="632.9" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="635.94" y="175.5" ></text> +</g> +<g > +<title>/desktop-directories (254 samples, 0.02%)</title><rect x="972.6" y="165" width="0.3" height="15.0" fill="rgb(237,152,36)" rx="2" ry="2" /> +<text x="975.62" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_openat (767 samples, 0.06%)</title><rect x="319.6" y="181" width="0.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="322.56" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_lseek (174 samples, 0.01%)</title><rect x="734.2" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="737.21" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (202 samples, 0.02%)</title><rect x="379.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="381.96" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_getdents64 (112 samples, 0.01%)</title><rect x="310.3" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="313.33" y="175.5" ></text> +</g> +<g > +<title>/helix (1,362 samples, 0.11%)</title><rect x="842.0" y="165" width="1.3" height="15.0" fill="rgb(248,132,47)" rx="2" ry="2" /> +<text x="844.98" y="175.5" ></text> +</g> +<g > +<title>/e3 (848 samples, 0.07%)</title><rect x="332.2" y="133" width="0.8" height="15.0" fill="rgb(243,154,42)" rx="2" ry="2" /> +<text x="335.15" y="143.5" ></text> +</g> +<g > +<title>/Brave-Browser (619 samples, 0.05%)</title><rect x="433.1" y="85" width="0.6" height="15.0" fill="rgb(240,154,39)" rx="2" ry="2" /> +<text x="436.08" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_openat (191 samples, 0.02%)</title><rect x="843.7" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="846.67" y="159.5" ></text> +</g> +<g > +<title>/3c (266 samples, 0.02%)</title><rect x="350.1" y="117" width="0.2" height="15.0" fill="rgb(223,128,20)" rx="2" ry="2" /> +<text x="353.07" y="127.5" ></text> +</g> +<g > +<title>/share (1,438 samples, 0.12%)</title><rect x="1153.7" y="133" width="1.3" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="1156.65" y="143.5" ></text> +</g> +<g > +<title>/golang (26,877 samples, 2.20%)</title><rect x="846.6" y="165" width="26.0" height="15.0" fill="rgb(249,144,48)" rx="2" ry="2" /> +<text x="849.62" y="175.5" >/..</text> +</g> +<g > +<title>syscall`enter_newfstatat (262 samples, 0.02%)</title><rect x="371.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="374.88" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (186 samples, 0.02%)</title><rect x="876.2" y="133" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="879.20" y="143.5" ></text> +</g> +<g > +<title>/1655713 (133 samples, 0.01%)</title><rect x="514.1" y="181" width="0.1" height="15.0" fill="rgb(242,129,41)" rx="2" ry="2" /> +<text x="517.11" y="191.5" ></text> +</g> +<g > +<title>/96 (248 samples, 0.02%)</title><rect x="371.2" y="117" width="0.2" height="15.0" fill="rgb(238,144,36)" rx="2" ry="2" /> +<text x="374.19" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (279 samples, 0.02%)</title><rect x="775.4" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="778.40" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_read (558 samples, 0.05%)</title><rect x="776.3" y="69" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="779.26" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (274 samples, 0.02%)</title><rect x="360.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="363.77" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (235 samples, 0.02%)</title><rect x="346.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="349.86" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (254 samples, 0.02%)</title><rect x="337.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="340.69" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_openat (282 samples, 0.02%)</title><rect x="823.7" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="826.74" y="79.5" ></text> +</g> +<g > +<title>/4imrokjd.default-release-1736024643281 (18,097 samples, 1.48%)</title><rect x="415.1" y="133" width="17.5" height="15.0" fill="rgb(236,104,35)" rx="2" ry="2" /> +<text x="418.09" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_read (576 samples, 0.05%)</title><rect x="783.1" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="786.10" y="79.5" ></text> +</g> +<g > +<title>/76 (246 samples, 0.02%)</title><rect x="363.7" y="117" width="0.2" height="15.0" fill="rgb(240,154,38)" rx="2" ry="2" /> +<text x="366.69" y="127.5" ></text> +</g> +<g > +<title>/90 (214 samples, 0.02%)</title><rect x="369.8" y="117" width="0.3" height="15.0" fill="rgb(231,163,28)" rx="2" ry="2" /> +<text x="372.84" y="127.5" ></text> +</g> +<g > +<title>/19 (130 samples, 0.01%)</title><rect x="528.6" y="181" width="0.2" height="15.0" fill="rgb(229,119,27)" rx="2" ry="2" /> +<text x="531.65" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (254 samples, 0.02%)</title><rect x="366.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="368.98" y="111.5" ></text> +</g> +<g > +<title>.ruby-lsp (118 samples, 0.01%)</title><rect x="257.0" y="197" width="0.1" height="15.0" fill="rgb(246,132,45)" rx="2" ry="2" /> +<text x="260.00" y="207.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (402 samples, 0.03%)</title><rect x="303.2" y="181" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="306.16" y="191.5" ></text> +</g> +<g > +<title>proc (320,578 samples, 26.27%)</title><rect x="450.0" y="197" width="310.0" height="15.0" fill="rgb(234,184,31)" rx="2" ry="2" /> +<text x="453.02" y="207.5" >proc</text> +</g> +<g > +<title>syscall`enter_readlinkat (4,932 samples, 0.40%)</title><rect x="519.0" y="149" width="4.8" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="521.98" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_read (109 samples, 0.01%)</title><rect x="738.6" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="741.60" y="159.5" ></text> +</g> +<g > +<title>/5d (261 samples, 0.02%)</title><rect x="357.8" y="117" width="0.2" height="15.0" fill="rgb(237,115,35)" rx="2" ry="2" /> +<text x="360.79" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (246 samples, 0.02%)</title><rect x="386.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="389.17" y="111.5" ></text> +</g> +<g > +<title>runtimeorg.gnome.Platform.Locale (144 samples, 0.01%)</title><rect x="764.1" y="197" width="0.2" height="15.0" fill="rgb(242,156,41)" rx="2" ry="2" /> +<text x="767.13" y="207.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (288 samples, 0.02%)</title><rect x="385.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="388.67" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_openat (138 samples, 0.01%)</title><rect x="873.7" y="133" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="876.73" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (2,144 samples, 0.18%)</title><rect x="260.3" y="181" width="2.0" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="263.26" y="191.5" ></text> +</g> +<g > +<title>/28 (220 samples, 0.02%)</title><rect x="345.6" y="117" width="0.2" height="15.0" fill="rgb(230,117,27)" rx="2" ry="2" /> +<text x="348.57" y="127.5" ></text> +</g> +<g > +<title>/17 (247 samples, 0.02%)</title><rect x="341.6" y="117" width="0.2" height="15.0" fill="rgb(233,126,30)" rx="2" ry="2" /> +<text x="344.59" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_read (576 samples, 0.05%)</title><rect x="815.5" y="69" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="818.47" y="79.5" ></text> +</g> +<g > +<title>/1319610 (131 samples, 0.01%)</title><rect x="478.7" y="181" width="0.1" height="15.0" fill="rgb(231,139,29)" rx="2" ry="2" /> +<text x="481.71" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_lseek (174 samples, 0.01%)</title><rect x="471.2" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="474.18" y="175.5" ></text> +</g> +<g > +<title>/9d (191 samples, 0.02%)</title><rect x="372.9" y="117" width="0.1" height="15.0" fill="rgb(245,150,44)" rx="2" ry="2" /> +<text x="375.86" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_write (467 samples, 0.04%)</title><rect x="325.9" y="117" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="328.93" y="127.5" ></text> +</g> +<g > +<title> (8,467 samples, 0.69%)</title><rect x="258.3" y="197" width="8.2" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" /> +<text x="261.31" y="207.5" ></text> +</g> +<g > +<title>/125 (1,510 samples, 0.12%)</title><rect x="470.9" y="181" width="1.5" height="15.0" fill="rgb(242,142,41)" rx="2" ry="2" /> +<text x="473.94" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_close (244 samples, 0.02%)</title><rect x="470.9" y="165" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="473.94" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (211 samples, 0.02%)</title><rect x="352.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="355.61" y="111.5" ></text> +</g> +<g > +<title>/38 (232 samples, 0.02%)</title><rect x="349.1" y="117" width="0.3" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" /> +<text x="352.15" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="825.4" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="828.43" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_read (619 samples, 0.05%)</title><rect x="1135.2" y="149" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1138.21" y="159.5" ></text> +</g> +<g > +<title>/.cargo (121 samples, 0.01%)</title><rect x="405.2" y="165" width="0.1" height="15.0" fill="rgb(244,154,43)" rx="2" ry="2" /> +<text x="408.15" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_write (205 samples, 0.02%)</title><rect x="408.1" y="117" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="411.06" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_close (287 samples, 0.02%)</title><rect x="810.9" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="813.91" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (22,291 samples, 1.83%)</title><rect x="272.6" y="165" width="21.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="275.60" y="175.5" >s..</text> +</g> +<g > +<title>/5c (265 samples, 0.02%)</title><rect x="357.5" y="117" width="0.3" height="15.0" fill="rgb(221,118,18)" rx="2" ry="2" /> +<text x="360.53" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_access (540 samples, 0.04%)</title><rect x="310.6" y="149" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="313.57" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_read (576 samples, 0.05%)</title><rect x="806.9" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="809.93" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_read (13,743 samples, 1.13%)</title><rect x="999.4" y="117" width="13.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1002.35" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_read (10,509 samples, 0.86%)</title><rect x="749.7" y="181" width="10.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="752.71" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_close (284 samples, 0.02%)</title><rect x="799.0" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="801.96" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_read (1,209 samples, 0.10%)</title><rect x="408.4" y="149" width="1.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="411.42" y="159.5" ></text> +</g> +<g > +<title>/refs (729 samples, 0.06%)</title><rect x="1159.8" y="133" width="0.7" height="15.0" fill="rgb(239,137,37)" rx="2" ry="2" /> +<text x="1162.78" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_close (288 samples, 0.02%)</title><rect x="776.8" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="779.80" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_openat (124 samples, 0.01%)</title><rect x="1153.1" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1156.08" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_read (231 samples, 0.02%)</title><rect x="765.4" y="133" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="768.41" y="143.5" ></text> +</g> +<g > +<title>/6032 (111 samples, 0.01%)</title><rect x="733.9" y="181" width="0.1" height="15.0" fill="rgb(247,123,46)" rx="2" ry="2" /> +<text x="736.86" y="191.5" ></text> +</g> +<g > +<title>sys (69,823 samples, 5.72%)</title><rect x="765.0" y="197" width="67.5" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" /> +<text x="768.00" y="207.5" >sys</text> +</g> +<g > +<title>syscall`enter_close (284 samples, 0.02%)</title><rect x="802.4" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="805.36" y="79.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.clocks.slice (1,776 samples, 0.15%)</title><rect x="814.3" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="817.31" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_openat (1,023 samples, 0.08%)</title><rect x="968.8" y="149" width="0.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="971.75" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (250 samples, 0.02%)</title><rect x="347.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="350.09" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="806.7" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="809.65" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_read (1,933 samples, 0.16%)</title><rect x="866.1" y="117" width="1.8" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="869.05" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (148 samples, 0.01%)</title><rect x="509.8" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="512.78" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (288 samples, 0.02%)</title><rect x="806.0" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="809.05" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (229 samples, 0.02%)</title><rect x="393.7" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="396.73" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_close (1,023 samples, 0.08%)</title><rect x="966.8" y="149" width="1.0" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="969.78" y="159.5" ></text> +</g> +<g > +<title>/56 (291 samples, 0.02%)</title><rect x="356.0" y="117" width="0.3" height="15.0" fill="rgb(230,109,28)" rx="2" ry="2" /> +<text x="359.04" y="127.5" ></text> +</g> +<g > +<title>/app-gnome\x2dsession\x2dmanager.slice (1,766 samples, 0.14%)</title><rect x="824.6" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="827.56" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (219 samples, 0.02%)</title><rect x="470.2" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="473.17" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_read (176 samples, 0.01%)</title><rect x="850.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="853.19" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (250 samples, 0.02%)</title><rect x="499.6" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="502.59" y="159.5" ></text> +</g> +<g > +<title>/extract-rules (310 samples, 0.03%)</title><rect x="996.4" y="149" width="0.3" height="15.0" fill="rgb(244,163,43)" rx="2" ry="2" /> +<text x="999.40" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (149 samples, 0.01%)</title><rect x="632.9" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="635.94" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (3,493 samples, 0.29%)</title><rect x="860.1" y="117" width="3.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="863.13" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (226 samples, 0.02%)</title><rect x="345.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="348.79" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_read (576 samples, 0.05%)</title><rect x="820.6" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="823.60" y="79.5" ></text> +</g> +<g > +<title>/e2 (245 samples, 0.02%)</title><rect x="388.8" y="117" width="0.3" height="15.0" fill="rgb(245,157,44)" rx="2" ry="2" /> +<text x="391.84" y="127.5" ></text> +</g> +<g > +<title>/wallpaper (319 samples, 0.03%)</title><rect x="407.9" y="133" width="0.4" height="15.0" fill="rgb(243,125,41)" rx="2" ry="2" /> +<text x="410.95" y="143.5" ></text> +</g> +<g > +<title>/74 (237 samples, 0.02%)</title><rect x="363.2" y="117" width="0.2" height="15.0" fill="rgb(243,161,42)" rx="2" ry="2" /> +<text x="366.21" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_close (286 samples, 0.02%)</title><rect x="824.6" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="827.56" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (276 samples, 0.02%)</title><rect x="349.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="352.57" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (283 samples, 0.02%)</title><rect x="812.9" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="815.90" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (178 samples, 0.01%)</title><rect x="479.5" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="482.53" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (335 samples, 0.03%)</title><rect x="818.3" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="821.29" y="79.5" ></text> +</g> +<g > +<title>/share (141 samples, 0.01%)</title><rect x="410.0" y="101" width="0.1" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" /> +<text x="412.97" y="111.5" ></text> +</g> +<g > +<title>/reflectlite (150 samples, 0.01%)</title><rect x="851.8" y="117" width="0.2" height="15.0" fill="rgb(240,137,38)" rx="2" ry="2" /> +<text x="854.84" y="127.5" ></text> +</g> +<g > +<title>/d0 (219 samples, 0.02%)</title><rect x="384.5" y="117" width="0.3" height="15.0" fill="rgb(232,168,30)" rx="2" ry="2" /> +<text x="387.54" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (261 samples, 0.02%)</title><rect x="357.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="360.79" y="111.5" ></text> +</g> +<g > +<title>/8a (287 samples, 0.02%)</title><rect x="368.4" y="117" width="0.3" height="15.0" fill="rgb(234,165,31)" rx="2" ry="2" /> +<text x="371.40" y="127.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Calendar.slice (1,739 samples, 0.14%)</title><rect x="787.1" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="790.09" y="95.5" ></text> +</g> +<g > +<title>/org.videolan.VLC.Locale (121 samples, 0.01%)</title><rect x="1170.2" y="133" width="0.1" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="1173.15" y="143.5" ></text> +</g> +<g > +<title>/org.freedesktop.Platform.Locale (207 samples, 0.02%)</title><rect x="1165.2" y="133" width="0.2" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="1168.21" y="143.5" ></text> +</g> +<g > +<title>/ac (235 samples, 0.02%)</title><rect x="376.3" y="117" width="0.2" height="15.0" fill="rgb(221,118,18)" rx="2" ry="2" /> +<text x="379.27" y="127.5" ></text> +</g> +<g > +<title>/13 (108 samples, 0.01%)</title><rect x="479.3" y="181" width="0.1" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" /> +<text x="482.31" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (329 samples, 0.03%)</title><rect x="794.4" y="69" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="797.43" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (1,187 samples, 0.10%)</title><rect x="747.1" y="181" width="1.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="750.06" y="191.5" ></text> +</g> +<g > +<title>/git (117 samples, 0.01%)</title><rect x="405.4" y="149" width="0.1" height="15.0" fill="rgb(233,124,30)" rx="2" ry="2" /> +<text x="408.36" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_read (435 samples, 0.04%)</title><rect x="506.5" y="165" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="509.46" y="175.5" ></text> +</g> +<g > +<title>/runtime (585 samples, 0.05%)</title><rect x="852.0" y="117" width="0.5" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" /> +<text x="854.98" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (931 samples, 0.08%)</title><rect x="321.5" y="117" width="0.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="324.54" y="127.5" ></text> +</g> +<g > +<title>/io.github.seadve.Kooha.Locale (134 samples, 0.01%)</title><rect x="1161.1" y="133" width="0.1" height="15.0" fill="rgb(242,134,41)" rx="2" ry="2" /> +<text x="1164.07" y="143.5" ></text> +</g> +<g > +<title>/conf.avail (2,187 samples, 0.18%)</title><rect x="972.9" y="149" width="2.2" height="15.0" fill="rgb(233,164,31)" rx="2" ry="2" /> +<text x="975.94" y="159.5" ></text> +</g> +<g > +<title>/86 (254 samples, 0.02%)</title><rect x="367.4" y="117" width="0.2" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="370.40" y="127.5" ></text> +</g> +<g > +<title>/journal (10,664 samples, 0.87%)</title><rect x="1175.9" y="165" width="10.3" height="15.0" fill="rgb(229,128,27)" rx="2" ry="2" /> +<text x="1178.92" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (230 samples, 0.02%)</title><rect x="369.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="372.62" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (284 samples, 0.02%)</title><rect x="824.8" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="827.83" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (196 samples, 0.02%)</title><rect x="1187.5" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1190.54" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (329 samples, 0.03%)</title><rect x="787.6" y="69" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="790.64" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (141 samples, 0.01%)</title><rect x="478.5" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="481.54" y="159.5" ></text> +</g> +<g > +<title>/org.kde.Platform (142 samples, 0.01%)</title><rect x="272.1" y="181" width="0.1" height="15.0" fill="rgb(232,149,30)" rx="2" ry="2" /> +<text x="275.10" y="191.5" ></text> +</g> +<g > +<title>/fd (218 samples, 0.02%)</title><rect x="510.5" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="513.51" y="175.5" ></text> +</g> +<g > +<title>/org.freedesktop.Platform (128 samples, 0.01%)</title><rect x="271.3" y="181" width="0.1" height="15.0" fill="rgb(232,149,30)" rx="2" ry="2" /> +<text x="274.26" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (125 samples, 0.01%)</title><rect x="117.2" y="181" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="120.21" y="191.5" ></text> +</g> +<g > +<title>/1319541 (151 samples, 0.01%)</title><rect x="478.5" y="181" width="0.2" height="15.0" fill="rgb(227,139,24)" rx="2" ry="2" /> +<text x="481.54" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_read (566 samples, 0.05%)</title><rect x="803.5" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="806.50" y="79.5" ></text> +</g> +<g > +<title>/60 (1,520 samples, 0.12%)</title><rect x="734.0" y="181" width="1.4" height="15.0" fill="rgb(222,123,19)" rx="2" ry="2" /> +<text x="736.97" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (250 samples, 0.02%)</title><rect x="376.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="379.50" y="111.5" ></text> +</g> +<g > +<title>/23 (242 samples, 0.02%)</title><rect x="344.4" y="117" width="0.3" height="15.0" fill="rgb(238,134,37)" rx="2" ry="2" /> +<text x="347.42" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_pread64 (154 samples, 0.01%)</title><rect x="1187.7" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1190.74" y="175.5" ></text> +</g> +<g > +<title>/x86_64 (124 samples, 0.01%)</title><rect x="764.3" y="181" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="767.27" y="191.5" ></text> +</g> +<g > +<title>/ssh_config.d (104 samples, 0.01%)</title><rect x="312.2" y="165" width="0.1" height="15.0" fill="rgb(247,126,47)" rx="2" ry="2" /> +<text x="315.22" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="820.0" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="823.00" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_close (108 samples, 0.01%)</title><rect x="437.8" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="440.80" y="143.5" ></text> +</g> +<g > +<title>/mc (176 samples, 0.01%)</title><rect x="1175.6" y="149" width="0.2" height="15.0" fill="rgb(220,113,17)" rx="2" ry="2" /> +<text x="1178.60" y="159.5" ></text> +</g> +<g > +<title>/flathub (190 samples, 0.02%)</title><rect x="1153.5" y="133" width="0.1" height="15.0" fill="rgb(227,158,25)" rx="2" ry="2" /> +<text x="1156.46" y="143.5" ></text> +</g> +<g > +<title>/0d (321 samples, 0.03%)</title><rect x="339.1" y="117" width="0.3" height="15.0" fill="rgb(242,140,41)" rx="2" ry="2" /> +<text x="342.13" y="127.5" ></text> +</g> +<g > +<title>/systemd (125 samples, 0.01%)</title><rect x="961.8" y="165" width="0.1" height="15.0" fill="rgb(240,145,39)" rx="2" ry="2" /> +<text x="964.81" y="175.5" ></text> +</g> +<g > +<title>/fd (3,852 samples, 0.32%)</title><rect x="474.8" y="165" width="3.7" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="477.80" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_close (287 samples, 0.02%)</title><rect x="790.5" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="793.46" y="79.5" ></text> +</g> +<g > +<title>/x86_64 (227 samples, 0.02%)</title><rect x="1166.8" y="117" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="1169.78" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (282 samples, 0.02%)</title><rect x="823.1" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="826.15" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (248 samples, 0.02%)</title><rect x="374.6" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="377.64" y="111.5" ></text> +</g> +<g > +<title>/default (242 samples, 0.02%)</title><rect x="415.1" y="101" width="0.2" height="15.0" fill="rgb(228,152,25)" rx="2" ry="2" /> +<text x="418.10" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (267 samples, 0.02%)</title><rect x="390.0" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="393.04" y="111.5" ></text> +</g> +<g > +<title>/.mozilla (18,103 samples, 1.48%)</title><rect x="415.1" y="165" width="17.5" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="418.09" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (235 samples, 0.02%)</title><rect x="379.8" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="382.83" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (232 samples, 0.02%)</title><rect x="378.1" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="381.14" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (244 samples, 0.02%)</title><rect x="725.2" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="728.16" y="175.5" ></text> +</g> +<g > +<title>/4e (142 samples, 0.01%)</title><rect x="354.2" y="117" width="0.1" height="15.0" fill="rgb(236,117,34)" rx="2" ry="2" /> +<text x="357.20" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_access (1,487 samples, 0.12%)</title><rect x="964.3" y="149" width="1.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="967.31" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (236 samples, 0.02%)</title><rect x="385.4" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="388.44" y="111.5" ></text> +</g> +<g > +<title>/240240 (9,547 samples, 0.78%)</title><rect x="530.1" y="181" width="9.2" height="15.0" fill="rgb(230,130,28)" rx="2" ry="2" /> +<text x="533.10" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_write (138,433 samples, 11.34%)</title><rect x="121.0" y="181" width="133.8" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="123.97" y="191.5" >syscall`enter_wr..</text> +</g> +<g > +<title>syscall`enter_newfstatat (269 samples, 0.02%)</title><rect x="370.2" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="373.24" y="111.5" ></text> +</g> +<g > +<title>/updates-41-x86_64 (20,666 samples, 1.69%)</title><rect x="1109.5" y="117" width="20.0" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> +<text x="1112.50" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (271 samples, 0.02%)</title><rect x="440.1" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="443.06" y="175.5" ></text> +</g> +<g > +<title>/org.gnome.Platform.Locale (218 samples, 0.02%)</title><rect x="271.4" y="181" width="0.3" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" /> +<text x="274.45" y="191.5" ></text> +</g> +<g > +<title>/101990 (420 samples, 0.03%)</title><rect x="450.1" y="181" width="0.4" height="15.0" fill="rgb(232,148,30)" rx="2" ry="2" /> +<text x="453.08" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_close (282 samples, 0.02%)</title><rect x="830.1" y="85" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="833.06" y="95.5" ></text> +</g> +<g > +<title>/encoding (112 samples, 0.01%)</title><rect x="846.9" y="133" width="0.1" height="15.0" fill="rgb(243,157,42)" rx="2" ry="2" /> +<text x="849.93" y="143.5" ></text> +</g> +<g > +<title>/fd (235 samples, 0.02%)</title><rect x="395.1" y="117" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="398.07" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_access (1,485 samples, 0.12%)</title><rect x="962.5" y="149" width="1.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="965.53" y="159.5" ></text> +</g> +<g > +<title>/fd (386 samples, 0.03%)</title><rect x="497.1" y="165" width="0.3" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="500.06" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (126 samples, 0.01%)</title><rect x="437.6" y="117" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="440.56" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (232 samples, 0.02%)</title><rect x="380.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="383.06" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (217 samples, 0.02%)</title><rect x="350.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="353.33" y="111.5" ></text> +</g> +<g > +<title>/06 (255 samples, 0.02%)</title><rect x="337.4" y="117" width="0.3" height="15.0" fill="rgb(235,134,34)" rx="2" ry="2" /> +<text x="340.45" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_openat (191 samples, 0.02%)</title><rect x="739.4" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="742.38" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (250 samples, 0.02%)</title><rect x="392.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="395.36" y="111.5" ></text> +</g> +<g > +<title>/internal (6,640 samples, 0.54%)</title><rect x="847.4" y="133" width="6.4" height="15.0" fill="rgb(229,137,27)" rx="2" ry="2" /> +<text x="850.35" y="143.5" ></text> +</g> +<g > +<title>/1655964 (161 samples, 0.01%)</title><rect x="516.9" y="181" width="0.2" height="15.0" fill="rgb(234,129,32)" rx="2" ry="2" /> +<text x="519.90" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (364 samples, 0.03%)</title><rect x="723.3" y="165" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="726.32" y="175.5" ></text> +</g> +<g > +<title>/b9 (262 samples, 0.02%)</title><rect x="379.2" y="117" width="0.2" height="15.0" fill="rgb(224,94,21)" rx="2" ry="2" /> +<text x="382.15" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (247 samples, 0.02%)</title><rect x="341.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="344.59" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_pwrite64 (169 samples, 0.01%)</title><rect x="960.9" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="963.89" y="143.5" ></text> +</g> +<g > +<title>/18 (233 samples, 0.02%)</title><rect x="341.8" y="117" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> +<text x="344.83" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_openat (880 samples, 0.07%)</title><rect x="865.2" y="117" width="0.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="868.20" y="127.5" ></text> +</g> +<g > +<title>/1655997 (280 samples, 0.02%)</title><rect x="517.1" y="181" width="0.3" height="15.0" fill="rgb(237,129,36)" rx="2" ry="2" /> +<text x="520.08" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (333 samples, 0.03%)</title><rect x="811.5" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="814.47" y="79.5" ></text> +</g> +<g > +<title>/com.brave.Browser (619 samples, 0.05%)</title><rect x="433.1" y="133" width="0.6" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> +<text x="436.08" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (287 samples, 0.02%)</title><rect x="368.4" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="371.40" y="111.5" ></text> +</g> +<g > +<title>/26 (232 samples, 0.02%)</title><rect x="345.1" y="117" width="0.2" height="15.0" fill="rgb(233,124,31)" rx="2" ry="2" /> +<text x="348.12" y="127.5" ></text> +</g> +<g > +<title>/af (238 samples, 0.02%)</title><rect x="377.0" y="117" width="0.2" height="15.0" fill="rgb(233,109,31)" rx="2" ry="2" /> +<text x="380.01" y="127.5" ></text> +</g> +<g > +<title>/04 (251 samples, 0.02%)</title><rect x="336.9" y="117" width="0.3" height="15.0" fill="rgb(239,140,37)" rx="2" ry="2" /> +<text x="339.93" y="127.5" ></text> +</g> +<g > +<title>/79 (194 samples, 0.02%)</title><rect x="364.4" y="117" width="0.2" height="15.0" fill="rgb(235,145,33)" rx="2" ry="2" /> +<text x="367.41" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_close (153 samples, 0.01%)</title><rect x="529.0" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="531.96" y="175.5" ></text> +</g> +<g > +<title>/1655711 (637 samples, 0.05%)</title><rect x="513.5" y="181" width="0.6" height="15.0" fill="rgb(228,129,26)" rx="2" ry="2" /> +<text x="516.49" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (218 samples, 0.02%)</title><rect x="383.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="386.83" y="111.5" ></text> +</g> +<g > +<title>/x86_64 (128 samples, 0.01%)</title><rect x="1161.3" y="117" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="1164.29" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (144 samples, 0.01%)</title><rect x="868.6" y="117" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="871.64" y="127.5" ></text> +</g> +<g > +<title>/shm (235 samples, 0.02%)</title><rect x="302.1" y="181" width="0.2" height="15.0" fill="rgb(228,122,26)" rx="2" ry="2" /> +<text x="305.11" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (975 samples, 0.08%)</title><rect x="870.1" y="117" width="1.0" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="873.13" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_read (570 samples, 0.05%)</title><rect x="818.9" y="69" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="821.89" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (223 samples, 0.02%)</title><rect x="381.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="384.29" y="111.5" ></text> +</g> +<g > +<title>/71 (226 samples, 0.02%)</title><rect x="362.5" y="117" width="0.2" height="15.0" fill="rgb(231,170,29)" rx="2" ry="2" /> +<text x="365.48" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (236 samples, 0.02%)</title><rect x="390.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="393.30" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (1,292 samples, 0.11%)</title><rect x="303.5" y="181" width="1.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="306.55" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (221 samples, 0.02%)</title><rect x="374.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="376.99" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_close (718 samples, 0.06%)</title><rect x="312.8" y="181" width="0.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="315.84" y="191.5" ></text> +</g> +<g > +<title>/Default (577 samples, 0.05%)</title><rect x="433.1" y="69" width="0.5" height="15.0" fill="rgb(228,147,25)" rx="2" ry="2" /> +<text x="436.08" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (3,852 samples, 0.32%)</title><rect x="474.8" y="149" width="3.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="477.80" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_close (287 samples, 0.02%)</title><rect x="771.7" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="774.70" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (269 samples, 0.02%)</title><rect x="351.5" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="354.50" y="111.5" ></text> +</g> +<g > +<title>/66 (246 samples, 0.02%)</title><rect x="359.9" y="117" width="0.2" height="15.0" fill="rgb(229,104,26)" rx="2" ry="2" /> +<text x="362.88" y="127.5" ></text> +</g> +<g > +<title>/applications (6,039 samples, 0.49%)</title><rect x="966.8" y="165" width="5.8" height="15.0" fill="rgb(244,115,43)" rx="2" ry="2" /> +<text x="969.77" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (259 samples, 0.02%)</title><rect x="380.5" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="383.51" y="111.5" ></text> +</g> +<g > +<title>/dmi (141 samples, 0.01%)</title><rect x="766.2" y="149" width="0.1" height="15.0" fill="rgb(232,165,30)" rx="2" ry="2" /> +<text x="769.16" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="804.9" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="807.93" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (210 samples, 0.02%)</title><rect x="349.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="352.37" y="111.5" ></text> +</g> +<g > +<title>/1637076 (5,912 samples, 0.48%)</title><rect x="500.5" y="181" width="5.7" height="15.0" fill="rgb(248,129,47)" rx="2" ry="2" /> +<text x="503.45" y="191.5" ></text> +</g> +<g > +<title>/10 (208 samples, 0.02%)</title><rect x="340.0" y="117" width="0.2" height="15.0" fill="rgb(227,148,25)" rx="2" ry="2" /> +<text x="342.97" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_openat (1,778 samples, 0.15%)</title><rect x="263.3" y="181" width="1.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="266.26" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_read (1,698 samples, 0.14%)</title><rect x="440.4" y="165" width="1.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="443.44" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (280 samples, 0.02%)</title><rect x="517.1" y="149" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="520.08" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (1,101 samples, 0.09%)</title><rect x="512.4" y="149" width="1.0" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="515.38" y="159.5" ></text> +</g> +<g > +<title>/zsh (580 samples, 0.05%)</title><rect x="996.8" y="165" width="0.5" height="15.0" fill="rgb(241,146,39)" rx="2" ry="2" /> +<text x="999.76" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (225 samples, 0.02%)</title><rect x="368.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="371.93" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (244 samples, 0.02%)</title><rect x="369.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="372.39" y="111.5" ></text> +</g> +<g > +<title>/fd (85,237 samples, 6.98%)</title><rect x="635.6" y="165" width="82.4" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="638.62" y="175.5" >/fd</text> +</g> +<g > +<title>/1656246 (5,099 samples, 0.42%)</title><rect x="519.0" y="181" width="4.9" height="15.0" fill="rgb(237,129,36)" rx="2" ry="2" /> +<text x="521.98" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_read (2,554 samples, 0.21%)</title><rect x="969.7" y="149" width="2.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="972.74" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_close (106 samples, 0.01%)</title><rect x="850.7" y="101" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="853.72" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_read (1,309 samples, 0.11%)</title><rect x="448.2" y="181" width="1.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="451.22" y="191.5" ></text> +</g> +<g > +<title>/1647041 (153 samples, 0.01%)</title><rect x="509.8" y="181" width="0.1" height="15.0" fill="rgb(230,129,28)" rx="2" ry="2" /> +<text x="512.78" y="191.5" ></text> +</g> +<g > +<title>/site-functions (126 samples, 0.01%)</title><rect x="997.2" y="149" width="0.1" height="15.0" fill="rgb(244,119,43)" rx="2" ry="2" /> +<text x="1000.18" y="159.5" ></text> +</g> +<g > +<title>/b1 (255 samples, 0.02%)</title><rect x="377.5" y="117" width="0.2" height="15.0" fill="rgb(220,120,17)" rx="2" ry="2" /> +<text x="380.46" y="127.5" ></text> +</g> +<g > +<title>/cgroup (68,035 samples, 5.58%)</title><rect x="766.3" y="165" width="65.8" height="15.0" fill="rgb(241,151,40)" rx="2" ry="2" /> +<text x="769.32" y="175.5" >/cgroup</text> +</g> +<g > +<title>/55 (263 samples, 0.02%)</title><rect x="355.8" y="117" width="0.2" height="15.0" fill="rgb(232,112,29)" rx="2" ry="2" /> +<text x="358.78" y="127.5" ></text> +</g> +<g > +<title>/org.freedesktop.Platform.openh264 (358 samples, 0.03%)</title><rect x="1165.9" y="133" width="0.3" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" /> +<text x="1168.87" y="143.5" ></text> +</g> +<g > +<title>/.var (627 samples, 0.05%)</title><rect x="433.1" y="165" width="0.6" height="15.0" fill="rgb(231,131,28)" rx="2" ry="2" /> +<text x="436.08" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_pread64 (2,377 samples, 0.19%)</title><rect x="430.3" y="117" width="2.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="433.26" y="127.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.OnlineAccounts.slice (1,763 samples, 0.14%)</title><rect x="800.7" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="803.66" y="95.5" ></text> +</g> +<g > +<title>/75 (255 samples, 0.02%)</title><rect x="363.4" y="117" width="0.3" height="15.0" fill="rgb(242,157,40)" rx="2" ry="2" /> +<text x="366.44" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_openat (6,854 samples, 0.56%)</title><rect x="52.0" y="181" width="6.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="54.97" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (224 samples, 0.02%)</title><rect x="377.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="380.93" y="111.5" ></text> +</g> +<g > +<title>/5f (221 samples, 0.02%)</title><rect x="358.3" y="117" width="0.2" height="15.0" fill="rgb(233,109,31)" rx="2" ry="2" /> +<text x="361.33" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_write (1,401 samples, 0.11%)</title><rect x="265.1" y="181" width="1.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="268.14" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (249 samples, 0.02%)</title><rect x="387.6" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="390.62" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_access (1,484 samples, 0.12%)</title><rect x="839.4" y="149" width="1.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="842.37" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (717 samples, 0.06%)</title><rect x="405.6" y="101" width="0.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="408.58" y="111.5" ></text> +</g> +<g > +<title>/info (138 samples, 0.01%)</title><rect x="255.8" y="181" width="0.1" height="15.0" fill="rgb(248,137,47)" rx="2" ry="2" /> +<text x="258.79" y="191.5" ></text> +</g> +<g > +<title>/9c (267 samples, 0.02%)</title><rect x="372.6" y="117" width="0.3" height="15.0" fill="rgb(229,154,26)" rx="2" ry="2" /> +<text x="375.60" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="797.8" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="800.81" y="79.5" ></text> +</g> +<g > +<title>/39 (211 samples, 0.02%)</title><rect x="349.4" y="117" width="0.2" height="15.0" fill="rgb(227,109,24)" rx="2" ry="2" /> +<text x="352.37" y="127.5" ></text> +</g> +<g > +<title>/4781 (110 samples, 0.01%)</title><rect x="719.0" y="181" width="0.1" height="15.0" fill="rgb(233,111,31)" rx="2" ry="2" /> +<text x="721.96" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_lseek (173 samples, 0.01%)</title><rect x="723.1" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="726.15" y="175.5" ></text> +</g> +<g > +<title>/x86_64 (271 samples, 0.02%)</title><rect x="270.6" y="165" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="273.55" y="175.5" ></text> +</g> +<g > +<title>/97 (244 samples, 0.02%)</title><rect x="371.4" y="117" width="0.3" height="15.0" fill="rgb(236,141,34)" rx="2" ry="2" /> +<text x="374.43" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_read (564 samples, 0.05%)</title><rect x="789.9" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="792.91" y="79.5" ></text> +</g> +<g > +<title>/bin (104 samples, 0.01%)</title><rect x="432.6" y="149" width="0.1" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="435.60" y="159.5" ></text> +</g> +<g > +<title>/heads (172 samples, 0.01%)</title><rect x="256.5" y="181" width="0.2" height="15.0" fill="rgb(244,132,43)" rx="2" ry="2" /> +<text x="259.50" y="191.5" ></text> +</g> +<g > +<title>/4f (309 samples, 0.03%)</title><rect x="354.3" y="117" width="0.3" height="15.0" fill="rgb(235,114,33)" rx="2" ry="2" /> +<text x="357.34" y="127.5" ></text> +</g> +<g > +<title>/ccache (1,837 samples, 0.15%)</title><rect x="839.4" y="165" width="1.7" height="15.0" fill="rgb(245,164,44)" rx="2" ry="2" /> +<text x="842.37" y="175.5" ></text> +</g> +<g > +<title>/2c (251 samples, 0.02%)</title><rect x="346.4" y="117" width="0.3" height="15.0" fill="rgb(225,134,22)" rx="2" ry="2" /> +<text x="349.42" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (254 samples, 0.02%)</title><rect x="377.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="380.46" y="111.5" ></text> +</g> +<g > +<title>/fmt (223 samples, 0.02%)</title><rect x="847.1" y="133" width="0.3" height="15.0" fill="rgb(229,155,26)" rx="2" ry="2" /> +<text x="850.14" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_getdents64 (414 samples, 0.03%)</title><rect x="1170.4" y="133" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1173.41" y="143.5" ></text> +</g> +<g > +<title>/objects (579 samples, 0.05%)</title><rect x="434.0" y="117" width="0.6" height="15.0" fill="rgb(237,162,35)" rx="2" ry="2" /> +<text x="437.03" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_close (283 samples, 0.02%)</title><rect x="812.6" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="815.62" y="79.5" ></text> +</g> +<g > +<title>/app.slice (60,319 samples, 4.94%)</title><rect x="770.0" y="101" width="58.3" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="773.02" y="111.5" >/app.s..</text> +</g> +<g > +<title>/hawkey (15,391 samples, 1.26%)</title><rect x="997.8" y="133" width="14.8" height="15.0" fill="rgb(243,145,42)" rx="2" ry="2" /> +<text x="1000.76" y="143.5" ></text> +</g> +<g > +<title>syscall`enter_close (189 samples, 0.02%)</title><rect x="724.9" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="727.86" y="175.5" ></text> +</g> +<g > +<title>/cb (289 samples, 0.02%)</title><rect x="383.3" y="117" width="0.3" height="15.0" fill="rgb(233,167,31)" rx="2" ry="2" /> +<text x="386.35" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_openat (282 samples, 0.02%)</title><rect x="789.6" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="792.64" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_close (186 samples, 0.02%)</title><rect x="435.3" y="117" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="438.26" y="127.5" ></text> +</g> +<g > +<title>/4521 (85,671 samples, 7.02%)</title><rect x="635.6" y="181" width="82.9" height="15.0" fill="rgb(229,117,26)" rx="2" ry="2" /> +<text x="638.62" y="191.5" >/4521</text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Calculator.SearchProvider.slice (1,776 samples, 0.15%)</title><rect x="785.4" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="788.38" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (334 samples, 0.03%)</title><rect x="801.2" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="804.21" y="79.5" ></text> +</g> +<g > +<title>/x86_64 (113 samples, 0.01%)</title><rect x="764.5" y="181" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="767.46" y="191.5" ></text> +</g> +<g > +<title>/5.15-24.08 (113 samples, 0.01%)</title><rect x="1169.7" y="101" width="0.1" height="15.0" fill="rgb(233,96,30)" rx="2" ry="2" /> +<text x="1172.66" y="111.5" ></text> +</g> +<g > +<title>/23.08-extra (158 samples, 0.01%)</title><rect x="1161.8" y="101" width="0.2" height="15.0" fill="rgb(232,134,30)" rx="2" ry="2" /> +<text x="1164.83" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (248 samples, 0.02%)</title><rect x="395.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="398.30" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_read (488 samples, 0.04%)</title><rect x="498.4" y="165" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="501.43" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (168 samples, 0.01%)</title><rect x="255.0" y="181" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="258.02" y="191.5" ></text> +</g> +<g > +<title>/3f (221 samples, 0.02%)</title><rect x="350.8" y="117" width="0.2" height="15.0" fill="rgb(236,119,34)" rx="2" ry="2" /> +<text x="353.82" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (249 samples, 0.02%)</title><rect x="390.7" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="393.72" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (232 samples, 0.02%)</title><rect x="438.0" y="133" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="441.00" y="143.5" ></text> +</g> +<g > +<title>/fd (2,793 samples, 0.23%)</title><rect x="524.3" y="165" width="2.7" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="527.29" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_openat (247 samples, 0.02%)</title><rect x="734.7" y="165" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="737.73" y="175.5" ></text> +</g> +<g > +<title>/fd (20,169 samples, 1.65%)</title><rect x="450.6" y="165" width="19.5" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="453.62" y="175.5" ></text> +</g> +<g > +<title>/bin (135 samples, 0.01%)</title><rect x="433.7" y="165" width="0.1" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" /> +<text x="436.69" y="175.5" ></text> +</g> +<g > +<title>/1e (239 samples, 0.02%)</title><rect x="343.3" y="117" width="0.2" height="15.0" fill="rgb(240,132,38)" rx="2" ry="2" /> +<text x="346.26" y="127.5" ></text> +</g> +<g > +<title>/3e (289 samples, 0.02%)</title><rect x="350.5" y="117" width="0.3" height="15.0" fill="rgb(237,122,36)" rx="2" ry="2" /> +<text x="353.54" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (289 samples, 0.02%)</title><rect x="375.6" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="378.60" y="111.5" ></text> +</g> +<g > +<title>/device:1b (147 samples, 0.01%)</title><rect x="765.8" y="117" width="0.1" height="15.0" fill="rgb(228,152,25)" rx="2" ry="2" /> +<text x="768.78" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_write (135 samples, 0.01%)</title><rect x="841.3" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="844.32" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_statx (126 samples, 0.01%)</title><rect x="1174.9" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1177.92" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="791.3" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="794.34" y="79.5" ></text> +</g> +<g > +<title>/fd (435 samples, 0.04%)</title><rect x="511.9" y="165" width="0.4" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="514.88" y="175.5" ></text> +</g> +<g > +<title>/lib64 (7,110 samples, 0.58%)</title><rect x="839.3" y="181" width="6.9" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" /> +<text x="842.34" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_close (288 samples, 0.02%)</title><rect x="814.3" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="817.31" y="79.5" ></text> +</g> +<g > +<title>/fa (231 samples, 0.02%)</title><rect x="394.4" y="117" width="0.2" height="15.0" fill="rgb(231,155,29)" rx="2" ry="2" /> +<text x="397.42" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (262 samples, 0.02%)</title><rect x="338.4" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="341.41" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_close (189 samples, 0.02%)</title><rect x="843.3" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="846.30" y="159.5" ></text> +</g> +<g > +<title>/moz-extension+++38ae2600-8ac6-4c43-a481-a2a6ff8f036b (242 samples, 0.02%)</title><rect x="415.1" y="85" width="0.2" height="15.0" fill="rgb(228,113,25)" rx="2" ry="2" /> +<text x="418.10" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_pread64 (1,034 samples, 0.08%)</title><rect x="1187.9" y="165" width="1.0" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1190.92" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (221 samples, 0.02%)</title><rect x="373.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="376.29" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (266 samples, 0.02%)</title><rect x="350.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="353.07" y="111.5" ></text> +</g> +<g > +<title>/84 (244 samples, 0.02%)</title><rect x="367.0" y="117" width="0.2" height="15.0" fill="rgb(242,156,41)" rx="2" ry="2" /> +<text x="369.96" y="127.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Contacts.SearchProvider.slice (1,770 samples, 0.15%)</title><rect x="790.5" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="793.46" y="95.5" ></text> +</g> +<g > +<title>/c6 (243 samples, 0.02%)</title><rect x="382.2" y="117" width="0.3" height="15.0" fill="rgb(240,154,38)" rx="2" ry="2" /> +<text x="385.22" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (138 samples, 0.01%)</title><rect x="439.9" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="442.92" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_close (288 samples, 0.02%)</title><rect x="805.8" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="808.77" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (214 samples, 0.02%)</title><rect x="364.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="367.20" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (288 samples, 0.02%)</title><rect x="826.8" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="829.82" y="95.5" ></text> +</g> +<g > +<title>/files (6,456 samples, 0.53%)</title><rect x="398.7" y="133" width="6.2" height="15.0" fill="rgb(244,129,43)" rx="2" ry="2" /> +<text x="401.68" y="143.5" ></text> +</g> +<g > +<title>/03 (220 samples, 0.02%)</title><rect x="336.7" y="117" width="0.2" height="15.0" fill="rgb(241,144,39)" rx="2" ry="2" /> +<text x="339.72" y="127.5" ></text> +</g> +<g > +<title>/f9 (248 samples, 0.02%)</title><rect x="394.2" y="117" width="0.2" height="15.0" fill="rgb(231,129,29)" rx="2" ry="2" /> +<text x="397.18" y="127.5" ></text> +</g> +<g > +<title>/runtime (195 samples, 0.02%)</title><rect x="1160.2" y="85" width="0.2" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" /> +<text x="1163.21" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_close (188 samples, 0.02%)</title><rect x="738.7" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="741.71" y="175.5" ></text> +</g> +<g > +<title>/x86_64 (176 samples, 0.01%)</title><rect x="763.5" y="181" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" /> +<text x="766.50" y="191.5" ></text> +</g> +<g > +<title>/09 (240 samples, 0.02%)</title><rect x="338.2" y="117" width="0.2" height="15.0" fill="rgb(230,124,28)" rx="2" ry="2" /> +<text x="341.18" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (287 samples, 0.02%)</title><rect x="780.5" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="783.50" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (238 samples, 0.02%)</title><rect x="377.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="380.01" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (239 samples, 0.02%)</title><rect x="343.0" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="346.03" y="111.5" ></text> +</g> +<g > +<title>/a4 (241 samples, 0.02%)</title><rect x="374.4" y="117" width="0.2" height="15.0" fill="rgb(233,115,31)" rx="2" ry="2" /> +<text x="377.41" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="777.7" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="780.68" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (251 samples, 0.02%)</title><rect x="346.4" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="349.42" y="111.5" ></text> +</g> +<g > +<title>/31 (208 samples, 0.02%)</title><rect x="347.6" y="117" width="0.2" height="15.0" fill="rgb(223,135,20)" rx="2" ry="2" /> +<text x="350.59" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_ioctl (288 samples, 0.02%)</title><rect x="782.2" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="785.22" y="79.5" ></text> +</g> +<g > +<title>/sync (598 samples, 0.05%)</title><rect x="868.9" y="133" width="0.6" height="15.0" fill="rgb(238,145,36)" rx="2" ry="2" /> +<text x="871.91" y="143.5" ></text> +</g> +<g > +<title>/a6 (250 samples, 0.02%)</title><rect x="374.9" y="117" width="0.2" height="15.0" fill="rgb(230,109,28)" rx="2" ry="2" /> +<text x="377.88" y="127.5" ></text> +</g> +<g > +<title>/repo (730 samples, 0.06%)</title><rect x="1159.8" y="149" width="0.7" height="15.0" fill="rgb(247,137,46)" rx="2" ry="2" /> +<text x="1162.78" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_write (290 samples, 0.02%)</title><rect x="329.8" y="117" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="332.83" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (260 samples, 0.02%)</title><rect x="352.8" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="355.81" y="111.5" ></text> +</g> +<g > +<title>/class (760 samples, 0.06%)</title><rect x="765.0" y="181" width="0.8" height="15.0" fill="rgb(240,173,38)" rx="2" ry="2" /> +<text x="768.03" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (8,170 samples, 0.67%)</title><rect x="725.9" y="149" width="7.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="728.94" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (250 samples, 0.02%)</title><rect x="356.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="359.59" y="111.5" ></text> +</g> +<g > +<title>internal (183 samples, 0.01%)</title><rect x="443.0" y="197" width="0.2" height="15.0" fill="rgb(229,164,27)" rx="2" ry="2" /> +<text x="446.03" y="207.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (341 samples, 0.03%)</title><rect x="1137.4" y="149" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1140.43" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_close (288 samples, 0.02%)</title><rect x="819.4" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="822.44" y="79.5" ></text> +</g> +<g > +<title>/1655796 (241 samples, 0.02%)</title><rect x="515.6" y="181" width="0.3" height="15.0" fill="rgb(240,129,39)" rx="2" ry="2" /> +<text x="518.63" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_close (15,761 samples, 1.29%)</title><rect x="10.1" y="181" width="15.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="13.09" y="191.5" ></text> +</g> +<g > +<title>/gio (413 samples, 0.03%)</title><rect x="841.4" y="165" width="0.4" height="15.0" fill="rgb(241,124,40)" rx="2" ry="2" /> +<text x="844.45" y="175.5" ></text> +</g> +<g > +<title>/6c (281 samples, 0.02%)</title><rect x="361.3" y="117" width="0.3" height="15.0" fill="rgb(220,113,17)" rx="2" ry="2" /> +<text x="364.30" y="127.5" ></text> +</g> +<g > +<title>/ed (254 samples, 0.02%)</title><rect x="391.4" y="117" width="0.3" height="15.0" fill="rgb(245,150,44)" rx="2" ry="2" /> +<text x="394.43" y="127.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Characters.slice (1,739 samples, 0.14%)</title><rect x="788.8" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="791.77" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (293 samples, 0.02%)</title><rect x="364.6" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="367.59" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_close (281 samples, 0.02%)</title><rect x="775.1" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="778.13" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_pwrite64 (160 samples, 0.01%)</title><rect x="433.5" y="53" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="436.48" y="63.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (252 samples, 0.02%)</title><rect x="355.1" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="358.11" y="111.5" ></text> +</g> +<g > +<title>/run (382 samples, 0.03%)</title><rect x="1187.5" y="181" width="0.4" height="15.0" fill="rgb(243,124,41)" rx="2" ry="2" /> +<text x="1190.52" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_close (254 samples, 0.02%)</title><rect x="854.4" y="117" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="857.41" y="127.5" ></text> +</g> +<g > +<title>/.rakubrew (223 samples, 0.02%)</title><rect x="432.6" y="165" width="0.2" height="15.0" fill="rgb(232,144,30)" rx="2" ry="2" /> +<text x="435.60" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_statx (3,590 samples, 0.29%)</title><rect x="117.4" y="181" width="3.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="120.37" y="191.5" ></text> +</g> +<g > +<title>/fd (240 samples, 0.02%)</title><rect x="515.6" y="165" width="0.3" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="518.63" y="175.5" ></text> +</g> +<g > +<title>/bd (232 samples, 0.02%)</title><rect x="380.1" y="117" width="0.2" height="15.0" fill="rgb(236,110,34)" rx="2" ry="2" /> +<text x="383.06" y="127.5" ></text> +</g> +<g > +<title>/65 (240 samples, 0.02%)</title><rect x="359.7" y="117" width="0.2" height="15.0" fill="rgb(231,107,28)" rx="2" ry="2" /> +<text x="362.65" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (243 samples, 0.02%)</title><rect x="382.2" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="385.22" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (255 samples, 0.02%)</title><rect x="398.0" y="117" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="401.03" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_openat (284 samples, 0.02%)</title><rect x="803.2" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="806.23" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_read (139 samples, 0.01%)</title><rect x="858.9" y="117" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="861.86" y="127.5" ></text> +</g> +<g > +<title>/1655715 (264 samples, 0.02%)</title><rect x="514.2" y="181" width="0.3" height="15.0" fill="rgb(239,129,37)" rx="2" ry="2" /> +<text x="517.25" y="191.5" ></text> +</g> +<g > +<title>/shims (104 samples, 0.01%)</title><rect x="432.7" y="149" width="0.1" height="15.0" fill="rgb(229,122,26)" rx="2" ry="2" /> +<text x="435.70" y="159.5" ></text> +</g> +<g > +<title>/system (245 samples, 0.02%)</title><rect x="765.9" y="165" width="0.3" height="15.0" fill="rgb(231,145,29)" rx="2" ry="2" /> +<text x="768.92" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (164 samples, 0.01%)</title><rect x="510.9" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="513.89" y="159.5" ></text> +</g> +<g > +<title>/sbin (243 samples, 0.02%)</title><rect x="966.5" y="181" width="0.2" height="15.0" fill="rgb(247,142,46)" rx="2" ry="2" /> +<text x="969.48" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_write (881 samples, 0.07%)</title><rect x="301.3" y="165" width="0.8" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="304.26" y="175.5" ></text> +</g> +<g > +<title>/fd (1,101 samples, 0.09%)</title><rect x="512.4" y="165" width="1.0" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="515.38" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="828.9" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="831.90" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (309 samples, 0.03%)</title><rect x="354.3" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="357.34" y="111.5" ></text> +</g> +<g > +<title>/paul (125,817 samples, 10.31%)</title><rect x="321.0" y="181" width="121.7" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" /> +<text x="324.05" y="191.5" >/paul</text> +</g> +<g > +<title>syscall`enter_newfstatat (230 samples, 0.02%)</title><rect x="342.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="345.56" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (244 samples, 0.02%)</title><rect x="371.4" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="374.43" y="111.5" ></text> +</g> +<g > +<title>/org.freedesktop.Platform.GL.default (271 samples, 0.02%)</title><rect x="270.6" y="181" width="0.2" height="15.0" fill="rgb(228,149,25)" rx="2" ry="2" /> +<text x="273.55" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (201 samples, 0.02%)</title><rect x="394.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="397.65" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_read (576 samples, 0.05%)</title><rect x="808.6" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="811.65" y="79.5" ></text> +</g> +<g > +<title>/fd (13,339 samples, 1.09%)</title><rect x="484.1" y="165" width="12.9" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="487.12" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (266 samples, 0.02%)</title><rect x="387.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="390.86" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_fcntl (140 samples, 0.01%)</title><rect x="852.0" y="85" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="855.01" y="95.5" ></text> +</g> +<g > +<title>/98 (229 samples, 0.02%)</title><rect x="371.7" y="117" width="0.2" height="15.0" fill="rgb(234,138,32)" rx="2" ry="2" /> +<text x="374.66" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_read (501 samples, 0.04%)</title><rect x="856.2" y="117" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="859.20" y="127.5" ></text> +</g> +<g > +<title>/app (627 samples, 0.05%)</title><rect x="433.1" y="149" width="0.6" height="15.0" fill="rgb(248,115,47)" rx="2" ry="2" /> +<text x="436.08" y="159.5" ></text> +</g> +<g > +<title>/app-dbus\x2d:1.2\x2dorg.gnome.Epiphany.WebAppProvider.slice (1,777 samples, 0.15%)</title><rect x="792.2" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" /> +<text x="795.17" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (236 samples, 0.02%)</title><rect x="394.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="396.96" y="111.5" ></text> +</g> +<g > +<title>/32 (228 samples, 0.02%)</title><rect x="347.8" y="117" width="0.2" height="15.0" fill="rgb(239,132,38)" rx="2" ry="2" /> +<text x="350.79" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_openat (255 samples, 0.02%)</title><rect x="855.9" y="117" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="858.95" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (333 samples, 0.03%)</title><rect x="802.9" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="805.91" y="79.5" ></text> +</g> +<g > +<title>/time (377 samples, 0.03%)</title><rect x="871.5" y="133" width="0.4" height="15.0" fill="rgb(236,114,34)" rx="2" ry="2" /> +<text x="874.49" y="143.5" ></text> +</g> +<g > +<title>/abi (643 samples, 0.05%)</title><rect x="847.4" y="117" width="0.6" height="15.0" fill="rgb(234,122,32)" rx="2" ry="2" /> +<text x="850.35" y="127.5" ></text> +</g> +<g > +<title>/.local (5,491 samples, 0.45%)</title><rect x="409.8" y="165" width="5.3" height="15.0" fill="rgb(229,163,26)" rx="2" ry="2" /> +<text x="412.78" y="175.5" ></text> +</g> +<g > +<title>/power_supply (147 samples, 0.01%)</title><rect x="765.8" y="69" width="0.1" height="15.0" fill="rgb(240,154,39)" rx="2" ry="2" /> +<text x="768.78" y="79.5" ></text> +</g> +<g > +<title>/LC_MESSAGES (114 samples, 0.01%)</title><rect x="994.2" y="133" width="0.1" height="15.0" fill="rgb(238,100,37)" rx="2" ry="2" /> +<text x="997.18" y="143.5" ></text> +</g> +<g > +<title>/5 (1,114 samples, 0.09%)</title><rect x="724.9" y="181" width="1.0" height="15.0" fill="rgb(244,110,43)" rx="2" ry="2" /> +<text x="727.86" y="191.5" ></text> +</g> +<g > +<title>/64 (216 samples, 0.02%)</title><rect x="359.4" y="117" width="0.3" height="15.0" fill="rgb(232,110,30)" rx="2" ry="2" /> +<text x="362.44" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (2,922 samples, 0.24%)</title><rect x="719.1" y="149" width="2.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="722.14" y="159.5" ></text> +</g> +<g > +<title>/33 (277 samples, 0.02%)</title><rect x="348.0" y="117" width="0.3" height="15.0" fill="rgb(237,128,36)" rx="2" ry="2" /> +<text x="351.01" y="127.5" ></text> +</g> +<g > +<title>/permanent (676 samples, 0.06%)</title><rect x="415.3" y="101" width="0.7" height="15.0" fill="rgb(241,147,39)" rx="2" ry="2" /> +<text x="418.33" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (273 samples, 0.02%)</title><rect x="353.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="356.06" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (217 samples, 0.02%)</title><rect x="355.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="358.57" y="111.5" ></text> +</g> +<g > +<title>/org.kde.KStyle.Adwaita (264 samples, 0.02%)</title><rect x="1169.0" y="133" width="0.2" height="15.0" fill="rgb(229,149,27)" rx="2" ry="2" /> +<text x="1171.95" y="143.5" ></text> +</g> +<g > +<title>/fd (161 samples, 0.01%)</title><rect x="516.9" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="519.90" y="175.5" ></text> +</g> +<g > +<title>/rpm (90,464 samples, 7.41%)</title><rect x="874.3" y="149" width="87.5" height="15.0" fill="rgb(232,140,30)" rx="2" ry="2" /> +<text x="877.28" y="159.5" >/rpm</text> +</g> +<g > +<title>syscall`enter_readlinkat (13,339 samples, 1.09%)</title><rect x="484.1" y="149" width="12.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="487.12" y="159.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (117 samples, 0.01%)</title><rect x="849.3" y="101" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="852.32" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (322 samples, 0.03%)</title><rect x="768.9" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="771.91" y="95.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (289 samples, 0.02%)</title><rect x="383.3" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="386.35" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_newfstat (360 samples, 0.03%)</title><rect x="497.8" y="165" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="500.84" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (275 samples, 0.02%)</title><rect x="361.0" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="364.03" y="111.5" ></text> +</g> +<g > +<title>/1637286 (737 samples, 0.06%)</title><rect x="506.9" y="181" width="0.7" height="15.0" fill="rgb(245,129,44)" rx="2" ry="2" /> +<text x="509.89" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (244 samples, 0.02%)</title><rect x="393.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="396.50" y="111.5" ></text> +</g> +<g > +<title>/goos (209 samples, 0.02%)</title><rect x="850.4" y="117" width="0.2" height="15.0" fill="rgb(243,144,41)" rx="2" ry="2" /> +<text x="853.36" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_read (576 samples, 0.05%)</title><rect x="774.6" y="69" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="777.57" y="79.5" ></text> +</g> +<g > +<title>syscall`enter_read (576 samples, 0.05%)</title><rect x="784.8" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="787.82" y="79.5" ></text> +</g> +<g > +<title>/3b (242 samples, 0.02%)</title><rect x="349.8" y="117" width="0.3" height="15.0" fill="rgb(225,132,22)" rx="2" ry="2" /> +<text x="352.84" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (254 samples, 0.02%)</title><rect x="367.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="370.40" y="111.5" ></text> +</g> +<g > +<title>syscall`enter_readlinkat (331 samples, 0.03%)</title><rect x="499.2" y="149" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="502.24" y="159.5" ></text> +</g> +<g > +<title>/fd (153 samples, 0.01%)</title><rect x="722.3" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" /> +<text x="725.35" y="175.5" ></text> +</g> +<g > +<title>/1475 (1,738 samples, 0.14%)</title><rect x="482.4" y="181" width="1.7" height="15.0" fill="rgb(246,135,46)" rx="2" ry="2" /> +<text x="485.43" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (221 samples, 0.02%)</title><rect x="395.5" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="398.54" y="111.5" ></text> +</g> +<g > +<title>/fs (323 samples, 0.03%)</title><rect x="853.8" y="117" width="0.3" height="15.0" fill="rgb(235,136,33)" rx="2" ry="2" /> +<text x="856.77" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_write (121 samples, 0.01%)</title><rect x="1187.4" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1190.40" y="175.5" ></text> +</g> +<g > +<title>/polkit-1 (217 samples, 0.02%)</title><rect x="1175.1" y="165" width="0.2" height="15.0" fill="rgb(232,154,30)" rx="2" ry="2" /> +<text x="1178.08" y="175.5" ></text> +</g> +<g > +<title>/pack (105 samples, 0.01%)</title><rect x="434.4" y="101" width="0.1" height="15.0" fill="rgb(242,160,40)" rx="2" ry="2" /> +<text x="437.36" y="111.5" ></text> +</g> +<g > +<title>/internal (292 samples, 0.02%)</title><rect x="859.0" y="117" width="0.3" height="15.0" fill="rgb(229,137,27)" rx="2" ry="2" /> +<text x="862.00" y="127.5" ></text> +</g> +<g > +<title>/userdb (450 samples, 0.04%)</title><rect x="761.9" y="165" width="0.5" height="15.0" fill="rgb(235,116,33)" rx="2" ry="2" /> +<text x="764.94" y="175.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (234 samples, 0.02%)</title><rect x="351.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="354.76" y="111.5" ></text> +</g> +<g > +<title>/org.kde.WaylandDecoration.QAdwaitaDecorations (124 samples, 0.01%)</title><rect x="272.3" y="181" width="0.1" height="15.0" fill="rgb(244,149,43)" rx="2" ry="2" /> +<text x="275.29" y="191.5" ></text> +</g> +<g > +<title>syscall`enter_pread64 (390 samples, 0.03%)</title><rect x="1187.0" y="165" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1190.02" y="175.5" ></text> +</g> +<g > +<title>/f5 (244 samples, 0.02%)</title><rect x="393.3" y="117" width="0.2" height="15.0" fill="rgb(238,142,37)" rx="2" ry="2" /> +<text x="396.26" y="127.5" ></text> +</g> +<g > +<title>/b4 (232 samples, 0.02%)</title><rect x="378.1" y="117" width="0.3" height="15.0" fill="rgb(232,110,30)" rx="2" ry="2" /> +<text x="381.14" y="127.5" ></text> +</g> +<g > +<title>/94 (256 samples, 0.02%)</title><rect x="370.7" y="117" width="0.3" height="15.0" fill="rgb(241,150,40)" rx="2" ry="2" /> +<text x="373.74" y="127.5" ></text> +</g> +<g > +<title>/ce (260 samples, 0.02%)</title><rect x="384.0" y="117" width="0.3" height="15.0" fill="rgb(245,157,44)" rx="2" ry="2" /> +<text x="387.04" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_pwrite64 (346 samples, 0.03%)</title><rect x="1134.9" y="149" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="1137.88" y="159.5" ></text> +</g> +<g > +<title>/reflect (556 samples, 0.05%)</title><rect x="858.5" y="133" width="0.5" height="15.0" fill="rgb(241,137,39)" rx="2" ry="2" /> +<text x="861.46" y="143.5" ></text> +</g> +<g > +<title>/63 (215 samples, 0.02%)</title><rect x="359.2" y="117" width="0.2" height="15.0" fill="rgb(234,113,32)" rx="2" ry="2" /> +<text x="362.23" y="127.5" ></text> +</g> +<g > +<title>syscall`enter_newfstatat (270 samples, 0.02%)</title><rect x="347.3" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> +<text x="350.33" y="111.5" ></text> +</g> +</g> +</svg> |
