|
|
<?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="502" onload="init(evt)" viewBox="0 0 1200 502" 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="502.0" fill="url(#background)" /> <text id="title" x="600.00" y="24" >Flame Graph</text> <text id="details" x="10.00" y="485" > </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="485" > </text> <g id="frames"> <g > <title>[[kernel.kallsyms]] (44,499,432 samples, 0.23%)</title><rect x="819.3" y="389" width="2.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="822.32" y="399.5" ></text> </g> <g > <title>__libc_fork (2,891,036 samples, 0.02%)</title><rect x="1188.9" y="277" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" /> <text x="1191.91" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,440,610 samples, 0.01%)</title><rect x="1188.9" y="133" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.91" y="143.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,737,042 samples, 0.01%)</title><rect x="815.9" y="309" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="818.87" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,326,736 samples, 0.02%)</title><rect x="1004.4" y="373" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1007.37" y="383.5" ></text> </g> <g > <title>__GI___libc_read (3,390,306 samples, 0.02%)</title><rect x="818.4" y="421" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> <text x="821.42" y="431.5" ></text> </g> <g > <title>arch_fork (3,294,563 samples, 0.02%)</title><rect x="1188.1" y="213" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> <text x="1191.10" y="223.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,010,420 samples, 0.01%)</title><rect x="819.0" y="293" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="821.98" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,522,592 samples, 0.01%)</title><rect x="822.1" y="293" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.06" y="303.5" ></text> </g> <g > <title>[libstdc++.so.6.0.32] (2,954,658,675 samples, 15.45%)</title><rect x="1004.7" y="405" width="182.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" /> <text x="1007.74" y="415.5" >[libstdc++.so.6.0.32]</text> </g> <g > <title>[[kernel.kallsyms]] (4,339,346 samples, 0.02%)</title><rect x="328.3" y="261" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="331.25" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,315,227 samples, 0.02%)</title><rect x="1188.5" y="357" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.51" y="367.5" ></text> </g> <g > <title>[unknown] (7,524,590,403 samples, 39.35%)</title><rect x="353.8" y="421" width="464.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> <text x="356.81" y="431.5" >[unknown]</text> </g> <g > <title>[[kernel.kallsyms]] (27,425,987 samples, 0.14%)</title><rect x="820.4" y="293" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="823.37" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,145,217 samples, 0.02%)</title><rect x="822.3" y="277" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.32" y="287.5" ></text> </g> <g > <title>[libstdc++.so.6.0.32] (22,414,514 samples, 0.12%)</title><rect x="1182.8" y="373" width="1.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" /> <text x="1185.81" y="383.5" ></text> </g> <g > <title>[QDPBench] (2,954,658,675 samples, 15.45%)</title><rect x="1004.7" y="389" width="182.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> <text x="1007.74" y="399.5" >[QDPBench]</text> </g> <g > <title>__libc_fork (3,294,563 samples, 0.02%)</title><rect x="1188.1" y="245" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" /> <text x="1191.10" y="255.5" ></text> </g> <g > <title>sudo (24,089,407 samples, 0.13%)</title><rect x="1188.5" y="437" width="1.5" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> <text x="1191.51" y="447.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,294,563 samples, 0.02%)</title><rect x="1188.1" y="165" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.10" y="175.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,080,995 samples, 0.03%)</title><rect x="815.5" y="229" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="818.49" y="239.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,386,595 samples, 0.02%)</title><rect x="822.1" y="325" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.06" y="335.5" ></text> </g> <g > <title>[dash] (7,306,765 samples, 0.04%)</title><rect x="1188.0" y="421" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1190.99" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,009,567 samples, 0.02%)</title><rect x="822.3" y="341" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.32" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,294,563 samples, 0.02%)</title><rect x="1188.1" y="197" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.10" y="207.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (26,632,596 samples, 0.14%)</title><rect x="820.4" y="277" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="823.42" y="287.5" ></text> </g> <g > <title>std::chrono::_V2::steady_clock::now (68,929,082 samples, 0.36%)</title><rect x="807.1" y="389" width="4.3" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" /> <text x="810.13" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,766,715 samples, 0.01%)</title><rect x="1187.9" y="421" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.88" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,705,251 samples, 0.01%)</title><rect x="1188.6" y="293" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.61" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,731,013 samples, 0.01%)</title><rect x="1189.2" y="149" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.23" y="159.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,766,715 samples, 0.01%)</title><rect x="1187.9" y="357" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.88" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,386,595 samples, 0.02%)</title><rect x="822.1" y="389" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.06" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,766,689 samples, 0.02%)</title><rect x="822.7" y="309" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.69" y="319.5" ></text> </g> <g > <title>__GI__Fork (2,457,353 samples, 0.01%)</title><rect x="1188.9" y="261" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> <text x="1191.91" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,904,055,605 samples, 9.96%)</title><rect x="885.3" y="309" width="117.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="888.34" y="319.5" >[[kernel.kalls..</text> </g> <g > <title>[[kernel.kallsyms]] (4,702,672 samples, 0.02%)</title><rect x="822.6" y="357" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.63" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,326,736 samples, 0.02%)</title><rect x="1004.4" y="389" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1007.37" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,574,118 samples, 0.03%)</title><rect x="1187.1" y="373" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.08" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,080,995 samples, 0.03%)</title><rect x="815.5" y="197" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="818.49" y="207.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,766,715 samples, 0.01%)</title><rect x="1187.9" y="293" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.88" y="303.5" ></text> </g> <g > <title>dlopen_doit (1,669,717 samples, 0.01%)</title><rect x="1189.6" y="117" width="0.1" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" /> <text x="1192.58" y="127.5" ></text> </g> <g > <title>[sudoers.so] (2,495,463 samples, 0.01%)</title><rect x="1189.6" y="341" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1192.58" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,766,715 samples, 0.01%)</title><rect x="1187.9" y="325" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.88" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,326,736 samples, 0.02%)</title><rect x="1004.4" y="405" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1007.37" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,780,380 samples, 0.01%)</title><rect x="25.1" y="405" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="28.09" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,326,736 samples, 0.02%)</title><rect x="1004.4" y="357" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1007.37" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,766,689 samples, 0.02%)</title><rect x="822.7" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.69" y="303.5" ></text> </g> <g > <title>_dl_sysdep_start (1,881,846 samples, 0.01%)</title><rect x="1189.9" y="373" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> <text x="1192.88" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,293,644 samples, 0.01%)</title><rect x="1188.2" y="69" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.16" y="79.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,172,283 samples, 0.03%)</title><rect x="328.2" y="389" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="331.20" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,010,420 samples, 0.01%)</title><rect x="819.0" y="277" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="821.98" y="287.5" ></text> </g> <g > <title>[sudo] (11,228,095 samples, 0.06%)</title><rect x="1188.7" y="341" width="0.7" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" /> <text x="1191.72" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (18,146,072 samples, 0.09%)</title><rect x="1002.9" y="229" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1005.90" y="239.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (21,470,187 samples, 0.11%)</title><rect x="803.9" y="309" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="806.91" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (18,006,589 samples, 0.09%)</title><rect x="804.1" y="261" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="807.13" y="271.5" ></text> </g> <g > <title>_dlerror_run (1,669,717 samples, 0.01%)</title><rect x="1189.6" y="165" width="0.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" /> <text x="1192.58" y="175.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,522,592 samples, 0.01%)</title><rect x="822.1" y="277" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.06" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,737,042 samples, 0.01%)</title><rect x="815.9" y="325" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="818.87" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,326,736 samples, 0.02%)</title><rect x="1004.4" y="309" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1007.37" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,526,230 samples, 0.01%)</title><rect x="819.2" y="341" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="822.16" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,677,612 samples, 0.01%)</title><rect x="805.1" y="213" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="808.14" y="223.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (19,010,115 samples, 0.10%)</title><rect x="1002.8" y="277" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1005.85" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,905,789,850 samples, 9.97%)</title><rect x="885.2" y="389" width="117.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="888.23" y="399.5" >[[kernel.kalls..</text> </g> <g > <title>[[kernel.kallsyms]] (7,679,166 samples, 0.04%)</title><rect x="818.6" y="373" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="821.63" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (19,010,115 samples, 0.10%)</title><rect x="1002.8" y="389" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1005.85" y="399.5" ></text> </g> <g > <title>[dash] (7,306,765 samples, 0.04%)</title><rect x="1188.0" y="309" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1190.99" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,457,353 samples, 0.01%)</title><rect x="1188.9" y="213" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.91" y="223.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,948,349 samples, 0.04%)</title><rect x="815.4" y="357" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="818.44" y="367.5" ></text> </g> <g > <title>[libstdc++.so.6.0.32] (74,345,703 samples, 0.39%)</title><rect x="811.4" y="405" width="4.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" /> <text x="814.39" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,948,349 samples, 0.04%)</title><rect x="815.4" y="309" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="818.44" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,390,306 samples, 0.02%)</title><rect x="818.4" y="357" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="821.42" y="367.5" ></text> </g> <g > <title>[unknown] (5,895,072 samples, 0.03%)</title><rect x="1189.5" y="421" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> <text x="1192.52" y="431.5" ></text> </g> <g > <title>[libstdc++.so.6.0.32] (30,688,312 samples, 0.16%)</title><rect x="805.2" y="389" width="1.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" /> <text x="808.24" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,955,258 samples, 0.02%)</title><rect x="818.2" y="405" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="821.24" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,522,592 samples, 0.01%)</title><rect x="822.1" y="229" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.06" y="239.5" ></text> </g> <g > <title>__GI_munmap (19,010,115 samples, 0.10%)</title><rect x="1002.8" y="405" width="1.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> <text x="1005.85" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,339,346 samples, 0.02%)</title><rect x="328.3" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="331.25" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,390,306 samples, 0.02%)</title><rect x="818.4" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="821.42" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,522,592 samples, 0.01%)</title><rect x="822.1" y="309" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.06" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (7,679,166 samples, 0.04%)</title><rect x="818.6" y="341" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="821.63" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,315,227 samples, 0.02%)</title><rect x="1188.5" y="389" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.51" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,574,118 samples, 0.03%)</title><rect x="1187.1" y="341" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.08" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (16,282,930 samples, 0.09%)</title><rect x="804.2" y="229" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="807.23" y="239.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,009,567 samples, 0.02%)</title><rect x="822.3" y="325" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.32" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (20,608,832 samples, 0.11%)</title><rect x="804.0" y="293" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="806.97" y="303.5" ></text> </g> <g > <title>[libpam.so.0.85.1] (1,669,717 samples, 0.01%)</title><rect x="1189.6" y="293" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> <text x="1192.58" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,882,528 samples, 0.02%)</title><rect x="822.7" y="277" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.75" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (19,010,115 samples, 0.10%)</title><rect x="1002.8" y="325" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1005.85" y="335.5" ></text> </g> <g > <title>[dash] (7,306,765 samples, 0.04%)</title><rect x="1188.0" y="357" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1190.99" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,457,353 samples, 0.01%)</title><rect x="1188.9" y="197" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.91" y="207.5" ></text> </g> <g > <title>_dl_start_final (1,881,846 samples, 0.01%)</title><rect x="1189.9" y="389" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> <text x="1192.88" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (44,499,432 samples, 0.23%)</title><rect x="819.3" y="405" width="2.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="822.32" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,558,148 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.18" y="191.5" ></text> </g> <g > <title>__GI__Fork (2,571,689 samples, 0.01%)</title><rect x="1189.2" y="277" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> <text x="1192.18" y="287.5" ></text> </g> <g > <title>___dlopen (1,669,717 samples, 0.01%)</title><rect x="1189.6" y="197" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> <text x="1192.58" y="207.5" ></text> </g> <g > <title>__libc_start_main_impl (12,997,262 samples, 0.07%)</title><rect x="1188.7" y="405" width="0.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="1191.72" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,457,353 samples, 0.01%)</title><rect x="1188.9" y="181" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.91" y="191.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,172,283 samples, 0.03%)</title><rect x="328.2" y="357" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="331.20" y="367.5" ></text> </g> <g > <title>__libc_openat64 (5,722,742 samples, 0.03%)</title><rect x="822.6" y="421" width="0.3" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" /> <text x="825.57" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,386,595 samples, 0.02%)</title><rect x="822.1" y="405" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.06" y="415.5" ></text> </g> <g > <title>numactl (2,597,375 samples, 0.01%)</title><rect x="1187.7" y="437" width="0.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" /> <text x="1190.72" y="447.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,574,118 samples, 0.03%)</title><rect x="1187.1" y="389" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.08" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (7,679,166 samples, 0.04%)</title><rect x="818.6" y="309" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="821.63" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,326,736 samples, 0.02%)</title><rect x="1004.4" y="325" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1007.37" y="335.5" ></text> </g> <g > <title>dlopen_implementation (1,669,717 samples, 0.01%)</title><rect x="1189.6" y="181" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" /> <text x="1192.58" y="191.5" ></text> </g> <g > <title>_start (1,881,846 samples, 0.01%)</title><rect x="1189.9" y="421" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> <text x="1192.88" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,493,208 samples, 0.02%)</title><rect x="24.9" y="421" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="27.92" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,499,962 samples, 0.01%)</title><rect x="818.4" y="261" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="821.42" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,948,349 samples, 0.04%)</title><rect x="815.4" y="277" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="818.44" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,390,306 samples, 0.02%)</title><rect x="818.4" y="309" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="821.42" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,526,230 samples, 0.01%)</title><rect x="819.2" y="373" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="822.16" y="383.5" ></text> </g> <g > <title>[dash] (1,684,986 samples, 0.01%)</title><rect x="1188.0" y="245" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1190.99" y="255.5" ></text> </g> <g > <title>[QDPBench] (241,769,126 samples, 1.26%)</title><rect x="10.0" y="421" width="14.9" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> <text x="13.00" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (44,499,432 samples, 0.23%)</title><rect x="819.3" y="373" width="2.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="822.32" y="383.5" ></text> </g> <g > <title>[libpam.so.0.85.1] (1,669,717 samples, 0.01%)</title><rect x="1189.6" y="213" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> <text x="1192.58" y="223.5" ></text> </g> <g > <title>[sudo] (12,997,262 samples, 0.07%)</title><rect x="1188.7" y="421" width="0.8" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" /> <text x="1191.72" y="431.5" ></text> </g> <g > <title>_int_malloc (1,813,649 samples, 0.01%)</title><rect x="1004.3" y="421" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> <text x="1007.26" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,315,227 samples, 0.02%)</title><rect x="1188.5" y="325" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.51" y="335.5" ></text> </g> <g > <title>_dl_open (1,669,717 samples, 0.01%)</title><rect x="1189.6" y="101" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" /> <text x="1192.58" y="111.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,948,349 samples, 0.04%)</title><rect x="815.4" y="293" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="818.44" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,315,227 samples, 0.02%)</title><rect x="1188.5" y="341" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.51" y="351.5" ></text> </g> <g > <title>[anon] (409,735,084 samples, 2.14%)</title><rect x="328.5" y="421" width="25.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" /> <text x="331.52" y="431.5" >[..</text> </g> <g > <title>[[kernel.kallsyms]] (19,010,115 samples, 0.10%)</title><rect x="1002.8" y="245" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1005.85" y="255.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,526,230 samples, 0.01%)</title><rect x="819.2" y="277" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="822.16" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (41,985,308 samples, 0.22%)</title><rect x="819.5" y="309" width="2.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="822.47" y="319.5" ></text> </g> <g > <title>syscall (5,574,118 samples, 0.03%)</title><rect x="1187.1" y="421" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> <text x="1190.08" y="431.5" ></text> </g> <g > <title>date (3,218,439 samples, 0.02%)</title><rect x="1187.5" y="437" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" /> <text x="1190.52" y="447.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,571,689 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.18" y="207.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (22,340,223 samples, 0.12%)</title><rect x="803.9" y="325" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="806.86" y="335.5" ></text> </g> <g > <title>QDPBench (19,080,136,302 samples, 99.79%)</title><rect x="10.0" y="437" width="1177.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> <text x="13.00" y="447.5" >QDPBench</text> </g> <g > <title>[[kernel.kallsyms]] (3,281,568 samples, 0.02%)</title><rect x="1188.1" y="133" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.10" y="143.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (22,340,223 samples, 0.12%)</title><rect x="803.9" y="389" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="806.86" y="399.5" ></text> </g> <g > <title>__libc_start_main_impl (7,306,765 samples, 0.04%)</title><rect x="1188.0" y="405" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="1190.99" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (44,499,432 samples, 0.23%)</title><rect x="819.3" y="341" width="2.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="822.32" y="351.5" ></text> </g> <g > <title>clock_gettime@plt (32,690,246 samples, 0.17%)</title><rect x="809.4" y="373" width="2.0" height="15.0" fill="rgb(229,112,27)" rx="2" ry="2" /> <text x="812.37" y="383.5" ></text> </g> <g > <title>[QDPBench] (276,448,453 samples, 1.45%)</title><rect x="328.5" y="405" width="17.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> <text x="331.52" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,904,922,585 samples, 9.96%)</title><rect x="885.3" y="341" width="117.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="888.28" y="351.5" >[[kernel.kalls..</text> </g> <g > <title>[[kernel.kallsyms]] (1,777,927 samples, 0.01%)</title><rect x="818.5" y="245" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="821.47" y="255.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,315,227 samples, 0.02%)</title><rect x="1188.5" y="421" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.51" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,955,258 samples, 0.02%)</title><rect x="818.2" y="325" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="821.24" y="335.5" ></text> </g> <g > <title>arch_fork (2,571,689 samples, 0.01%)</title><rect x="1189.2" y="261" width="0.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> <text x="1192.18" y="271.5" ></text> </g> <g > <title>__GI___clock_gettime (22,414,514 samples, 0.12%)</title><rect x="1182.8" y="357" width="1.4" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> <text x="1185.81" y="367.5" ></text> </g> <g > <title>__GI___libc_read (3,390,306 samples, 0.02%)</title><rect x="818.4" y="405" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> <text x="821.42" y="415.5" ></text> </g> <g > <title>[sudoers.so] (2,495,463 samples, 0.01%)</title><rect x="1189.6" y="357" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1192.58" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,737,042 samples, 0.01%)</title><rect x="815.9" y="341" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="818.87" y="351.5" ></text> </g> <g > <title>[sudoers.so] (2,495,463 samples, 0.01%)</title><rect x="1189.6" y="325" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1192.58" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,731,013 samples, 0.01%)</title><rect x="1189.2" y="133" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.23" y="143.5" ></text> </g> <g > <title>__GI___clock_gettime (30,688,312 samples, 0.16%)</title><rect x="805.2" y="373" width="1.9" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> <text x="808.24" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,390,306 samples, 0.02%)</title><rect x="818.4" y="373" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="821.42" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,574,118 samples, 0.03%)</title><rect x="1187.1" y="357" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.08" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,526,230 samples, 0.01%)</title><rect x="819.2" y="357" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="822.16" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (26,632,596 samples, 0.14%)</title><rect x="820.4" y="261" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="823.42" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (44,499,432 samples, 0.23%)</title><rect x="819.3" y="357" width="2.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="822.32" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,554,115,900 samples, 8.13%)</title><rect x="906.9" y="245" width="95.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="909.93" y="255.5" >[[kernel.ka..</text> </g> <g > <title>[[kernel.kallsyms]] (3,386,595 samples, 0.02%)</title><rect x="822.1" y="357" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.06" y="367.5" ></text> </g> <g > <title>[sudo] (11,228,095 samples, 0.06%)</title><rect x="1188.7" y="357" width="0.7" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" /> <text x="1191.72" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,386,595 samples, 0.02%)</title><rect x="822.1" y="341" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.06" y="351.5" ></text> </g> <g > <title>sudo_debug_fork_v1 (2,941,457 samples, 0.02%)</title><rect x="1189.2" y="309" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" /> <text x="1192.18" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,339,346 samples, 0.02%)</title><rect x="328.3" y="245" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="331.25" y="255.5" ></text> </g> <g > <title>sh (10,190,112 samples, 0.05%)</title><rect x="1187.9" y="437" width="0.6" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> <text x="1190.88" y="447.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,294,563 samples, 0.02%)</title><rect x="1188.1" y="181" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.10" y="191.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,440,610 samples, 0.01%)</title><rect x="1188.9" y="117" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.91" y="127.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,326,736 samples, 0.02%)</title><rect x="1004.4" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1007.37" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,009,567 samples, 0.02%)</title><rect x="822.3" y="357" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.32" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (22,340,223 samples, 0.12%)</title><rect x="803.9" y="373" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="806.86" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,526,230 samples, 0.01%)</title><rect x="819.2" y="389" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="822.16" y="399.5" ></text> </g> <g > <title>[dash] (7,306,765 samples, 0.04%)</title><rect x="1188.0" y="373" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1190.99" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,702,672 samples, 0.02%)</title><rect x="822.6" y="325" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.63" y="335.5" ></text> </g> <g > <title>sudo_debug_fork_v1 (2,891,036 samples, 0.02%)</title><rect x="1188.9" y="293" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" /> <text x="1191.91" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,705,251 samples, 0.01%)</title><rect x="1188.6" y="277" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.61" y="287.5" ></text> </g> <g > <title>syscall (1,737,042 samples, 0.01%)</title><rect x="815.9" y="389" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> <text x="818.87" y="399.5" ></text> </g> <g > <title>start_thread (2,954,658,675 samples, 15.45%)</title><rect x="1004.7" y="421" width="182.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" /> <text x="1007.74" y="431.5" >start_thread</text> </g> <g > <title>[[kernel.kallsyms]] (2,526,230 samples, 0.01%)</title><rect x="819.2" y="309" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="822.16" y="319.5" ></text> </g> <g > <title>std::chrono::_V2::steady_clock::now (33,709,335 samples, 0.18%)</title><rect x="816.1" y="405" width="2.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" /> <text x="819.11" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (18,006,589 samples, 0.09%)</title><rect x="804.1" y="245" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="807.13" y="255.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (22,340,223 samples, 0.12%)</title><rect x="803.9" y="357" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="806.86" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,326,736 samples, 0.02%)</title><rect x="1004.4" y="341" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1007.37" y="351.5" ></text> </g> <g > <title>[libpam.so.0.85.1] (1,669,717 samples, 0.01%)</title><rect x="1189.6" y="229" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> <text x="1192.58" y="239.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,264,047 samples, 0.02%)</title><rect x="1188.1" y="117" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.10" y="127.5" ></text> </g> <g > <title>_dl_start (1,881,846 samples, 0.01%)</title><rect x="1189.9" y="405" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> <text x="1192.88" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,172,283 samples, 0.03%)</title><rect x="328.2" y="309" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="331.20" y="319.5" ></text> </g> <g > <title>__libc_open64 (4,009,567 samples, 0.02%)</title><rect x="822.3" y="421" width="0.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> <text x="825.32" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,571,689 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.18" y="239.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,702,672 samples, 0.02%)</title><rect x="822.6" y="373" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.63" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,080,995 samples, 0.03%)</title><rect x="815.5" y="213" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="818.49" y="223.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,390,306 samples, 0.02%)</title><rect x="818.4" y="341" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="821.42" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,737,042 samples, 0.01%)</title><rect x="815.9" y="373" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="818.87" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,766,715 samples, 0.01%)</title><rect x="1187.9" y="405" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.88" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,574,118 samples, 0.03%)</title><rect x="1187.1" y="405" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.08" y="415.5" ></text> </g> <g > <title>all (19,120,262,162 samples, 100%)</title><rect x="10.0" y="453" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="13.00" y="463.5" ></text> </g> <g > <title>[QDPBench] (1,528,702,105 samples, 8.00%)</title><rect x="25.2" y="405" width="94.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> <text x="28.20" y="415.5" >[QDPBench]</text> </g> <g > <title>[[kernel.kallsyms]] (19,010,115 samples, 0.10%)</title><rect x="1002.8" y="261" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1005.85" y="271.5" ></text> </g> <g > <title>[QDPBench] (2,915,385,788 samples, 15.25%)</title><rect x="822.9" y="405" width="179.9" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> <text x="825.92" y="415.5" >[QDPBench]</text> </g> <g > <title>[[kernel.kallsyms]] (3,145,217 samples, 0.02%)</title><rect x="822.3" y="309" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.32" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,009,567 samples, 0.02%)</title><rect x="822.3" y="389" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.32" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,599,464 samples, 0.01%)</title><rect x="1002.7" y="213" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1005.69" y="223.5" ></text> </g> <g > <title>[[vdso]] (3,385,383,119 samples, 17.71%)</title><rect x="119.6" y="421" width="208.9" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> <text x="122.59" y="431.5" >[[vdso]]</text> </g> <g > <title>[[kernel.kallsyms]] (19,010,115 samples, 0.10%)</title><rect x="1002.8" y="341" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1005.85" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,571,689 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.18" y="255.5" ></text> </g> <g > <title>__GI_munmap (3,386,595 samples, 0.02%)</title><rect x="822.1" y="421" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> <text x="825.06" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,264,047 samples, 0.02%)</title><rect x="1188.1" y="101" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.10" y="111.5" ></text> </g> <g > <title>[sudo] (7,482,832 samples, 0.04%)</title><rect x="1188.7" y="309" width="0.5" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" /> <text x="1191.72" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,555,844,455 samples, 8.14%)</title><rect x="906.8" y="261" width="96.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="909.83" y="271.5" >[[kernel.ka..</text> </g> <g > <title>[[kernel.kallsyms]] (3,315,227 samples, 0.02%)</title><rect x="1188.5" y="405" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.51" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,955,258 samples, 0.02%)</title><rect x="818.2" y="341" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="821.24" y="351.5" ></text> </g> <g > <title>[sudoers.so] (2,495,463 samples, 0.01%)</title><rect x="1189.6" y="309" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1192.58" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,596,755 samples, 0.01%)</title><rect x="1004.5" y="229" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1007.48" y="239.5" ></text> </g> <g > <title>[sudo] (4,243,346 samples, 0.02%)</title><rect x="1189.5" y="405" width="0.3" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" /> <text x="1192.52" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (10,367,760 samples, 0.05%)</title><rect x="1003.4" y="197" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1006.38" y="207.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,273,418 samples, 0.01%)</title><rect x="822.4" y="261" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.38" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,722,742 samples, 0.03%)</title><rect x="822.6" y="405" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.57" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,731,499 samples, 0.01%)</title><rect x="1004.5" y="213" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1007.53" y="223.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (19,743,301 samples, 0.10%)</title><rect x="804.0" y="277" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="807.02" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,558,148 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.18" y="175.5" ></text> </g> <g > <title>__GI_mprotect (44,499,432 samples, 0.23%)</title><rect x="819.3" y="421" width="2.8" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" /> <text x="822.32" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,009,567 samples, 0.02%)</title><rect x="822.3" y="373" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.32" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,737,042 samples, 0.01%)</title><rect x="815.9" y="357" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="818.87" y="367.5" ></text> </g> <g > <title>[dash] (4,979,549 samples, 0.03%)</title><rect x="1188.0" y="261" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1190.99" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (16,418,309 samples, 0.09%)</title><rect x="1003.0" y="213" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1006.01" y="223.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,702,672 samples, 0.02%)</title><rect x="822.6" y="341" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.63" y="351.5" ></text> </g> <g > <title>__GI__dl_catch_exception (1,669,717 samples, 0.01%)</title><rect x="1189.6" y="133" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> <text x="1192.58" y="143.5" ></text> </g> <g > <title>dl_open_worker (1,669,717 samples, 0.01%)</title><rect x="1189.6" y="69" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> <text x="1192.58" y="79.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,596,755 samples, 0.01%)</title><rect x="1004.5" y="261" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1007.48" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,596,755 samples, 0.01%)</title><rect x="1004.5" y="245" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1007.48" y="255.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (19,010,115 samples, 0.10%)</title><rect x="1002.8" y="293" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1005.85" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,294,563 samples, 0.02%)</title><rect x="1188.1" y="149" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.10" y="159.5" ></text> </g> <g > <title>[QDPBench] (7,414,426,768 samples, 38.78%)</title><rect x="353.8" y="405" width="457.6" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> <text x="356.81" y="415.5" >[QDPBench]</text> </g> <g > <title>[[kernel.kallsyms]] (1,905,789,850 samples, 9.97%)</title><rect x="885.2" y="373" width="117.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="888.23" y="383.5" >[[kernel.kalls..</text> </g> <g > <title>clone3 (4,326,736 samples, 0.02%)</title><rect x="1004.4" y="421" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> <text x="1007.37" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,702,672 samples, 0.02%)</title><rect x="822.6" y="389" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.63" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,339,346 samples, 0.02%)</title><rect x="328.3" y="277" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="331.25" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,326,736 samples, 0.02%)</title><rect x="1004.4" y="277" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1007.37" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,948,349 samples, 0.04%)</title><rect x="815.4" y="341" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="818.44" y="351.5" ></text> </g> <g > <title>__GI___mmap64 (7,679,166 samples, 0.04%)</title><rect x="818.6" y="405" width="0.5" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> <text x="821.63" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,948,349 samples, 0.04%)</title><rect x="815.4" y="325" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="818.44" y="335.5" ></text> </g> <g > <title>[dash] (6,200,871 samples, 0.03%)</title><rect x="1188.0" y="277" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1190.99" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (7,679,166 samples, 0.04%)</title><rect x="818.6" y="357" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="821.63" y="367.5" ></text> </g> <g > <title>__GI_madvise (3,394,767 samples, 0.02%)</title><rect x="819.1" y="421" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> <text x="822.11" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,904,922,585 samples, 9.96%)</title><rect x="885.3" y="325" width="117.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="888.28" y="335.5" >[[kernel.kalls..</text> </g> <g > <title>[[kernel.kallsyms]] (2,499,962 samples, 0.01%)</title><rect x="818.4" y="277" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="821.42" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,766,715 samples, 0.01%)</title><rect x="1187.9" y="309" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.88" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,766,715 samples, 0.01%)</title><rect x="1187.9" y="341" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.88" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,948,349 samples, 0.04%)</title><rect x="815.4" y="373" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="818.44" y="383.5" ></text> </g> <g > <title>[sudo] (12,997,262 samples, 0.07%)</title><rect x="1188.7" y="373" width="0.8" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" /> <text x="1191.72" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,955,258 samples, 0.02%)</title><rect x="818.2" y="373" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="821.24" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,955,258 samples, 0.02%)</title><rect x="818.2" y="389" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="821.24" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,386,595 samples, 0.02%)</title><rect x="822.1" y="373" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.06" y="383.5" ></text> </g> <g > <title>[libpam.so.0.85.1] (1,669,717 samples, 0.01%)</title><rect x="1189.6" y="277" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> <text x="1192.58" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,255,080,269 samples, 6.56%)</title><rect x="925.4" y="229" width="77.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="928.39" y="239.5" >[[kernel..</text> </g> <g > <title>std::chrono::_V2::steady_clock::now (46,877,413 samples, 0.25%)</title><rect x="1184.2" y="373" width="2.9" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" /> <text x="1187.19" y="383.5" ></text> </g> <g > <title>[libstdc++.so.6.0.32] (62,206,438 samples, 0.33%)</title><rect x="345.6" y="405" width="3.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" /> <text x="348.58" y="415.5" ></text> </g> <g > <title>[dash] (7,306,765 samples, 0.04%)</title><rect x="1188.0" y="325" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1190.99" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (43,697,155 samples, 0.23%)</title><rect x="819.4" y="325" width="2.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="822.36" y="335.5" ></text> </g> <g > <title>[sudoers.so] (2,495,463 samples, 0.01%)</title><rect x="1189.6" y="373" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1192.58" y="383.5" ></text> </g> <g > <title>[dash] (6,200,871 samples, 0.03%)</title><rect x="1188.0" y="293" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1190.99" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,526,230 samples, 0.01%)</title><rect x="819.2" y="325" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="822.16" y="335.5" ></text> </g> <g > <title>clock_gettime@plt (23,445,898 samples, 0.12%)</title><rect x="1185.6" y="357" width="1.5" height="15.0" fill="rgb(229,112,27)" rx="2" ry="2" /> <text x="1188.64" y="367.5" ></text> </g> <g > <title>__GI_munmap (6,948,349 samples, 0.04%)</title><rect x="815.4" y="389" width="0.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> <text x="818.44" y="399.5" ></text> </g> <g > <title>[sudo] (10,424,289 samples, 0.05%)</title><rect x="1188.7" y="325" width="0.7" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" /> <text x="1191.72" y="335.5" ></text> </g> <g > <title>[[stack]] (1,529,567,888 samples, 8.00%)</title><rect x="25.2" y="421" width="94.4" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> <text x="28.20" y="431.5" >[[stack]]</text> </g> <g > <title>__libc_start_call_main (7,306,765 samples, 0.04%)</title><rect x="1188.0" y="389" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> <text x="1190.99" y="399.5" ></text> </g> <g > <title>[libpam.so.0.85.1] (1,669,717 samples, 0.01%)</title><rect x="1189.6" y="261" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> <text x="1192.58" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (22,340,223 samples, 0.12%)</title><rect x="803.9" y="341" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="806.86" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (7,679,166 samples, 0.04%)</title><rect x="818.6" y="389" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="821.63" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,172,283 samples, 0.03%)</title><rect x="328.2" y="373" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="331.20" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,732,493 samples, 0.01%)</title><rect x="1002.7" y="197" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1005.74" y="207.5" ></text> </g> <g > <title>_dl_catch_error (1,669,717 samples, 0.01%)</title><rect x="1189.6" y="149" width="0.1" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" /> <text x="1192.58" y="159.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,904,922,585 samples, 9.96%)</title><rect x="885.3" y="357" width="117.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="888.28" y="367.5" >[[kernel.kalls..</text> </g> <g > <title>[[kernel.kallsyms]] (1,890,194,856 samples, 9.89%)</title><rect x="886.2" y="277" width="116.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="889.19" y="287.5" >[[kernel.kalls..</text> </g> <g > <title>[[kernel.kallsyms]] (2,955,258 samples, 0.02%)</title><rect x="818.2" y="357" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="821.24" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,009,567 samples, 0.02%)</title><rect x="822.3" y="405" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.32" y="415.5" ></text> </g> <g > <title>arch_fork (2,457,353 samples, 0.01%)</title><rect x="1188.9" y="245" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> <text x="1191.91" y="255.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,766,715 samples, 0.01%)</title><rect x="1187.9" y="389" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.88" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,948,349 samples, 0.04%)</title><rect x="815.4" y="261" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="818.44" y="271.5" ></text> </g> <g > <title>std::chrono::_V2::steady_clock::now (71,080,193 samples, 0.37%)</title><rect x="349.4" y="405" width="4.4" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" /> <text x="352.42" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,394,767 samples, 0.02%)</title><rect x="819.1" y="405" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="822.11" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,172,283 samples, 0.03%)</title><rect x="328.2" y="341" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="331.20" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,440,610 samples, 0.01%)</title><rect x="1188.9" y="149" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.91" y="159.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,635,518 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>dl_main (1,881,846 samples, 0.01%)</title><rect x="1189.9" y="357" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> <text x="1192.88" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,457,353 samples, 0.01%)</title><rect x="1188.9" y="229" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.91" y="239.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,705,531 samples, 0.02%)</title><rect x="1187.1" y="325" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.14" y="335.5" ></text> </g> <g > <title>__GI__dl_catch_exception (1,669,717 samples, 0.01%)</title><rect x="1189.6" y="53" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> <text x="1192.58" y="63.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,315,227 samples, 0.02%)</title><rect x="1188.5" y="373" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.51" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,948,349 samples, 0.04%)</title><rect x="815.4" y="245" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="818.44" y="255.5" ></text> </g> <g > <title>[dash] (7,306,765 samples, 0.04%)</title><rect x="1188.0" y="341" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1190.99" y="351.5" ></text> </g> <g > <title>__GI___clock_gettime (65,660,312 samples, 0.34%)</title><rect x="811.4" y="389" width="4.0" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> <text x="814.39" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (19,010,115 samples, 0.10%)</title><rect x="1002.8" y="357" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1005.85" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,705,531 samples, 0.02%)</title><rect x="1187.1" y="309" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.14" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,464,297 samples, 0.01%)</title><rect x="1188.6" y="309" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.57" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,766,715 samples, 0.01%)</title><rect x="1187.9" y="373" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.88" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,526,230 samples, 0.01%)</title><rect x="819.2" y="293" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="822.16" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,145,217 samples, 0.02%)</title><rect x="822.3" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.32" y="303.5" ></text> </g> <g > <title>__GI___clock_gettime (62,206,438 samples, 0.33%)</title><rect x="345.6" y="389" width="3.8" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> <text x="348.58" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,172,283 samples, 0.03%)</title><rect x="328.2" y="405" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="331.20" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,522,592 samples, 0.01%)</title><rect x="822.1" y="245" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.06" y="255.5" ></text> </g> <g > <title>[libpam.so.0.85.1] (1,669,717 samples, 0.01%)</title><rect x="1189.6" y="245" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> <text x="1192.58" y="255.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,571,689 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.18" y="223.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (19,010,115 samples, 0.10%)</title><rect x="1002.8" y="373" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1005.85" y="383.5" ></text> </g> <g > <title>__GI___mmap64 (7,679,166 samples, 0.04%)</title><rect x="818.6" y="421" width="0.5" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> <text x="821.63" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,390,306 samples, 0.02%)</title><rect x="818.4" y="325" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="821.42" y="335.5" ></text> </g> <g > <title>__GI___getdents64 (2,955,258 samples, 0.02%)</title><rect x="818.2" y="421" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" /> <text x="821.24" y="431.5" ></text> </g> <g > <title>__GI__Fork (3,294,563 samples, 0.02%)</title><rect x="1188.1" y="229" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> <text x="1191.10" y="239.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,390,306 samples, 0.02%)</title><rect x="818.4" y="389" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="821.42" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,522,592 samples, 0.01%)</title><rect x="822.1" y="261" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="825.06" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (7,679,166 samples, 0.04%)</title><rect x="818.6" y="325" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="821.63" y="335.5" ></text> </g> <g > <title>__GI__dl_catch_exception (1,669,717 samples, 0.01%)</title><rect x="1189.6" y="85" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> <text x="1192.58" y="95.5" ></text> </g> <g > <title>dl_open_worker_begin (1,669,717 samples, 0.01%)</title><rect x="1189.6" y="37" width="0.1" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" /> <text x="1192.58" y="47.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,264,047 samples, 0.02%)</title><rect x="1188.1" y="85" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.10" y="95.5" ></text> </g> <g > <title>__libc_fork (2,941,457 samples, 0.02%)</title><rect x="1189.2" y="293" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" /> <text x="1192.18" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,172,283 samples, 0.03%)</title><rect x="328.2" y="325" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="331.20" y="335.5" ></text> </g> <g > <title>[sudoers.so] (2,495,463 samples, 0.01%)</title><rect x="1189.6" y="389" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1192.58" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,904,055,605 samples, 9.96%)</title><rect x="885.3" y="293" width="117.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="888.34" y="303.5" >[[kernel.kalls..</text> </g> <g > <title>[[kernel.kallsyms]] (2,455,182 samples, 0.01%)</title><rect x="1188.9" y="165" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.91" y="175.5" ></text> </g> <g > <title>__libc_start_call_main (2,934,395,903 samples, 15.35%)</title><rect x="822.9" y="421" width="181.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> <text x="825.92" y="431.5" >__libc_start_call_main</text> </g> <g > <title>[[kernel.kallsyms]] (19,010,115 samples, 0.10%)</title><rect x="1002.8" y="309" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1005.85" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,731,499 samples, 0.01%)</title><rect x="1004.5" y="197" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1007.53" y="207.5" ></text> </g> <g > <title>__libc_start_call_main (12,997,262 samples, 0.07%)</title><rect x="1188.7" y="389" width="0.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> <text x="1191.72" y="399.5" ></text> </g> </g> </svg>
|