|
|
<?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="742" onload="init(evt)" viewBox="0 0 1200 742" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. --> <!-- NOTES: --> <defs> <linearGradient id="background" y1="0" y2="1" x1="0" x2="0" > <stop stop-color="#eeeeee" offset="5%" /> <stop stop-color="#eeeeb0" offset="95%" /> </linearGradient> </defs> <style type="text/css"> text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); } #search, #ignorecase { opacity:0.1; cursor:pointer; } #search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; } #subtitle { text-anchor:middle; font-color:rgb(160,160,160); } #title { text-anchor:middle; font-size:17px} #unzoom { cursor:pointer; } #frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; } .hide { display:none; } .parent { opacity:0.5; } </style> <script type="text/ecmascript"> <![CDATA[ "use strict"; var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn; function init(evt) { details = document.getElementById("details").firstChild; searchbtn = document.getElementById("search"); ignorecaseBtn = document.getElementById("ignorecase"); unzoombtn = document.getElementById("unzoom"); matchedtxt = document.getElementById("matched"); svg = document.getElementsByTagName("svg")[0]; searching = 0; currentSearchTerm = null;
// use GET parameters to restore a flamegraphs state. var params = get_params(); if (params.x && params.y) zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]'))); if (params.s) search(params.s); }
// event listeners window.addEventListener("click", function(e) { var target = find_group(e.target); if (target) { if (target.nodeName == "a") { if (e.ctrlKey === false) return; e.preventDefault(); } if (target.classList.contains("parent")) unzoom(true); zoom(target); if (!document.querySelector('.parent')) { // we have basically done a clearzoom so clear the url var params = get_params(); if (params.x) delete params.x; if (params.y) delete params.y; history.replaceState(null, null, parse_params(params)); unzoombtn.classList.add("hide"); return; }
// set parameters for zoom state var el = target.querySelector("rect"); if (el && el.attributes && el.attributes.y && el.attributes._orig_x) { var params = get_params() params.x = el.attributes._orig_x.value; params.y = el.attributes.y.value; history.replaceState(null, null, parse_params(params)); } } else if (e.target.id == "unzoom") clearzoom(); else if (e.target.id == "search") search_prompt(); else if (e.target.id == "ignorecase") toggle_ignorecase(); }, false)
// mouse-over for info // show window.addEventListener("mouseover", function(e) { var target = find_group(e.target); if (target) details.nodeValue = "Function: " + g_to_text(target); }, false)
// clear window.addEventListener("mouseout", function(e) { var target = find_group(e.target); if (target) details.nodeValue = ' '; }, false)
// ctrl-F for search // ctrl-I to toggle case-sensitive search window.addEventListener("keydown",function (e) { if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { e.preventDefault(); search_prompt(); } else if (e.ctrlKey && e.keyCode === 73) { e.preventDefault(); toggle_ignorecase(); } }, false)
// functions function get_params() { var params = {}; var paramsarr = window.location.search.substr(1).split('&'); for (var i = 0; i < paramsarr.length; ++i) { var tmp = paramsarr[i].split("="); if (!tmp[0] || !tmp[1]) continue; params[tmp[0]] = decodeURIComponent(tmp[1]); } return params; } function parse_params(params) { var uri = "?"; for (var key in params) { uri += key + '=' + encodeURIComponent(params[key]) + '&'; } if (uri.slice(-1) == "&") uri = uri.substring(0, uri.length - 1); if (uri == '?') uri = window.location.href.split('?')[0]; return uri; } function find_child(node, selector) { var children = node.querySelectorAll(selector); if (children.length) return children[0]; } function find_group(node) { var parent = node.parentElement; if (!parent) return; if (parent.id == "frames") return node; return find_group(parent); } function orig_save(e, attr, val) { if (e.attributes["_orig_" + attr] != undefined) return; if (e.attributes[attr] == undefined) return; if (val == undefined) val = e.attributes[attr].value; e.setAttribute("_orig_" + attr, val); } function orig_load(e, attr) { if (e.attributes["_orig_"+attr] == undefined) return; e.attributes[attr].value = e.attributes["_orig_" + attr].value; e.removeAttribute("_orig_"+attr); } function g_to_text(e) { var text = find_child(e, "title").firstChild.nodeValue; return (text) } function g_to_func(e) { var func = g_to_text(e); // if there's any manipulation we want to do to the function // name before it's searched, do it here before returning. return (func); } function update_text(e) { var r = find_child(e, "rect"); var t = find_child(e, "text"); var w = parseFloat(r.attributes.width.value) -3; var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
// Smaller than this size won't fit anything if (w < 2 * 12 * 0.59) { t.textContent = ""; return; }
t.textContent = txt; var sl = t.getSubStringLength(0, txt.length); // check if only whitespace or if we can fit the entire string into width w if (/^ *$/.test(txt) || sl < w) return;
// this isn't perfect, but gives a good starting point // and avoids calling getSubStringLength too often var start = Math.floor((w/sl) * txt.length); for (var x = start; x > 0; x = x-2) { if (t.getSubStringLength(0, x + 2) <= w) { t.textContent = txt.substring(0, x) + ".."; return; } } t.textContent = ""; }
// zoom function zoom_reset(e) { if (e.attributes != undefined) { orig_load(e, "x"); orig_load(e, "width"); } if (e.childNodes == undefined) return; for (var i = 0, c = e.childNodes; i < c.length; i++) { zoom_reset(c[i]); } } function zoom_child(e, x, ratio) { if (e.attributes != undefined) { if (e.attributes.x != undefined) { orig_save(e, "x"); e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10; if (e.tagName == "text") e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3; } if (e.attributes.width != undefined) { orig_save(e, "width"); e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio; } }
if (e.childNodes == undefined) return; for (var i = 0, c = e.childNodes; i < c.length; i++) { zoom_child(c[i], x - 10, ratio); } } function zoom_parent(e) { if (e.attributes) { if (e.attributes.x != undefined) { orig_save(e, "x"); e.attributes.x.value = 10; } if (e.attributes.width != undefined) { orig_save(e, "width"); e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2); } } if (e.childNodes == undefined) return; for (var i = 0, c = e.childNodes; i < c.length; i++) { zoom_parent(c[i]); } } function zoom(node) { var attr = find_child(node, "rect").attributes; var width = parseFloat(attr.width.value); var xmin = parseFloat(attr.x.value); var xmax = parseFloat(xmin + width); var ymin = parseFloat(attr.y.value); var ratio = (svg.width.baseVal.value - 2 * 10) / width;
// XXX: Workaround for JavaScript float issues (fix me) var fudge = 0.0001;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children; for (var i = 0; i < el.length; i++) { var e = el[i]; var a = find_child(e, "rect").attributes; var ex = parseFloat(a.x.value); var ew = parseFloat(a.width.value); var upstack; // Is it an ancestor if (0 == 0) { upstack = parseFloat(a.y.value) > ymin; } else { upstack = parseFloat(a.y.value) < ymin; } if (upstack) { // Direct ancestor if (ex <= xmin && (ex+ew+fudge) >= xmax) { e.classList.add("parent"); zoom_parent(e); update_text(e); } // not in current path else e.classList.add("hide"); } // Children maybe else { // no common path if (ex < xmin || ex + fudge >= xmax) { e.classList.add("hide"); } else { zoom_child(e, xmin, ratio); update_text(e); } } } search(); } function unzoom(dont_update_text) { unzoombtn.classList.add("hide"); var el = document.getElementById("frames").children; for(var i = 0; i < el.length; i++) { el[i].classList.remove("parent"); el[i].classList.remove("hide"); zoom_reset(el[i]); if(!dont_update_text) update_text(el[i]); } search(); } function clearzoom() { unzoom();
// remove zoom state var params = get_params(); if (params.x) delete params.x; if (params.y) delete params.y; history.replaceState(null, null, parse_params(params)); }
// search function toggle_ignorecase() { ignorecase = !ignorecase; if (ignorecase) { ignorecaseBtn.classList.add("show"); } else { ignorecaseBtn.classList.remove("show"); } reset_search(); search(); } function reset_search() { var el = document.querySelectorAll("#frames rect"); for (var i = 0; i < el.length; i++) { orig_load(el[i], "fill") } var params = get_params(); delete params.s; history.replaceState(null, null, parse_params(params)); } function search_prompt() { if (!searching) { var term = prompt("Enter a search term (regexp " + "allowed, eg: ^ext4_)" + (ignorecase ? ", ignoring case" : "") + "\nPress Ctrl-i to toggle case sensitivity", ""); if (term != null) search(term); } else { reset_search(); searching = 0; currentSearchTerm = null; searchbtn.classList.remove("show"); searchbtn.firstChild.nodeValue = "Search" matchedtxt.classList.add("hide"); matchedtxt.firstChild.nodeValue = "" } } function search(term) { if (term) currentSearchTerm = term;
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="742.0" fill="url(#background)" /> <text id="title" x="600.00" y="24" >Flame Graph</text> <text id="details" x="10.00" y="725" > </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="725" > </text> <g id="frames"> <g > <title>[[kernel.kallsyms]] (816,855 samples, 0.01%)</title><rect x="1186.6" y="501" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.64" y="511.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (642,350 samples, 0.01%)</title><rect x="1189.2" y="261" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.20" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (912,838 samples, 0.01%)</title><rect x="1184.8" y="549" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1187.76" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,719,330 samples, 0.03%)</title><rect x="200.0" y="469" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="202.95" y="479.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (644,424 samples, 0.01%)</title><rect x="1188.7" y="341" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.72" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (647,389 samples, 0.01%)</title><rect x="1186.8" y="469" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.80" y="479.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (647,389 samples, 0.01%)</title><rect x="1186.8" y="501" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.80" y="511.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (605,971 samples, 0.01%)</title><rect x="125.3" y="581" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="128.32" y="591.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (611,652 samples, 0.01%)</title><rect x="1188.8" y="165" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.84" y="175.5" ></text> </g> <g > <title>__glibc_morecore (609,086 samples, 0.01%)</title><rect x="1188.3" y="245" width="0.1" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" /> <text x="1191.30" y="255.5" ></text> </g> <g > <title>[dash] (4,000,266 samples, 0.06%)</title><rect x="1186.0" y="661" width="0.8" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1189.05" y="671.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,218,272 samples, 0.02%)</title><rect x="65.5" y="613" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.50" y="623.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (634,872 samples, 0.01%)</title><rect x="65.4" y="469" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.38" y="479.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,590,255 samples, 0.06%)</title><rect x="128.8" y="597" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="131.79" y="607.5" ></text> </g> <g > <title>_dl_map_object (774,913 samples, 0.01%)</title><rect x="1028.9" y="661" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> <text x="1031.92" y="671.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (13,682,739 samples, 0.22%)</title><rect x="134.1" y="453" width="2.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="137.09" y="463.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,822,758,636 samples, 28.95%)</title><rect x="268.1" y="565" width="341.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="271.07" y="575.5" >[[kernel.kallsyms]]</text> </g> <g > <title>[[kernel.kallsyms]] (605,734 samples, 0.01%)</title><rect x="1028.9" y="597" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1031.92" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,747,920 samples, 0.04%)</title><rect x="10.3" y="645" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="13.30" y="655.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (609,086 samples, 0.01%)</title><rect x="1188.3" y="181" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.30" y="191.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (755,148 samples, 0.01%)</title><rect x="132.1" y="565" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.09" y="575.5" ></text> </g> <g > <title>std::mersenne_twister_engine<unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul>::operator (1,019,706,133 samples, 16.19%)</title><rect x="835.5" y="565" width="191.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" /> <text x="838.53" y="575.5" >std::mersenne_twister_en..</text> </g> <g > <title>[[kernel.kallsyms]] (642,350 samples, 0.01%)</title><rect x="1189.2" y="341" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.20" y="351.5" ></text> </g> <g > <title>[sudoers.so] (1,890,873 samples, 0.03%)</title><rect x="1188.8" y="565" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1191.84" y="575.5" ></text> </g> <g > <title>sudo_debug_fork_v1 (1,620,212 samples, 0.03%)</title><rect x="1187.5" y="533" width="0.3" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" /> <text x="1190.54" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,873,575 samples, 0.06%)</title><rect x="128.1" y="549" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="131.07" y="559.5" ></text> </g> <g > <title>sudo_setgroups_v1 (639,450 samples, 0.01%)</title><rect x="1188.4" y="517" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> <text x="1191.42" y="527.5" ></text> </g> <g > <title>___pthread_rwlock_unlock (755,148 samples, 0.01%)</title><rect x="132.1" y="661" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> <text x="135.09" y="671.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (639,356 samples, 0.01%)</title><rect x="1189.0" y="117" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.96" y="127.5" ></text> </g> <g > <title>std::mersenne_twister_engine<unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul>::_M_gen_rand (412,439,847 samples, 6.55%)</title><rect x="949.3" y="549" width="77.3" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> <text x="952.34" y="559.5" >std::mer..</text> </g> <g > <title>_dl_sysdep_start (1,232,083 samples, 0.02%)</title><rect x="1186.8" y="613" width="0.2" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> <text x="1189.80" y="623.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,822,758,636 samples, 28.95%)</title><rect x="268.1" y="533" width="341.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="271.07" y="543.5" >[[kernel.kallsyms]]</text> </g> <g > <title>idxd_file_dev_release (792,335 samples, 0.01%)</title><rect x="131.7" y="501" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> <text x="134.73" y="511.5" ></text> </g> <g > <title>[sudoers.so] (1,890,873 samples, 0.03%)</title><rect x="1188.8" y="613" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1191.84" y="623.5" ></text> </g> <g > <title>_dl_map_object (639,865 samples, 0.01%)</title><rect x="1189.1" y="245" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> <text x="1192.08" y="255.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (644,424 samples, 0.01%)</title><rect x="1188.7" y="357" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.72" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,760,566 samples, 0.19%)</title><rect x="1026.7" y="533" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1029.68" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (877,124 samples, 0.01%)</title><rect x="65.3" y="565" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.34" y="575.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (643,927 samples, 0.01%)</title><rect x="1189.6" y="421" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.64" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (644,424 samples, 0.01%)</title><rect x="1188.7" y="405" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.72" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,214,766 samples, 0.10%)</title><rect x="126.6" y="533" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="129.64" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (755,148 samples, 0.01%)</title><rect x="132.1" y="581" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.09" y="591.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (7,862,712 samples, 0.12%)</title><rect x="126.3" y="629" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="129.33" y="639.5" ></text> </g> <g > <title>__libc_start_call_main (4,764,357,956 samples, 75.67%)</title><rect x="133.8" y="661" width="892.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> <text x="136.76" y="671.5" >__libc_start_call_main</text> </g> <g > <title>[[kernel.kallsyms]] (647,389 samples, 0.01%)</title><rect x="1186.8" y="437" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.80" y="447.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,222,638 samples, 0.05%)</title><rect x="124.7" y="533" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="127.72" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,823,617,361 samples, 28.96%)</title><rect x="267.9" y="613" width="341.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="270.91" y="623.5" >[[kernel.kallsyms]]</text> </g> <g > <title>[[kernel.kallsyms]] (643,927 samples, 0.01%)</title><rect x="1189.6" y="453" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.64" y="463.5" ></text> </g> <g > <title>_dl_map_object (642,350 samples, 0.01%)</title><rect x="1189.2" y="389" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> <text x="1192.20" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,728,157 samples, 0.08%)</title><rect x="127.9" y="565" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="130.91" y="575.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,121,190 samples, 0.02%)</title><rect x="1188.0" y="341" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.97" y="351.5" ></text> </g> <g > <title>__GI___fstatat64 (620,751 samples, 0.01%)</title><rect x="1186.5" y="533" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" /> <text x="1189.53" y="543.5" ></text> </g> <g > <title>[libpam.so.0.85.1] (1,251,008 samples, 0.02%)</title><rect x="1188.8" y="501" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> <text x="1191.84" y="511.5" ></text> </g> <g > <title>__libc_sendto (644,424 samples, 0.01%)</title><rect x="1188.7" y="533" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" /> <text x="1191.72" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,287,607 samples, 0.08%)</title><rect x="132.8" y="629" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.77" y="639.5" ></text> </g> <g > <title>__libc_vfork (816,855 samples, 0.01%)</title><rect x="1186.6" y="533" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" /> <text x="1189.64" y="543.5" ></text> </g> <g > <title>getifaddrs_internal (644,424 samples, 0.01%)</title><rect x="1188.7" y="581" width="0.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> <text x="1191.72" y="591.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (18,098,092 samples, 0.29%)</title><rect x="1180.3" y="437" width="3.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1183.27" y="447.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,281,997 samples, 0.02%)</title><rect x="131.5" y="453" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="134.49" y="463.5" ></text> </g> <g > <title>[sudo] (968,097 samples, 0.02%)</title><rect x="1188.7" y="629" width="0.1" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" /> <text x="1191.66" y="639.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (609,086 samples, 0.01%)</title><rect x="1188.3" y="117" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.30" y="127.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,514,280 samples, 0.02%)</title><rect x="1187.6" y="437" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.56" y="447.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (792,335 samples, 0.01%)</title><rect x="131.7" y="437" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="134.73" y="447.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (15,395,703 samples, 0.24%)</title><rect x="133.8" y="629" width="2.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="136.76" y="639.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,099,978 samples, 0.02%)</title><rect x="131.9" y="645" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="134.88" y="655.5" ></text> </g> <g > <title>unsigned long std::uniform_int_distribution<unsigned long>::operator (280,085,431 samples, 4.45%)</title><rect x="10.8" y="645" width="52.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> <text x="13.81" y="655.5" >unsig..</text> </g> <g > <title>[[kernel.kallsyms]] (1,885,881 samples, 0.03%)</title><rect x="1187.0" y="629" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.03" y="639.5" ></text> </g> <g > <title>[sudoers.so] (640,822 samples, 0.01%)</title><rect x="1189.3" y="613" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1192.32" y="623.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (647,389 samples, 0.01%)</title><rect x="1186.8" y="533" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.80" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (15,395,703 samples, 0.24%)</title><rect x="133.8" y="485" width="2.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="136.76" y="495.5" ></text> </g> <g > <title>idxd_cdev_release (792,335 samples, 0.01%)</title><rect x="131.7" y="549" width="0.2" height="15.0" fill="rgb(229,112,27)" rx="2" ry="2" /> <text x="134.73" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (607,219 samples, 0.01%)</title><rect x="1187.8" y="533" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.84" y="543.5" ></text> </g> <g > <title>elf_dynamic_do_Rela (645,210 samples, 0.01%)</title><rect x="1189.8" y="565" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" /> <text x="1192.76" y="575.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (963,735 samples, 0.02%)</title><rect x="1187.7" y="341" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.66" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (640,822 samples, 0.01%)</title><rect x="1189.3" y="533" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.32" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,319,033 samples, 0.02%)</title><rect x="1186.2" y="373" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.18" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (642,350 samples, 0.01%)</title><rect x="1189.2" y="229" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.20" y="239.5" ></text> </g> <g > <title>__pthread_rwlock_wrunlock (755,148 samples, 0.01%)</title><rect x="132.1" y="645" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> <text x="135.09" y="655.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (639,450 samples, 0.01%)</title><rect x="1188.4" y="485" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.42" y="495.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (858,465 samples, 0.01%)</title><rect x="609.5" y="421" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="612.50" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,476,370 samples, 0.02%)</title><rect x="132.4" y="581" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.42" y="591.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (12,893,052 samples, 0.20%)</title><rect x="129.5" y="565" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="132.47" y="575.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,021,600 samples, 0.02%)</title><rect x="1060.2" y="565" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1063.21" y="575.5" ></text> </g> <g > <title>internal_getgrouplist (609,086 samples, 0.01%)</title><rect x="1188.3" y="421" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> <text x="1191.30" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,140,045 samples, 0.02%)</title><rect x="1188.0" y="405" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.97" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,728,157 samples, 0.08%)</title><rect x="127.9" y="645" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="130.91" y="655.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (615,127 samples, 0.01%)</title><rect x="1185.0" y="533" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1187.98" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,021,600 samples, 0.02%)</title><rect x="1060.2" y="453" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1063.21" y="463.5" ></text> </g> <g > <title>_dl_start (1,915,339 samples, 0.03%)</title><rect x="1189.6" y="645" width="0.4" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> <text x="1192.64" y="655.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (639,356 samples, 0.01%)</title><rect x="1189.0" y="101" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.96" y="111.5" ></text> </g> <g > <title>numactl (2,298,031 samples, 0.04%)</title><rect x="1185.4" y="677" width="0.4" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" /> <text x="1188.40" y="687.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (644,424 samples, 0.01%)</title><rect x="1188.7" y="309" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.72" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (830,361 samples, 0.01%)</title><rect x="1028.7" y="421" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1031.73" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,695,395 samples, 0.04%)</title><rect x="1113.2" y="581" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1116.16" y="591.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (673,282 samples, 0.01%)</title><rect x="1187.3" y="469" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.25" y="479.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (15,395,703 samples, 0.24%)</title><rect x="133.8" y="517" width="2.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="136.76" y="527.5" ></text> </g> <g > <title>dl_open_worker (642,350 samples, 0.01%)</title><rect x="1189.2" y="485" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> <text x="1192.20" y="495.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (792,335 samples, 0.01%)</title><rect x="131.7" y="485" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="134.73" y="495.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (29,216,896 samples, 0.46%)</title><rect x="1178.2" y="565" width="5.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1181.18" y="575.5" ></text> </g> <g > <title>arch_fork (1,198,761 samples, 0.02%)</title><rect x="1188.0" y="501" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> <text x="1190.96" y="511.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,048,415 samples, 0.02%)</title><rect x="10.6" y="517" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="13.61" y="527.5" ></text> </g> <g > <title>dl_open_worker (1,251,008 samples, 0.02%)</title><rect x="1188.8" y="309" width="0.3" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> <text x="1191.84" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (639,450 samples, 0.01%)</title><rect x="1188.4" y="421" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.42" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (14,275,535 samples, 0.23%)</title><rect x="1031.2" y="501" width="2.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1034.19" y="511.5" ></text> </g> <g > <title>__GI_sched_yield (1,099,978 samples, 0.02%)</title><rect x="131.9" y="661" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="134.88" y="671.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (792,335 samples, 0.01%)</title><rect x="131.7" y="453" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="134.73" y="463.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,143,315 samples, 0.08%)</title><rect x="1183.8" y="613" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1186.79" y="623.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (639,865 samples, 0.01%)</title><rect x="1189.1" y="117" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.08" y="127.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (611,652 samples, 0.01%)</title><rect x="1188.8" y="85" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.84" y="95.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,760,566 samples, 0.19%)</title><rect x="1026.7" y="517" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1029.68" y="527.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (8,395,448 samples, 0.13%)</title><rect x="1027.3" y="501" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1030.31" y="511.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,021,600 samples, 0.02%)</title><rect x="1060.2" y="437" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1063.21" y="447.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (643,927 samples, 0.01%)</title><rect x="1189.6" y="437" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.64" y="447.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (639,356 samples, 0.01%)</title><rect x="1189.0" y="149" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.96" y="159.5" ></text> </g> <g > <title>syscall (877,124 samples, 0.01%)</title><rect x="65.3" y="629" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> <text x="68.34" y="639.5" ></text> </g> <g > <title>init_cpu_features (626,202 samples, 0.01%)</title><rect x="1189.9" y="581" width="0.1" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" /> <text x="1192.88" y="591.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (917,040 samples, 0.01%)</title><rect x="1184.9" y="629" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1187.93" y="639.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (663,724 samples, 0.01%)</title><rect x="132.3" y="453" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.28" y="463.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (643,927 samples, 0.01%)</title><rect x="1189.6" y="389" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.64" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,021,600 samples, 0.02%)</title><rect x="1060.2" y="485" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1063.21" y="495.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,038,769 samples, 0.02%)</title><rect x="65.5" y="533" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.54" y="543.5" ></text> </g> <g > <title>handle_intel (626,202 samples, 0.01%)</title><rect x="1189.9" y="549" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" /> <text x="1192.88" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,263,688 samples, 0.02%)</title><rect x="1184.5" y="501" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1187.52" y="511.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (10,885,277 samples, 0.17%)</title><rect x="1031.8" y="469" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1034.82" y="479.5" ></text> </g> <g > <title>__GI__dl_catch_exception (639,865 samples, 0.01%)</title><rect x="1189.1" y="277" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> <text x="1192.08" y="287.5" ></text> </g> <g > <title>arch_fork (1,514,280 samples, 0.02%)</title><rect x="1187.6" y="485" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> <text x="1190.56" y="495.5" ></text> </g> <g > <title>_start (540,101 samples, 0.01%)</title><rect x="1029.4" y="661" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> <text x="1032.39" y="671.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (10,027,867 samples, 0.16%)</title><rect x="1032.0" y="453" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1034.98" y="463.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,885,881 samples, 0.03%)</title><rect x="1187.0" y="597" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.03" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (9,178,225 samples, 0.15%)</title><rect x="1032.1" y="421" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1035.14" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,745,760 samples, 0.08%)</title><rect x="1183.9" y="581" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1186.87" y="591.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (642,350 samples, 0.01%)</title><rect x="1189.2" y="197" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.20" y="207.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,118,393 samples, 0.03%)</title><rect x="1184.4" y="517" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1187.36" y="527.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (561,175 samples, 0.01%)</title><rect x="1188.1" y="309" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.08" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (737,884 samples, 0.01%)</title><rect x="65.4" y="549" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.36" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,801,956,429 samples, 28.62%)</title><rect x="272.0" y="501" width="337.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="274.96" y="511.5" >[[kernel.kallsyms]]</text> </g> <g > <title>[[kernel.kallsyms]] (2,847,087 samples, 0.05%)</title><rect x="128.9" y="533" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="131.93" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,080,933 samples, 0.02%)</title><rect x="1185.8" y="549" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1188.84" y="559.5" ></text> </g> <g > <title>[sudoers.so] (609,086 samples, 0.01%)</title><rect x="1188.3" y="517" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1191.30" y="527.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,086,994 samples, 0.03%)</title><rect x="125.9" y="565" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="128.94" y="575.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,476,370 samples, 0.02%)</title><rect x="132.4" y="549" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.42" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (642,350 samples, 0.01%)</title><rect x="1189.2" y="181" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.20" y="191.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (907,283 samples, 0.01%)</title><rect x="132.2" y="629" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.23" y="639.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (636,491 samples, 0.01%)</title><rect x="125.8" y="629" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="128.82" y="639.5" ></text> </g> <g > <title>aggr_j (425,415,294 samples, 6.76%)</title><rect x="1034.0" y="629" width="79.7" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" /> <text x="1036.99" y="639.5" >aggr_j</text> </g> <g > <title>[[kernel.kallsyms]] (5,143,315 samples, 0.08%)</title><rect x="1183.8" y="629" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1186.79" y="639.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (607,219 samples, 0.01%)</title><rect x="1187.8" y="485" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.84" y="495.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,840,775 samples, 0.03%)</title><rect x="10.5" y="549" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="13.47" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,086,994 samples, 0.03%)</title><rect x="125.9" y="597" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="128.94" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (22,632,216 samples, 0.36%)</title><rect x="1029.6" y="565" width="4.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1032.62" y="575.5" ></text> </g> <g > <title>__GI__dl_catch_exception (1,251,008 samples, 0.02%)</title><rect x="1188.8" y="373" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> <text x="1191.84" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,866,951 samples, 0.03%)</title><rect x="10.5" y="565" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="13.46" y="575.5" ></text> </g> <g > <title>[libpam.so.0.85.1] (1,251,008 samples, 0.02%)</title><rect x="1188.8" y="453" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> <text x="1191.84" y="463.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,873,575 samples, 0.06%)</title><rect x="128.1" y="517" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="131.07" y="527.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (611,652 samples, 0.01%)</title><rect x="1188.8" y="117" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.84" y="127.5" ></text> </g> <g > <title>[dash] (2,562,660 samples, 0.04%)</title><rect x="1186.0" y="533" width="0.5" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1189.05" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,436,801 samples, 0.05%)</title><rect x="609.0" y="437" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="612.02" y="447.5" ></text> </g> <g > <title>__pthread_early_init (647,389 samples, 0.01%)</title><rect x="1186.8" y="565" width="0.1" height="15.0" fill="rgb(241,167,39)" rx="2" ry="2" /> <text x="1189.80" y="575.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (7,741,247 samples, 0.12%)</title><rect x="126.4" y="549" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="129.36" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (559,915 samples, 0.01%)</title><rect x="1188.2" y="437" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.20" y="447.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (10,980,378 samples, 0.17%)</title><rect x="129.7" y="501" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="132.68" y="511.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (636,491 samples, 0.01%)</title><rect x="125.8" y="597" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="128.82" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,647,494 samples, 0.09%)</title><rect x="126.7" y="517" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="129.75" y="527.5" ></text> </g> <g > <title>dl_open_worker_begin (639,865 samples, 0.01%)</title><rect x="1189.1" y="261" width="0.1" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" /> <text x="1192.08" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (605,971 samples, 0.01%)</title><rect x="125.3" y="597" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="128.32" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (643,927 samples, 0.01%)</title><rect x="1189.6" y="405" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.64" y="415.5" ></text> </g> <g > <title>__libc_fork (1,296,443 samples, 0.02%)</title><rect x="1188.0" y="533" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" /> <text x="1190.96" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (611,652 samples, 0.01%)</title><rect x="1188.8" y="133" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.84" y="143.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,184,312 samples, 0.03%)</title><rect x="1113.3" y="533" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1116.25" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,500,091 samples, 0.07%)</title><rect x="1183.9" y="549" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1186.91" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,000,576 samples, 0.02%)</title><rect x="132.5" y="517" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.50" y="527.5" ></text> </g> <g > <title>[libstdc++.so.6.0.32] (877,124 samples, 0.01%)</title><rect x="65.3" y="645" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" /> <text x="68.34" y="655.5" ></text> </g> <g > <title>__GI_setgroups (639,450 samples, 0.01%)</title><rect x="1188.4" y="501" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" /> <text x="1191.42" y="511.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (978,434 samples, 0.02%)</title><rect x="125.5" y="565" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="128.52" y="575.5" ></text> </g> <g > <title>[sudoers.so] (639,865 samples, 0.01%)</title><rect x="1189.1" y="533" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1192.08" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,581,593 samples, 0.03%)</title><rect x="126.0" y="549" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="129.04" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,760,566 samples, 0.19%)</title><rect x="1026.7" y="629" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1029.68" y="639.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (874,972 samples, 0.01%)</title><rect x="132.2" y="485" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.24" y="495.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (986,548 samples, 0.02%)</title><rect x="133.6" y="485" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="136.58" y="495.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (644,424 samples, 0.01%)</title><rect x="1188.7" y="325" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.72" y="335.5" ></text> </g> <g > <title>dl_main (647,389 samples, 0.01%)</title><rect x="1186.8" y="597" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> <text x="1189.80" y="607.5" ></text> </g> <g > <title>_dl_start_final (1,232,083 samples, 0.02%)</title><rect x="1186.8" y="629" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> <text x="1189.80" y="639.5" ></text> </g> <g > <title>_start (1,915,339 samples, 0.03%)</title><rect x="1189.6" y="661" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> <text x="1192.64" y="671.5" ></text> </g> <g > <title>[sudo] (6,826,890 samples, 0.11%)</title><rect x="1187.4" y="613" width="1.3" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" /> <text x="1190.38" y="623.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (22,632,216 samples, 0.36%)</title><rect x="1029.6" y="629" width="4.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1032.62" y="639.5" ></text> </g> <g > <title>__libc_start_call_main (4,000,266 samples, 0.06%)</title><rect x="1186.0" y="629" width="0.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> <text x="1189.05" y="639.5" ></text> </g> <g > <title>unsigned long std::uniform_int_distribution<unsigned long>::operator (312,768,024 samples, 4.97%)</title><rect x="65.8" y="645" width="58.6" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> <text x="68.83" y="655.5" >unsign..</text> </g> <g > <title>init_cpu_features (584,694 samples, 0.01%)</title><rect x="1186.9" y="581" width="0.1" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" /> <text x="1189.92" y="591.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,487,786 samples, 0.06%)</title><rect x="128.8" y="549" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="131.81" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,280,067 samples, 0.02%)</title><rect x="1187.1" y="581" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.14" y="591.5" ></text> </g> <g > <title>_nss_systemd_initgroups_dyn (609,086 samples, 0.01%)</title><rect x="1188.3" y="405" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" /> <text x="1191.30" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (792,335 samples, 0.01%)</title><rect x="131.7" y="533" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="134.73" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (620,751 samples, 0.01%)</title><rect x="1186.5" y="485" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.53" y="495.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (561,175 samples, 0.01%)</title><rect x="1188.1" y="277" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.08" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,021,600 samples, 0.02%)</title><rect x="1060.2" y="501" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1063.21" y="511.5" ></text> </g> <g > <title>sudo_ev_loop_v1 (559,915 samples, 0.01%)</title><rect x="1188.2" y="549" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> <text x="1191.20" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,140,045 samples, 0.02%)</title><rect x="1188.0" y="389" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.97" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (907,283 samples, 0.01%)</title><rect x="132.2" y="565" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.23" y="575.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,719,330 samples, 0.03%)</title><rect x="200.0" y="453" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="202.95" y="463.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (644,424 samples, 0.01%)</title><rect x="1188.7" y="501" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.72" y="511.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (620,751 samples, 0.01%)</title><rect x="1186.5" y="469" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.53" y="479.5" ></text> </g> <g > <title>_mm512_mask_add_epi64 (106,828,805 samples, 1.70%)</title><rect x="1040.4" y="581" width="20.0" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" /> <text x="1043.38" y="591.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (620,751 samples, 0.01%)</title><rect x="1186.5" y="453" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.53" y="463.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (642,350 samples, 0.01%)</title><rect x="1189.2" y="325" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.20" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (907,283 samples, 0.01%)</title><rect x="132.2" y="533" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.23" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (917,040 samples, 0.01%)</title><rect x="1184.9" y="645" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1187.93" y="655.5" ></text> </g> <g > <title>__libc_open64 (1,218,272 samples, 0.02%)</title><rect x="65.5" y="645" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> <text x="68.50" y="655.5" ></text> </g> <g > <title>scan_a (373,194,073 samples, 5.93%)</title><rect x="1113.7" y="629" width="70.0" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> <text x="1116.72" y="639.5" >scan_a</text> </g> <g > <title>Sum<unsigned long>::simd_agg (106,828,805 samples, 1.70%)</title><rect x="1040.4" y="597" width="20.0" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> <text x="1043.38" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (605,971 samples, 0.01%)</title><rect x="125.3" y="629" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="128.32" y="639.5" ></text> </g> <g > <title>[libsudo_util.so.0.0.0] (559,915 samples, 0.01%)</title><rect x="1188.2" y="533" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" /> <text x="1191.20" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (609,086 samples, 0.01%)</title><rect x="1188.3" y="101" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.30" y="111.5" ></text> </g> <g > <title>_dl_map_object (643,927 samples, 0.01%)</title><rect x="1189.6" y="533" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> <text x="1192.64" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,587,092 samples, 0.04%)</title><rect x="199.8" y="517" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="202.79" y="527.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (605,734 samples, 0.01%)</title><rect x="1028.9" y="565" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1031.92" y="575.5" ></text> </g> <g > <title>sudo_getgrouplist2_v1 (639,865 samples, 0.01%)</title><rect x="1189.1" y="501" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" /> <text x="1192.08" y="511.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,198,761 samples, 0.02%)</title><rect x="1188.0" y="469" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.96" y="479.5" ></text> </g> <g > <title>[sudoers.so] (1,248,536 samples, 0.02%)</title><rect x="1188.3" y="565" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1191.30" y="575.5" ></text> </g> <g > <title>openaux (642,350 samples, 0.01%)</title><rect x="1189.2" y="405" width="0.1" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" /> <text x="1192.20" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (644,424 samples, 0.01%)</title><rect x="1188.7" y="373" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.72" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,021,600 samples, 0.02%)</title><rect x="1060.2" y="549" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1063.21" y="559.5" ></text> </g> <g > <title>[sudoers.so] (1,890,873 samples, 0.03%)</title><rect x="1188.8" y="597" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1191.84" y="607.5" ></text> </g> <g > <title>[libpam.so.0.85.1] (1,251,008 samples, 0.02%)</title><rect x="1188.8" y="517" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> <text x="1191.84" y="527.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (605,734 samples, 0.01%)</title><rect x="1028.9" y="533" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1031.92" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (964,217 samples, 0.02%)</title><rect x="1187.2" y="501" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.20" y="511.5" ></text> </g> <g > <title>sysmalloc (912,838 samples, 0.01%)</title><rect x="1184.8" y="661" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> <text x="1187.76" y="671.5" ></text> </g> <g > <title>[dash] (2,562,660 samples, 0.04%)</title><rect x="1186.0" y="517" width="0.5" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1189.05" y="527.5" ></text> </g> <g > <title>__GI___libc_malloc (609,086 samples, 0.01%)</title><rect x="1188.3" y="293" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="1191.30" y="303.5" ></text> </g> <g > <title>[sudoers.so] (1,248,536 samples, 0.02%)</title><rect x="1188.3" y="549" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1191.30" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (907,283 samples, 0.01%)</title><rect x="132.2" y="597" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.23" y="607.5" ></text> </g> <g > <title>__GI___sbrk (609,086 samples, 0.01%)</title><rect x="1188.3" y="229" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" /> <text x="1191.30" y="239.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,885,881 samples, 0.03%)</title><rect x="1187.0" y="613" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.03" y="623.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (636,491 samples, 0.01%)</title><rect x="125.8" y="581" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="128.82" y="591.5" ></text> </g> <g > <title>elf_get_dynamic_info (642,350 samples, 0.01%)</title><rect x="1189.2" y="357" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" /> <text x="1192.20" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (948,765 samples, 0.02%)</title><rect x="131.9" y="565" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="134.91" y="575.5" ></text> </g> <g > <title>__libc_start_main_impl (6,826,890 samples, 0.11%)</title><rect x="1187.4" y="645" width="1.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="1190.38" y="655.5" ></text> </g> <g > <title>__mmap64 (611,652 samples, 0.01%)</title><rect x="1188.8" y="197" width="0.2" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" /> <text x="1191.84" y="207.5" ></text> </g> <g > <title>Vector_Loader<unsigned long, (300,023,726 samples, 4.76%)</title><rect x="1121.9" y="597" width="56.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" /> <text x="1124.94" y="607.5" >Vecto..</text> </g> <g > <title>[[kernel.kallsyms]] (1,080,933 samples, 0.02%)</title><rect x="1185.8" y="629" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1188.84" y="639.5" ></text> </g> <g > <title>__GI___prctl (607,219 samples, 0.01%)</title><rect x="1187.8" y="549" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> <text x="1190.84" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,301,691 samples, 0.02%)</title><rect x="1186.2" y="341" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.19" y="351.5" ></text> </g> <g > <title>[unknown] (5,236,153 samples, 0.08%)</title><rect x="1188.7" y="661" width="0.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> <text x="1191.66" y="671.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (609,086 samples, 0.01%)</title><rect x="1188.3" y="85" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.30" y="95.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,728,157 samples, 0.08%)</title><rect x="127.9" y="597" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="130.91" y="607.5" ></text> </g> <g > <title>__GI__dl_catch_exception (642,350 samples, 0.01%)</title><rect x="1189.2" y="469" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> <text x="1192.20" y="479.5" ></text> </g> <g > <title>__GI__Fork (1,319,033 samples, 0.02%)</title><rect x="1186.2" y="469" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> <text x="1189.18" y="479.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (9,178,225 samples, 0.15%)</title><rect x="1032.1" y="437" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1035.14" y="447.5" ></text> </g> <g > <title>arch_fork (1,319,033 samples, 0.02%)</title><rect x="1186.2" y="453" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> <text x="1189.18" y="463.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,275,751 samples, 0.02%)</title><rect x="125.5" y="597" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="128.47" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (639,865 samples, 0.01%)</title><rect x="1189.1" y="85" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.08" y="95.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (839,275 samples, 0.01%)</title><rect x="1113.5" y="421" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1116.50" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,432,255 samples, 0.02%)</title><rect x="1187.6" y="373" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.57" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (948,765 samples, 0.02%)</title><rect x="131.9" y="581" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="134.91" y="591.5" ></text> </g> <g > <title>update_active (584,694 samples, 0.01%)</title><rect x="1186.9" y="565" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1189.92" y="575.5" ></text> </g> <g > <title>[dash] (4,000,266 samples, 0.06%)</title><rect x="1186.0" y="581" width="0.8" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1189.05" y="591.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,169,138 samples, 0.02%)</title><rect x="1029.2" y="549" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1032.17" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,476,370 samples, 0.02%)</title><rect x="132.4" y="597" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.42" y="607.5" ></text> </g> <g > <title>_int_malloc (1,726,119 samples, 0.03%)</title><rect x="1029.1" y="661" width="0.3" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> <text x="1032.07" y="671.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (21,773,677 samples, 0.35%)</title><rect x="1029.8" y="533" width="4.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1032.78" y="543.5" ></text> </g> <g > <title>__libc_dlopen_mode (639,865 samples, 0.01%)</title><rect x="1189.1" y="405" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" /> <text x="1192.08" y="415.5" ></text> </g> <g > <title>[unknown] (315,377,395 samples, 5.01%)</title><rect x="65.3" y="661" width="59.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> <text x="68.34" y="671.5" >[unkno..</text> </g> <g > <title>Filter<unsigned long, LT, (373,194,073 samples, 5.93%)</title><rect x="1113.7" y="613" width="70.0" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> <text x="1116.72" y="623.5" >Filter<..</text> </g> <g > <title>[[kernel.kallsyms]] (611,652 samples, 0.01%)</title><rect x="1188.8" y="181" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.84" y="191.5" ></text> </g> <g > <title>elf_machine_rela (645,210 samples, 0.01%)</title><rect x="1189.8" y="549" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" /> <text x="1192.76" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,432,255 samples, 0.02%)</title><rect x="1187.6" y="357" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.57" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (644,424 samples, 0.01%)</title><rect x="1188.7" y="389" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.72" y="399.5" ></text> </g> <g > <title>unsigned long std::uniform_int_distribution<unsigned long>::operator (2,224,963,404 samples, 35.34%)</title><rect x="609.7" y="613" width="416.9" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> <text x="612.66" y="623.5" >unsigned long std::uniform_int_distribution<unsigned lon..</text> </g> <g > <title>_dl_protect_relro (639,356 samples, 0.01%)</title><rect x="1189.0" y="245" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> <text x="1191.96" y="255.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,183,687 samples, 0.07%)</title><rect x="10.0" y="661" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="13.03" y="671.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (28,835,224 samples, 0.46%)</title><rect x="1178.3" y="501" width="5.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1181.25" y="511.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,760,566 samples, 0.19%)</title><rect x="1026.7" y="613" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1029.68" y="623.5" ></text> </g> <g > <title>__GI___close (4,696,187 samples, 0.07%)</title><rect x="124.4" y="661" width="0.9" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> <text x="127.44" y="671.5" ></text> </g> <g > <title>[libnss_systemd.so.2] (609,086 samples, 0.01%)</title><rect x="1188.3" y="341" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> <text x="1191.30" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (22,632,216 samples, 0.36%)</title><rect x="1029.6" y="581" width="4.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1032.62" y="591.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,280,067 samples, 0.02%)</title><rect x="1187.1" y="533" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.14" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,028,309 samples, 0.02%)</title><rect x="127.6" y="485" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="130.62" y="495.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,755,045 samples, 0.04%)</title><rect x="128.9" y="501" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="131.95" y="511.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (970,264 samples, 0.02%)</title><rect x="128.6" y="501" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="131.61" y="511.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (907,283 samples, 0.01%)</title><rect x="132.2" y="613" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.23" y="623.5" ></text> </g> <g > <title>_dl_lookup_symbol_x (645,210 samples, 0.01%)</title><rect x="1189.8" y="517" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" /> <text x="1192.76" y="527.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (986,548 samples, 0.02%)</title><rect x="133.6" y="501" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="136.58" y="511.5" ></text> </g> <g > <title>__GI___tcgetattr (640,822 samples, 0.01%)</title><rect x="1189.3" y="565" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" /> <text x="1192.32" y="575.5" ></text> </g> <g > <title>__GI_madvise (4,728,157 samples, 0.08%)</title><rect x="127.9" y="661" width="0.9" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> <text x="130.91" y="671.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,450,970 samples, 0.02%)</title><rect x="1187.6" y="389" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.57" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (647,389 samples, 0.01%)</title><rect x="1186.8" y="453" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.80" y="463.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (620,751 samples, 0.01%)</title><rect x="1186.5" y="421" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.53" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,256,014 samples, 0.18%)</title><rect x="129.6" y="533" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="132.62" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (642,350 samples, 0.01%)</title><rect x="1189.2" y="309" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.20" y="319.5" ></text> </g> <g > <title>[libnss_systemd.so.2] (609,086 samples, 0.01%)</title><rect x="1188.3" y="309" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> <text x="1191.30" y="319.5" ></text> </g> <g > <title>[anon] (10,638,694 samples, 0.17%)</title><rect x="63.3" y="661" width="2.0" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" /> <text x="66.31" y="671.5" ></text> </g> <g > <title>[libnss_systemd.so.2] (609,086 samples, 0.01%)</title><rect x="1188.3" y="373" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> <text x="1191.30" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,080,933 samples, 0.02%)</title><rect x="1185.8" y="533" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1188.84" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (15,395,703 samples, 0.24%)</title><rect x="133.8" y="533" width="2.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="136.76" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (27,590,318 samples, 0.44%)</title><rect x="1178.5" y="485" width="5.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1181.49" y="495.5" ></text> </g> <g > <title>_dl_sysdep_start (540,101 samples, 0.01%)</title><rect x="1029.4" y="645" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> <text x="1032.39" y="655.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (611,652 samples, 0.01%)</title><rect x="1188.8" y="37" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.84" y="47.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (816,855 samples, 0.01%)</title><rect x="1186.6" y="469" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.64" y="479.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,275,751 samples, 0.02%)</title><rect x="125.5" y="629" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="128.47" y="639.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,021,600 samples, 0.02%)</title><rect x="1060.2" y="421" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1063.21" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (737,884 samples, 0.01%)</title><rect x="65.4" y="501" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.36" y="511.5" ></text> </g> <g > <title>[libpam.so.0.85.1] (1,251,008 samples, 0.02%)</title><rect x="1188.8" y="469" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> <text x="1191.84" y="479.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,140,045 samples, 0.02%)</title><rect x="1188.0" y="373" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.97" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (15,395,703 samples, 0.24%)</title><rect x="133.8" y="581" width="2.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="136.76" y="591.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,786,615 samples, 0.04%)</title><rect x="1184.2" y="533" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1187.23" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (29,216,896 samples, 0.46%)</title><rect x="1178.2" y="533" width="5.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1181.18" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,728,157 samples, 0.08%)</title><rect x="127.9" y="613" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="130.91" y="623.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (607,219 samples, 0.01%)</title><rect x="1187.8" y="501" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.84" y="511.5" ></text> </g> <g > <title>___dlopen (642,350 samples, 0.01%)</title><rect x="1189.2" y="613" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> <text x="1192.20" y="623.5" ></text> </g> <g > <title>unsigned int std::uniform_int_distribution<unsigned long>::_S_nd<unsigned long, std::mersenne_twister_engine<unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul>, unsigned int> (1,310,233,997 samples, 20.81%)</title><rect x="781.1" y="581" width="245.5" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" /> <text x="784.09" y="591.5" >unsigned int std::uniform_int_di..</text> </g> <g > <title>__GI___getdents64 (1,275,751 samples, 0.02%)</title><rect x="125.5" y="661" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" /> <text x="128.47" y="671.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,760,566 samples, 0.19%)</title><rect x="1026.7" y="597" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1029.68" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (636,491 samples, 0.01%)</title><rect x="125.8" y="533" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="128.82" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,280,067 samples, 0.02%)</title><rect x="1187.1" y="565" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.14" y="575.5" ></text> </g> <g > <title>__GI_ppoll (559,915 samples, 0.01%)</title><rect x="1188.2" y="517" width="0.1" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> <text x="1191.20" y="527.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (917,040 samples, 0.01%)</title><rect x="1184.9" y="613" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1187.93" y="623.5" ></text> </g> <g > <title>___dlopen (1,251,008 samples, 0.02%)</title><rect x="1188.8" y="437" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> <text x="1191.84" y="447.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,487,854 samples, 0.06%)</title><rect x="199.6" y="549" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="202.62" y="559.5" ></text> </g> <g > <title>alloc_new_heap (597,906 samples, 0.01%)</title><rect x="1029.5" y="661" width="0.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" /> <text x="1032.49" y="671.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,184,312 samples, 0.03%)</title><rect x="1113.3" y="549" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1116.25" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (639,450 samples, 0.01%)</title><rect x="1188.4" y="453" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.42" y="463.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,218,272 samples, 0.02%)</title><rect x="65.5" y="629" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.50" y="639.5" ></text> </g> <g > <title>_dl_catch_error (1,251,008 samples, 0.02%)</title><rect x="1188.8" y="389" width="0.3" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" /> <text x="1191.84" y="399.5" ></text> </g> <g > <title>main (4,748,962,253 samples, 75.42%)</title><rect x="136.6" y="645" width="890.0" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" /> <text x="139.65" y="655.5" >main</text> </g> <g > <title>[[kernel.kallsyms]] (605,363 samples, 0.01%)</title><rect x="1029.3" y="517" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1032.28" y="527.5" ></text> </g> <g > <title>[sudoers.so] (609,086 samples, 0.01%)</title><rect x="1188.3" y="469" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1191.30" y="479.5" ></text> </g> <g > <title>clone3 (22,722,384 samples, 0.36%)</title><rect x="1029.6" y="661" width="4.3" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> <text x="1032.60" y="671.5" ></text> </g> <g > <title>__isatty (640,822 samples, 0.01%)</title><rect x="1189.3" y="581" width="0.1" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" /> <text x="1192.32" y="591.5" ></text> </g> <g > <title>_dl_start (1,232,083 samples, 0.02%)</title><rect x="1186.8" y="645" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> <text x="1189.80" y="655.5" ></text> </g> <g > <title>[sudo] (4,933,396 samples, 0.08%)</title><rect x="1187.4" y="581" width="0.9" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" /> <text x="1190.38" y="591.5" ></text> </g> <g > <title>Vector_Loader<unsigned long, (281,512,813 samples, 4.47%)</title><rect x="1060.4" y="597" width="52.8" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" /> <text x="1063.40" y="607.5" >Vecto..</text> </g> <g > <title>__GI___mmap64 (7,862,712 samples, 0.12%)</title><rect x="126.3" y="661" width="1.5" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> <text x="129.33" y="671.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,627,651 samples, 0.04%)</title><rect x="199.8" y="533" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="202.78" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,695,395 samples, 0.04%)</title><rect x="1113.2" y="597" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1116.16" y="607.5" ></text> </g> <g > <title>[sudoers.so] (1,248,536 samples, 0.02%)</title><rect x="1188.3" y="597" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1191.30" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (830,361 samples, 0.01%)</title><rect x="1028.7" y="453" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1031.73" y="463.5" ></text> </g> <g > <title>resolve_map (645,210 samples, 0.01%)</title><rect x="1189.8" y="533" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> <text x="1192.76" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,021,600 samples, 0.02%)</title><rect x="1060.2" y="517" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1063.21" y="527.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (644,424 samples, 0.01%)</title><rect x="1188.7" y="293" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.72" y="303.5" ></text> </g> <g > <title>sudo_debug_fork_v1 (1,296,443 samples, 0.02%)</title><rect x="1188.0" y="549" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" /> <text x="1190.96" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,476,370 samples, 0.02%)</title><rect x="132.4" y="645" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.42" y="655.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (22,632,216 samples, 0.36%)</title><rect x="1029.6" y="613" width="4.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1032.62" y="623.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,038,769 samples, 0.02%)</title><rect x="65.5" y="517" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.54" y="527.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (839,275 samples, 0.01%)</title><rect x="1113.5" y="405" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1116.50" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,080,933 samples, 0.02%)</title><rect x="1185.8" y="581" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1188.84" y="591.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,080,933 samples, 0.02%)</title><rect x="1185.8" y="645" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1188.84" y="655.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,728,157 samples, 0.08%)</title><rect x="127.9" y="629" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="130.91" y="639.5" ></text> </g> <g > <title>[sudo] (968,097 samples, 0.02%)</title><rect x="1188.7" y="613" width="0.1" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" /> <text x="1191.66" y="623.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (642,350 samples, 0.01%)</title><rect x="1189.2" y="213" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.20" y="223.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,760,566 samples, 0.19%)</title><rect x="1026.7" y="581" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1029.68" y="591.5" ></text> </g> <g > <title>sum_check (338,868,307 samples, 5.38%)</title><rect x="136.8" y="629" width="63.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> <text x="139.77" y="639.5" >sum_ch..</text> </g> <g > <title>[[kernel.kallsyms]] (620,751 samples, 0.01%)</title><rect x="1186.5" y="389" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.53" y="399.5" ></text> </g> <g > <title>[dash] (4,000,266 samples, 0.06%)</title><rect x="1186.0" y="597" width="0.8" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1189.05" y="607.5" ></text> </g> <g > <title>do_lookup_x (645,210 samples, 0.01%)</title><rect x="1189.8" y="501" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" /> <text x="1192.76" y="511.5" ></text> </g> <g > <title>[sudoers.so] (639,865 samples, 0.01%)</title><rect x="1189.1" y="517" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1192.08" y="527.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,038,769 samples, 0.02%)</title><rect x="65.5" y="549" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.54" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (640,822 samples, 0.01%)</title><rect x="1189.3" y="549" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.32" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,789,849 samples, 0.08%)</title><rect x="132.9" y="565" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.87" y="575.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (639,356 samples, 0.01%)</title><rect x="1189.0" y="165" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.96" y="175.5" ></text> </g> <g > <title>dl_open_worker_begin (642,350 samples, 0.01%)</title><rect x="1189.2" y="453" width="0.1" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" /> <text x="1192.20" y="463.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,198,761 samples, 0.02%)</title><rect x="1188.0" y="437" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.96" y="447.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (12,893,052 samples, 0.20%)</title><rect x="129.5" y="581" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="132.47" y="591.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,823,617,361 samples, 28.96%)</title><rect x="267.9" y="597" width="341.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="270.91" y="607.5" >[[kernel.kallsyms]]</text> </g> <g > <title>[[kernel.kallsyms]] (912,838 samples, 0.01%)</title><rect x="1184.8" y="533" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1187.76" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (755,148 samples, 0.01%)</title><rect x="132.1" y="597" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.09" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (636,491 samples, 0.01%)</title><rect x="125.8" y="613" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="128.82" y="623.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,218,272 samples, 0.02%)</title><rect x="65.5" y="565" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.50" y="575.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,218,272 samples, 0.02%)</title><rect x="65.5" y="581" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.50" y="591.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (15,395,703 samples, 0.24%)</title><rect x="133.8" y="549" width="2.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="136.76" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,301,691 samples, 0.02%)</title><rect x="1186.2" y="357" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.19" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,287,607 samples, 0.08%)</title><rect x="132.8" y="613" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.77" y="623.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (948,765 samples, 0.02%)</title><rect x="131.9" y="629" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="134.91" y="639.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (636,491 samples, 0.01%)</title><rect x="125.8" y="549" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="128.82" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (917,040 samples, 0.01%)</title><rect x="1184.9" y="661" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1187.93" y="671.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (917,040 samples, 0.01%)</title><rect x="1184.9" y="597" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1187.93" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (808,975 samples, 0.01%)</title><rect x="1186.6" y="453" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.64" y="463.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,169,138 samples, 0.02%)</title><rect x="1029.2" y="581" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1032.17" y="591.5" ></text> </g> <g > <title>getgrouplist (609,086 samples, 0.01%)</title><rect x="1188.3" y="437" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> <text x="1191.30" y="447.5" ></text> </g> <g > <title>unsigned int std::uniform_int_distribution<unsigned long>::_S_nd<unsigned long, std::mersenne_twister_engine<unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul>, unsigned int> (239,048,749 samples, 3.80%)</title><rect x="18.5" y="629" width="44.8" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" /> <text x="21.50" y="639.5" >unsi..</text> </g> <g > <title>[[kernel.kallsyms]] (2,086,994 samples, 0.03%)</title><rect x="125.9" y="613" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="128.94" y="623.5" ></text> </g> <g > <title>__netlink_sendreq (644,424 samples, 0.01%)</title><rect x="1188.7" y="549" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" /> <text x="1191.72" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (855,543 samples, 0.01%)</title><rect x="136.5" y="421" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="139.49" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,222,638 samples, 0.05%)</title><rect x="124.7" y="549" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="127.72" y="559.5" ></text> </g> <g > <title>do_dlopen (639,865 samples, 0.01%)</title><rect x="1189.1" y="341" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> <text x="1192.08" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (852,012 samples, 0.01%)</title><rect x="65.6" y="501" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.57" y="511.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (559,915 samples, 0.01%)</title><rect x="1188.2" y="421" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.20" y="431.5" ></text> </g> <g > <title>dl_platform_init (626,202 samples, 0.01%)</title><rect x="1189.9" y="597" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" /> <text x="1192.88" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,487,854 samples, 0.06%)</title><rect x="199.6" y="613" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="202.62" y="623.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (639,356 samples, 0.01%)</title><rect x="1189.0" y="181" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.96" y="191.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,590,255 samples, 0.06%)</title><rect x="128.8" y="613" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="131.79" y="623.5" ></text> </g> <g > <title>__libc_early_init (647,389 samples, 0.01%)</title><rect x="1186.8" y="581" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" /> <text x="1189.80" y="591.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,117,183 samples, 0.18%)</title><rect x="134.6" y="437" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="137.57" y="447.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (643,927 samples, 0.01%)</title><rect x="1189.6" y="373" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.64" y="383.5" ></text> </g> <g > <title>sudo (15,864,263 samples, 0.25%)</title><rect x="1187.0" y="677" width="3.0" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> <text x="1190.03" y="687.5" ></text> </g> <g > <title>[libpam.so.0.85.1] (1,251,008 samples, 0.02%)</title><rect x="1188.8" y="485" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> <text x="1191.84" y="495.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (644,424 samples, 0.01%)</title><rect x="1188.7" y="517" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.72" y="527.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,885,881 samples, 0.03%)</title><rect x="1187.0" y="661" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.03" y="671.5" ></text> </g> <g > <title>__mmap64 (643,927 samples, 0.01%)</title><rect x="1189.6" y="485" width="0.2" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" /> <text x="1192.64" y="495.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,590,255 samples, 0.06%)</title><rect x="128.8" y="565" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="131.79" y="575.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (559,915 samples, 0.01%)</title><rect x="1188.2" y="485" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.20" y="495.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,696,187 samples, 0.07%)</title><rect x="124.4" y="613" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="127.44" y="623.5" ></text> </g> <g > <title>__GI__Fork (1,514,280 samples, 0.02%)</title><rect x="1187.6" y="501" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> <text x="1190.56" y="511.5" ></text> </g> <g > <title>dlopen_implementation (1,251,008 samples, 0.02%)</title><rect x="1188.8" y="421" width="0.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" /> <text x="1191.84" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,319,033 samples, 0.02%)</title><rect x="1186.2" y="421" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.18" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (917,040 samples, 0.01%)</title><rect x="1184.9" y="581" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1187.93" y="591.5" ></text> </g> <g > <title>_mm512_stream_load_si512 (281,512,813 samples, 4.47%)</title><rect x="1060.4" y="581" width="52.8" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" /> <text x="1063.40" y="591.5" >_mm51..</text> </g> <g > <title>[[kernel.kallsyms]] (763,835 samples, 0.01%)</title><rect x="1185.0" y="549" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1187.96" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,590,255 samples, 0.06%)</title><rect x="128.8" y="581" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="131.79" y="591.5" ></text> </g> <g > <title>_dl_map_object_deps (643,927 samples, 0.01%)</title><rect x="1189.6" y="581" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="1192.64" y="591.5" ></text> </g> <g > <title>__libc_fork (1,620,212 samples, 0.03%)</title><rect x="1187.5" y="517" width="0.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" /> <text x="1190.54" y="527.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (644,424 samples, 0.01%)</title><rect x="1188.7" y="437" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.72" y="447.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (639,865 samples, 0.01%)</title><rect x="1189.1" y="181" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.08" y="191.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,275,751 samples, 0.02%)</title><rect x="125.5" y="645" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="128.47" y="655.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (571,429 samples, 0.01%)</title><rect x="126.2" y="501" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="129.17" y="511.5" ></text> </g> <g > <title>_int_malloc (609,086 samples, 0.01%)</title><rect x="1188.3" y="277" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> <text x="1191.30" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (605,734 samples, 0.01%)</title><rect x="1028.9" y="549" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1031.92" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,000,576 samples, 0.02%)</title><rect x="132.5" y="533" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.50" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (647,389 samples, 0.01%)</title><rect x="1186.8" y="517" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.80" y="527.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,397,615 samples, 0.05%)</title><rect x="133.1" y="533" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="136.13" y="543.5" ></text> </g> <g > <title>[dash] (4,000,266 samples, 0.06%)</title><rect x="1186.0" y="613" width="0.8" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1189.05" y="623.5" ></text> </g> <g > <title>void fill_mt<unsigned long> (4,409,451,461 samples, 70.03%)</title><rect x="200.3" y="629" width="826.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> <text x="203.28" y="639.5" >void fill_mt<unsigned long></text> </g> <g > <title>[[kernel.kallsyms]] (549,271 samples, 0.01%)</title><rect x="1186.7" y="437" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.69" y="447.5" ></text> </g> <g > <title>__GI__dl_catch_exception (639,865 samples, 0.01%)</title><rect x="1189.1" y="357" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> <text x="1192.08" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (7,741,247 samples, 0.12%)</title><rect x="126.4" y="565" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="129.36" y="575.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (18,968,683 samples, 0.30%)</title><rect x="1180.1" y="469" width="3.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1183.10" y="479.5" ></text> </g> <g > <title>__GI___mmap64 (7,862,712 samples, 0.12%)</title><rect x="126.3" y="645" width="1.5" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> <text x="129.33" y="655.5" ></text> </g> <g > <title>__GI__dl_catch_exception (642,350 samples, 0.01%)</title><rect x="1189.2" y="549" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> <text x="1192.20" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (907,283 samples, 0.01%)</title><rect x="132.2" y="501" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.23" y="511.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (792,335 samples, 0.01%)</title><rect x="131.7" y="517" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="134.73" y="527.5" ></text> </g> <g > <title>[libnss_systemd.so.2] (609,086 samples, 0.01%)</title><rect x="1188.3" y="325" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> <text x="1191.30" y="335.5" ></text> </g> <g > <title>__libc_fork (1,319,033 samples, 0.02%)</title><rect x="1186.2" y="485" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" /> <text x="1189.18" y="495.5" ></text> </g> <g > <title>__GI__dl_catch_exception (1,251,008 samples, 0.02%)</title><rect x="1188.8" y="293" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> <text x="1191.84" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (611,652 samples, 0.01%)</title><rect x="1188.8" y="149" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.84" y="159.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (22,632,216 samples, 0.36%)</title><rect x="1029.6" y="645" width="4.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1032.62" y="655.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,080,933 samples, 0.02%)</title><rect x="1185.8" y="613" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1188.84" y="623.5" ></text> </g> <g > <title>__GI___libc_malloc (640,699 samples, 0.01%)</title><rect x="125.7" y="661" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="128.70" y="671.5" ></text> </g> <g > <title>_dl_catch_error (639,865 samples, 0.01%)</title><rect x="1189.1" y="373" width="0.1" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" /> <text x="1192.08" y="383.5" ></text> </g> <g > <title>[sudoers.so] (1,248,536 samples, 0.02%)</title><rect x="1188.3" y="533" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1191.30" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (559,915 samples, 0.01%)</title><rect x="1188.2" y="453" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.20" y="463.5" ></text> </g> <g > <title>[sudo] (4,933,396 samples, 0.08%)</title><rect x="1187.4" y="597" width="0.9" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" /> <text x="1190.38" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,719,330 samples, 0.03%)</title><rect x="200.0" y="485" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="202.95" y="495.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (907,283 samples, 0.01%)</title><rect x="132.2" y="549" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.23" y="559.5" ></text> </g> <g > <title>module_load (639,865 samples, 0.01%)</title><rect x="1189.1" y="421" width="0.1" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" /> <text x="1192.08" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,048,415 samples, 0.02%)</title><rect x="10.6" y="501" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="13.61" y="511.5" ></text> </g> <g > <title>all (6,296,483,933 samples, 100%)</title><rect x="10.0" y="693" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="13.00" y="703.5" ></text> </g> <g > <title>__netlink_request (644,424 samples, 0.01%)</title><rect x="1188.7" y="565" width="0.1" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" /> <text x="1191.72" y="575.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (561,175 samples, 0.01%)</title><rect x="1188.1" y="293" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.08" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (7,805,546 samples, 0.12%)</title><rect x="126.3" y="597" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="129.35" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (877,124 samples, 0.01%)</title><rect x="65.3" y="597" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.34" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,021,600 samples, 0.02%)</title><rect x="1060.2" y="533" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1063.21" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (639,865 samples, 0.01%)</title><rect x="1189.1" y="133" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.08" y="143.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (620,751 samples, 0.01%)</title><rect x="1186.5" y="405" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.53" y="415.5" ></text> </g> <g > <title>__mmap64 (605,734 samples, 0.01%)</title><rect x="1028.9" y="645" width="0.1" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" /> <text x="1031.92" y="655.5" ></text> </g> <g > <title>__nss_module_load (639,865 samples, 0.01%)</title><rect x="1189.1" y="437" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> <text x="1192.08" y="447.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (642,350 samples, 0.01%)</title><rect x="1189.2" y="245" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.20" y="255.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,190,425 samples, 0.07%)</title><rect x="124.5" y="565" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="127.54" y="575.5" ></text> </g> <g > <title>[[stack]] (280,085,431 samples, 4.45%)</title><rect x="10.8" y="661" width="52.5" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> <text x="13.81" y="671.5" >[[sta..</text> </g> <g > <title>[[kernel.kallsyms]] (644,424 samples, 0.01%)</title><rect x="1188.7" y="453" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.72" y="463.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (12,893,052 samples, 0.20%)</title><rect x="129.5" y="629" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="132.47" y="639.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,140,045 samples, 0.02%)</title><rect x="1188.0" y="357" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.97" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (605,363 samples, 0.01%)</title><rect x="1029.3" y="533" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1032.28" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,235,288 samples, 0.04%)</title><rect x="10.4" y="613" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="13.39" y="623.5" ></text> </g> <g > <title>dlopen_doit (642,350 samples, 0.01%)</title><rect x="1189.2" y="533" width="0.1" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" /> <text x="1192.20" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,487,854 samples, 0.06%)</title><rect x="199.6" y="597" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="202.62" y="607.5" ></text> </g> <g > <title>__GI__dl_catch_exception (642,350 samples, 0.01%)</title><rect x="1189.2" y="501" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> <text x="1192.20" y="511.5" ></text> </g> <g > <title>__GI_mprotect (639,356 samples, 0.01%)</title><rect x="1189.0" y="229" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" /> <text x="1191.96" y="239.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (642,350 samples, 0.01%)</title><rect x="1189.2" y="277" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.20" y="287.5" ></text> </g> <g > <title>[sudoers.so] (1,248,536 samples, 0.02%)</title><rect x="1188.3" y="581" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1191.30" y="591.5" ></text> </g> <g > <title>_dl_map_object_from_fd (643,927 samples, 0.01%)</title><rect x="1189.6" y="517" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" /> <text x="1192.64" y="527.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (10,148,622 samples, 0.16%)</title><rect x="129.8" y="485" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="132.83" y="495.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,476,370 samples, 0.02%)</title><rect x="132.4" y="613" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.42" y="623.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (639,356 samples, 0.01%)</title><rect x="1189.0" y="197" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.96" y="207.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (792,335 samples, 0.01%)</title><rect x="131.7" y="421" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="134.73" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (620,751 samples, 0.01%)</title><rect x="1186.5" y="501" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.53" y="511.5" ></text> </g> <g > <title>memset (639,865 samples, 0.01%)</title><rect x="1189.1" y="197" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" /> <text x="1192.08" y="207.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,501,379 samples, 0.18%)</title><rect x="129.6" y="549" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="132.58" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (605,971 samples, 0.01%)</title><rect x="125.3" y="645" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="128.32" y="655.5" ></text> </g> <g > <title>dl_main (1,289,137 samples, 0.02%)</title><rect x="1189.6" y="597" width="0.3" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> <text x="1192.64" y="607.5" ></text> </g> <g > <title>__libc_open64 (1,476,370 samples, 0.02%)</title><rect x="132.4" y="661" width="0.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> <text x="135.42" y="671.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (907,283 samples, 0.01%)</title><rect x="132.2" y="581" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.23" y="591.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (830,361 samples, 0.01%)</title><rect x="1028.7" y="437" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1031.73" y="447.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,021,600 samples, 0.02%)</title><rect x="1060.2" y="405" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1063.21" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (607,219 samples, 0.01%)</title><rect x="1187.8" y="517" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.84" y="527.5" ></text> </g> <g > <title>[dash] (573,048 samples, 0.01%)</title><rect x="1186.1" y="469" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1189.08" y="479.5" ></text> </g> <g > <title>[sudoers.so] (1,890,873 samples, 0.03%)</title><rect x="1188.8" y="629" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1191.84" y="639.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,275,751 samples, 0.02%)</title><rect x="125.5" y="581" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="128.47" y="591.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (605,971 samples, 0.01%)</title><rect x="125.3" y="613" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="128.32" y="623.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (644,424 samples, 0.01%)</title><rect x="1188.7" y="421" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.72" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,184,312 samples, 0.03%)</title><rect x="1113.3" y="469" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1116.25" y="479.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,319,033 samples, 0.02%)</title><rect x="1186.2" y="405" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.18" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,476,370 samples, 0.02%)</title><rect x="132.4" y="565" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.42" y="575.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (611,652 samples, 0.01%)</title><rect x="1188.8" y="53" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.84" y="63.5" ></text> </g> <g > <title>openaux (643,927 samples, 0.01%)</title><rect x="1189.6" y="549" width="0.2" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" /> <text x="1192.64" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (609,086 samples, 0.01%)</title><rect x="1188.3" y="165" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.30" y="175.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (29,216,896 samples, 0.46%)</title><rect x="1178.2" y="517" width="5.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1181.18" y="527.5" ></text> </g> <g > <title>start_thread (799,618,758 samples, 12.70%)</title><rect x="1033.9" y="661" width="149.9" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" /> <text x="1036.90" y="671.5" >start_thread</text> </g> <g > <title>[[kernel.kallsyms]] (605,971 samples, 0.01%)</title><rect x="125.3" y="565" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="128.32" y="575.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (8,325,588 samples, 0.13%)</title><rect x="1032.3" y="405" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1035.30" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,867,242 samples, 0.09%)</title><rect x="1027.8" y="469" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1030.79" y="479.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (13,682,739 samples, 0.22%)</title><rect x="134.1" y="469" width="2.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="137.09" y="479.5" ></text> </g> <g > <title>__pthread_create_2_1 (11,760,566 samples, 0.19%)</title><rect x="1026.7" y="661" width="2.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> <text x="1029.68" y="671.5" ></text> </g> <g > <title>LT<unsigned long>::simd_filter (4,626,561 samples, 0.07%)</title><rect x="1121.1" y="597" width="0.8" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> <text x="1124.08" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (559,915 samples, 0.01%)</title><rect x="1188.2" y="469" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.20" y="479.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,581,593 samples, 0.03%)</title><rect x="126.0" y="533" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="129.04" y="543.5" ></text> </g> <g > <title>[sudo] (2,342,389 samples, 0.04%)</title><rect x="1187.4" y="549" width="0.4" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" /> <text x="1190.40" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,677,589 samples, 0.03%)</title><rect x="1029.1" y="645" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1032.08" y="655.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (20,946,892 samples, 0.33%)</title><rect x="1029.9" y="517" width="4.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1032.94" y="527.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (647,389 samples, 0.01%)</title><rect x="1186.8" y="485" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.80" y="495.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,287,607 samples, 0.08%)</title><rect x="132.8" y="581" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.77" y="591.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (636,491 samples, 0.01%)</title><rect x="125.8" y="517" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="128.82" y="527.5" ></text> </g> <g > <title>[sudoers.so] (640,822 samples, 0.01%)</title><rect x="1189.3" y="597" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1192.32" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,319,033 samples, 0.02%)</title><rect x="1186.2" y="437" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.18" y="447.5" ></text> </g> <g > <title>[sudo] (3,501,320 samples, 0.06%)</title><rect x="1188.7" y="645" width="0.6" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" /> <text x="1191.66" y="655.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (912,838 samples, 0.01%)</title><rect x="1184.8" y="581" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1187.76" y="591.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (755,148 samples, 0.01%)</title><rect x="132.1" y="613" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.09" y="623.5" ></text> </g> <g > <title>[dash] (573,048 samples, 0.01%)</title><rect x="1186.1" y="485" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1189.08" y="495.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (611,652 samples, 0.01%)</title><rect x="1188.8" y="101" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.84" y="111.5" ></text> </g> <g > <title>__mmap64 (611,652 samples, 0.01%)</title><rect x="1188.8" y="213" width="0.2" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" /> <text x="1191.84" y="223.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (639,865 samples, 0.01%)</title><rect x="1189.1" y="101" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.08" y="111.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (611,652 samples, 0.01%)</title><rect x="1188.8" y="69" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.84" y="79.5" ></text> </g> <g > <title>_dl_map_segments (643,927 samples, 0.01%)</title><rect x="1189.6" y="501" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> <text x="1192.64" y="511.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,885,881 samples, 0.03%)</title><rect x="1187.0" y="645" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.03" y="655.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,514,280 samples, 0.02%)</title><rect x="1187.6" y="469" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.56" y="479.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,451,678 samples, 0.04%)</title><rect x="133.3" y="517" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="136.30" y="527.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,038,292 samples, 0.03%)</title><rect x="10.4" y="597" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="13.43" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (605,734 samples, 0.01%)</title><rect x="1028.9" y="613" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1031.92" y="623.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,287,607 samples, 0.08%)</title><rect x="132.8" y="597" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.77" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,141,183 samples, 0.18%)</title><rect x="129.6" y="517" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="132.65" y="527.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,127,542 samples, 0.02%)</title><rect x="1187.2" y="517" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.17" y="527.5" ></text> </g> <g > <title>sudo_dso_load_v1 (642,350 samples, 0.01%)</title><rect x="1189.2" y="629" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" /> <text x="1192.20" y="639.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (7,805,546 samples, 0.12%)</title><rect x="126.3" y="581" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="129.35" y="591.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,283,166 samples, 0.02%)</title><rect x="1186.2" y="325" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.19" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,873,575 samples, 0.06%)</title><rect x="128.1" y="533" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="131.07" y="543.5" ></text> </g> <g > <title>_dlerror_run (1,251,008 samples, 0.02%)</title><rect x="1188.8" y="405" width="0.3" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" /> <text x="1191.84" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (18,968,683 samples, 0.30%)</title><rect x="1180.1" y="453" width="3.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1183.10" y="463.5" ></text> </g> <g > <title>futex_wake (755,148 samples, 0.01%)</title><rect x="132.1" y="629" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> <text x="135.09" y="639.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (620,751 samples, 0.01%)</title><rect x="1186.5" y="517" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.53" y="527.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,717,621 samples, 0.09%)</title><rect x="132.7" y="645" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.69" y="655.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (673,282 samples, 0.01%)</title><rect x="1187.3" y="485" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.25" y="495.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,283,166 samples, 0.02%)</title><rect x="1186.2" y="309" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.19" y="319.5" ></text> </g> <g > <title>__GI___libc_read (2,723,485 samples, 0.04%)</title><rect x="125.8" y="661" width="0.5" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> <text x="128.82" y="671.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (737,884 samples, 0.01%)</title><rect x="65.4" y="533" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.36" y="543.5" ></text> </g> <g > <title>_dl_open (639,865 samples, 0.01%)</title><rect x="1189.1" y="325" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" /> <text x="1192.08" y="335.5" ></text> </g> <g > <title>[dash] (2,046,827 samples, 0.03%)</title><rect x="1186.0" y="501" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1189.05" y="511.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,086,994 samples, 0.03%)</title><rect x="125.9" y="629" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="128.94" y="639.5" ></text> </g> <g > <title>__GI___close_nocancel (605,971 samples, 0.01%)</title><rect x="125.3" y="661" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> <text x="128.32" y="671.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (559,915 samples, 0.01%)</title><rect x="1188.2" y="405" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.20" y="415.5" ></text> </g> <g > <title>_dl_sysdep_start (1,915,339 samples, 0.03%)</title><rect x="1189.6" y="613" width="0.4" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> <text x="1192.64" y="623.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (620,751 samples, 0.01%)</title><rect x="1186.5" y="437" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.53" y="447.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (12,893,052 samples, 0.20%)</title><rect x="129.5" y="597" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="132.47" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (855,543 samples, 0.01%)</title><rect x="136.5" y="405" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="139.49" y="415.5" ></text> </g> <g > <title>std::mersenne_twister_engine<unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul>::operator (10,638,694 samples, 0.17%)</title><rect x="63.3" y="645" width="2.0" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" /> <text x="66.31" y="655.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,275,751 samples, 0.02%)</title><rect x="125.5" y="613" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="128.47" y="623.5" ></text> </g> <g > <title>__GI_mprotect (3,590,255 samples, 0.06%)</title><rect x="128.8" y="661" width="0.7" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" /> <text x="131.79" y="671.5" ></text> </g> <g > <title>dl_main (540,101 samples, 0.01%)</title><rect x="1029.4" y="629" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> <text x="1032.39" y="639.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (639,450 samples, 0.01%)</title><rect x="1188.4" y="437" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.42" y="447.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,728,157 samples, 0.08%)</title><rect x="127.9" y="581" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="130.91" y="591.5" ></text> </g> <g > <title>__GI___getifaddrs (644,424 samples, 0.01%)</title><rect x="1188.7" y="597" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" /> <text x="1191.72" y="607.5" ></text> </g> <g > <title>[sudo] (4,933,396 samples, 0.08%)</title><rect x="1187.4" y="565" width="0.9" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" /> <text x="1190.38" y="575.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (816,855 samples, 0.01%)</title><rect x="1186.6" y="517" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.64" y="527.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (912,838 samples, 0.01%)</title><rect x="1184.8" y="629" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1187.76" y="639.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,080,933 samples, 0.02%)</title><rect x="1185.8" y="597" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1188.84" y="607.5" ></text> </g> <g > <title>__GI__dl_catch_exception (1,251,008 samples, 0.02%)</title><rect x="1188.8" y="325" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> <text x="1191.84" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (816,855 samples, 0.01%)</title><rect x="1186.6" y="485" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.64" y="495.5" ></text> </g> <g > <title>_dl_relocate_object (639,356 samples, 0.01%)</title><rect x="1189.0" y="261" width="0.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" /> <text x="1191.96" y="271.5" ></text> </g> <g > <title>_dl_catch_error (642,350 samples, 0.01%)</title><rect x="1189.2" y="565" width="0.1" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" /> <text x="1192.20" y="575.5" ></text> </g> <g > <title>__GI__Fork (1,198,761 samples, 0.02%)</title><rect x="1188.0" y="517" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> <text x="1190.96" y="527.5" ></text> </g> <g > <title>internal_getgrouplist (639,865 samples, 0.01%)</title><rect x="1189.1" y="469" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> <text x="1192.08" y="479.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,340,947 samples, 0.02%)</title><rect x="125.1" y="501" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="128.07" y="511.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,514,280 samples, 0.02%)</title><rect x="1187.6" y="453" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.56" y="463.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (639,865 samples, 0.01%)</title><rect x="1189.1" y="149" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.08" y="159.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,184,312 samples, 0.03%)</title><rect x="1113.3" y="517" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1116.25" y="527.5" ></text> </g> <g > <title>Aggregation<unsigned long, Sum, (424,998,341 samples, 6.75%)</title><rect x="1034.0" y="613" width="79.7" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> <text x="1037.01" y="623.5" >Aggregati..</text> </g> <g > <title>[[kernel.kallsyms]] (605,734 samples, 0.01%)</title><rect x="1028.9" y="581" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1031.92" y="591.5" ></text> </g> <g > <title>_dl_map_segments (611,652 samples, 0.01%)</title><rect x="1188.8" y="229" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> <text x="1191.84" y="239.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,888,914 samples, 0.03%)</title><rect x="10.5" y="581" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="13.46" y="591.5" ></text> </g> <g > <title>syscall (5,143,315 samples, 0.08%)</title><rect x="1183.8" y="661" width="1.0" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> <text x="1186.79" y="671.5" ></text> </g> <g > <title>__brk (609,086 samples, 0.01%)</title><rect x="1188.3" y="213" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" /> <text x="1191.30" y="223.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (639,356 samples, 0.01%)</title><rect x="1189.0" y="213" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.96" y="223.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (644,424 samples, 0.01%)</title><rect x="1188.7" y="277" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.72" y="287.5" ></text> </g> <g > <title>sysmalloc (609,086 samples, 0.01%)</title><rect x="1188.3" y="261" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> <text x="1191.30" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (559,915 samples, 0.01%)</title><rect x="1188.2" y="501" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.20" y="511.5" ></text> </g> <g > <title>[libnss_systemd.so.2] (609,086 samples, 0.01%)</title><rect x="1188.3" y="357" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> <text x="1191.30" y="367.5" ></text> </g> <g > <title>unsigned long std::uniform_int_distribution<unsigned long>::operator (1,939,760,366 samples, 30.81%)</title><rect x="663.1" y="597" width="363.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> <text x="666.11" y="607.5" >unsigned long std::uniform_int_distribution<unsig..</text> </g> <g > <title>dlopen_doit (1,251,008 samples, 0.02%)</title><rect x="1188.8" y="357" width="0.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" /> <text x="1191.84" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,678,114 samples, 0.07%)</title><rect x="1183.9" y="565" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1186.88" y="575.5" ></text> </g> <g > <title>sudo_getgrouplist2_v1 (609,086 samples, 0.01%)</title><rect x="1188.3" y="453" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" /> <text x="1191.30" y="463.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (7,805,546 samples, 0.12%)</title><rect x="126.3" y="613" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="129.35" y="623.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (663,724 samples, 0.01%)</title><rect x="132.3" y="469" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.28" y="479.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,169,138 samples, 0.02%)</title><rect x="1029.2" y="597" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1032.17" y="607.5" ></text> </g> <g > <title>[sudoers.so] (640,822 samples, 0.01%)</title><rect x="1189.3" y="645" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1192.32" y="655.5" ></text> </g> <g > <title>_dl_open (642,350 samples, 0.01%)</title><rect x="1189.2" y="517" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" /> <text x="1192.20" y="527.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (877,124 samples, 0.01%)</title><rect x="65.3" y="581" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.34" y="591.5" ></text> </g> <g > <title>_dl_map_object_from_fd (639,865 samples, 0.01%)</title><rect x="1189.1" y="229" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" /> <text x="1192.08" y="239.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,696,187 samples, 0.07%)</title><rect x="124.4" y="629" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="127.44" y="639.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,169,138 samples, 0.02%)</title><rect x="1029.2" y="565" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1032.17" y="575.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (605,363 samples, 0.01%)</title><rect x="1029.3" y="501" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1032.28" y="511.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,514,280 samples, 0.02%)</title><rect x="1187.6" y="421" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.56" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,696,187 samples, 0.07%)</title><rect x="124.4" y="645" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="127.44" y="655.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,590,255 samples, 0.06%)</title><rect x="128.8" y="629" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="131.79" y="639.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,021,600 samples, 0.02%)</title><rect x="1060.2" y="469" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1063.21" y="479.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,321,217 samples, 0.04%)</title><rect x="124.9" y="517" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="127.89" y="527.5" ></text> </g> <g > <title>sh (6,313,282 samples, 0.10%)</title><rect x="1185.8" y="677" width="1.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> <text x="1188.84" y="687.5" ></text> </g> <g > <title>_dlerror_run (642,350 samples, 0.01%)</title><rect x="1189.2" y="581" width="0.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" /> <text x="1192.20" y="591.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,143,315 samples, 0.08%)</title><rect x="1183.8" y="645" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1186.79" y="655.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (12,893,052 samples, 0.20%)</title><rect x="129.5" y="645" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="132.47" y="655.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (564,261 samples, 0.01%)</title><rect x="65.4" y="453" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.40" y="463.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (639,865 samples, 0.01%)</title><rect x="1189.1" y="165" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.08" y="175.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (609,086 samples, 0.01%)</title><rect x="1188.3" y="133" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.30" y="143.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,514,280 samples, 0.02%)</title><rect x="1187.6" y="405" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.56" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (620,751 samples, 0.01%)</title><rect x="1186.5" y="357" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.53" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,696,187 samples, 0.07%)</title><rect x="124.4" y="597" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="127.44" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (636,491 samples, 0.01%)</title><rect x="125.8" y="565" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="128.82" y="575.5" ></text> </g> <g > <title>[sudoers.so] (609,086 samples, 0.01%)</title><rect x="1188.3" y="501" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1191.30" y="511.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (642,350 samples, 0.01%)</title><rect x="1189.2" y="165" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.20" y="175.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (609,086 samples, 0.01%)</title><rect x="1188.3" y="197" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.30" y="207.5" ></text> </g> <g > <title>__GI__dl_catch_exception (639,865 samples, 0.01%)</title><rect x="1189.1" y="309" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> <text x="1192.08" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (29,216,896 samples, 0.46%)</title><rect x="1178.2" y="549" width="5.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1181.18" y="559.5" ></text> </g> <g > <title>[sudo] (6,826,890 samples, 0.11%)</title><rect x="1187.4" y="661" width="1.3" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" /> <text x="1190.38" y="671.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,184,312 samples, 0.03%)</title><rect x="1113.3" y="485" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1116.25" y="495.5" ></text> </g> <g > <title>[libpam.so.0.85.1] (1,251,008 samples, 0.02%)</title><rect x="1188.8" y="533" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> <text x="1191.84" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,487,854 samples, 0.06%)</title><rect x="199.6" y="565" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="202.62" y="575.5" ></text> </g> <g > <title>_mm512_cmplt_epi64_mask (4,626,561 samples, 0.07%)</title><rect x="1121.1" y="581" width="0.8" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> <text x="1124.08" y="591.5" ></text> </g> <g > <title>__GI__dl_catch_exception (643,927 samples, 0.01%)</title><rect x="1189.6" y="565" width="0.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> <text x="1192.64" y="575.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (15,395,703 samples, 0.24%)</title><rect x="133.8" y="613" width="2.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="136.76" y="623.5" ></text> </g> <g > <title>__futex_abstimed_wait_common (990,571 samples, 0.02%)</title><rect x="132.2" y="661" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" /> <text x="135.23" y="671.5" ></text> </g> <g > <title>date (2,539,182 samples, 0.04%)</title><rect x="1184.9" y="677" width="0.5" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" /> <text x="1187.93" y="687.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,677,589 samples, 0.03%)</title><rect x="1029.1" y="629" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1032.08" y="639.5" ></text> </g> <g > <title>_dl_map_segments (639,865 samples, 0.01%)</title><rect x="1189.1" y="213" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> <text x="1192.08" y="223.5" ></text> </g> <g > <title>dl_open_worker (639,865 samples, 0.01%)</title><rect x="1189.1" y="293" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> <text x="1192.08" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (643,927 samples, 0.01%)</title><rect x="1189.6" y="357" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.64" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (609,086 samples, 0.01%)</title><rect x="1188.3" y="149" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.30" y="159.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (639,450 samples, 0.01%)</title><rect x="1188.4" y="469" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.42" y="479.5" ></text> </g> <g > <title>__mmap64 (643,927 samples, 0.01%)</title><rect x="1189.6" y="469" width="0.2" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" /> <text x="1192.64" y="479.5" ></text> </g> <g > <title>__nss_module_get_function (639,865 samples, 0.01%)</title><rect x="1189.1" y="453" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> <text x="1192.08" y="463.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,184,312 samples, 0.03%)</title><rect x="1113.3" y="453" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1116.25" y="463.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,488,917,400 samples, 23.65%)</title><rect x="330.6" y="485" width="279.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="333.63" y="495.5" >[[kernel.kallsyms]]</text> </g> <g > <title>[[kernel.kallsyms]] (11,736,952 samples, 0.19%)</title><rect x="1031.7" y="485" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1034.66" y="495.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (912,838 samples, 0.01%)</title><rect x="1184.8" y="517" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1187.76" y="527.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,198,761 samples, 0.02%)</title><rect x="1188.0" y="485" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.96" y="495.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (640,822 samples, 0.01%)</title><rect x="1189.3" y="517" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.32" y="527.5" ></text> </g> <g > <title>[sudoers.so] (1,890,873 samples, 0.03%)</title><rect x="1188.8" y="581" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1191.84" y="591.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,198,761 samples, 0.02%)</title><rect x="1188.0" y="421" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.96" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (22,632,216 samples, 0.36%)</title><rect x="1029.6" y="597" width="4.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1032.62" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,487,200,116 samples, 23.62%)</title><rect x="331.0" y="469" width="278.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="333.95" y="479.5" >[[kernel.kallsyms]]</text> </g> <g > <title>[[kernel.kallsyms]] (29,281,351 samples, 0.47%)</title><rect x="1178.2" y="581" width="5.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1181.17" y="591.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,631,886 samples, 0.03%)</title><rect x="127.5" y="501" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="130.50" y="511.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,823,617,361 samples, 28.96%)</title><rect x="267.9" y="581" width="341.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="270.91" y="591.5" >[[kernel.kallsyms]]</text> </g> <g > <title>[[kernel.kallsyms]] (1,198,761 samples, 0.02%)</title><rect x="1188.0" y="453" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.96" y="463.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,696,187 samples, 0.07%)</title><rect x="124.4" y="581" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="127.44" y="591.5" ></text> </g> <g > <title>_dl_open (1,251,008 samples, 0.02%)</title><rect x="1188.8" y="341" width="0.3" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" /> <text x="1191.84" y="351.5" ></text> </g> <g > <title>[dash] (4,000,266 samples, 0.06%)</title><rect x="1186.0" y="565" width="0.8" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1189.05" y="575.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (639,356 samples, 0.01%)</title><rect x="1189.0" y="133" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.96" y="143.5" ></text> </g> <g > <title>allocate_stack (11,760,566 samples, 0.19%)</title><rect x="1026.7" y="645" width="2.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" /> <text x="1029.68" y="655.5" ></text> </g> <g > <title>dl_platform_init (584,694 samples, 0.01%)</title><rect x="1186.9" y="597" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" /> <text x="1189.92" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,086,994 samples, 0.03%)</title><rect x="125.9" y="581" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="128.94" y="591.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (915,118 samples, 0.01%)</title><rect x="127.6" y="469" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="130.64" y="479.5" ></text> </g> <g > <title>[libnss_systemd.so.2] (609,086 samples, 0.01%)</title><rect x="1188.3" y="389" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> <text x="1191.30" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (912,838 samples, 0.01%)</title><rect x="1184.8" y="613" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1187.76" y="623.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (948,765 samples, 0.02%)</title><rect x="131.9" y="597" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="134.91" y="607.5" ></text> </g> <g > <title>__libc_start_main_impl (4,000,266 samples, 0.06%)</title><rect x="1186.0" y="645" width="0.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="1189.05" y="655.5" ></text> </g> <g > <title>__libc_start_call_main (6,826,890 samples, 0.11%)</title><rect x="1187.4" y="629" width="1.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> <text x="1190.38" y="639.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,169,138 samples, 0.02%)</title><rect x="1029.2" y="613" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1032.17" y="623.5" ></text> </g> <g > <title>__GI_munmap (12,893,052 samples, 0.20%)</title><rect x="129.5" y="661" width="2.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> <text x="132.47" y="671.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,256,083,427 samples, 19.95%)</title><rect x="374.3" y="453" width="235.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="377.26" y="463.5" >[[kernel.kallsyms]]</text> </g> <g > <title>[[kernel.kallsyms]] (1,218,272 samples, 0.02%)</title><rect x="65.5" y="597" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.50" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (15,395,703 samples, 0.24%)</title><rect x="133.8" y="597" width="2.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="136.76" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (636,491 samples, 0.01%)</title><rect x="125.8" y="645" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="128.82" y="655.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,840,775 samples, 0.03%)</title><rect x="10.5" y="533" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="13.47" y="543.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,653,183 samples, 0.04%)</title><rect x="10.3" y="629" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="13.31" y="639.5" ></text> </g> <g > <title>__GI_munmap (15,395,703 samples, 0.24%)</title><rect x="133.8" y="645" width="2.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> <text x="136.76" y="655.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,080,933 samples, 0.02%)</title><rect x="1185.8" y="565" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1188.84" y="575.5" ></text> </g> <g > <title>pam_sm_open_session (566,212 samples, 0.01%)</title><rect x="1189.5" y="645" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" /> <text x="1192.53" y="655.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (12,893,052 samples, 0.20%)</title><rect x="129.5" y="613" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="132.47" y="623.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (948,765 samples, 0.02%)</title><rect x="131.9" y="613" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="134.91" y="623.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,080,933 samples, 0.02%)</title><rect x="1185.8" y="661" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1188.84" y="671.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,590,255 samples, 0.06%)</title><rect x="128.8" y="645" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="131.79" y="655.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (907,283 samples, 0.01%)</title><rect x="132.2" y="517" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.23" y="527.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (912,838 samples, 0.01%)</title><rect x="1184.8" y="597" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1187.76" y="607.5" ></text> </g> <g > <title>QDPBench (6,269,419,177 samples, 99.57%)</title><rect x="10.0" y="677" width="1174.9" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> <text x="13.00" y="687.5" >QDPBench</text> </g> <g > <title>[[kernel.kallsyms]] (737,884 samples, 0.01%)</title><rect x="65.4" y="485" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.36" y="495.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (907,283 samples, 0.01%)</title><rect x="132.2" y="645" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.23" y="655.5" ></text> </g> <g > <title>[dash] (4,000,266 samples, 0.06%)</title><rect x="1186.0" y="549" width="0.8" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1189.05" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,760,566 samples, 0.19%)</title><rect x="1026.7" y="549" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1029.68" y="559.5" ></text> </g> <g > <title>[sudoers.so] (1,890,873 samples, 0.03%)</title><rect x="1188.8" y="549" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1191.84" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (15,395,703 samples, 0.24%)</title><rect x="133.8" y="565" width="2.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="136.76" y="575.5" ></text> </g> <g > <title>getgrouplist (639,865 samples, 0.01%)</title><rect x="1189.1" y="485" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> <text x="1192.08" y="495.5" ></text> </g> <g > <title>dlerror_run (639,865 samples, 0.01%)</title><rect x="1189.1" y="389" width="0.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> <text x="1192.08" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,184,312 samples, 0.03%)</title><rect x="1113.3" y="501" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1116.25" y="511.5" ></text> </g> <g > <title>[libstdc++.so.6.0.32] (799,083,433 samples, 12.69%)</title><rect x="1034.0" y="645" width="149.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" /> <text x="1036.98" y="655.5" >[libstdc++.so.6.0.32]</text> </g> <g > <title>[[kernel.kallsyms]] (3,487,854 samples, 0.06%)</title><rect x="199.6" y="581" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="202.62" y="591.5" ></text> </g> <g > <title>dlopen_implementation (642,350 samples, 0.01%)</title><rect x="1189.2" y="597" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" /> <text x="1192.20" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (763,835 samples, 0.01%)</title><rect x="1185.0" y="565" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1187.96" y="575.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,695,395 samples, 0.04%)</title><rect x="1113.2" y="565" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1116.16" y="575.5" ></text> </g> <g > <title>_mm512_stream_load_si512 (300,023,726 samples, 4.76%)</title><rect x="1121.9" y="581" width="56.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" /> <text x="1124.94" y="591.5" >_mm51..</text> </g> <g > <title>_dl_map_object (611,652 samples, 0.01%)</title><rect x="1188.8" y="261" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> <text x="1191.84" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,755,045 samples, 0.04%)</title><rect x="128.9" y="517" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="131.95" y="527.5" ></text> </g> <g > <title>[sudoers.so] (609,086 samples, 0.01%)</title><rect x="1188.3" y="485" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1191.30" y="495.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (15,395,703 samples, 0.24%)</title><rect x="133.8" y="501" width="2.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="136.76" y="511.5" ></text> </g> <g > <title>dl_open_worker_begin (1,251,008 samples, 0.02%)</title><rect x="1188.8" y="277" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" /> <text x="1191.84" y="287.5" ></text> </g> <g > <title>__GI___libc_read (2,086,994 samples, 0.03%)</title><rect x="125.9" y="645" width="0.4" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> <text x="128.94" y="655.5" ></text> </g> <g > <title>__GI__dl_catch_exception (642,350 samples, 0.01%)</title><rect x="1189.2" y="421" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> <text x="1192.20" y="431.5" ></text> </g> <g > <title>_dl_start_final (1,915,339 samples, 0.03%)</title><rect x="1189.6" y="629" width="0.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> <text x="1192.64" y="639.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (644,424 samples, 0.01%)</title><rect x="1188.7" y="469" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.72" y="479.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (29,281,351 samples, 0.47%)</title><rect x="1178.2" y="597" width="5.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1181.17" y="607.5" ></text> </g> <g > <title>dl_init_cacheinfo (626,202 samples, 0.01%)</title><rect x="1189.9" y="565" width="0.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" /> <text x="1192.88" y="575.5" ></text> </g> <g > <title>_start (1,232,083 samples, 0.02%)</title><rect x="1186.8" y="661" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> <text x="1189.80" y="671.5" ></text> </g> <g > <title>_dl_map_object_from_fd (611,652 samples, 0.01%)</title><rect x="1188.8" y="245" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" /> <text x="1191.84" y="255.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (21,773,677 samples, 0.35%)</title><rect x="1029.8" y="549" width="4.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1032.78" y="559.5" ></text> </g> <g > <title>[sudoers.so] (640,822 samples, 0.01%)</title><rect x="1189.3" y="629" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1192.32" y="639.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (912,838 samples, 0.01%)</title><rect x="1184.8" y="565" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1187.76" y="575.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,319,033 samples, 0.02%)</title><rect x="1186.2" y="389" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.18" y="399.5" ></text> </g> <g > <title>sudo_debug_exit_v1 (644,958 samples, 0.01%)</title><rect x="1188.5" y="597" width="0.2" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" /> <text x="1191.54" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,821,901,240 samples, 28.94%)</title><rect x="268.2" y="517" width="341.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="271.23" y="527.5" >[[kernel.kallsyms]]</text> </g> <g > <title>[[kernel.kallsyms]] (11,760,566 samples, 0.19%)</title><rect x="1026.7" y="565" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1029.68" y="575.5" ></text> </g> <g > <title>__ext4_ioctl (640,822 samples, 0.01%)</title><rect x="1189.3" y="501" width="0.1" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" /> <text x="1192.32" y="511.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,143,315 samples, 0.08%)</title><rect x="1183.8" y="597" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1186.79" y="607.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (605,734 samples, 0.01%)</title><rect x="1028.9" y="517" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1031.92" y="527.5" ></text> </g> <g > <title>_dl_map_object_from_fd (642,350 samples, 0.01%)</title><rect x="1189.2" y="373" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" /> <text x="1192.20" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (7,927,999 samples, 0.13%)</title><rect x="130.2" y="469" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="133.25" y="479.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (877,124 samples, 0.01%)</title><rect x="65.3" y="613" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.34" y="623.5" ></text> </g> <g > <title>_dl_relocate_object (645,210 samples, 0.01%)</title><rect x="1189.8" y="581" width="0.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" /> <text x="1192.76" y="591.5" ></text> </g> <g > <title>__GI___getrlimit64 (647,389 samples, 0.01%)</title><rect x="1186.8" y="549" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="1189.80" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (620,751 samples, 0.01%)</title><rect x="1186.5" y="373" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.53" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (737,884 samples, 0.01%)</title><rect x="65.4" y="517" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.36" y="527.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,719,330 samples, 0.03%)</title><rect x="200.0" y="501" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="202.95" y="511.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,822,758,636 samples, 28.95%)</title><rect x="268.1" y="549" width="341.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="271.07" y="559.5" >[[kernel.kallsyms]]</text> </g> <g > <title>[[kernel.kallsyms]] (792,335 samples, 0.01%)</title><rect x="131.7" y="469" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="134.73" y="479.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,306,594 samples, 0.07%)</title><rect x="133.0" y="549" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.96" y="559.5" ></text> </g> <g > <title>_dl_map_object_deps (642,350 samples, 0.01%)</title><rect x="1189.2" y="437" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="1192.20" y="447.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,280,067 samples, 0.02%)</title><rect x="1187.1" y="549" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.14" y="559.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (644,424 samples, 0.01%)</title><rect x="1188.7" y="485" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.72" y="495.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,079,354 samples, 0.02%)</title><rect x="126.1" y="517" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="129.07" y="527.5" ></text> </g> <g > <title>__mmap64 (605,734 samples, 0.01%)</title><rect x="1028.9" y="629" width="0.1" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" /> <text x="1031.92" y="639.5" ></text> </g> <g > <title>__libc_openat64 (5,717,621 samples, 0.09%)</title><rect x="132.7" y="661" width="1.1" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" /> <text x="135.69" y="671.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,184,312 samples, 0.03%)</title><rect x="1113.3" y="437" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1116.25" y="447.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (8,395,448 samples, 0.13%)</title><rect x="1027.3" y="485" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1030.31" y="495.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (626,832 samples, 0.01%)</title><rect x="1184.6" y="485" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1187.64" y="495.5" ></text> </g> <g > <title>[unknown] (545,758 samples, 0.01%)</title><rect x="1185.5" y="661" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> <text x="1188.49" y="671.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (642,350 samples, 0.01%)</title><rect x="1189.2" y="293" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.20" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (561,175 samples, 0.01%)</title><rect x="1188.1" y="325" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.08" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (912,838 samples, 0.01%)</title><rect x="1184.8" y="645" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1187.76" y="655.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,476,370 samples, 0.02%)</title><rect x="132.4" y="629" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="135.42" y="639.5" ></text> </g> </g> </svg>
|