Skip to content

Instantly share code, notes, and snippets.

@NikolayS
Last active March 20, 2026 02:59
Show Gist options
  • Select an option

  • Save NikolayS/50fd5409729bd0ff4e44ae2d491789c6 to your computer and use it in GitHub Desktop.

Select an option

Save NikolayS/50fd5409729bd0ff4e44ae2d491789c6 to your computer and use it in GitHub Desktop.
USDT wait event tracepoint flamegraphs - pgbench c64 comparison
Display the source blob
Display the rendered blob
Raw
<?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="2134" onload="init(evt)" viewBox="0 0 1200 2134" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs>
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
#search, #ignorecase { opacity:0.1; cursor:pointer; }
#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style>
<script type="text/ecmascript">
<![CDATA[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
ignorecaseBtn = document.getElementById("ignorecase");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
currentSearchTerm = null;
// use GET parameters to restore a flamegraphs state.
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s) search(params.s);
}
// event listeners
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom(true);
zoom(target);
if (!document.querySelector('.parent')) {
// we have basically done a clearzoom so clear the url
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
unzoombtn.classList.add("hide");
return;
}
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes._orig_x) {
var params = get_params()
params.x = el.attributes._orig_x.value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") clearzoom();
else if (e.target.id == "search") search_prompt();
else if (e.target.id == "ignorecase") toggle_ignorecase();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = "Function: " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
// ctrl-I to toggle case-sensitive search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
else if (e.ctrlKey && e.keyCode === 73) {
e.preventDefault();
toggle_ignorecase();
}
}, false)
// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
// Smaller than this size won't fit anything
if (w < 2 * 12 * 0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
var sl = t.getSubStringLength(0, txt.length);
// check if only whitespace or if we can fit the entire string into width w
if (/^ *$/.test(txt) || sl < w)
return;
// this isn't perfect, but gives a good starting point
// and avoids calling getSubStringLength too often
var start = Math.floor((w/sl) * txt.length);
for (var x = start; x > 0; x = x-2) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
if (e.tagName == "text")
e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x - 10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = 10;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr.width.value);
var xmin = parseFloat(attr.x.value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr.y.value);
var ratio = (svg.width.baseVal.value - 2 * 10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a.x.value);
var ew = parseFloat(a.width.value);
var upstack;
// Is it an ancestor
if (0 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
search();
}
function unzoom(dont_update_text) {
unzoombtn.classList.add("hide");
var el = document.getElementById("frames").children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
if(!dont_update_text) update_text(el[i]);
}
search();
}
function clearzoom() {
unzoom();
// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}
// search
function toggle_ignorecase() {
ignorecase = !ignorecase;
if (ignorecase) {
ignorecaseBtn.classList.add("show");
} else {
ignorecaseBtn.classList.remove("show");
}
reset_search();
search();
}
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)"
+ (ignorecase ? ", ignoring case" : "")
+ "\nPress Ctrl-i to toggle case sensitivity", "");
if (term != null) search(term);
} else {
reset_search();
searching = 0;
currentSearchTerm = null;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
if (term) currentSearchTerm = term;
if (currentSearchTerm === null) return;
var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : '');
var el = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes.width.value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes.x.value);
orig_save(rect, "fill");
rect.attributes.fill.value = "rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
var params = get_params();
params.s = currentSearchTerm;
history.replaceState(null, null, parse_params(params));
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="2134.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >PostgreSQL pg-stock + pg_wait_tracer (c64)</text>
<text id="details" x="10.00" y="2117" > </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="2117" > </text>
<g id="frames">
<g >
<title>native_write_msr (599,296,082 samples, 0.10%)</title><rect x="531.5" y="1637" width="1.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="534.47" y="1647.5" ></text>
</g>
<g >
<title>asm_sysvec_irq_work (81,380,293 samples, 0.01%)</title><rect x="367.6" y="2037" width="0.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="370.64" y="2047.5" ></text>
</g>
<g >
<title>secure_raw_read (226,425,842 samples, 0.04%)</title><rect x="920.8" y="2037" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="923.78" y="2047.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (113,340,770 samples, 0.02%)</title><rect x="116.4" y="1877" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="119.38" y="1887.5" ></text>
</g>
<g >
<title>list_free_private (180,871,759 samples, 0.03%)</title><rect x="843.6" y="2037" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="846.58" y="2047.5" ></text>
</g>
<g >
<title>bms_union (54,012,902 samples, 0.01%)</title><rect x="767.9" y="2037" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="770.89" y="2047.5" ></text>
</g>
<g >
<title>__memcg_slab_free_hook (397,301,821 samples, 0.07%)</title><rect x="173.2" y="1829" width="0.8" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="176.18" y="1839.5" ></text>
</g>
<g >
<title>__schedule (81,363,468 samples, 0.01%)</title><rect x="1163.1" y="1957" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1166.12" y="1967.5" ></text>
</g>
<g >
<title>FileWriteV (1,348,352,418 samples, 0.23%)</title><rect x="263.4" y="2053" width="2.7" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="266.39" y="2063.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (168,450,650 samples, 0.03%)</title><rect x="590.6" y="1973" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="593.61" y="1983.5" ></text>
</g>
<g >
<title>PreCommit_Notify (112,339,729 samples, 0.02%)</title><rect x="306.4" y="2053" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="309.37" y="2063.5" ></text>
</g>
<g >
<title>copy_from_user_nofault (141,147,858 samples, 0.02%)</title><rect x="529.6" y="1701" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="532.56" y="1711.5" ></text>
</g>
<g >
<title>xfd_validate_state (56,923,712 samples, 0.01%)</title><rect x="988.0" y="1957" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="991.04" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1413" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1423.5" ></text>
</g>
<g >
<title>tick_program_event (653,653,360 samples, 0.11%)</title><rect x="1181.9" y="1925" width="1.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1184.87" y="1935.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (172,008,025 samples, 0.03%)</title><rect x="90.0" y="1765" width="0.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="93.04" y="1775.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (347,442,499 samples, 0.06%)</title><rect x="165.4" y="1973" width="0.7" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="168.37" y="1983.5" ></text>
</g>
<g >
<title>ktime_get_mono_fast_ns (86,862,173 samples, 0.01%)</title><rect x="345.5" y="1861" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="348.51" y="1871.5" ></text>
</g>
<g >
<title>handle_pte_fault (53,727,425 samples, 0.01%)</title><rect x="486.9" y="1941" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="489.88" y="1951.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,125,084,092 samples, 0.52%)</title><rect x="1087.4" y="2037" width="6.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1090.38" y="2047.5" ></text>
</g>
<g >
<title>irqentry_exit (168,450,650 samples, 0.03%)</title><rect x="590.6" y="1957" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="593.61" y="1967.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,712,126,664 samples, 0.62%)</title><rect x="943.3" y="2021" width="7.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="946.31" y="2031.5" ></text>
</g>
<g >
<title>kthread_is_per_cpu (58,839,432 samples, 0.01%)</title><rect x="1038.0" y="1669" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="1040.98" y="1679.5" ></text>
</g>
<g >
<title>PQsendQueryStart (109,884,981 samples, 0.02%)</title><rect x="43.8" y="2053" width="0.2" height="15.0" fill="rgb(224,87,21)" rx="2" ry="2" />
<text x="46.78" y="2063.5" ></text>
</g>
<g >
<title>TupleDescInitEntry (112,028,338 samples, 0.02%)</title><rect x="338.1" y="2053" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="341.07" y="2063.5" ></text>
</g>
<g >
<title>PQclear (367,060,787 samples, 0.06%)</title><rect x="41.1" y="2053" width="0.7" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="44.11" y="2063.5" ></text>
</g>
<g >
<title>__calc_delta.constprop.0 (57,833,483 samples, 0.01%)</title><rect x="145.8" y="1653" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="148.83" y="1663.5" ></text>
</g>
<g >
<title>scsi_finish_command (168,112,840 samples, 0.03%)</title><rect x="1175.6" y="1717" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1178.61" y="1727.5" ></text>
</g>
<g >
<title>PageAddItemExtended (170,217,947 samples, 0.03%)</title><rect x="448.0" y="2037" width="0.4" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="451.02" y="2047.5" ></text>
</g>
<g >
<title>ExecInitIndexScan (261,861,324 samples, 0.04%)</title><rect x="257.1" y="2053" width="0.5" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="260.05" y="2063.5" ></text>
</g>
<g >
<title>asm_sysvec_irq_work (93,016,533 samples, 0.02%)</title><rect x="437.4" y="2021" width="0.1" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="440.36" y="2031.5" ></text>
</g>
<g >
<title>index_endscan (901,080,736 samples, 0.15%)</title><rect x="834.2" y="2037" width="1.8" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="837.23" y="2047.5" ></text>
</g>
<g >
<title>pull_var_clause_walker (86,658,529 samples, 0.01%)</title><rect x="886.6" y="2037" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="889.55" y="2047.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (82,728,185 samples, 0.01%)</title><rect x="816.1" y="2021" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="819.10" y="2031.5" ></text>
</g>
<g >
<title>asm_exc_debug (85,038,495 samples, 0.01%)</title><rect x="505.1" y="2005" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="508.12" y="2015.5" ></text>
</g>
<g >
<title>scsi_queue_rq (60,695,191 samples, 0.01%)</title><rect x="11.4" y="1877" width="0.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="14.41" y="1887.5" ></text>
</g>
<g >
<title>AfterTriggerBeginQuery (281,908,594 samples, 0.05%)</title><rect x="227.0" y="2053" width="0.5" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="229.96" y="2063.5" ></text>
</g>
<g >
<title>RelationBuildPublicationDesc (403,925,201 samples, 0.07%)</title><rect x="312.6" y="2053" width="0.8" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="315.64" y="2063.5" ></text>
</g>
<g >
<title>create_tidscan_paths (90,336,566 samples, 0.02%)</title><rect x="786.6" y="2037" width="0.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="789.57" y="2047.5" ></text>
</g>
<g >
<title>cfree (86,955,660 samples, 0.01%)</title><rect x="197.3" y="2053" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="200.33" y="2063.5" ></text>
</g>
<g >
<title>__perf_event_overflow (2,904,093,020 samples, 0.49%)</title><rect x="472.3" y="1909" width="5.7" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="475.31" y="1919.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (82,747,023 samples, 0.01%)</title><rect x="1189.6" y="1877" width="0.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="1192.56" y="1887.5" ></text>
</g>
<g >
<title>ep_poll_callback (949,923,434 samples, 0.16%)</title><rect x="180.9" y="1765" width="1.8" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="183.87" y="1775.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (982,417,328 samples, 0.16%)</title><rect x="1186.2" y="1957" width="1.9" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="1189.21" y="1967.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (53,744,145 samples, 0.01%)</title><rect x="818.6" y="2005" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="821.55" y="2015.5" ></text>
</g>
<g >
<title>setup_parser_errposition_callback (83,955,307 samples, 0.01%)</title><rect x="1158.9" y="2053" width="0.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="1161.91" y="2063.5" ></text>
</g>
<g >
<title>PQmakeEmptyPGresult (193,735,013 samples, 0.03%)</title><rect x="47.5" y="2037" width="0.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="50.49" y="2047.5" ></text>
</g>
<g >
<title>__schedule (520,294,244 samples, 0.09%)</title><rect x="343.5" y="1973" width="1.0" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="346.48" y="1983.5" ></text>
</g>
<g >
<title>element_alloc (233,091,808 samples, 0.04%)</title><rect x="788.2" y="2037" width="0.5" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="791.22" y="2047.5" ></text>
</g>
<g >
<title>heapam_index_fetch_reset (56,823,752 samples, 0.01%)</title><rect x="832.6" y="2037" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="835.65" y="2047.5" ></text>
</g>
<g >
<title>prepare_task_switch (84,900,242 samples, 0.01%)</title><rect x="1144.0" y="1957" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1146.98" y="1967.5" ></text>
</g>
<g >
<title>copy_from_user_nofault (257,064,089 samples, 0.04%)</title><rect x="345.7" y="1861" width="0.5" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="348.68" y="1871.5" ></text>
</g>
<g >
<title>_bt_checkkeys (112,656,527 samples, 0.02%)</title><rect x="952.9" y="2053" width="0.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="955.89" y="2063.5" ></text>
</g>
<g >
<title>fput (178,920,997 samples, 0.03%)</title><rect x="153.9" y="1925" width="0.4" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="156.92" y="1935.5" ></text>
</g>
<g >
<title>x64_sys_call (7,931,978,303 samples, 1.33%)</title><rect x="22.1" y="1989" width="15.7" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="25.09" y="1999.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (60,023,656 samples, 0.01%)</title><rect x="144.9" y="1637" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="147.91" y="1647.5" ></text>
</g>
<g >
<title>_raw_spin_lock (200,226,087 samples, 0.03%)</title><rect x="900.5" y="1909" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="903.53" y="1919.5" ></text>
</g>
<g >
<title>bpf_ringbuf_notify (93,016,533 samples, 0.02%)</title><rect x="437.4" y="1925" width="0.1" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="440.36" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="837" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="847.5" ></text>
</g>
<g >
<title>mpage_submit_folio (536,119,270 samples, 0.09%)</title><rect x="1042.0" y="1829" width="1.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1045.02" y="1839.5" ></text>
</g>
<g >
<title>pick_next_task (52,123,207 samples, 0.01%)</title><rect x="501.4" y="1925" width="0.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="504.44" y="1935.5" ></text>
</g>
<g >
<title>drain_obj_stock (259,779,820 samples, 0.04%)</title><rect x="177.8" y="1765" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="180.76" y="1775.5" ></text>
</g>
<g >
<title>grouping_planner (1,796,244,972 samples, 0.30%)</title><rect x="812.7" y="2037" width="3.6" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="815.72" y="2047.5" ></text>
</g>
<g >
<title>do_syscall_64 (56,188,191 samples, 0.01%)</title><rect x="163.9" y="2005" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="166.92" y="2015.5" ></text>
</g>
<g >
<title>enqueue_entity (116,554,712 samples, 0.02%)</title><rect x="1188.7" y="1717" width="0.3" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="1191.72" y="1727.5" ></text>
</g>
<g >
<title>update_process_times (88,746,833 samples, 0.01%)</title><rect x="1015.7" y="1749" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1018.67" y="1759.5" ></text>
</g>
<g >
<title>os_xsave (55,401,574 samples, 0.01%)</title><rect x="952.5" y="2037" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="955.55" y="2047.5" ></text>
</g>
<g >
<title>enqueue_task (1,260,547,488 samples, 0.21%)</title><rect x="1176.5" y="1813" width="2.5" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1179.53" y="1823.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (56,500,502 samples, 0.01%)</title><rect x="302.6" y="1829" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="305.62" y="1839.5" ></text>
</g>
<g >
<title>irq_work_run (90,285,377 samples, 0.02%)</title><rect x="1099.1" y="1989" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1102.10" y="1999.5" ></text>
</g>
<g >
<title>ep_poll_callback (56,780,393 samples, 0.01%)</title><rect x="343.3" y="1797" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="346.31" y="1807.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,608,053,909 samples, 0.44%)</title><rect x="1087.9" y="1989" width="5.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1090.94" y="1999.5" ></text>
</g>
<g >
<title>notifier_call_chain (257,736,410 samples, 0.04%)</title><rect x="264.6" y="1989" width="0.5" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="267.61" y="1999.5" ></text>
</g>
<g >
<title>set_task_cpu (255,044,535 samples, 0.04%)</title><rect x="701.1" y="1829" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="704.10" y="1839.5" ></text>
</g>
<g >
<title>strchr@plt (90,113,849 samples, 0.02%)</title><rect x="189.6" y="2037" width="0.1" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text x="192.56" y="2047.5" ></text>
</g>
<g >
<title>select_task_rq (224,480,114 samples, 0.04%)</title><rect x="354.0" y="1749" width="0.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="357.00" y="1759.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,279,769,858 samples, 0.38%)</title><rect x="735.2" y="1973" width="4.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="738.15" y="1983.5" ></text>
</g>
<g >
<title>ctx_sched_out (56,032,137 samples, 0.01%)</title><rect x="776.9" y="1877" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="779.88" y="1887.5" ></text>
</g>
<g >
<title>get_tablespace_page_costs (58,372,283 samples, 0.01%)</title><rect x="1056.9" y="2053" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1059.86" y="2063.5" ></text>
</g>
<g >
<title>__check_heap_object (60,317,738 samples, 0.01%)</title><rect x="115.1" y="1845" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="118.10" y="1855.5" ></text>
</g>
<g >
<title>merge_sched_in (78,801,061 samples, 0.01%)</title><rect x="343.6" y="1877" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="346.59" y="1887.5" ></text>
</g>
<g >
<title>__wake_up_common (90,285,377 samples, 0.02%)</title><rect x="1099.1" y="1909" width="0.2" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="1102.10" y="1919.5" ></text>
</g>
<g >
<title>security_socket_sendmsg (85,100,578 samples, 0.01%)</title><rect x="728.0" y="1957" width="0.1" height="15.0" fill="rgb(243,174,41)" rx="2" ry="2" />
<text x="730.96" y="1967.5" ></text>
</g>
<g >
<title>__smp_call_single_queue (55,146,136 samples, 0.01%)</title><rect x="484.9" y="1717" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="487.94" y="1727.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (591,935,037 samples, 0.10%)</title><rect x="544.6" y="1797" width="1.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="547.62" y="1807.5" ></text>
</g>
<g >
<title>irq_work_run (3,441,397,043 samples, 0.58%)</title><rect x="352.8" y="1989" width="6.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="355.82" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1541" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1551.5" ></text>
</g>
<g >
<title>send_signal_locked (2,451,285,556 samples, 0.41%)</title><rect x="1101.1" y="1925" width="4.9" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="1104.14" y="1935.5" ></text>
</g>
<g >
<title>schedule (82,074,909 samples, 0.01%)</title><rect x="1136.5" y="1989" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1139.50" y="1999.5" ></text>
</g>
<g >
<title>virtscsi_add_cmd (151,902,932 samples, 0.03%)</title><rect x="1040.4" y="1701" width="0.3" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="1043.36" y="1711.5" ></text>
</g>
<g >
<title>tts_buffer_heap_init (82,123,744 samples, 0.01%)</title><rect x="1171.7" y="2053" width="0.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="1174.72" y="2063.5" ></text>
</g>
<g >
<title>pgstat_report_activity (652,273,946 samples, 0.11%)</title><rect x="878.8" y="2037" width="1.3" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="881.81" y="2047.5" ></text>
</g>
<g >
<title>bms_is_subset (281,349,483 samples, 0.05%)</title><rect x="765.8" y="2037" width="0.6" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="768.82" y="2047.5" ></text>
</g>
<g >
<title>GetCurrentTransactionNestLevel (55,744,177 samples, 0.01%)</title><rect x="423.7" y="2037" width="0.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="426.71" y="2047.5" ></text>
</g>
<g >
<title>ret_from_fork_asm (231,827,476 samples, 0.04%)</title><rect x="11.8" y="2053" width="0.5" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="14.80" y="2063.5" ></text>
</g>
<g >
<title>schedule (295,406,706 samples, 0.05%)</title><rect x="1039.4" y="1861" width="0.6" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1042.38" y="1871.5" ></text>
</g>
<g >
<title>TupleDescInitEntry (514,388,509 samples, 0.09%)</title><rect x="468.8" y="2037" width="1.0" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="471.82" y="2047.5" ></text>
</g>
<g >
<title>index_close (119,719,789 samples, 0.02%)</title><rect x="834.0" y="2037" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="836.99" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_safe_stack (88,076,403 samples, 0.01%)</title><rect x="916.5" y="2021" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="919.54" y="2031.5" ></text>
</g>
<g >
<title>coerce_type (75,295,870 samples, 0.01%)</title><rect x="777.4" y="2037" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="780.40" y="2047.5" ></text>
</g>
<g >
<title>index_getprocinfo (114,809,186 samples, 0.02%)</title><rect x="634.7" y="2021" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="637.68" y="2031.5" ></text>
</g>
<g >
<title>arch_install_hw_breakpoint (107,185,908 samples, 0.02%)</title><rect x="1010.6" y="1749" width="0.3" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="1013.65" y="1759.5" ></text>
</g>
<g >
<title>virtscsi_req_done (197,971,459 samples, 0.03%)</title><rect x="1175.5" y="1813" width="0.4" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="1178.55" y="1823.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (171,808,622 samples, 0.03%)</title><rect x="80.1" y="1765" width="0.4" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="83.12" y="1775.5" ></text>
</g>
<g >
<title>psi_flags_change (53,811,469 samples, 0.01%)</title><rect x="898.1" y="1925" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="901.13" y="1935.5" ></text>
</g>
<g >
<title>AtEOXact_SPI (168,131,701 samples, 0.03%)</title><rect x="248.2" y="2053" width="0.4" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text x="251.24" y="2063.5" ></text>
</g>
<g >
<title>get_futex_key (146,303,238 samples, 0.02%)</title><rect x="303.1" y="1877" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="306.12" y="1887.5" ></text>
</g>
<g >
<title>pq_recvbuf (86,007,277 samples, 0.01%)</title><rect x="1134.5" y="2053" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="1137.54" y="2063.5" ></text>
</g>
<g >
<title>LockReleaseAll (118,794,242 samples, 0.02%)</title><rect x="561.5" y="37" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="564.50" y="47.5" ></text>
</g>
<g >
<title>select_idle_cpu (165,142,512 samples, 0.03%)</title><rect x="699.2" y="1781" width="0.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="702.20" y="1791.5" ></text>
</g>
<g >
<title>__switch_to_asm (61,296,803 samples, 0.01%)</title><rect x="1174.0" y="2053" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1176.95" y="2063.5" ></text>
</g>
<g >
<title>core_yyensure_buffer_stack (144,983,293 samples, 0.02%)</title><rect x="779.8" y="2037" width="0.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="782.75" y="2047.5" ></text>
</g>
<g >
<title>tag_hash (113,184,049 samples, 0.02%)</title><rect x="934.0" y="2037" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="936.96" y="2047.5" ></text>
</g>
<g >
<title>__refill_stock (340,399,412 samples, 0.06%)</title><rect x="689.3" y="1813" width="0.6" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="692.27" y="1823.5" ></text>
</g>
<g >
<title>do_user_addr_fault (108,135,222 samples, 0.02%)</title><rect x="486.8" y="1989" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="489.77" y="1999.5" ></text>
</g>
<g >
<title>merge_sched_in (599,584,987 samples, 0.10%)</title><rect x="552.2" y="1605" width="1.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="555.22" y="1615.5" ></text>
</g>
<g >
<title>arch_irq_work_raise (599,296,082 samples, 0.10%)</title><rect x="531.5" y="1669" width="1.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="534.47" y="1679.5" ></text>
</g>
<g >
<title>os_xsave (54,818,098 samples, 0.01%)</title><rect x="18.5" y="2037" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="21.50" y="2047.5" ></text>
</g>
<g >
<title>__fdget_pos (86,891,820 samples, 0.01%)</title><rect x="1136.7" y="1957" width="0.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="1139.67" y="1967.5" ></text>
</g>
<g >
<title>parserOpenTable (58,919,579 samples, 0.01%)</title><rect x="872.5" y="2037" width="0.1" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="875.49" y="2047.5" ></text>
</g>
<g >
<title>printtup_startup (55,105,176 samples, 0.01%)</title><rect x="1134.8" y="2053" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="1137.82" y="2063.5" ></text>
</g>
<g >
<title>__schedule (165,004,776 samples, 0.03%)</title><rect x="18.1" y="1893" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="21.12" y="1903.5" ></text>
</g>
<g >
<title>genericcostestimate (170,099,478 samples, 0.03%)</title><rect x="1047.6" y="2053" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1050.64" y="2063.5" ></text>
</g>
<g >
<title>cpus_share_cache (59,074,504 samples, 0.01%)</title><rect x="698.4" y="1797" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="701.37" y="1807.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (258,675,223 samples, 0.04%)</title><rect x="506.4" y="1973" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="509.38" y="1983.5" ></text>
</g>
<g >
<title>scsi_done (53,025,289 samples, 0.01%)</title><rect x="1015.5" y="1717" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1018.51" y="1727.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (54,189,404 samples, 0.01%)</title><rect x="1186.1" y="1925" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1189.05" y="1935.5" ></text>
</g>
<g >
<title>generic_smp_call_function_single_interrupt (1,756,427,863 samples, 0.29%)</title><rect x="1176.0" y="1877" width="3.5" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="1179.05" y="1887.5" ></text>
</g>
<g >
<title>rep_movs_alternative (52,997,493 samples, 0.01%)</title><rect x="346.2" y="1861" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="349.19" y="1871.5" ></text>
</g>
<g >
<title>tick_nohz_restart_sched_tick (1,281,737,262 samples, 0.21%)</title><rect x="1185.6" y="1973" width="2.5" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="1188.62" y="1983.5" ></text>
</g>
<g >
<title>__update_load_avg_se (95,709,671 samples, 0.02%)</title><rect x="1003.4" y="1813" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1006.37" y="1823.5" ></text>
</g>
<g >
<title>pgstat_get_xact_stack_level (61,060,000 samples, 0.01%)</title><rect x="1132.7" y="2053" width="0.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="1135.68" y="2063.5" ></text>
</g>
<g >
<title>_bt_preprocess_keys (141,278,437 samples, 0.02%)</title><rect x="597.7" y="2021" width="0.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="600.73" y="2031.5" ></text>
</g>
<g >
<title>set_ps_display (231,099,680 samples, 0.04%)</title><rect x="641.7" y="2021" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="644.69" y="2031.5" ></text>
</g>
<g >
<title>perf_pmu_nop_txn (83,681,169 samples, 0.01%)</title><rect x="651.1" y="1861" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="654.09" y="1871.5" ></text>
</g>
<g >
<title>__schedule (53,627,794 samples, 0.01%)</title><rect x="288.5" y="1957" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="291.49" y="1967.5" ></text>
</g>
<g >
<title>malloc (654,836,112 samples, 0.11%)</title><rect x="239.7" y="2037" width="1.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="242.67" y="2047.5" ></text>
</g>
<g >
<title>__rcu_read_lock (55,241,067 samples, 0.01%)</title><rect x="683.8" y="1829" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="686.85" y="1839.5" ></text>
</g>
<g >
<title>rep_movs_alternative (1,116,445,435 samples, 0.19%)</title><rect x="948.4" y="1909" width="2.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="951.36" y="1919.5" ></text>
</g>
<g >
<title>schedule (83,350,515 samples, 0.01%)</title><rect x="776.8" y="1957" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="779.83" y="1967.5" ></text>
</g>
<g >
<title>bms_del_member (63,635,770 samples, 0.01%)</title><rect x="765.0" y="2037" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="767.96" y="2047.5" ></text>
</g>
<g >
<title>unix_stream_sendmsg (30,606,683,545 samples, 5.12%)</title><rect x="666.8" y="1941" width="60.4" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="669.81" y="1951.5" >unix_s..</text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1365" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1375.5" ></text>
</g>
<g >
<title>__folio_lock (56,338,992 samples, 0.01%)</title><rect x="497.1" y="1845" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="500.09" y="1855.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (56,192,732 samples, 0.01%)</title><rect x="554.5" y="1669" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="557.46" y="1679.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (54,862,766 samples, 0.01%)</title><rect x="1146.8" y="1813" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="1149.77" y="1823.5" ></text>
</g>
<g >
<title>GetCommandTagNameAndLen (517,959,808 samples, 0.09%)</title><rect x="421.7" y="2037" width="1.0" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="424.66" y="2047.5" ></text>
</g>
<g >
<title>_raw_spin_lock (82,579,812 samples, 0.01%)</title><rect x="657.2" y="1909" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="660.21" y="1919.5" ></text>
</g>
<g >
<title>refill_obj_stock (861,140,674 samples, 0.14%)</title><rect x="176.7" y="1781" width="1.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="179.74" y="1791.5" ></text>
</g>
<g >
<title>check_preempt_wakeup_fair (207,066,500 samples, 0.03%)</title><rect x="537.4" y="1557" width="0.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="540.40" y="1567.5" ></text>
</g>
<g >
<title>__update_load_avg_se (143,876,717 samples, 0.02%)</title><rect x="80.5" y="1765" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="83.46" y="1775.5" ></text>
</g>
<g >
<title>update_curr_se (55,584,356 samples, 0.01%)</title><rect x="1150.8" y="1829" width="0.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="1153.78" y="1839.5" ></text>
</g>
<g >
<title>pqCommandQueueAdvance (176,649,484 samples, 0.03%)</title><rect x="158.9" y="2037" width="0.4" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="161.92" y="2047.5" ></text>
</g>
<g >
<title>SysCacheGetAttr (142,539,684 samples, 0.02%)</title><rect x="334.8" y="2053" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="337.76" y="2063.5" ></text>
</g>
<g >
<title>update_cfs_group (828,164,813 samples, 0.14%)</title><rect x="77.9" y="1781" width="1.7" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="80.92" y="1791.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (60,625,435 samples, 0.01%)</title><rect x="450.7" y="2021" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="453.73" y="2031.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (53,744,145 samples, 0.01%)</title><rect x="818.6" y="1973" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="821.55" y="1983.5" ></text>
</g>
<g >
<title>vring_interrupt (57,766,097 samples, 0.01%)</title><rect x="1188.5" y="1765" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="1191.55" y="1775.5" ></text>
</g>
<g >
<title>appendBinaryPQExpBuffer (192,959,887 samples, 0.03%)</title><rect x="105.2" y="2021" width="0.4" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="108.22" y="2031.5" ></text>
</g>
<g >
<title>pg_ultoa_n.part.0 (53,076,372 samples, 0.01%)</title><rect x="1128.5" y="2053" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1131.52" y="2063.5" ></text>
</g>
<g >
<title>kmem_cache_free (651,929,283 samples, 0.11%)</title><rect x="903.0" y="1861" width="1.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="905.96" y="1871.5" ></text>
</g>
<g >
<title>notifier_call_chain (171,073,014 samples, 0.03%)</title><rect x="279.1" y="1989" width="0.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="282.08" y="1999.5" ></text>
</g>
<g >
<title>[libc.so.6] (1,137,956,278 samples, 0.19%)</title><rect x="301.2" y="2021" width="2.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="304.16" y="2031.5" ></text>
</g>
<g >
<title>mod_memcg_state (228,454,725 samples, 0.04%)</title><rect x="123.1" y="1797" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="126.07" y="1807.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (55,496,476 samples, 0.01%)</title><rect x="359.8" y="1925" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="362.77" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1589" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1599.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (114,521,011 samples, 0.02%)</title><rect x="719.9" y="1717" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="722.91" y="1727.5" ></text>
</g>
<g >
<title>ResourceOwnerReleaseInternal (986,449,404 samples, 0.17%)</title><rect x="322.1" y="2053" width="2.0" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="325.12" y="2063.5" ></text>
</g>
<g >
<title>SearchSysCache1 (87,248,180 samples, 0.01%)</title><rect x="466.3" y="2037" width="0.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="469.33" y="2047.5" ></text>
</g>
<g >
<title>tick_nohz_stop_idle (116,183,187 samples, 0.02%)</title><rect x="1179.6" y="1861" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1182.56" y="1871.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (433,194,369 samples, 0.07%)</title><rect x="696.0" y="1797" width="0.9" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="699.03" y="1807.5" ></text>
</g>
<g >
<title>log_heap_prune_and_freeze (109,057,843 samples, 0.02%)</title><rect x="1109.4" y="2053" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1112.45" y="2063.5" ></text>
</g>
<g >
<title>wakeup_preempt (83,346,798 samples, 0.01%)</title><rect x="1105.0" y="1749" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="1108.04" y="1759.5" ></text>
</g>
<g >
<title>update_curr (487,767,950 samples, 0.08%)</title><rect x="76.2" y="1765" width="1.0" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="79.22" y="1775.5" ></text>
</g>
<g >
<title>activate_task (142,223,617 samples, 0.02%)</title><rect x="1180.3" y="1781" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1183.28" y="1791.5" ></text>
</g>
<g >
<title>cfree (246,577,363 samples, 0.04%)</title><rect x="215.0" y="2037" width="0.5" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="217.99" y="2047.5" ></text>
</g>
<g >
<title>pg_comp_crc32c_sse42 (857,176,623 samples, 0.14%)</title><rect x="1126.0" y="2053" width="1.7" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="1129.04" y="2063.5" ></text>
</g>
<g >
<title>get_expr_width (168,825,377 samples, 0.03%)</title><rect x="1049.7" y="2053" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="1052.72" y="2063.5" ></text>
</g>
<g >
<title>__ep_eventpoll_poll.isra.0 (983,876,311 samples, 0.16%)</title><rect x="24.2" y="1893" width="1.9" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="27.18" y="1903.5" ></text>
</g>
<g >
<title>__calc_delta.constprop.0 (82,009,191 samples, 0.01%)</title><rect x="712.5" y="1733" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="715.52" y="1743.5" ></text>
</g>
<g >
<title>schedule (1,268,959,411 samples, 0.21%)</title><rect x="192.5" y="1877" width="2.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="195.53" y="1887.5" ></text>
</g>
<g >
<title>__irq_work_queue_local (55,205,073 samples, 0.01%)</title><rect x="279.2" y="1845" width="0.1" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="282.20" y="1855.5" ></text>
</g>
<g >
<title>propagate_protected_usage (83,969,690 samples, 0.01%)</title><rect x="129.9" y="1797" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="132.90" y="1807.5" ></text>
</g>
<g >
<title>page_counter_cancel (59,912,521 samples, 0.01%)</title><rect x="178.3" y="1685" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="181.33" y="1695.5" ></text>
</g>
<g >
<title>lappend_int (53,630,087 samples, 0.01%)</title><rect x="1106.7" y="2053" width="0.1" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="1109.71" y="2063.5" ></text>
</g>
<g >
<title>sched_clock_cpu (298,325,958 samples, 0.05%)</title><rect x="725.9" y="1813" width="0.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="728.92" y="1823.5" ></text>
</g>
<g >
<title>common_interrupt (60,230,603 samples, 0.01%)</title><rect x="1185.5" y="1957" width="0.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="1188.50" y="1967.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (143,203,744 samples, 0.02%)</title><rect x="460.9" y="2037" width="0.3" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text x="463.90" y="2047.5" ></text>
</g>
<g >
<title>irq_work_run (214,870,638 samples, 0.04%)</title><rect x="265.4" y="1989" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="268.43" y="1999.5" ></text>
</g>
<g >
<title>[libc.so.6] (166,220,452 samples, 0.03%)</title><rect x="202.0" y="2021" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="205.00" y="2031.5" ></text>
</g>
<g >
<title>perf_bp_event (257,736,410 samples, 0.04%)</title><rect x="264.6" y="1957" width="0.5" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="267.61" y="1967.5" ></text>
</g>
<g >
<title>futex_hash (54,879,152 samples, 0.01%)</title><rect x="558.6" y="1717" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="561.56" y="1727.5" ></text>
</g>
<g >
<title>wakeup_preempt (237,045,608 samples, 0.04%)</title><rect x="537.3" y="1573" width="0.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="540.34" y="1583.5" ></text>
</g>
<g >
<title>__schedule (108,334,957 samples, 0.02%)</title><rect x="501.4" y="1941" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="504.44" y="1951.5" ></text>
</g>
<g >
<title>match_clause_to_index.part.0 (115,115,826 samples, 0.02%)</title><rect x="857.1" y="2037" width="0.2" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="860.10" y="2047.5" ></text>
</g>
<g >
<title>pv_native_set_debugreg (594,786,541 samples, 0.10%)</title><rect x="649.1" y="1813" width="1.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="652.11" y="1823.5" ></text>
</g>
<g >
<title>op_mergejoinable (57,290,881 samples, 0.01%)</title><rect x="1117.1" y="2053" width="0.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="1120.10" y="2063.5" ></text>
</g>
<g >
<title>strlen@plt (148,161,167 samples, 0.02%)</title><rect x="930.0" y="2037" width="0.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="933.05" y="2047.5" ></text>
</g>
<g >
<title>ttwu_do_activate (202,005,144 samples, 0.03%)</title><rect x="1188.7" y="1765" width="0.4" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="1191.66" y="1775.5" ></text>
</g>
<g >
<title>ret_from_fork_asm (201,993,970 samples, 0.03%)</title><rect x="11.3" y="2053" width="0.4" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="14.30" y="2063.5" ></text>
</g>
<g >
<title>__wake_up (1,606,956,790 samples, 0.27%)</title><rect x="1102.4" y="1845" width="3.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="1105.41" y="1855.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (890,544,557 samples, 0.15%)</title><rect x="176.7" y="1797" width="1.7" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="179.69" y="1807.5" ></text>
</g>
<g >
<title>__switch_to (61,689,515 samples, 0.01%)</title><rect x="976.8" y="2037" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="979.85" y="2047.5" ></text>
</g>
<g >
<title>clockevents_program_event (80,933,492 samples, 0.01%)</title><rect x="1185.9" y="1893" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="1188.89" y="1903.5" ></text>
</g>
<g >
<title>ResourceOwnerEnlarge (58,491,930 samples, 0.01%)</title><rect x="512.4" y="2021" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="515.37" y="2031.5" ></text>
</g>
<g >
<title>get_futex_key (427,336,734 samples, 0.07%)</title><rect x="1145.3" y="1941" width="0.9" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1148.33" y="1951.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (4,205,908,809 samples, 0.70%)</title><rect x="280.3" y="2053" width="8.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="283.29" y="2063.5" ></text>
</g>
<g >
<title>lcons (226,675,967 samples, 0.04%)</title><rect x="593.7" y="2005" width="0.5" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="596.72" y="2015.5" ></text>
</g>
<g >
<title>dequeue_task (115,326,685 samples, 0.02%)</title><rect x="506.5" y="1813" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="509.55" y="1823.5" ></text>
</g>
<g >
<title>do_sys_poll (2,609,806,466 samples, 0.44%)</title><rect x="191.7" y="1941" width="5.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="194.67" y="1951.5" ></text>
</g>
<g >
<title>__calc_delta.constprop.0 (56,217,712 samples, 0.01%)</title><rect x="28.4" y="1813" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="31.44" y="1823.5" ></text>
</g>
<g >
<title>PortalDefineQuery (84,053,466 samples, 0.01%)</title><rect x="451.3" y="2037" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="454.29" y="2047.5" ></text>
</g>
<g >
<title>makeSimpleA_Expr (87,422,116 samples, 0.01%)</title><rect x="635.6" y="2021" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="638.64" y="2031.5" ></text>
</g>
<g >
<title>schedule (5,571,456,590 samples, 0.93%)</title><rect x="26.6" y="1893" width="11.0" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="29.60" y="1903.5" ></text>
</g>
<g >
<title>update_min_vruntime (85,590,247 samples, 0.01%)</title><rect x="1003.6" y="1829" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="1006.56" y="1839.5" ></text>
</g>
<g >
<title>CheckCmdReplicaIdentity (184,146,745 samples, 0.03%)</title><rect x="250.6" y="2053" width="0.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="253.58" y="2063.5" ></text>
</g>
<g >
<title>tag_hash (84,694,563 samples, 0.01%)</title><rect x="1167.5" y="2053" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1170.51" y="2063.5" ></text>
</g>
<g >
<title>update_rq_clock (60,962,835 samples, 0.01%)</title><rect x="152.6" y="1765" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="155.56" y="1775.5" ></text>
</g>
<g >
<title>bms_copy (114,718,284 samples, 0.02%)</title><rect x="958.0" y="2053" width="0.2" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text x="960.95" y="2063.5" ></text>
</g>
<g >
<title>SendRowDescriptionMessage (56,704,799 samples, 0.01%)</title><rect x="330.9" y="2053" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="333.85" y="2063.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (55,840,878 samples, 0.01%)</title><rect x="794.9" y="1957" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="797.91" y="1967.5" ></text>
</g>
<g >
<title>secondary_startup_64_no_verify (8,039,774,025 samples, 1.35%)</title><rect x="1174.1" y="2053" width="15.9" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="1177.13" y="2063.5" ></text>
</g>
<g >
<title>StartTransactionCommand (232,458,631 samples, 0.04%)</title><rect x="333.8" y="2053" width="0.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="336.81" y="2063.5" ></text>
</g>
<g >
<title>AtEOXact_PgStat_Database (55,290,596 samples, 0.01%)</title><rect x="247.4" y="2053" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="250.44" y="2063.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (51,511,888 samples, 0.01%)</title><rect x="770.9" y="1973" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="773.90" y="1983.5" ></text>
</g>
<g >
<title>__futex_wait (488,596,836 samples, 0.08%)</title><rect x="446.9" y="1893" width="1.0" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="449.95" y="1903.5" ></text>
</g>
<g >
<title>ctx_groups_sched_in (109,247,460 samples, 0.02%)</title><rect x="343.6" y="1909" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="346.59" y="1919.5" ></text>
</g>
<g >
<title>IsTransactionBlock (54,543,140 samples, 0.01%)</title><rect x="277.9" y="2053" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="280.90" y="2063.5" ></text>
</g>
<g >
<title>psi_group_change (252,682,714 samples, 0.04%)</title><rect x="483.9" y="1685" width="0.5" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="486.89" y="1695.5" ></text>
</g>
<g >
<title>wake_affine (83,325,512 samples, 0.01%)</title><rect x="1103.3" y="1733" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="1106.31" y="1743.5" ></text>
</g>
<g >
<title>pqGets_internal (139,175,541 samples, 0.02%)</title><rect x="108.4" y="2021" width="0.3" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="111.42" y="2031.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (60,075,769 samples, 0.01%)</title><rect x="1040.5" y="1573" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="1043.54" y="1583.5" ></text>
</g>
<g >
<title>dostr (56,267,662 samples, 0.01%)</title><rect x="199.0" y="2053" width="0.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="202.02" y="2063.5" ></text>
</g>
<g >
<title>fmgr_info (85,186,293 samples, 0.01%)</title><rect x="806.5" y="2037" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="809.53" y="2047.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (51,491,587 samples, 0.01%)</title><rect x="740.4" y="1973" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="743.38" y="1983.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (55,692,436 samples, 0.01%)</title><rect x="527.4" y="1829" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="530.36" y="1839.5" ></text>
</g>
<g >
<title>ScanKeywordLookup (231,492,818 samples, 0.04%)</title><rect x="524.3" y="2005" width="0.5" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="527.30" y="2015.5" ></text>
</g>
<g >
<title>asm_exc_debug (4,021,406,715 samples, 0.67%)</title><rect x="471.3" y="2021" width="7.9" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="474.30" y="2031.5" ></text>
</g>
<g >
<title>submit_bio_noacct_nocheck (75,143,270 samples, 0.01%)</title><rect x="1166.2" y="1829" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1169.16" y="1839.5" ></text>
</g>
<g >
<title>psi_task_switch (432,960,456 samples, 0.07%)</title><rect x="660.9" y="1941" width="0.8" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="663.89" y="1951.5" ></text>
</g>
<g >
<title>gup_pte_range (167,894,426 samples, 0.03%)</title><rect x="1145.8" y="1861" width="0.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1148.79" y="1871.5" ></text>
</g>
<g >
<title>update_cfs_group (85,103,359 samples, 0.01%)</title><rect x="536.5" y="1541" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="539.46" y="1551.5" ></text>
</g>
<g >
<title>__x64_sys_pwrite64 (3,637,261,202 samples, 0.61%)</title><rect x="943.5" y="1989" width="7.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="946.46" y="1999.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (57,082,973 samples, 0.01%)</title><rect x="1024.3" y="1765" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="1027.34" y="1775.5" ></text>
</g>
<g >
<title>__common_interrupt (53,025,289 samples, 0.01%)</title><rect x="1015.5" y="1829" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1018.51" y="1839.5" ></text>
</g>
<g >
<title>planstate_tree_walker_impl (223,250,007 samples, 0.04%)</title><rect x="1134.0" y="2053" width="0.5" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="1137.05" y="2063.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (59,396,087 samples, 0.01%)</title><rect x="249.5" y="2053" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="252.46" y="2063.5" ></text>
</g>
<g >
<title>hash_seq_init (55,105,176 samples, 0.01%)</title><rect x="1134.8" y="2021" width="0.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="1137.82" y="2031.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (253,483,514 samples, 0.04%)</title><rect x="724.9" y="1829" width="0.5" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="727.86" y="1839.5" ></text>
</g>
<g >
<title>LWLockAcquireOrWait (170,274,701 samples, 0.03%)</title><rect x="505.1" y="2021" width="0.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="508.12" y="2031.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (658,787,854 samples, 0.11%)</title><rect x="694.7" y="1813" width="1.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="697.67" y="1823.5" ></text>
</g>
<g >
<title>perf_bp_event (2,962,171,196 samples, 0.50%)</title><rect x="472.2" y="1941" width="5.8" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="475.20" y="1951.5" ></text>
</g>
<g >
<title>x64_sys_call (20,899,174,736 samples, 3.50%)</title><rect x="988.6" y="2005" width="41.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="991.65" y="2015.5" >x64..</text>
</g>
<g >
<title>kvm_sched_clock_read (56,270,981 samples, 0.01%)</title><rect x="725.3" y="1765" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="728.25" y="1775.5" ></text>
</g>
<g >
<title>skb_unlink (56,283,566 samples, 0.01%)</title><rect x="183.9" y="1877" width="0.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="186.95" y="1887.5" ></text>
</g>
<g >
<title>vfs_write (53,656,837 samples, 0.01%)</title><rect x="19.0" y="1893" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="22.04" y="1903.5" ></text>
</g>
<g >
<title>sched_clock_cpu (114,521,011 samples, 0.02%)</title><rect x="719.9" y="1781" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="722.91" y="1791.5" ></text>
</g>
<g >
<title>sched_mm_cid_migrate_to (200,992,374 samples, 0.03%)</title><rect x="150.6" y="1733" width="0.4" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="153.57" y="1743.5" ></text>
</g>
<g >
<title>default_wake_function (93,016,533 samples, 0.02%)</title><rect x="437.4" y="1765" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="440.36" y="1775.5" ></text>
</g>
<g >
<title>__perf_event_overflow (178,776,503 samples, 0.03%)</title><rect x="1098.7" y="1925" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1101.69" y="1935.5" ></text>
</g>
<g >
<title>irq_exit_rcu (199,849,745 samples, 0.03%)</title><rect x="1189.1" y="1829" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1192.11" y="1839.5" ></text>
</g>
<g >
<title>try_to_wake_up (90,285,377 samples, 0.02%)</title><rect x="1099.1" y="1765" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="1102.10" y="1775.5" ></text>
</g>
<g >
<title>fault_in_readable (373,926,306 samples, 0.06%)</title><rect x="947.6" y="1893" width="0.7" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="950.57" y="1903.5" ></text>
</g>
<g >
<title>schedule (83,767,850 samples, 0.01%)</title><rect x="11.5" y="1989" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="14.53" y="1999.5" ></text>
</g>
<g >
<title>irq_work_run_list (60,067,863 samples, 0.01%)</title><rect x="471.6" y="1909" width="0.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="474.64" y="1919.5" ></text>
</g>
<g >
<title>worker_thread (56,517,171 samples, 0.01%)</title><rect x="11.2" y="2005" width="0.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="14.19" y="2015.5" ></text>
</g>
<g >
<title>bpf_overflow_handler (111,690,655 samples, 0.02%)</title><rect x="367.4" y="1909" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="370.42" y="1919.5" ></text>
</g>
<g >
<title>internal_get_user_pages_fast (90,612,717 samples, 0.02%)</title><rect x="303.2" y="1845" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="306.18" y="1855.5" ></text>
</g>
<g >
<title>__wake_up_common (90,285,377 samples, 0.02%)</title><rect x="1099.1" y="1813" width="0.2" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="1102.10" y="1823.5" ></text>
</g>
<g >
<title>sysvec_irq_work (56,686,249 samples, 0.01%)</title><rect x="527.5" y="1813" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="530.47" y="1823.5" ></text>
</g>
<g >
<title>psi_task_switch (59,464,763 samples, 0.01%)</title><rect x="428.2" y="1925" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="431.15" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1157" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1167.5" ></text>
</g>
<g >
<title>PortalRun (228,852,712 samples, 0.04%)</title><rect x="451.5" y="2037" width="0.5" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="454.52" y="2047.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (141,396,012 samples, 0.02%)</title><rect x="182.7" y="1765" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="185.74" y="1775.5" ></text>
</g>
<g >
<title>__fdget_pos (1,219,624,077 samples, 0.20%)</title><rect x="847.4" y="1941" width="2.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="850.40" y="1951.5" ></text>
</g>
<g >
<title>apparmor_socket_recvmsg (203,358,922 samples, 0.03%)</title><rect x="167.9" y="1909" width="0.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="170.92" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (9,530,418,183 samples, 1.59%)</title><rect x="561.0" y="245" width="18.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="564.01" y="255.5" ></text>
</g>
<g >
<title>ExecIndexBuildScanKeys (190,324,919 samples, 0.03%)</title><rect x="406.5" y="2037" width="0.4" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="409.49" y="2047.5" ></text>
</g>
<g >
<title>x2apic_send_IPI_self (393,231,584 samples, 0.07%)</title><rect x="476.8" y="1797" width="0.7" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="479.76" y="1807.5" ></text>
</g>
<g >
<title>index_getnext_tid (137,968,854 samples, 0.02%)</title><rect x="634.4" y="2021" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="637.41" y="2031.5" ></text>
</g>
<g >
<title>virtscsi_add_cmd (60,695,191 samples, 0.01%)</title><rect x="11.4" y="1829" width="0.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="14.41" y="1839.5" ></text>
</g>
<g >
<title>ret_from_fork (59,379,595 samples, 0.01%)</title><rect x="10.8" y="2037" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="13.79" y="2047.5" ></text>
</g>
<g >
<title>task_h_load (373,809,685 samples, 0.06%)</title><rect x="700.2" y="1781" width="0.7" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="703.18" y="1791.5" ></text>
</g>
<g >
<title>expression_returns_set_walker (117,375,478 samples, 0.02%)</title><rect x="797.0" y="2037" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="800.00" y="2047.5" ></text>
</g>
<g >
<title>ep_poll_callback (3,386,751,717 samples, 0.57%)</title><rect x="352.9" y="1893" width="6.7" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="355.93" y="1903.5" ></text>
</g>
<g >
<title>[libc.so.6] (85,410,835 samples, 0.01%)</title><rect x="202.2" y="2005" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="205.16" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (74,865,462 samples, 0.01%)</title><rect x="943.3" y="2005" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="946.31" y="2015.5" ></text>
</g>
<g >
<title>bpf_ringbuf_notify (56,780,393 samples, 0.01%)</title><rect x="343.3" y="1893" width="0.1" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="346.31" y="1903.5" ></text>
</g>
<g >
<title>__rcu_read_lock (57,254,724 samples, 0.01%)</title><rect x="1020.8" y="1845" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1023.85" y="1855.5" ></text>
</g>
<g >
<title>PopActiveSnapshot (482,464,809 samples, 0.08%)</title><rect x="449.9" y="2037" width="1.0" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="452.90" y="2047.5" ></text>
</g>
<g >
<title>activate_task (117,023,134 samples, 0.02%)</title><rect x="1189.2" y="1717" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1192.22" y="1727.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (94,260,669 samples, 0.02%)</title><rect x="37.4" y="1797" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="40.41" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="741" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="751.5" ></text>
</g>
<g >
<title>irq_work_run (85,236,206 samples, 0.01%)</title><rect x="505.3" y="1957" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="508.29" y="1967.5" ></text>
</g>
<g >
<title>create_tidscan_paths (84,969,709 samples, 0.01%)</title><rect x="972.5" y="2053" width="0.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="975.45" y="2063.5" ></text>
</g>
<g >
<title>find_vpid (107,642,168 samples, 0.02%)</title><rect x="1100.3" y="1957" width="0.3" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="1103.35" y="1967.5" ></text>
</g>
<g >
<title>internal_flush_buffer (113,703,515 samples, 0.02%)</title><rect x="838.7" y="2037" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="841.74" y="2047.5" ></text>
</g>
<g >
<title>dequeue_entity (717,060,429 samples, 0.12%)</title><rect x="28.3" y="1829" width="1.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="31.32" y="1839.5" ></text>
</g>
<g >
<title>ComputeXidHorizons (1,366,159,253 samples, 0.23%)</title><rect x="396.1" y="2037" width="2.7" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="399.10" y="2047.5" ></text>
</g>
<g >
<title>__send (943,449,870 samples, 0.16%)</title><rect x="950.9" y="2053" width="1.9" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="953.92" y="2063.5" ></text>
</g>
<g >
<title>pqRowProcessor (84,554,347 samples, 0.01%)</title><rect x="209.6" y="2053" width="0.2" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="212.64" y="2063.5" ></text>
</g>
<g >
<title>prepare_task_switch (86,729,885 samples, 0.01%)</title><rect x="194.3" y="1845" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="197.30" y="1855.5" ></text>
</g>
<g >
<title>__schedule (138,519,250 samples, 0.02%)</title><rect x="428.0" y="1941" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="431.00" y="1951.5" ></text>
</g>
<g >
<title>update_load_avg (633,922,082 samples, 0.11%)</title><rect x="79.6" y="1781" width="1.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="82.55" y="1791.5" ></text>
</g>
<g >
<title>do_sys_poll (57,279,197 samples, 0.01%)</title><rect x="104.0" y="1925" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="107.03" y="1935.5" ></text>
</g>
<g >
<title>scsi_done (57,766,097 samples, 0.01%)</title><rect x="1188.5" y="1717" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1191.55" y="1727.5" ></text>
</g>
<g >
<title>cost_bitmap_tree_node (51,330,229 samples, 0.01%)</title><rect x="617.3" y="2021" width="0.1" height="15.0" fill="rgb(241,170,40)" rx="2" ry="2" />
<text x="620.28" y="2031.5" ></text>
</g>
<g >
<title>CommandCounterIncrement.part.0 (84,177,454 samples, 0.01%)</title><rect x="251.6" y="2053" width="0.1" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="254.58" y="2063.5" ></text>
</g>
<g >
<title>poll_freewait (1,131,090,661 samples, 0.19%)</title><rect x="100.3" y="1893" width="2.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="103.28" y="1903.5" ></text>
</g>
<g >
<title>arch_exit_to_user_mode_prepare.isra.0 (221,124,856 samples, 0.04%)</title><rect x="21.5" y="1973" width="0.4" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="24.49" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1061" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1071.5" ></text>
</g>
<g >
<title>__rdgsbase_inactive (114,143,492 samples, 0.02%)</title><rect x="204.1" y="2037" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="207.07" y="2047.5" ></text>
</g>
<g >
<title>__perf_event_overflow (111,690,655 samples, 0.02%)</title><rect x="367.4" y="1925" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="370.42" y="1935.5" ></text>
</g>
<g >
<title>avg_vruntime (60,852,122 samples, 0.01%)</title><rect x="550.1" y="1637" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="553.07" y="1647.5" ></text>
</g>
<g >
<title>XLogRegisterData (85,981,898 samples, 0.01%)</title><rect x="366.7" y="2053" width="0.2" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="369.69" y="2063.5" ></text>
</g>
<g >
<title>rebalance_domains (144,743,032 samples, 0.02%)</title><rect x="1189.2" y="1749" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="1192.22" y="1759.5" ></text>
</g>
<g >
<title>fill_val (256,183,803 samples, 0.04%)</title><rect x="804.0" y="2037" width="0.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="807.02" y="2047.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (226,099,512 samples, 0.04%)</title><rect x="479.3" y="1941" width="0.4" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="482.30" y="1951.5" ></text>
</g>
<g >
<title>__rcu_read_lock (85,468,190 samples, 0.01%)</title><rect x="114.3" y="1893" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="117.31" y="1903.5" ></text>
</g>
<g >
<title>pqsecure_raw_write.part.0 (22,991,482,103 samples, 3.85%)</title><rect x="109.2" y="2021" width="45.3" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" />
<text x="112.16" y="2031.5" >pqse..</text>
</g>
<g >
<title>update_process_times (169,334,438 samples, 0.03%)</title><rect x="479.4" y="1909" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="482.41" y="1919.5" ></text>
</g>
<g >
<title>match_clauses_to_index (81,239,088 samples, 0.01%)</title><rect x="857.3" y="2037" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="860.32" y="2047.5" ></text>
</g>
<g >
<title>bpf_ringbuf_submit (676,785,848 samples, 0.11%)</title><rect x="476.3" y="1861" width="1.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="479.26" y="1871.5" ></text>
</g>
<g >
<title>IsSharedRelation (453,453,714 samples, 0.08%)</title><rect x="276.8" y="2053" width="0.9" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="279.84" y="2063.5" ></text>
</g>
<g >
<title>do_read_fault (1,957,385,662 samples, 0.33%)</title><rect x="735.7" y="1909" width="3.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="738.74" y="1919.5" ></text>
</g>
<g >
<title>ExecCheckPlanOutput.isra.0 (141,672,615 samples, 0.02%)</title><rect x="403.6" y="2037" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="406.61" y="2047.5" ></text>
</g>
<g >
<title>detoast_attr (146,059,582 samples, 0.02%)</title><rect x="973.8" y="2053" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="976.76" y="2063.5" ></text>
</g>
<g >
<title>ExecAssignScanProjectionInfo (115,675,509 samples, 0.02%)</title><rect x="402.2" y="2037" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="405.24" y="2047.5" ></text>
</g>
<g >
<title>__wake_up (56,686,249 samples, 0.01%)</title><rect x="527.5" y="1669" width="0.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="530.47" y="1679.5" ></text>
</g>
<g >
<title>bpf_prog_ab52827c9cfdf652_on_watchpoint (1,885,386,227 samples, 0.32%)</title><rect x="528.9" y="1733" width="3.8" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="531.93" y="1743.5" ></text>
</g>
<g >
<title>wake_up_q (4,434,108,104 samples, 0.74%)</title><rect x="1146.3" y="1941" width="8.7" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1149.28" y="1951.5" ></text>
</g>
<g >
<title>select_task_rq (609,624,308 samples, 0.10%)</title><rect x="1148.0" y="1909" width="1.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1150.98" y="1919.5" ></text>
</g>
<g >
<title>__enqueue_entity (57,875,237 samples, 0.01%)</title><rect x="355.3" y="1685" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="358.33" y="1695.5" ></text>
</g>
<g >
<title>mod_memcg_lruvec_state (141,208,281 samples, 0.02%)</title><rect x="908.3" y="1765" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="911.28" y="1775.5" ></text>
</g>
<g >
<title>enable_timeout (53,299,314 samples, 0.01%)</title><rect x="974.4" y="2053" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="977.44" y="2063.5" ></text>
</g>
<g >
<title>xas_find (533,596,986 samples, 0.09%)</title><rect x="1091.3" y="1877" width="1.0" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1094.26" y="1887.5" ></text>
</g>
<g >
<title>transformExpr (143,561,283 samples, 0.02%)</title><rect x="935.2" y="2037" width="0.3" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="938.24" y="2047.5" ></text>
</g>
<g >
<title>restore_fpregs_from_fpstate (312,237,338 samples, 0.05%)</title><rect x="646.4" y="1941" width="0.6" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="649.37" y="1951.5" ></text>
</g>
<g >
<title>__wake_up (90,285,377 samples, 0.02%)</title><rect x="1099.1" y="1925" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="1102.10" y="1935.5" ></text>
</g>
<g >
<title>pqReadData (170,520,264 samples, 0.03%)</title><rect x="208.5" y="2053" width="0.3" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="211.45" y="2063.5" ></text>
</g>
<g >
<title>__x64_sys_futex (742,636,989 samples, 0.12%)</title><rect x="301.9" y="1957" width="1.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="304.94" y="1967.5" ></text>
</g>
<g >
<title>event_sched_out (84,900,242 samples, 0.01%)</title><rect x="1144.0" y="1861" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="1146.98" y="1871.5" ></text>
</g>
<g >
<title>[libc.so.6] (1,846,447,850 samples, 0.31%)</title><rect x="235.9" y="2021" width="3.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="238.85" y="2031.5" ></text>
</g>
<g >
<title>gup_pgd_range (563,173,417 samples, 0.09%)</title><rect x="559.1" y="1653" width="1.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="562.06" y="1663.5" ></text>
</g>
<g >
<title>LWLockWaitForVar (192,663,368 samples, 0.03%)</title><rect x="291.6" y="2053" width="0.4" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="294.63" y="2063.5" ></text>
</g>
<g >
<title>PQsendQueryInternal (83,503,697 samples, 0.01%)</title><rect x="43.6" y="2053" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="46.61" y="2063.5" ></text>
</g>
<g >
<title>x64_sys_call (742,636,989 samples, 0.12%)</title><rect x="301.9" y="1973" width="1.5" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="304.94" y="1983.5" ></text>
</g>
<g >
<title>pgstat_report_activity (143,024,104 samples, 0.02%)</title><rect x="638.4" y="2021" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="641.37" y="2031.5" ></text>
</g>
<g >
<title>__wake_up_common (93,016,533 samples, 0.02%)</title><rect x="437.4" y="1845" width="0.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="440.36" y="1855.5" ></text>
</g>
<g >
<title>__cond_resched (79,814,627 samples, 0.01%)</title><rect x="945.1" y="1909" width="0.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="948.09" y="1919.5" ></text>
</g>
<g >
<title>restriction_is_or_clause (56,456,041 samples, 0.01%)</title><rect x="919.2" y="2037" width="0.1" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="922.23" y="2047.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (55,999,065 samples, 0.01%)</title><rect x="633.3" y="1973" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="636.35" y="1983.5" ></text>
</g>
<g >
<title>ExecInterpExprStillValid (87,176,480 samples, 0.01%)</title><rect x="412.1" y="2037" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="415.06" y="2047.5" ></text>
</g>
<g >
<title>update_cfs_group (57,361,432 samples, 0.01%)</title><rect x="76.1" y="1765" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="79.11" y="1775.5" ></text>
</g>
<g >
<title>lockless_pages_from_mm (342,714,765 samples, 0.06%)</title><rect x="1145.5" y="1893" width="0.7" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="1148.49" y="1903.5" ></text>
</g>
<g >
<title>irqentry_exit (56,274,278 samples, 0.01%)</title><rect x="327.9" y="2005" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="330.95" y="2015.5" ></text>
</g>
<g >
<title>PortalDrop (139,971,089 samples, 0.02%)</title><rect x="305.8" y="2053" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="308.77" y="2063.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (91,129,362 samples, 0.02%)</title><rect x="97.9" y="1829" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="100.94" y="1839.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (72,132,779 samples, 0.01%)</title><rect x="618.2" y="2005" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="621.21" y="2015.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (433,194,369 samples, 0.07%)</title><rect x="696.0" y="1829" width="0.9" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="699.03" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="853" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="863.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5,990,903,222 samples, 1.00%)</title><rect x="1143.3" y="2037" width="11.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1146.31" y="2047.5" ></text>
</g>
<g >
<title>kill_pid_info (2,861,744,867 samples, 0.48%)</title><rect x="1100.6" y="1957" width="5.6" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1103.56" y="1967.5" ></text>
</g>
<g >
<title>__send (43,492,755,799 samples, 7.28%)</title><rect x="642.7" y="2037" width="85.8" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="645.66" y="2047.5" >__send</text>
</g>
<g >
<title>pgstat_count_heap_update (205,020,894 samples, 0.03%)</title><rect x="878.2" y="2037" width="0.4" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="881.18" y="2047.5" ></text>
</g>
<g >
<title>socket_putmessage (117,639,696 samples, 0.02%)</title><rect x="1173.7" y="2037" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1176.66" y="2047.5" ></text>
</g>
<g >
<title>dequeue_entity (490,871,863 samples, 0.08%)</title><rect x="549.8" y="1653" width="1.0" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="552.84" y="1663.5" ></text>
</g>
<g >
<title>blk_mq_get_tag (57,711,498 samples, 0.01%)</title><rect x="1041.2" y="1749" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="1044.23" y="1759.5" ></text>
</g>
<g >
<title>dequeue_task (84,685,137 samples, 0.01%)</title><rect x="1180.6" y="1733" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="1183.56" y="1743.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (57,853,052 samples, 0.01%)</title><rect x="152.9" y="1845" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="155.91" y="1855.5" ></text>
</g>
<g >
<title>InitResultRelInfo (369,331,288 samples, 0.06%)</title><rect x="435.6" y="2037" width="0.7" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="438.56" y="2047.5" ></text>
</g>
<g >
<title>blk_mq_sched_dispatch_requests (56,195,609 samples, 0.01%)</title><rect x="10.9" y="1925" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="13.90" y="1935.5" ></text>
</g>
<g >
<title>try_to_wake_up (60,067,863 samples, 0.01%)</title><rect x="471.6" y="1701" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="474.64" y="1711.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1461" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1471.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="805" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="815.5" ></text>
</g>
<g >
<title>enqueue_task (63,792,261 samples, 0.01%)</title><rect x="1099.2" y="1733" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1102.15" y="1743.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (112,904,579 samples, 0.02%)</title><rect x="651.4" y="1861" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="654.41" y="1871.5" ></text>
</g>
<g >
<title>page_counter_uncharge (119,956,337 samples, 0.02%)</title><rect x="686.4" y="1765" width="0.3" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="689.42" y="1775.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (52,300,299 samples, 0.01%)</title><rect x="329.5" y="2037" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="332.45" y="2047.5" ></text>
</g>
<g >
<title>__wake_up (54,158,423 samples, 0.01%)</title><rect x="367.7" y="1925" width="0.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="370.69" y="1935.5" ></text>
</g>
<g >
<title>resched_curr (452,149,545 samples, 0.08%)</title><rect x="357.7" y="1701" width="0.9" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="360.74" y="1711.5" ></text>
</g>
<g >
<title>__x64_sys_sendto (140,015,130 samples, 0.02%)</title><rect x="644.3" y="1989" width="0.3" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="647.30" y="1999.5" ></text>
</g>
<g >
<title>arch_irq_work_raise (106,210,150 samples, 0.02%)</title><rect x="264.9" y="1829" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="267.85" y="1839.5" ></text>
</g>
<g >
<title>__fdget (107,880,583 samples, 0.02%)</title><rect x="22.1" y="1941" width="0.3" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="25.15" y="1951.5" ></text>
</g>
<g >
<title>isTempToastNamespace (287,560,408 samples, 0.05%)</title><rect x="839.0" y="2037" width="0.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="841.96" y="2047.5" ></text>
</g>
<g >
<title>dequeue_task (2,304,373,931 samples, 0.39%)</title><rect x="27.0" y="1861" width="4.6" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="30.02" y="1871.5" ></text>
</g>
<g >
<title>__x64_sys_setitimer (53,689,056 samples, 0.01%)</title><rect x="1158.8" y="1989" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1161.80" y="1999.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (109,309,469 samples, 0.02%)</title><rect x="660.5" y="1813" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="663.51" y="1823.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (60,075,769 samples, 0.01%)</title><rect x="1040.5" y="1605" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1043.54" y="1615.5" ></text>
</g>
<g >
<title>ctx_groups_sched_in (53,889,830 samples, 0.01%)</title><rect x="471.8" y="1893" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="474.81" y="1903.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (1,922,424,731 samples, 0.32%)</title><rect x="657.0" y="1925" width="3.8" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="660.04" y="1935.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (493,775,527 samples, 0.08%)</title><rect x="1146.9" y="1877" width="1.0" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="1149.95" y="1887.5" ></text>
</g>
<g >
<title>transform_MERGE_to_join (229,122,131 samples, 0.04%)</title><rect x="938.2" y="2037" width="0.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="941.19" y="2047.5" ></text>
</g>
<g >
<title>arch_exit_to_user_mode_prepare.isra.0 (200,846,858 samples, 0.03%)</title><rect x="897.2" y="1973" width="0.4" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="900.16" y="1983.5" ></text>
</g>
<g >
<title>ep_autoremove_wake_function (3,188,124,532 samples, 0.53%)</title><rect x="353.1" y="1797" width="6.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="356.10" y="1807.5" ></text>
</g>
<g >
<title>update_cfs_group (173,028,955 samples, 0.03%)</title><rect x="550.8" y="1653" width="0.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="553.81" y="1663.5" ></text>
</g>
<g >
<title>vfs_read (641,229,158 samples, 0.11%)</title><rect x="1136.9" y="1957" width="1.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1139.89" y="1967.5" ></text>
</g>
<g >
<title>available_idle_cpu (112,709,512 samples, 0.02%)</title><rect x="1148.5" y="1861" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="1151.52" y="1871.5" ></text>
</g>
<g >
<title>__enqueue_entity (269,411,100 samples, 0.05%)</title><rect x="1150.0" y="1845" width="0.5" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1153.02" y="1855.5" ></text>
</g>
<g >
<title>asm_common_interrupt (60,230,603 samples, 0.01%)</title><rect x="1185.5" y="1973" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1188.50" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1493" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1503.5" ></text>
</g>
<g >
<title>skb_release_data (2,189,930,973 samples, 0.37%)</title><rect x="174.3" y="1861" width="4.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="177.29" y="1871.5" ></text>
</g>
<g >
<title>irq_work_run (266,429,464 samples, 0.04%)</title><rect x="279.7" y="1989" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="282.65" y="1999.5" ></text>
</g>
<g >
<title>_bt_moveright (537,585,397 samples, 0.09%)</title><rect x="748.8" y="2037" width="1.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="751.81" y="2047.5" ></text>
</g>
<g >
<title>BufTableHashCode (53,777,630 samples, 0.01%)</title><rect x="249.4" y="2053" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="252.36" y="2063.5" ></text>
</g>
<g >
<title>dequeue_task_fair (458,665,799 samples, 0.08%)</title><rect x="192.7" y="1829" width="0.9" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="195.66" y="1839.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge_pages (200,254,049 samples, 0.03%)</title><rect x="908.6" y="1781" width="0.4" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="911.56" y="1791.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (113,402,381 samples, 0.02%)</title><rect x="1102.9" y="1765" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1105.85" y="1775.5" ></text>
</g>
<g >
<title>RelationGetNumberOfBlocksInFork (142,947,497 samples, 0.02%)</title><rect x="316.0" y="2053" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="319.02" y="2063.5" ></text>
</g>
<g >
<title>ProcessClientReadInterrupt (439,300,545 samples, 0.07%)</title><rect x="308.1" y="2053" width="0.8" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="311.05" y="2063.5" ></text>
</g>
<g >
<title>__wake_up_common (239,397,802 samples, 0.04%)</title><rect x="279.7" y="1909" width="0.5" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="282.70" y="1919.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (89,995,753 samples, 0.02%)</title><rect x="896.2" y="2021" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="899.22" y="2031.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,131,256,661 samples, 0.52%)</title><rect x="734.3" y="2021" width="6.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="737.30" y="2031.5" ></text>
</g>
<g >
<title>unix_stream_recvmsg (7,516,458,822 samples, 1.26%)</title><rect x="900.5" y="1925" width="14.9" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="903.53" y="1935.5" ></text>
</g>
<g >
<title>reweight_entity (88,092,393 samples, 0.01%)</title><rect x="1104.0" y="1701" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1107.02" y="1711.5" ></text>
</g>
<g >
<title>do_futex (232,890,161 samples, 0.04%)</title><rect x="506.4" y="1909" width="0.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="509.43" y="1919.5" ></text>
</g>
<g >
<title>bpf_ktime_get_ns (171,302,103 samples, 0.03%)</title><rect x="473.4" y="1861" width="0.3" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="476.39" y="1871.5" ></text>
</g>
<g >
<title>mutex_lock (135,866,586 samples, 0.02%)</title><rect x="26.2" y="1909" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="29.22" y="1919.5" ></text>
</g>
<g >
<title>deconstruct_jointree (491,684,588 samples, 0.08%)</title><rect x="972.8" y="2053" width="1.0" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="975.79" y="2063.5" ></text>
</g>
<g >
<title>pqSendSome (114,114,451 samples, 0.02%)</title><rect x="162.6" y="2037" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="165.64" y="2047.5" ></text>
</g>
<g >
<title>notify_die (178,776,503 samples, 0.03%)</title><rect x="1098.7" y="2005" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="1101.69" y="2015.5" ></text>
</g>
<g >
<title>irqentry_exit (87,905,175 samples, 0.01%)</title><rect x="420.7" y="1989" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="423.70" y="1999.5" ></text>
</g>
<g >
<title>ctx_sched_in (109,247,460 samples, 0.02%)</title><rect x="343.6" y="1925" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="346.59" y="1935.5" ></text>
</g>
<g >
<title>xas_load (196,777,059 samples, 0.03%)</title><rect x="497.6" y="1829" width="0.4" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="500.59" y="1839.5" ></text>
</g>
<g >
<title>makeVar (86,414,969 samples, 0.01%)</title><rect x="851.9" y="2037" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="854.94" y="2047.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,246,235,331 samples, 0.54%)</title><rect x="1037.1" y="2021" width="6.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1040.15" y="2031.5" ></text>
</g>
<g >
<title>bpf_ringbuf_submit (106,210,150 samples, 0.02%)</title><rect x="264.9" y="1877" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="267.85" y="1887.5" ></text>
</g>
<g >
<title>RelationGetStatExtList (115,339,049 samples, 0.02%)</title><rect x="316.3" y="2053" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="319.30" y="2063.5" ></text>
</g>
<g >
<title>__bpf_ringbuf_reserve (715,088,850 samples, 0.12%)</title><rect x="530.0" y="1701" width="1.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="532.95" y="1711.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (165,004,776 samples, 0.03%)</title><rect x="18.1" y="1941" width="0.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="21.12" y="1951.5" ></text>
</g>
<g >
<title>task_tick_fair (83,867,366 samples, 0.01%)</title><rect x="479.5" y="1877" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="482.52" y="1887.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (110,015,546 samples, 0.02%)</title><rect x="534.1" y="1877" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="537.11" y="1887.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (51,292,816 samples, 0.01%)</title><rect x="449.8" y="2021" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="452.80" y="2031.5" ></text>
</g>
<g >
<title>IncrTupleDescRefCount (86,309,668 samples, 0.01%)</title><rect x="434.7" y="2037" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="437.72" y="2047.5" ></text>
</g>
<g >
<title>IOContextForStrategy (114,817,829 samples, 0.02%)</title><rect x="275.9" y="2053" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="278.86" y="2063.5" ></text>
</g>
<g >
<title>virtscsi_queuecommand (180,385,337 samples, 0.03%)</title><rect x="1040.3" y="1717" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="1043.30" y="1727.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (165,004,776 samples, 0.03%)</title><rect x="18.1" y="1925" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="21.12" y="1935.5" ></text>
</g>
<g >
<title>check_mergejoinable (84,003,551 samples, 0.01%)</title><rect x="772.9" y="2037" width="0.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="775.87" y="2047.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (130,829,857 samples, 0.02%)</title><rect x="1013.6" y="1797" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1016.55" y="1807.5" ></text>
</g>
<g >
<title>LockReassignOwner (59,733,783 samples, 0.01%)</title><rect x="438.7" y="2037" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="441.66" y="2047.5" ></text>
</g>
<g >
<title>tick_sched_handle (57,321,497 samples, 0.01%)</title><rect x="750.7" y="1925" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="753.67" y="1935.5" ></text>
</g>
<g >
<title>__x64_sys_futex (6,939,712,721 samples, 1.16%)</title><rect x="546.7" y="1797" width="13.7" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="549.69" y="1807.5" ></text>
</g>
<g >
<title>table_block_relation_estimate_size (109,486,452 samples, 0.02%)</title><rect x="933.1" y="2037" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="936.12" y="2047.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (113,340,770 samples, 0.02%)</title><rect x="116.4" y="1861" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="119.38" y="1871.5" ></text>
</g>
<g >
<title>schedule (79,265,418 samples, 0.01%)</title><rect x="523.9" y="1941" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="526.92" y="1951.5" ></text>
</g>
<g >
<title>pick_next_task (54,500,904 samples, 0.01%)</title><rect x="428.0" y="1925" width="0.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="431.00" y="1935.5" ></text>
</g>
<g >
<title>bms_add_members (81,581,887 samples, 0.01%)</title><rect x="764.3" y="2037" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="767.35" y="2047.5" ></text>
</g>
<g >
<title>tick_sched_handle (62,422,137 samples, 0.01%)</title><rect x="726.9" y="1781" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="729.88" y="1791.5" ></text>
</g>
<g >
<title>heap_page_prune_execute (57,360,202 samples, 0.01%)</title><rect x="1084.7" y="2053" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1087.69" y="2063.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (542,946,166 samples, 0.09%)</title><rect x="446.9" y="2037" width="1.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="449.95" y="2047.5" ></text>
</g>
<g >
<title>pg_strdup (199,949,952 samples, 0.03%)</title><rect x="158.0" y="2037" width="0.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="161.01" y="2047.5" ></text>
</g>
<g >
<title>sched_clock (114,521,011 samples, 0.02%)</title><rect x="719.9" y="1765" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="722.91" y="1775.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (9,687,420,050 samples, 1.62%)</title><rect x="73.1" y="1861" width="19.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.14" y="1871.5" ></text>
</g>
<g >
<title>update_curr (377,855,028 samples, 0.06%)</title><rect x="78.6" y="1749" width="0.8" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="81.64" y="1759.5" ></text>
</g>
<g >
<title>mutex_lock (228,371,208 samples, 0.04%)</title><rect x="911.5" y="1893" width="0.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="914.50" y="1903.5" ></text>
</g>
<g >
<title>enqueue_task_fair (111,643,913 samples, 0.02%)</title><rect x="265.6" y="1717" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="268.59" y="1727.5" ></text>
</g>
<g >
<title>hash_bytes (1,154,748,461 samples, 0.19%)</title><rect x="816.4" y="2037" width="2.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="819.44" y="2047.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (53,627,794 samples, 0.01%)</title><rect x="288.5" y="2021" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="291.49" y="2031.5" ></text>
</g>
<g >
<title>scsi_done_internal (57,766,097 samples, 0.01%)</title><rect x="1188.5" y="1701" width="0.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="1191.55" y="1711.5" ></text>
</g>
<g >
<title>update_rq_clock (87,348,937 samples, 0.01%)</title><rect x="558.2" y="1685" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="561.17" y="1695.5" ></text>
</g>
<g >
<title>__handle_mm_fault (1,821,391,375 samples, 0.30%)</title><rect x="496.3" y="1957" width="3.6" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="499.31" y="1967.5" ></text>
</g>
<g >
<title>epoll_wait (9,260,175,123 samples, 1.55%)</title><rect x="19.6" y="2037" width="18.3" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="22.62" y="2047.5" ></text>
</g>
<g >
<title>make_plain_restrictinfo (142,189,682 samples, 0.02%)</title><rect x="855.5" y="2037" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="858.46" y="2047.5" ></text>
</g>
<g >
<title>radix_tree_lookup (82,167,071 samples, 0.01%)</title><rect x="1100.4" y="1925" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1103.40" y="1935.5" ></text>
</g>
<g >
<title>__check_object_size (394,894,965 samples, 0.07%)</title><rect x="115.1" y="1877" width="0.8" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="118.10" y="1887.5" ></text>
</g>
<g >
<title>perf_event_task_tick (55,308,989 samples, 0.01%)</title><rect x="534.1" y="1733" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="537.11" y="1743.5" ></text>
</g>
<g >
<title>btgettuple (197,814,103 samples, 0.03%)</title><rect x="616.6" y="2021" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="619.56" y="2031.5" ></text>
</g>
<g >
<title>perf_swevent_event (2,083,493,269 samples, 0.35%)</title><rect x="528.8" y="1781" width="4.1" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="531.82" y="1791.5" ></text>
</g>
<g >
<title>update_cfs_group (138,729,647 samples, 0.02%)</title><rect x="483.1" y="1685" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="486.08" y="1695.5" ></text>
</g>
<g >
<title>arch_exit_to_user_mode_prepare.isra.0 (56,469,851 samples, 0.01%)</title><rect x="471.5" y="1973" width="0.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="474.52" y="1983.5" ></text>
</g>
<g >
<title>hw_breakpoint_add (676,498,066 samples, 0.11%)</title><rect x="649.0" y="1829" width="1.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="651.95" y="1839.5" ></text>
</g>
<g >
<title>x64_sys_call (86,524,858 samples, 0.01%)</title><rect x="1029.9" y="2021" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1032.91" y="2031.5" ></text>
</g>
<g >
<title>__sys_sendto (32,802,259,098 samples, 5.49%)</title><rect x="662.9" y="1957" width="64.8" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text x="665.93" y="1967.5" >__sys_s..</text>
</g>
<g >
<title>__errno_location (171,850,425 samples, 0.03%)</title><rect x="104.8" y="2021" width="0.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="107.82" y="2031.5" ></text>
</g>
<g >
<title>object_aclmask_ext.constprop.0 (104,281,356 samples, 0.02%)</title><rect x="860.1" y="2037" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="863.14" y="2047.5" ></text>
</g>
<g >
<title>ret_from_fork (56,517,171 samples, 0.01%)</title><rect x="11.2" y="2037" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="14.19" y="2047.5" ></text>
</g>
<g >
<title>alloc_skb_with_frags (9,431,433,333 samples, 1.58%)</title><rect x="671.9" y="1909" width="18.6" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="674.89" y="1919.5" ></text>
</g>
<g >
<title>ep_poll_callback (93,016,533 samples, 0.02%)</title><rect x="437.4" y="1829" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="440.36" y="1839.5" ></text>
</g>
<g >
<title>hw_breakpoint_exceptions_notify (2,992,362,634 samples, 0.50%)</title><rect x="472.1" y="1957" width="5.9" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="475.14" y="1967.5" ></text>
</g>
<g >
<title>fmtint (198,368,670 samples, 0.03%)</title><rect x="200.4" y="2053" width="0.4" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="203.39" y="2063.5" ></text>
</g>
<g >
<title>pqCommandQueueAdvance (499,809,181 samples, 0.08%)</title><rect x="107.4" y="2021" width="1.0" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="110.43" y="2031.5" ></text>
</g>
<g >
<title>schedule (110,862,804 samples, 0.02%)</title><rect x="471.8" y="1973" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="474.75" y="1983.5" ></text>
</g>
<g >
<title>put_pid (89,070,151 samples, 0.01%)</title><rect x="664.6" y="1941" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="667.58" y="1951.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (60,023,656 samples, 0.01%)</title><rect x="144.9" y="1605" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="147.91" y="1615.5" ></text>
</g>
<g >
<title>scsi_complete (53,025,289 samples, 0.01%)</title><rect x="1015.5" y="1669" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="1018.51" y="1679.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (164,542,412 samples, 0.03%)</title><rect x="485.6" y="1973" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="488.65" y="1983.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (54,962,641 samples, 0.01%)</title><rect x="481.3" y="1733" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="484.30" y="1743.5" ></text>
</g>
<g >
<title>irq_work_run (60,067,863 samples, 0.01%)</title><rect x="471.6" y="1925" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="474.64" y="1935.5" ></text>
</g>
<g >
<title>ctx_groups_sched_in (54,688,229 samples, 0.01%)</title><rect x="1038.3" y="1829" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1041.32" y="1839.5" ></text>
</g>
<g >
<title>btgettreeheight (115,778,040 samples, 0.02%)</title><rect x="960.4" y="2053" width="0.3" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="963.44" y="2063.5" ></text>
</g>
<g >
<title>[[vdso]] (511,285,944 samples, 0.09%)</title><rect x="503.5" y="2005" width="1.0" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="506.49" y="2015.5" ></text>
</g>
<g >
<title>sock_def_readable (18,405,170,689 samples, 3.08%)</title><rect x="690.7" y="1925" width="36.4" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="693.73" y="1935.5" >soc..</text>
</g>
<g >
<title>hw_breakpoint_add (78,801,061 samples, 0.01%)</title><rect x="343.6" y="1845" width="0.1" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="346.59" y="1855.5" ></text>
</g>
<g >
<title>__mod_memcg_state (199,609,548 samples, 0.03%)</title><rect x="123.1" y="1781" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="126.13" y="1791.5" ></text>
</g>
<g >
<title>local_clock (165,195,251 samples, 0.03%)</title><rect x="553.6" y="1637" width="0.3" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="556.58" y="1647.5" ></text>
</g>
<g >
<title>merge_sched_in (54,936,306 samples, 0.01%)</title><rect x="447.3" y="1749" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="450.35" y="1759.5" ></text>
</g>
<g >
<title>pgwt_daemon_run (1,231,865,329 samples, 0.21%)</title><rect x="37.9" y="2037" width="2.4" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="40.90" y="2047.5" ></text>
</g>
<g >
<title>task_h_load (235,062,999 samples, 0.04%)</title><rect x="139.2" y="1701" width="0.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="142.18" y="1711.5" ></text>
</g>
<g >
<title>alloc_pages_mpol (145,576,029 samples, 0.02%)</title><rect x="1092.5" y="1877" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1095.48" y="1887.5" ></text>
</g>
<g >
<title>__wake_up_common (56,686,249 samples, 0.01%)</title><rect x="527.5" y="1701" width="0.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="530.47" y="1711.5" ></text>
</g>
<g >
<title>PredicateLockTID (144,760,994 samples, 0.02%)</title><rect x="452.6" y="2037" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="455.64" y="2047.5" ></text>
</g>
<g >
<title>event_sched_out (111,294,362 samples, 0.02%)</title><rect x="344.1" y="1861" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="347.08" y="1871.5" ></text>
</g>
<g >
<title>psi_task_switch (84,949,340 samples, 0.01%)</title><rect x="302.8" y="1845" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="305.79" y="1855.5" ></text>
</g>
<g >
<title>mod_memcg_lruvec_state (85,332,002 samples, 0.01%)</title><rect x="686.0" y="1813" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="689.04" y="1823.5" ></text>
</g>
<g >
<title>enqueue_task_fair (1,067,895,085 samples, 0.18%)</title><rect x="354.4" y="1717" width="2.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="357.44" y="1727.5" ></text>
</g>
<g >
<title>AdvanceXLInsertBuffer (445,698,041 samples, 0.07%)</title><rect x="226.1" y="2053" width="0.9" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="229.08" y="2063.5" ></text>
</g>
<g >
<title>list_copy (279,703,851 samples, 0.05%)</title><rect x="1107.0" y="2053" width="0.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1109.98" y="2063.5" ></text>
</g>
<g >
<title>cpuacct_charge (59,627,478 samples, 0.01%)</title><rect x="1002.4" y="1813" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1005.36" y="1823.5" ></text>
</g>
<g >
<title>ExecShutdownNode_walker (57,700,840 samples, 0.01%)</title><rect x="260.8" y="2053" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="263.76" y="2063.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (659,066,199 samples, 0.11%)</title><rect x="517.0" y="2021" width="1.3" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="520.02" y="2031.5" ></text>
</g>
<g >
<title>__wake_up (239,397,802 samples, 0.04%)</title><rect x="279.7" y="1829" width="0.5" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="282.70" y="1839.5" ></text>
</g>
<g >
<title>sock_poll (3,565,850,853 samples, 0.60%)</title><rect x="92.3" y="1877" width="7.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="95.27" y="1887.5" ></text>
</g>
<g >
<title>skb_copy_datagram_from_iter (704,976,519 samples, 0.12%)</title><rect x="114.9" y="1893" width="1.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="117.93" y="1903.5" ></text>
</g>
<g >
<title>do_shared_fault (1,450,737,242 samples, 0.24%)</title><rect x="496.9" y="1909" width="2.9" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="499.93" y="1919.5" ></text>
</g>
<g >
<title>[libc.so.6] (109,690,663 samples, 0.02%)</title><rect x="1173.4" y="2037" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1176.45" y="2047.5" ></text>
</g>
<g >
<title>kill (3,400,330,205 samples, 0.57%)</title><rect x="1099.5" y="2053" width="6.7" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="1102.50" y="2063.5" ></text>
</g>
<g >
<title>schedule (72,132,779 samples, 0.01%)</title><rect x="618.2" y="1941" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="621.21" y="1951.5" ></text>
</g>
<g >
<title>ring_buffer__consume (51,785,879 samples, 0.01%)</title><rect x="40.3" y="2037" width="0.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="43.33" y="2047.5" ></text>
</g>
<g >
<title>[libc.so.6] (180,965,758 samples, 0.03%)</title><rect x="240.5" y="2005" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="243.55" y="2015.5" ></text>
</g>
<g >
<title>__schedule (112,297,376 samples, 0.02%)</title><rect x="1078.7" y="1957" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1081.74" y="1967.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (52,300,299 samples, 0.01%)</title><rect x="329.5" y="1989" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="332.45" y="1999.5" ></text>
</g>
<g >
<title>_nohz_idle_balance.isra.0 (53,159,104 samples, 0.01%)</title><rect x="1183.8" y="1893" width="0.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="1186.83" y="1903.5" ></text>
</g>
<g >
<title>__fdget (1,824,839,585 samples, 0.31%)</title><rect x="69.3" y="1877" width="3.6" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="72.31" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1173" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1183.5" ></text>
</g>
<g >
<title>AbortStrongLockAcquire (140,952,321 samples, 0.02%)</title><rect x="225.6" y="2053" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="228.63" y="2063.5" ></text>
</g>
<g >
<title>ttwu_do_activate (84,985,148 samples, 0.01%)</title><rect x="1183.7" y="1941" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="1186.66" y="1951.5" ></text>
</g>
<g >
<title>sock_poll (427,853,800 samples, 0.07%)</title><rect x="995.7" y="1909" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="998.66" y="1919.5" ></text>
</g>
<g >
<title>event_sched_out (1,080,920,791 samples, 0.18%)</title><rect x="658.2" y="1845" width="2.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="661.20" y="1855.5" ></text>
</g>
<g >
<title>schedule (9,482,702,415 samples, 1.59%)</title><rect x="73.5" y="1845" width="18.8" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="76.55" y="1855.5" ></text>
</g>
<g >
<title>x64_sys_call (2,696,144,182 samples, 0.45%)</title><rect x="191.6" y="1973" width="5.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="194.56" y="1983.5" ></text>
</g>
<g >
<title>get_hash_value (258,763,397 samples, 0.04%)</title><rect x="1050.0" y="2053" width="0.6" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="1053.05" y="2063.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (52,479,570 samples, 0.01%)</title><rect x="154.4" y="1989" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="157.44" y="1999.5" ></text>
</g>
<g >
<title>__wake_up_common (1,989,412,275 samples, 0.33%)</title><rect x="534.5" y="1749" width="3.9" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="537.50" y="1759.5" ></text>
</g>
<g >
<title>create_seqscan_path (195,569,092 samples, 0.03%)</title><rect x="786.2" y="2037" width="0.4" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="789.18" y="2047.5" ></text>
</g>
<g >
<title>try_grab_folio_fast (140,175,837 samples, 0.02%)</title><rect x="1145.8" y="1845" width="0.3" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="1148.84" y="1855.5" ></text>
</g>
<g >
<title>pid_task (84,990,360 samples, 0.01%)</title><rect x="1106.0" y="1941" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1109.04" y="1951.5" ></text>
</g>
<g >
<title>audit_signal_info_syscall (143,038,326 samples, 0.02%)</title><rect x="1100.6" y="1909" width="0.2" height="15.0" fill="rgb(251,213,50)" rx="2" ry="2" />
<text x="1103.56" y="1919.5" ></text>
</g>
<g >
<title>cpuidle_idle_call (712,971,344 samples, 0.12%)</title><rect x="1188.4" y="1925" width="1.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1191.37" y="1935.5" ></text>
</g>
<g >
<title>AtEOXact_GUC (199,612,465 samples, 0.03%)</title><rect x="245.2" y="2053" width="0.4" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="248.16" y="2063.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (165,195,251 samples, 0.03%)</title><rect x="553.6" y="1573" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="556.58" y="1583.5" ></text>
</g>
<g >
<title>UnregisterSnapshot (89,256,874 samples, 0.01%)</title><rect x="470.2" y="2037" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="473.23" y="2047.5" ></text>
</g>
<g >
<title>ret_from_fork (201,993,970 samples, 0.03%)</title><rect x="11.3" y="2037" width="0.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="14.30" y="2047.5" ></text>
</g>
<g >
<title>__memcg_slab_post_alloc_hook (398,561,583 samples, 0.07%)</title><rect x="120.6" y="1829" width="0.8" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="123.60" y="1839.5" ></text>
</g>
<g >
<title>do_sys_openat2 (116,565,316 samples, 0.02%)</title><rect x="249.1" y="1957" width="0.3" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text x="252.13" y="1967.5" ></text>
</g>
<g >
<title>coerce_to_boolean (87,633,734 samples, 0.01%)</title><rect x="777.2" y="2037" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="780.22" y="2047.5" ></text>
</g>
<g >
<title>blk_mq_submit_bio (231,541,924 samples, 0.04%)</title><rect x="1041.1" y="1781" width="0.4" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="1044.06" y="1791.5" ></text>
</g>
<g >
<title>select_task_rq_fair (520,785,779 samples, 0.09%)</title><rect x="1148.2" y="1893" width="1.0" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1151.15" y="1903.5" ></text>
</g>
<g >
<title>select_task_rq (54,043,888 samples, 0.01%)</title><rect x="265.5" y="1749" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="268.48" y="1759.5" ></text>
</g>
<g >
<title>__strdup (144,932,735 samples, 0.02%)</title><rect x="158.1" y="2021" width="0.3" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="161.12" y="2031.5" ></text>
</g>
<g >
<title>schedule (59,928,843 samples, 0.01%)</title><rect x="165.9" y="1957" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="168.94" y="1967.5" ></text>
</g>
<g >
<title>irq_work_run_list (54,158,423 samples, 0.01%)</title><rect x="367.7" y="1973" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="370.69" y="1983.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (55,496,476 samples, 0.01%)</title><rect x="359.8" y="1909" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="362.77" y="1919.5" ></text>
</g>
<g >
<title>enqueue_task (9,606,011,674 samples, 1.61%)</title><rect x="701.9" y="1813" width="19.0" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="704.94" y="1823.5" ></text>
</g>
<g >
<title>ExecResult (88,473,922 samples, 0.01%)</title><rect x="416.3" y="2037" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="419.28" y="2047.5" ></text>
</g>
<g >
<title>mpage_prepare_extent_to_map (238,200,084 samples, 0.04%)</title><rect x="1166.3" y="1877" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1169.31" y="1887.5" ></text>
</g>
<g >
<title>hw_breakpoint_exceptions_notify (2,171,279,589 samples, 0.36%)</title><rect x="528.7" y="1813" width="4.3" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="531.70" y="1823.5" ></text>
</g>
<g >
<title>irqentry_exit (53,744,145 samples, 0.01%)</title><rect x="818.6" y="1989" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="821.55" y="1999.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (53,995,505 samples, 0.01%)</title><rect x="858.7" y="2005" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="861.67" y="2015.5" ></text>
</g>
<g >
<title>aa_unix_msg_perm (56,472,748 samples, 0.01%)</title><rect x="168.5" y="1893" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="171.50" y="1903.5" ></text>
</g>
<g >
<title>set_next_buddy (230,774,141 samples, 0.04%)</title><rect x="551.3" y="1669" width="0.5" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="554.32" y="1679.5" ></text>
</g>
<g >
<title>_nohz_idle_balance.isra.0 (173,618,872 samples, 0.03%)</title><rect x="1189.2" y="1765" width="0.3" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="1192.16" y="1775.5" ></text>
</g>
<g >
<title>ksys_read (755,804,825 samples, 0.13%)</title><rect x="1136.7" y="1973" width="1.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1139.67" y="1983.5" ></text>
</g>
<g >
<title>set_next_entity (1,142,996,158 samples, 0.19%)</title><rect x="84.3" y="1781" width="2.3" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="87.32" y="1791.5" ></text>
</g>
<g >
<title>update_load_avg (727,436,282 samples, 0.12%)</title><rect x="709.4" y="1765" width="1.5" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="712.45" y="1775.5" ></text>
</g>
<g >
<title>submit_bio (316,341,706 samples, 0.05%)</title><rect x="1040.9" y="1845" width="0.7" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="1043.94" y="1855.5" ></text>
</g>
<g >
<title>update_min_vruntime (56,533,745 samples, 0.01%)</title><rect x="77.1" y="1749" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="80.08" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1701" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1711.5" ></text>
</g>
<g >
<title>bpf_ringbuf_notify (54,158,423 samples, 0.01%)</title><rect x="367.7" y="1941" width="0.1" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="370.69" y="1951.5" ></text>
</g>
<g >
<title>AtEOXact_ApplyLauncher (288,852,245 samples, 0.05%)</title><rect x="244.1" y="2053" width="0.6" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="247.14" y="2063.5" ></text>
</g>
<g >
<title>schedule (56,318,212 samples, 0.01%)</title><rect x="767.4" y="1957" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="770.45" y="1967.5" ></text>
</g>
<g >
<title>ExecConstraints (280,091,693 samples, 0.05%)</title><rect x="255.7" y="2053" width="0.6" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="258.72" y="2063.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (60,075,769 samples, 0.01%)</title><rect x="1040.5" y="1653" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1043.54" y="1663.5" ></text>
</g>
<g >
<title>ResourceOwnerGetParent (57,743,581 samples, 0.01%)</title><rect x="321.7" y="2053" width="0.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="324.72" y="2063.5" ></text>
</g>
<g >
<title>sem_wait (117,046,141 samples, 0.02%)</title><rect x="579.8" y="1893" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="582.82" y="1903.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (141,014,827 samples, 0.02%)</title><rect x="139.8" y="1701" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="142.81" y="1711.5" ></text>
</g>
<g >
<title>__queue_work.part.0 (85,827,810 samples, 0.01%)</title><rect x="1037.9" y="1733" width="0.2" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="1040.93" y="1743.5" ></text>
</g>
<g >
<title>MakeSingleTupleTableSlot (51,688,028 samples, 0.01%)</title><rect x="441.5" y="2037" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="444.51" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (42,979,515,956 samples, 7.19%)</title><rect x="643.6" y="2021" width="84.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="646.56" y="2031.5" >entry_SYS..</text>
</g>
<g >
<title>syscall_return_via_sysret (203,123,475 samples, 0.03%)</title><rect x="104.4" y="1973" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="107.36" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (36,207,062,891 samples, 6.06%)</title><rect x="524.1" y="2021" width="71.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="527.08" y="2031.5" >[unknown]</text>
</g>
<g >
<title>submit_bio_noacct_nocheck (369,021,131 samples, 0.06%)</title><rect x="1037.5" y="1893" width="0.8" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1040.53" y="1903.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (54,423,336 samples, 0.01%)</title><rect x="673.7" y="1797" width="0.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="676.69" y="1807.5" ></text>
</g>
<g >
<title>irqentry_exit (82,728,185 samples, 0.01%)</title><rect x="816.1" y="1989" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="819.10" y="1999.5" ></text>
</g>
<g >
<title>arch_cpu_idle (3,174,576,046 samples, 0.53%)</title><rect x="1174.7" y="1957" width="6.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="1177.74" y="1967.5" ></text>
</g>
<g >
<title>__block_commit_write (529,453,272 samples, 0.09%)</title><rect x="946.5" y="1861" width="1.0" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="949.47" y="1871.5" ></text>
</g>
<g >
<title>__slab_free (86,099,472 samples, 0.01%)</title><rect x="178.4" y="1813" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="181.44" y="1823.5" ></text>
</g>
<g >
<title>heapam_slot_callbacks (111,510,009 samples, 0.02%)</title><rect x="634.1" y="2021" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="637.08" y="2031.5" ></text>
</g>
<g >
<title>create_plan_recurse (776,367,614 samples, 0.13%)</title><rect x="970.8" y="2053" width="1.5" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="973.81" y="2063.5" ></text>
</g>
<g >
<title>__switch_to (61,564,558 samples, 0.01%)</title><rect x="951.0" y="2037" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="953.97" y="2047.5" ></text>
</g>
<g >
<title>enqueue_task (82,607,564 samples, 0.01%)</title><rect x="1180.3" y="1765" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1183.28" y="1775.5" ></text>
</g>
<g >
<title>check_preempt_wakeup_fair (78,653,582 samples, 0.01%)</title><rect x="280.0" y="1717" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="283.02" y="1727.5" ></text>
</g>
<g >
<title>group_sched_out (62,110,907 samples, 0.01%)</title><rect x="897.9" y="1861" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="900.95" y="1871.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (109,247,460 samples, 0.02%)</title><rect x="343.6" y="1941" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="346.59" y="1951.5" ></text>
</g>
<g >
<title>addRTEPermissionInfo (83,501,065 samples, 0.01%)</title><rect x="751.2" y="2037" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="754.24" y="2047.5" ></text>
</g>
<g >
<title>pick_next_task (139,481,119 samples, 0.02%)</title><rect x="1184.4" y="1957" width="0.3" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="1187.45" y="1967.5" ></text>
</g>
<g >
<title>ExecDoInitialPruning (114,049,939 samples, 0.02%)</title><rect x="256.3" y="2053" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="259.27" y="2063.5" ></text>
</g>
<g >
<title>ExecUpdate (84,317,103 samples, 0.01%)</title><rect x="261.2" y="2053" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="264.21" y="2063.5" ></text>
</g>
<g >
<title>update_rq_clock (263,658,975 samples, 0.04%)</title><rect x="1028.9" y="1877" width="0.5" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="1031.87" y="1887.5" ></text>
</g>
<g >
<title>rep_movs_alternative (201,943,158 samples, 0.03%)</title><rect x="670.2" y="1909" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="673.22" y="1919.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (80,227,309 samples, 0.01%)</title><rect x="527.7" y="1797" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="530.65" y="1807.5" ></text>
</g>
<g >
<title>ep_autoremove_wake_function (239,397,802 samples, 0.04%)</title><rect x="279.7" y="1797" width="0.5" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="282.70" y="1807.5" ></text>
</g>
<g >
<title>ProcessUtility (88,425,082 samples, 0.01%)</title><rect x="309.0" y="2053" width="0.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="311.97" y="2063.5" ></text>
</g>
<g >
<title>psi_group_change (171,172,732 samples, 0.03%)</title><rect x="557.5" y="1669" width="0.3" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="560.46" y="1679.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (108,334,957 samples, 0.02%)</title><rect x="501.4" y="2021" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="504.44" y="2031.5" ></text>
</g>
<g >
<title>handle_edge_irq (60,230,603 samples, 0.01%)</title><rect x="1185.5" y="1925" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1188.50" y="1935.5" ></text>
</g>
<g >
<title>enqueue_entity (560,176,630 samples, 0.09%)</title><rect x="355.1" y="1701" width="1.1" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="358.10" y="1711.5" ></text>
</g>
<g >
<title>__strdup (282,536,277 samples, 0.05%)</title><rect x="203.3" y="2037" width="0.6" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="206.34" y="2047.5" ></text>
</g>
<g >
<title>memcg_account_kmem (112,223,372 samples, 0.02%)</title><rect x="908.7" y="1765" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="911.67" y="1775.5" ></text>
</g>
<g >
<title>native_write_msr (59,995,012 samples, 0.01%)</title><rect x="153.2" y="1733" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="156.18" y="1743.5" ></text>
</g>
<g >
<title>pick_next_task (56,561,235 samples, 0.01%)</title><rect x="11.5" y="1957" width="0.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="14.53" y="1967.5" ></text>
</g>
<g >
<title>rb_erase (60,370,675 samples, 0.01%)</title><rect x="1185.8" y="1909" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1188.77" y="1919.5" ></text>
</g>
<g >
<title>handle_irq_event (53,025,289 samples, 0.01%)</title><rect x="1015.5" y="1797" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="1018.51" y="1807.5" ></text>
</g>
<g >
<title>scsi_end_request (138,809,994 samples, 0.02%)</title><rect x="1175.7" y="1685" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="1178.66" y="1695.5" ></text>
</g>
<g >
<title>doNegate (56,421,702 samples, 0.01%)</title><rect x="618.6" y="2021" width="0.1" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="621.57" y="2031.5" ></text>
</g>
<g >
<title>__slab_free (82,988,618 samples, 0.01%)</title><rect x="904.1" y="1845" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="907.08" y="1855.5" ></text>
</g>
<g >
<title>hash_seq_search (519,181,815 samples, 0.09%)</title><rect x="823.7" y="2037" width="1.0" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="826.71" y="2047.5" ></text>
</g>
<g >
<title>irq_work_single (54,158,423 samples, 0.01%)</title><rect x="367.7" y="1957" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="370.69" y="1967.5" ></text>
</g>
<g >
<title>base_yyparse (57,443,405 samples, 0.01%)</title><rect x="391.3" y="2021" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="394.33" y="2031.5" ></text>
</g>
<g >
<title>CreateExecutorState (146,992,889 samples, 0.02%)</title><rect x="400.2" y="2037" width="0.3" height="15.0" fill="rgb(228,105,25)" rx="2" ry="2" />
<text x="403.20" y="2047.5" ></text>
</g>
<g >
<title>resched_curr (1,032,985,511 samples, 0.17%)</title><rect x="722.6" y="1781" width="2.0" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="725.60" y="1791.5" ></text>
</g>
<g >
<title>sched_clock (90,125,562 samples, 0.02%)</title><rect x="1029.2" y="1845" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="1032.21" y="1855.5" ></text>
</g>
<g >
<title>__dequeue_entity (114,689,680 samples, 0.02%)</title><rect x="655.7" y="1893" width="0.3" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="658.74" y="1903.5" ></text>
</g>
<g >
<title>__perf_event_overflow (233,638,410 samples, 0.04%)</title><rect x="264.7" y="1925" width="0.4" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="267.65" y="1935.5" ></text>
</g>
<g >
<title>psi_task_change (224,644,638 samples, 0.04%)</title><rect x="536.8" y="1557" width="0.4" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="539.79" y="1567.5" ></text>
</g>
<g >
<title>check_preempt_wakeup_fair (220,688,834 samples, 0.04%)</title><rect x="484.5" y="1701" width="0.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="487.50" y="1711.5" ></text>
</g>
<g >
<title>ret_from_fork (84,443,636 samples, 0.01%)</title><rect x="10.5" y="2037" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="13.51" y="2047.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (54,862,766 samples, 0.01%)</title><rect x="1146.8" y="1877" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1149.77" y="1887.5" ></text>
</g>
<g >
<title>kworker/3:1H-kb (85,966,490 samples, 0.01%)</title><rect x="10.9" y="2069" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="13.90" y="2079.5" ></text>
</g>
<g >
<title>tick_sched_handle (54,862,766 samples, 0.01%)</title><rect x="1146.8" y="1797" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1149.77" y="1807.5" ></text>
</g>
<g >
<title>schedule (55,062,137 samples, 0.01%)</title><rect x="940.8" y="1957" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="943.80" y="1967.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (365,291,064 samples, 0.06%)</title><rect x="136.3" y="1717" width="0.7" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="139.32" y="1727.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (8,033,086,917 samples, 1.34%)</title><rect x="562.4" y="37" width="15.9" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="565.45" y="47.5" ></text>
</g>
<g >
<title>[unknown] (9,504,166,326 samples, 1.59%)</title><rect x="561.1" y="229" width="18.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="564.06" y="239.5" ></text>
</g>
<g >
<title>irqentry_exit (56,079,379 samples, 0.01%)</title><rect x="487.0" y="1989" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="489.99" y="1999.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,101,404,993 samples, 0.52%)</title><rect x="495.2" y="2021" width="6.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="498.21" y="2031.5" ></text>
</g>
<g >
<title>ExecInitExprList (86,045,988 samples, 0.01%)</title><rect x="407.7" y="2037" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="410.70" y="2047.5" ></text>
</g>
<g >
<title>make_restrictinfo (284,531,286 samples, 0.05%)</title><rect x="856.1" y="2037" width="0.5" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="859.08" y="2047.5" ></text>
</g>
<g >
<title>ksys_write (53,656,837 samples, 0.01%)</title><rect x="19.0" y="1909" width="0.1" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="22.04" y="1919.5" ></text>
</g>
<g >
<title>kworker/7:1H-kb (231,827,476 samples, 0.04%)</title><rect x="11.8" y="2069" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="14.80" y="2079.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (79,651,082 samples, 0.01%)</title><rect x="898.2" y="1941" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="901.24" y="1951.5" ></text>
</g>
<g >
<title>irqentry_exit (83,350,515 samples, 0.01%)</title><rect x="776.8" y="1989" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="779.83" y="1999.5" ></text>
</g>
<g >
<title>RelationPutHeapTuple (339,550,603 samples, 0.06%)</title><rect x="318.5" y="2053" width="0.6" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="321.46" y="2063.5" ></text>
</g>
<g >
<title>fault_in_iov_iter_readable (373,926,306 samples, 0.06%)</title><rect x="947.6" y="1909" width="0.7" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="950.57" y="1919.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (117,235,158 samples, 0.02%)</title><rect x="301.4" y="1957" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="304.43" y="1967.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (54,688,229 samples, 0.01%)</title><rect x="1038.3" y="1813" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="1041.32" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="645" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="655.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (254,995,723 samples, 0.04%)</title><rect x="479.2" y="1973" width="0.5" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="482.24" y="1983.5" ></text>
</g>
<g >
<title>__slab_free (85,929,636 samples, 0.01%)</title><rect x="909.0" y="1829" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="911.95" y="1839.5" ></text>
</g>
<g >
<title>contain_volatile_functions (145,515,314 samples, 0.02%)</title><rect x="967.9" y="2053" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="970.94" y="2063.5" ></text>
</g>
<g >
<title>ext4_get_inode_loc (84,432,659 samples, 0.01%)</title><rect x="944.8" y="1829" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="947.81" y="1839.5" ></text>
</g>
<g >
<title>__ext4_get_inode_loc (56,324,929 samples, 0.01%)</title><rect x="944.8" y="1813" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="947.81" y="1823.5" ></text>
</g>
<g >
<title>ep_poll_callback (10,823,628,707 samples, 1.81%)</title><rect x="131.5" y="1845" width="21.4" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="134.54" y="1855.5" >e..</text>
</g>
<g >
<title>__memcg_slab_post_alloc_hook (91,102,711 samples, 0.02%)</title><rect x="117.1" y="1845" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="120.06" y="1855.5" ></text>
</g>
<g >
<title>event_sched_out (56,032,137 samples, 0.01%)</title><rect x="776.9" y="1829" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="779.88" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1141" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1151.5" ></text>
</g>
<g >
<title>switch_fpu_return (376,515,459 samples, 0.06%)</title><rect x="545.8" y="1781" width="0.8" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="548.85" y="1791.5" ></text>
</g>
<g >
<title>strlcpy (250,261,092 samples, 0.04%)</title><rect x="1164.7" y="2053" width="0.5" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="1167.68" y="2063.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (112,547,085 samples, 0.02%)</title><rect x="725.0" y="1797" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="728.03" y="1807.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (55,653,767 samples, 0.01%)</title><rect x="1093.4" y="1925" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="1096.37" y="1935.5" ></text>
</g>
<g >
<title>switch_fpu_return (660,400,104 samples, 0.11%)</title><rect x="62.3" y="1909" width="1.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="65.30" y="1919.5" ></text>
</g>
<g >
<title>_raw_spin_lock (54,747,055 samples, 0.01%)</title><rect x="558.4" y="1717" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="561.45" y="1727.5" ></text>
</g>
<g >
<title>SearchSysCacheList (215,692,859 samples, 0.04%)</title><rect x="330.4" y="2053" width="0.5" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="333.42" y="2063.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (83,891,179 samples, 0.01%)</title><rect x="1102.7" y="1765" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1105.69" y="1775.5" ></text>
</g>
<g >
<title>update_cfs_group (314,611,406 samples, 0.05%)</title><rect x="1007.3" y="1861" width="0.7" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="1010.34" y="1871.5" ></text>
</g>
<g >
<title>select_task_rq_fair (197,667,605 samples, 0.03%)</title><rect x="354.0" y="1733" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="357.05" y="1743.5" ></text>
</g>
<g >
<title>pgwt_get_or_create_pid (1,160,986,558 samples, 0.19%)</title><rect x="13.3" y="2037" width="2.3" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="16.29" y="2047.5" ></text>
</g>
<g >
<title>read (1,102,725,247 samples, 0.18%)</title><rect x="1136.0" y="2053" width="2.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1138.98" y="2063.5" ></text>
</g>
<g >
<title>malloc (2,375,017,250 samples, 0.40%)</title><rect x="234.9" y="2037" width="4.7" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="237.92" y="2047.5" ></text>
</g>
<g >
<title>tts_virtual_init (281,762,264 samples, 0.05%)</title><rect x="1172.0" y="2053" width="0.6" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="1175.04" y="2063.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (79,265,418 samples, 0.01%)</title><rect x="523.9" y="1957" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="526.92" y="1967.5" ></text>
</g>
<g >
<title>load_balance (55,608,601 samples, 0.01%)</title><rect x="1017.2" y="1829" width="0.1" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="1020.18" y="1839.5" ></text>
</g>
<g >
<title>ep_autoremove_wake_function (60,067,863 samples, 0.01%)</title><rect x="471.6" y="1733" width="0.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="474.64" y="1743.5" ></text>
</g>
<g >
<title>issue_xlog_fsync.part.0 (296,307,766 samples, 0.05%)</title><rect x="1098.7" y="2053" width="0.6" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1101.69" y="2063.5" ></text>
</g>
<g >
<title>FlushBuffer.part.0 (183,574,548 samples, 0.03%)</title><rect x="266.2" y="2053" width="0.4" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="269.21" y="2063.5" ></text>
</g>
<g >
<title>psi_group_change (57,574,678 samples, 0.01%)</title><rect x="148.1" y="1717" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="151.14" y="1727.5" ></text>
</g>
<g >
<title>perf_pmu_nop_void (52,676,260 samples, 0.01%)</title><rect x="1024.8" y="1829" width="0.1" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" />
<text x="1027.79" y="1839.5" ></text>
</g>
<g >
<title>drain_obj_stock (384,101,234 samples, 0.06%)</title><rect x="907.8" y="1781" width="0.8" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="910.80" y="1791.5" ></text>
</g>
<g >
<title>superuser_arg (113,728,007 samples, 0.02%)</title><rect x="1165.7" y="2053" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1168.73" y="2063.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (54,269,712 samples, 0.01%)</title><rect x="92.0" y="1749" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="95.00" y="1759.5" ></text>
</g>
<g >
<title>asm_exc_debug (250,892,644 samples, 0.04%)</title><rect x="367.1" y="2037" width="0.5" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="370.14" y="2047.5" ></text>
</g>
<g >
<title>select_task_rq (225,501,083 samples, 0.04%)</title><rect x="481.4" y="1733" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="484.41" y="1743.5" ></text>
</g>
<g >
<title>new_list (86,763,766 samples, 0.01%)</title><rect x="1116.3" y="2053" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1119.31" y="2063.5" ></text>
</g>
<g >
<title>do_epoll_wait (7,879,833,225 samples, 1.32%)</title><rect x="22.1" y="1957" width="15.5" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="25.09" y="1967.5" ></text>
</g>
<g >
<title>__errno_location (400,670,632 samples, 0.07%)</title><rect x="155.6" y="2037" width="0.8" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="158.62" y="2047.5" ></text>
</g>
<g >
<title>pgwt_writer_push_event (197,236,825 samples, 0.03%)</title><rect x="17.3" y="2037" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="20.27" y="2047.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (60,075,769 samples, 0.01%)</title><rect x="1040.5" y="1637" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1043.54" y="1647.5" ></text>
</g>
<g >
<title>printtup_destroy (115,110,598 samples, 0.02%)</title><rect x="885.2" y="2037" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="888.18" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1845" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1855.5" ></text>
</g>
<g >
<title>memcg_account_kmem (512,388,112 samples, 0.09%)</title><rect x="682.0" y="1845" width="1.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="685.05" y="1855.5" ></text>
</g>
<g >
<title>__mod_memcg_state (56,836,026 samples, 0.01%)</title><rect x="126.7" y="1749" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="129.65" y="1759.5" ></text>
</g>
<g >
<title>sysvec_irq_work (85,160,873 samples, 0.01%)</title><rect x="343.3" y="1973" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="346.26" y="1983.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (90,125,562 samples, 0.02%)</title><rect x="1029.2" y="1813" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="1032.21" y="1823.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (90,063,185 samples, 0.02%)</title><rect x="726.9" y="1845" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="729.88" y="1855.5" ></text>
</g>
<g >
<title>ktime_get_coarse_real_ts64 (60,694,471 samples, 0.01%)</title><rect x="498.3" y="1845" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="501.32" y="1855.5" ></text>
</g>
<g >
<title>reweight_entity (714,961,821 samples, 0.12%)</title><rect x="78.1" y="1765" width="1.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="81.08" y="1775.5" ></text>
</g>
<g >
<title>mutex_unlock (147,229,978 samples, 0.02%)</title><rect x="901.0" y="1909" width="0.3" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="903.99" y="1919.5" ></text>
</g>
<g >
<title>resched_curr (56,855,438 samples, 0.01%)</title><rect x="1154.2" y="1861" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="1157.23" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1045" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1055.5" ></text>
</g>
<g >
<title>heap_form_tuple (82,194,658 samples, 0.01%)</title><rect x="826.0" y="2037" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="829.02" y="2047.5" ></text>
</g>
<g >
<title>LWLockReleaseClearVar (56,530,027 samples, 0.01%)</title><rect x="291.5" y="2053" width="0.1" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text x="294.52" y="2063.5" ></text>
</g>
<g >
<title>native_write_msr (86,016,307 samples, 0.01%)</title><rect x="537.9" y="1541" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="540.87" y="1551.5" ></text>
</g>
<g >
<title>handle_mm_fault (108,135,222 samples, 0.02%)</title><rect x="486.8" y="1973" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="489.77" y="1983.5" ></text>
</g>
<g >
<title>page_counter_cancel (118,832,463 samples, 0.02%)</title><rect x="126.9" y="1717" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="129.87" y="1727.5" ></text>
</g>
<g >
<title>AtEOXact_LogicalCtl (86,571,693 samples, 0.01%)</title><rect x="246.0" y="2053" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="249.00" y="2063.5" ></text>
</g>
<g >
<title>try_to_wake_up (3,188,124,532 samples, 0.53%)</title><rect x="353.1" y="1765" width="6.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="356.10" y="1775.5" ></text>
</g>
<g >
<title>__sys_recvfrom (10,780,859,598 samples, 1.80%)</title><rect x="166.5" y="1941" width="21.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="169.46" y="1951.5" >_..</text>
</g>
<g >
<title>mem_cgroup_handle_over_high (82,147,800 samples, 0.01%)</title><rect x="988.3" y="1989" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="991.32" y="1999.5" ></text>
</g>
<g >
<title>get_tablespace (206,636,417 samples, 0.03%)</title><rect x="1056.5" y="2053" width="0.4" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="1059.45" y="2063.5" ></text>
</g>
<g >
<title>asm_exc_debug (113,428,209 samples, 0.02%)</title><rect x="844.5" y="2021" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="847.50" y="2031.5" ></text>
</g>
<g >
<title>unix_poll (226,956,546 samples, 0.04%)</title><rect x="195.5" y="1893" width="0.4" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="198.50" y="1903.5" ></text>
</g>
<g >
<title>__x64_sys_sendto (33,112,104,677 samples, 5.54%)</title><rect x="662.9" y="1973" width="65.4" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="665.93" y="1983.5" >__x64_s..</text>
</g>
<g >
<title>string_hash (52,679,481 samples, 0.01%)</title><rect x="929.9" y="2037" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="932.95" y="2047.5" ></text>
</g>
<g >
<title>__smp_call_single_queue (118,075,693 samples, 0.02%)</title><rect x="151.5" y="1733" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="154.48" y="1743.5" ></text>
</g>
<g >
<title>perf_bp_event (111,690,655 samples, 0.02%)</title><rect x="367.4" y="1957" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="370.42" y="1967.5" ></text>
</g>
<g >
<title>ep_autoremove_wake_function (56,991,187 samples, 0.01%)</title><rect x="505.3" y="1765" width="0.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="508.29" y="1775.5" ></text>
</g>
<g >
<title>CleanupTempFiles (141,892,720 samples, 0.02%)</title><rect x="251.2" y="2053" width="0.3" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="254.24" y="2063.5" ></text>
</g>
<g >
<title>addNSItemToQuery (62,349,788 samples, 0.01%)</title><rect x="598.4" y="2021" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="601.39" y="2031.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (136,485,335 samples, 0.02%)</title><rect x="1005.8" y="1829" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="1008.81" y="1839.5" ></text>
</g>
<g >
<title>x64_sys_call (3,176,269,832 samples, 0.53%)</title><rect x="1099.9" y="2005" width="6.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1102.94" y="2015.5" ></text>
</g>
<g >
<title>is_projection_capable_path (56,965,974 samples, 0.01%)</title><rect x="1098.2" y="2053" width="0.1" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="1101.23" y="2063.5" ></text>
</g>
<g >
<title>psi_group_change (58,248,793 samples, 0.01%)</title><rect x="1025.0" y="1877" width="0.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="1027.95" y="1887.5" ></text>
</g>
<g >
<title>__wake_up_common (3,214,658,785 samples, 0.54%)</title><rect x="353.0" y="1813" width="6.4" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="356.04" y="1823.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (80,072,758 samples, 0.01%)</title><rect x="502.0" y="2021" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="505.05" y="2031.5" ></text>
</g>
<g >
<title>__schedule (194,298,806 samples, 0.03%)</title><rect x="615.8" y="1925" width="0.4" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="618.80" y="1935.5" ></text>
</g>
<g >
<title>XLogRegisterBufData (115,594,915 samples, 0.02%)</title><rect x="366.5" y="2053" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="369.46" y="2063.5" ></text>
</g>
<g >
<title>GetRTEByRangeTablePosn (56,794,643 samples, 0.01%)</title><rect x="423.9" y="2037" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="426.88" y="2047.5" ></text>
</g>
<g >
<title>unix_stream_read_generic (8,878,383,368 samples, 1.49%)</title><rect x="169.5" y="1893" width="17.5" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="172.51" y="1903.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (112,159,000 samples, 0.02%)</title><rect x="895.9" y="2021" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="898.89" y="2031.5" ></text>
</g>
<g >
<title>ksys_lseek (1,900,489,129 samples, 0.32%)</title><rect x="847.4" y="1957" width="3.8" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="850.40" y="1967.5" ></text>
</g>
<g >
<title>check_stack_object (142,591,812 samples, 0.02%)</title><rect x="669.6" y="1893" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="672.64" y="1903.5" ></text>
</g>
<g >
<title>exprSetCollation (57,910,298 samples, 0.01%)</title><rect x="620.8" y="2021" width="0.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="623.75" y="2031.5" ></text>
</g>
<g >
<title>_bt_readpage (83,498,243 samples, 0.01%)</title><rect x="598.2" y="2021" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="601.22" y="2031.5" ></text>
</g>
<g >
<title>schedule (203,746,813 samples, 0.03%)</title><rect x="506.4" y="1845" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="509.43" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1237" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1247.5" ></text>
</g>
<g >
<title>sched_clock (115,671,261 samples, 0.02%)</title><rect x="661.5" y="1909" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="664.52" y="1919.5" ></text>
</g>
<g >
<title>select_idle_sibling (110,619,808 samples, 0.02%)</title><rect x="535.4" y="1557" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="538.41" y="1567.5" ></text>
</g>
<g >
<title>sched_clock (120,627,356 samples, 0.02%)</title><rect x="37.4" y="1829" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="40.36" y="1839.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (51,501,438 samples, 0.01%)</title><rect x="239.4" y="2005" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="242.40" y="2015.5" ></text>
</g>
<g >
<title>__sysvec_irq_work (2,045,568,072 samples, 0.34%)</title><rect x="534.5" y="1845" width="4.0" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="537.50" y="1855.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (261,485,951 samples, 0.04%)</title><rect x="151.4" y="1749" width="0.5" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="154.37" y="1759.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (172,008,025 samples, 0.03%)</title><rect x="90.0" y="1733" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="93.04" y="1743.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (65,057,585 samples, 0.01%)</title><rect x="441.4" y="2005" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="444.38" y="2015.5" ></text>
</g>
<g >
<title>__schedule (72,132,779 samples, 0.01%)</title><rect x="618.2" y="1925" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="621.21" y="1935.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (56,241,384 samples, 0.01%)</title><rect x="296.3" y="1989" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="299.31" y="1999.5" ></text>
</g>
<g >
<title>hw_breakpoint_del (349,841,631 samples, 0.06%)</title><rect x="556.1" y="1573" width="0.7" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="559.14" y="1583.5" ></text>
</g>
<g >
<title>__schedule (131,806,002 samples, 0.02%)</title><rect x="359.7" y="1957" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="362.67" y="1967.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (315,300,991 samples, 0.05%)</title><rect x="500.2" y="1973" width="0.7" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="503.23" y="1983.5" ></text>
</g>
<g >
<title>__schedule (9,340,234,786 samples, 1.56%)</title><rect x="73.7" y="1829" width="18.4" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="76.67" y="1839.5" ></text>
</g>
<g >
<title>x64_sys_call (424,411,412 samples, 0.07%)</title><rect x="205.2" y="2005" width="0.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="208.17" y="2015.5" ></text>
</g>
<g >
<title>pv_native_set_debugreg (55,976,096 samples, 0.01%)</title><rect x="616.1" y="1781" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="619.08" y="1791.5" ></text>
</g>
<g >
<title>bpf_map_poll (471,023,371 samples, 0.08%)</title><rect x="24.6" y="1861" width="0.9" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="27.60" y="1871.5" ></text>
</g>
<g >
<title>scheduler_tick (57,321,497 samples, 0.01%)</title><rect x="750.7" y="1893" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="753.67" y="1903.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (293,682,248 samples, 0.05%)</title><rect x="352.0" y="1989" width="0.6" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="355.03" y="1999.5" ></text>
</g>
<g >
<title>__schedule (1,242,174,284 samples, 0.21%)</title><rect x="192.5" y="1861" width="2.5" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="195.53" y="1871.5" ></text>
</g>
<g >
<title>irq_work_single (93,016,533 samples, 0.02%)</title><rect x="437.4" y="1941" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="440.36" y="1951.5" ></text>
</g>
<g >
<title>pv_native_set_debugreg (54,215,438 samples, 0.01%)</title><rect x="485.8" y="1797" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="488.81" y="1807.5" ></text>
</g>
<g >
<title>task_h_load (54,692,987 samples, 0.01%)</title><rect x="1103.4" y="1717" width="0.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="1106.36" y="1727.5" ></text>
</g>
<g >
<title>PushActiveSnapshotWithLevel (58,179,760 samples, 0.01%)</title><rect x="511.5" y="2021" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="514.49" y="2031.5" ></text>
</g>
<g >
<title>__wake_up_common (56,991,187 samples, 0.01%)</title><rect x="505.3" y="1781" width="0.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="508.29" y="1791.5" ></text>
</g>
<g >
<title>pqsecure_read (144,991,514 samples, 0.02%)</title><rect x="154.5" y="2021" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="157.55" y="2031.5" ></text>
</g>
<g >
<title>standard_qp_callback (336,981,302 samples, 0.06%)</title><rect x="929.2" y="2037" width="0.6" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="932.17" y="2047.5" ></text>
</g>
<g >
<title>hw_breakpoint_del (55,496,476 samples, 0.01%)</title><rect x="359.8" y="1829" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="362.77" y="1839.5" ></text>
</g>
<g >
<title>max_parallel_hazard_walker (89,822,594 samples, 0.02%)</title><rect x="635.9" y="2021" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="638.86" y="2031.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (463,427,308 samples, 0.08%)</title><rect x="20.6" y="1973" width="0.9" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="23.57" y="1983.5" ></text>
</g>
<g >
<title>dequeue_task_fair (60,377,019 samples, 0.01%)</title><rect x="1039.4" y="1813" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1042.43" y="1823.5" ></text>
</g>
<g >
<title>[libc.so.6] (80,464,102 samples, 0.01%)</title><rect x="48.6" y="1989" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="51.61" y="1999.5" ></text>
</g>
<g >
<title>check_indirection (55,229,891 samples, 0.01%)</title><rect x="772.8" y="2037" width="0.1" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="775.76" y="2047.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (282,213,726 samples, 0.05%)</title><rect x="479.2" y="2005" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="482.24" y="2015.5" ></text>
</g>
<g >
<title>get_cheapest_fractional_path (85,434,801 samples, 0.01%)</title><rect x="1049.5" y="2053" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1052.55" y="2063.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_node (6,797,567,330 samples, 1.14%)</title><rect x="676.6" y="1877" width="13.5" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="679.64" y="1887.5" ></text>
</g>
<g >
<title>set_baserel_size_estimates (56,437,376 samples, 0.01%)</title><rect x="1156.4" y="2053" width="0.1" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="1159.37" y="2063.5" ></text>
</g>
<g >
<title>preprocess_expression (427,413,598 samples, 0.07%)</title><rect x="882.3" y="2037" width="0.8" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="885.25" y="2047.5" ></text>
</g>
<g >
<title>poll_freewait (116,405,751 samples, 0.02%)</title><rect x="103.7" y="1909" width="0.3" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="106.74" y="1919.5" ></text>
</g>
<g >
<title>asm_common_interrupt (51,692,594 samples, 0.01%)</title><rect x="449.5" y="2021" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="452.55" y="2031.5" ></text>
</g>
<g >
<title>enqueue_task (103,342,992 samples, 0.02%)</title><rect x="279.8" y="1733" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="282.82" y="1743.5" ></text>
</g>
<g >
<title>pick_next_task_fair (112,082,396 samples, 0.02%)</title><rect x="615.9" y="1893" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="618.86" y="1903.5" ></text>
</g>
<g >
<title>AllocSetAlloc (3,012,227,198 samples, 0.50%)</title><rect x="374.8" y="2037" width="6.0" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="377.81" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1637" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1647.5" ></text>
</g>
<g >
<title>update_curr (81,250,401 samples, 0.01%)</title><rect x="1151.5" y="1829" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1154.52" y="1839.5" ></text>
</g>
<g >
<title>__get_user_8 (809,652,840 samples, 0.14%)</title><rect x="984.6" y="1957" width="1.6" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="987.59" y="1967.5" ></text>
</g>
<g >
<title>internal_get_user_pages_fast (563,173,417 samples, 0.09%)</title><rect x="559.1" y="1685" width="1.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="562.06" y="1695.5" ></text>
</g>
<g >
<title>ExecScan (223,613,022 samples, 0.04%)</title><rect x="416.5" y="2037" width="0.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="419.46" y="2047.5" ></text>
</g>
<g >
<title>__schedule (422,689,549 samples, 0.07%)</title><rect x="897.6" y="1957" width="0.8" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="900.56" y="1967.5" ></text>
</g>
<g >
<title>pick_next_entity (447,732,422 samples, 0.07%)</title><rect x="1017.3" y="1845" width="0.9" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="1020.29" y="1855.5" ></text>
</g>
<g >
<title>ttwu_do_activate (849,695,616 samples, 0.14%)</title><rect x="1103.5" y="1765" width="1.7" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="1106.52" y="1775.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (54,862,766 samples, 0.01%)</title><rect x="1146.8" y="1861" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1149.77" y="1871.5" ></text>
</g>
<g >
<title>__dequeue_entity (81,497,057 samples, 0.01%)</title><rect x="34.0" y="1813" width="0.1" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="36.97" y="1823.5" ></text>
</g>
<g >
<title>_raw_spin_lock (176,812,184 samples, 0.03%)</title><rect x="353.6" y="1733" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="356.59" y="1743.5" ></text>
</g>
<g >
<title>update_curr (83,081,018 samples, 0.01%)</title><rect x="193.2" y="1781" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="196.17" y="1791.5" ></text>
</g>
<g >
<title>buildNSItemFromTupleDesc (87,806,602 samples, 0.01%)</title><rect x="768.9" y="2037" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="771.94" y="2047.5" ></text>
</g>
<g >
<title>schedule (256,777,555 samples, 0.04%)</title><rect x="952.0" y="1989" width="0.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="954.99" y="1999.5" ></text>
</g>
<g >
<title>__schedule (73,249,823 samples, 0.01%)</title><rect x="501.1" y="1941" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="504.13" y="1951.5" ></text>
</g>
<g >
<title>scheduler_tick (55,308,989 samples, 0.01%)</title><rect x="534.1" y="1749" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="537.11" y="1759.5" ></text>
</g>
<g >
<title>do_poll.constprop.0 (424,411,412 samples, 0.07%)</title><rect x="205.2" y="1957" width="0.8" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="208.17" y="1967.5" ></text>
</g>
<g >
<title>ext4_file_write_iter (53,656,837 samples, 0.01%)</title><rect x="19.0" y="1877" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="22.04" y="1887.5" ></text>
</g>
<g >
<title>__pmu_ctx_sched_out (111,294,362 samples, 0.02%)</title><rect x="344.1" y="1893" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="347.08" y="1903.5" ></text>
</g>
<g >
<title>handle_pte_fault (174,848,233 samples, 0.03%)</title><rect x="947.9" y="1797" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="950.86" y="1807.5" ></text>
</g>
<g >
<title>scheduler_tick (59,808,174 samples, 0.01%)</title><rect x="1015.7" y="1733" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1018.73" y="1743.5" ></text>
</g>
<g >
<title>ret_from_fork (85,966,490 samples, 0.01%)</title><rect x="10.9" y="2037" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="13.90" y="2047.5" ></text>
</g>
<g >
<title>compare_path_costs_fuzzily (142,925,865 samples, 0.02%)</title><rect x="778.1" y="2037" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="781.12" y="2047.5" ></text>
</g>
<g >
<title>ret_from_fork (231,827,476 samples, 0.04%)</title><rect x="11.8" y="2037" width="0.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="14.80" y="2047.5" ></text>
</g>
<g >
<title>pairingheap_remove (85,984,055 samples, 0.01%)</title><rect x="860.5" y="2037" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="863.51" y="2047.5" ></text>
</g>
<g >
<title>_bt_steppage (119,746,000 samples, 0.02%)</title><rect x="750.8" y="2037" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="753.78" y="2047.5" ></text>
</g>
<g >
<title>psi_group_change (55,829,474 samples, 0.01%)</title><rect x="447.7" y="1813" width="0.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="450.68" y="1823.5" ></text>
</g>
<g >
<title>schedule (56,454,131 samples, 0.01%)</title><rect x="1125.3" y="1973" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1128.32" y="1983.5" ></text>
</g>
<g >
<title>bms_membership (196,709,396 samples, 0.03%)</title><rect x="767.2" y="2037" width="0.4" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="770.17" y="2047.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (277,107,592 samples, 0.05%)</title><rect x="1101.3" y="1877" width="0.6" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1104.31" y="1887.5" ></text>
</g>
<g >
<title>hw_breakpoint_add (54,688,229 samples, 0.01%)</title><rect x="1038.3" y="1765" width="0.1" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="1041.32" y="1775.5" ></text>
</g>
<g >
<title>RelationGetIndexExpressions (112,087,758 samples, 0.02%)</title><rect x="458.6" y="2037" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="461.58" y="2047.5" ></text>
</g>
<g >
<title>noist_exc_debug (3,416,078,227 samples, 0.57%)</title><rect x="471.3" y="2005" width="6.7" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="474.30" y="2015.5" ></text>
</g>
<g >
<title>PinBuffer (227,099,841 samples, 0.04%)</title><rect x="305.2" y="2053" width="0.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="308.21" y="2063.5" ></text>
</g>
<g >
<title>__schedule (52,225,624 samples, 0.01%)</title><rect x="748.0" y="1941" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="751.03" y="1951.5" ></text>
</g>
<g >
<title>refill_obj_stock (82,732,130 samples, 0.01%)</title><rect x="1101.6" y="1845" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1104.58" y="1855.5" ></text>
</g>
<g >
<title>base_yyparse (205,020,894 samples, 0.03%)</title><rect x="878.2" y="2021" width="0.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="881.18" y="2031.5" ></text>
</g>
<g >
<title>AllocSetFree (415,815,812 samples, 0.07%)</title><rect x="242.1" y="2053" width="0.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="245.15" y="2063.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (82,988,618 samples, 0.01%)</title><rect x="904.1" y="1829" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="907.08" y="1839.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (141,777,999 samples, 0.02%)</title><rect x="298.4" y="2053" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="301.44" y="2063.5" ></text>
</g>
<g >
<title>__filemap_fdatawrite_range (369,092,309 samples, 0.06%)</title><rect x="1166.1" y="1957" width="0.7" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1169.11" y="1967.5" ></text>
</g>
<g >
<title>__blk_mq_alloc_requests (143,326,869 samples, 0.02%)</title><rect x="1041.1" y="1765" width="0.3" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="1044.11" y="1775.5" ></text>
</g>
<g >
<title>do_dec_rlimit_put_ucounts (89,464,991 samples, 0.01%)</title><rect x="1137.6" y="1861" width="0.1" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="1140.56" y="1871.5" ></text>
</g>
<g >
<title>do_syscall_64 (22,412,190,006 samples, 3.75%)</title><rect x="59.9" y="1957" width="44.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="62.95" y="1967.5" >do_s..</text>
</g>
<g >
<title>psi_group_change (55,650,724 samples, 0.01%)</title><rect x="279.9" y="1701" width="0.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="282.91" y="1711.5" ></text>
</g>
<g >
<title>make_ands_implicit (59,938,077 samples, 0.01%)</title><rect x="852.1" y="2037" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="855.11" y="2047.5" ></text>
</g>
<g >
<title>local_clock (137,909,999 samples, 0.02%)</title><rect x="660.5" y="1877" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="663.45" y="1887.5" ></text>
</g>
<g >
<title>check_preempt_wakeup_fair (1,480,051,531 samples, 0.25%)</title><rect x="721.7" y="1797" width="2.9" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="724.71" y="1807.5" ></text>
</g>
<g >
<title>filemap_get_folios_tag (55,540,242 samples, 0.01%)</title><rect x="1041.7" y="1845" width="0.1" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="1044.74" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1077" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1087.5" ></text>
</g>
<g >
<title>order_qual_clauses (53,009,102 samples, 0.01%)</title><rect x="860.3" y="2037" width="0.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="863.35" y="2047.5" ></text>
</g>
<g >
<title>x64_sys_call (55,630,551 samples, 0.01%)</title><rect x="104.2" y="1957" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="107.19" y="1967.5" ></text>
</g>
<g >
<title>pg_wait_tracer (14,576,526,175 samples, 2.44%)</title><rect x="12.3" y="2069" width="28.8" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="15.33" y="2079.5" >pg..</text>
</g>
<g >
<title>__switch_to_asm (282,189,509 samples, 0.05%)</title><rect x="371.9" y="2037" width="0.6" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="374.94" y="2047.5" ></text>
</g>
<g >
<title>update_cfs_group (658,649,547 samples, 0.11%)</title><rect x="1003.8" y="1845" width="1.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="1006.79" y="1855.5" ></text>
</g>
<g >
<title>__check_object_size (518,009,672 samples, 0.09%)</title><rect x="184.7" y="1813" width="1.0" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="187.72" y="1823.5" ></text>
</g>
<g >
<title>base_yyparse (3,240,848,873 samples, 0.54%)</title><rect x="757.3" y="2037" width="6.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="760.27" y="2047.5" ></text>
</g>
<g >
<title>GetXLogBuffer (198,501,953 samples, 0.03%)</title><rect x="271.6" y="2053" width="0.4" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="274.59" y="2063.5" ></text>
</g>
<g >
<title>__schedule (83,350,515 samples, 0.01%)</title><rect x="776.8" y="1941" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="779.83" y="1951.5" ></text>
</g>
<g >
<title>ctx_sched_in (2,770,906,345 samples, 0.46%)</title><rect x="1008.3" y="1845" width="5.5" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1011.34" y="1855.5" ></text>
</g>
<g >
<title>__rb_insert_augmented (57,481,480 samples, 0.01%)</title><rect x="1177.8" y="1765" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1180.78" y="1775.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (114,439,783 samples, 0.02%)</title><rect x="823.5" y="2037" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="826.48" y="2047.5" ></text>
</g>
<g >
<title>switch_ldt (59,990,491 samples, 0.01%)</title><rect x="1028.7" y="1861" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1031.75" y="1871.5" ></text>
</g>
<g >
<title>futex_wait (285,946,338 samples, 0.05%)</title><rect x="372.7" y="1957" width="0.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="375.72" y="1967.5" ></text>
</g>
<g >
<title>CreateCommandTag (314,511,445 samples, 0.05%)</title><rect x="399.5" y="2037" width="0.6" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="402.48" y="2047.5" ></text>
</g>
<g >
<title>build_coercion_expression (116,596,035 samples, 0.02%)</title><rect x="961.1" y="2053" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="964.12" y="2063.5" ></text>
</g>
<g >
<title>socket_flush (55,235,225 samples, 0.01%)</title><rect x="642.3" y="2021" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="645.26" y="2031.5" ></text>
</g>
<g >
<title>select_idle_sibling (522,979,950 samples, 0.09%)</title><rect x="698.5" y="1797" width="1.0" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="701.49" y="1807.5" ></text>
</g>
<g >
<title>ringbuf_map_poll_kern (471,023,371 samples, 0.08%)</title><rect x="24.6" y="1845" width="0.9" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="27.60" y="1855.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (115,069,243 samples, 0.02%)</title><rect x="152.3" y="1701" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="155.33" y="1711.5" ></text>
</g>
<g >
<title>__update_load_avg_se (96,051,842 samples, 0.02%)</title><rect x="29.4" y="1797" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="32.39" y="1807.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetLock (217,863,444 samples, 0.04%)</title><rect x="461.2" y="2037" width="0.4" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="464.18" y="2047.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (263,310,021 samples, 0.04%)</title><rect x="310.8" y="2053" width="0.5" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="313.83" y="2063.5" ></text>
</g>
<g >
<title>select_idle_sibling (170,753,097 samples, 0.03%)</title><rect x="481.5" y="1701" width="0.4" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="484.52" y="1711.5" ></text>
</g>
<g >
<title>page_counter_try_charge (1,074,688,762 samples, 0.18%)</title><rect x="687.2" y="1829" width="2.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="690.15" y="1839.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (137,660,374 samples, 0.02%)</title><rect x="1078.7" y="1989" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1081.69" y="1999.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (80,149,402 samples, 0.01%)</title><rect x="1078.5" y="2037" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1081.53" y="2047.5" ></text>
</g>
<g >
<title>clauselist_selectivity_ext (109,073,170 samples, 0.02%)</title><rect x="966.5" y="2053" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="969.52" y="2063.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (282,523,311 samples, 0.05%)</title><rect x="739.7" y="1973" width="0.5" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="742.65" y="1983.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (108,334,957 samples, 0.02%)</title><rect x="501.4" y="1973" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="504.44" y="1983.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (112,411,150 samples, 0.02%)</title><rect x="846.7" y="1941" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="849.67" y="1951.5" ></text>
</g>
<g >
<title>pgstat_report_query_id (61,630,530 samples, 0.01%)</title><rect x="1133.5" y="2053" width="0.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="1136.48" y="2063.5" ></text>
</g>
<g >
<title>update_curr (98,091,277 samples, 0.02%)</title><rect x="482.9" y="1669" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="485.89" y="1679.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (115,488,099 samples, 0.02%)</title><rect x="1093.3" y="1989" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1096.32" y="1999.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (56,486,894 samples, 0.01%)</title><rect x="1039.6" y="1813" width="0.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="1042.55" y="1823.5" ></text>
</g>
<g >
<title>process_one_work (56,515,670 samples, 0.01%)</title><rect x="10.7" y="1989" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="13.68" y="1999.5" ></text>
</g>
<g >
<title>perf_log_itrace_start (173,977,260 samples, 0.03%)</title><rect x="1012.0" y="1765" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1014.96" y="1775.5" ></text>
</g>
<g >
<title>irq_work_queue (626,036,052 samples, 0.10%)</title><rect x="531.4" y="1701" width="1.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="534.42" y="1711.5" ></text>
</g>
<g >
<title>alloc_skb_with_frags (7,107,371,309 samples, 1.19%)</title><rect x="116.8" y="1877" width="14.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="119.83" y="1887.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (115,671,261 samples, 0.02%)</title><rect x="661.5" y="1877" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="664.52" y="1887.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (56,241,384 samples, 0.01%)</title><rect x="296.3" y="2037" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="299.31" y="2047.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (403,338,271 samples, 0.07%)</title><rect x="506.1" y="2021" width="0.8" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="509.10" y="2031.5" ></text>
</g>
<g >
<title>makeConst (89,423,002 samples, 0.01%)</title><rect x="851.6" y="2037" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="854.59" y="2047.5" ></text>
</g>
<g >
<title>parse_analyze_fixedparams (435,500,697 samples, 0.07%)</title><rect x="871.6" y="2037" width="0.9" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="874.63" y="2047.5" ></text>
</g>
<g >
<title>perf_swevent_event (178,776,503 samples, 0.03%)</title><rect x="1098.7" y="1941" width="0.3" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="1101.69" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1877" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1887.5" ></text>
</g>
<g >
<title>__switch_to (130,729,224 samples, 0.02%)</title><rect x="26.8" y="1861" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="29.76" y="1871.5" ></text>
</g>
<g >
<title>security_socket_recvmsg (115,124,186 samples, 0.02%)</title><rect x="900.3" y="1925" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="903.31" y="1935.5" ></text>
</g>
<g >
<title>[libc.so.6] (488,596,836 samples, 0.08%)</title><rect x="446.9" y="2005" width="1.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="449.95" y="2015.5" ></text>
</g>
<g >
<title>WaitXLogInsertionsToFinish (281,033,756 samples, 0.05%)</title><rect x="360.1" y="2053" width="0.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="363.10" y="2063.5" ></text>
</g>
<g >
<title>ext4_writepages (1,660,659,641 samples, 0.28%)</title><rect x="1040.0" y="1893" width="3.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="1042.96" y="1903.5" ></text>
</g>
<g >
<title>irqentry_exit (53,068,267 samples, 0.01%)</title><rect x="443.3" y="1989" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="446.30" y="1999.5" ></text>
</g>
<g >
<title>CheckForSerializableConflictOutNeeded (170,610,440 samples, 0.03%)</title><rect x="394.8" y="2037" width="0.3" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="397.75" y="2047.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (5,254,661,741 samples, 0.88%)</title><rect x="679.6" y="1861" width="10.4" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="682.63" y="1871.5" ></text>
</g>
<g >
<title>ext4_llseek (680,865,052 samples, 0.11%)</title><rect x="849.8" y="1941" width="1.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="852.81" y="1951.5" ></text>
</g>
<g >
<title>down_read_trylock (115,197,245 samples, 0.02%)</title><rect x="734.9" y="1973" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="737.93" y="1983.5" ></text>
</g>
<g >
<title>asm_exc_debug (142,008,671 samples, 0.02%)</title><rect x="494.9" y="2021" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="497.93" y="2031.5" ></text>
</g>
<g >
<title>enqueue_task_fair (586,760,984 samples, 0.10%)</title><rect x="535.6" y="1557" width="1.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="538.63" y="1567.5" ></text>
</g>
<g >
<title>__calc_delta.constprop.0 (235,513,418 samples, 0.04%)</title><rect x="78.7" y="1733" width="0.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="81.69" y="1743.5" ></text>
</g>
<g >
<title>irq_work_run_list (85,236,206 samples, 0.01%)</title><rect x="505.3" y="1941" width="0.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="508.29" y="1951.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (57,853,052 samples, 0.01%)</title><rect x="152.9" y="1861" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="155.91" y="1871.5" ></text>
</g>
<g >
<title>__update_load_avg_se (51,203,776 samples, 0.01%)</title><rect x="144.8" y="1669" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="147.81" y="1679.5" ></text>
</g>
<g >
<title>folio_clear_dirty_for_io (113,618,902 samples, 0.02%)</title><rect x="1042.9" y="1813" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1045.85" y="1823.5" ></text>
</g>
<g >
<title>do_poll.constprop.0 (2,080,178,052 samples, 0.35%)</title><rect x="191.8" y="1925" width="4.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="194.84" y="1935.5" ></text>
</g>
<g >
<title>__wake_up_common (18,039,759,808 samples, 3.02%)</title><rect x="691.0" y="1893" width="35.6" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="693.99" y="1903.5" >__w..</text>
</g>
<g >
<title>standard_ExecutorRun (440,830,839 samples, 0.07%)</title><rect x="927.6" y="2037" width="0.9" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="930.58" y="2047.5" ></text>
</g>
<g >
<title>is_redundant_with_indexclauses (84,966,471 samples, 0.01%)</title><rect x="839.9" y="2037" width="0.2" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="842.93" y="2047.5" ></text>
</g>
<g >
<title>__wake_up (1,875,165,149 samples, 0.31%)</title><rect x="534.5" y="1669" width="3.7" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="537.50" y="1679.5" ></text>
</g>
<g >
<title>place_entity (55,677,873 samples, 0.01%)</title><rect x="1103.7" y="1701" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="1106.69" y="1711.5" ></text>
</g>
<g >
<title>localsub.constprop.0 (341,759,823 samples, 0.06%)</title><rect x="1108.0" y="2053" width="0.7" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="1111.05" y="2063.5" ></text>
</g>
<g >
<title>xas_load (475,512,689 samples, 0.08%)</title><rect x="1091.4" y="1861" width="0.9" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="1094.37" y="1871.5" ></text>
</g>
<g >
<title>oper (57,554,725 samples, 0.01%)</title><rect x="1117.2" y="2053" width="0.1" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="1120.21" y="2063.5" ></text>
</g>
<g >
<title>process_one_work (56,195,609 samples, 0.01%)</title><rect x="10.9" y="1989" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="13.90" y="1999.5" ></text>
</g>
<g >
<title>skb_queue_tail (397,285,484 samples, 0.07%)</title><rect x="670.7" y="1925" width="0.8" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="673.67" y="1935.5" ></text>
</g>
<g >
<title>__x64_sys_read (755,804,825 samples, 0.13%)</title><rect x="1136.7" y="1989" width="1.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1139.67" y="1999.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (85,769,469 samples, 0.01%)</title><rect x="152.4" y="1669" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="155.39" y="1679.5" ></text>
</g>
<g >
<title>sched_clock_idle_sleep_event (57,994,476 samples, 0.01%)</title><rect x="1185.4" y="1973" width="0.1" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="1188.38" y="1983.5" ></text>
</g>
<g >
<title>exc_page_fault (2,987,202,434 samples, 0.50%)</title><rect x="495.4" y="2005" width="5.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="498.44" y="2015.5" ></text>
</g>
<g >
<title>blk_mq_dispatch_rq_list (60,695,191 samples, 0.01%)</title><rect x="11.4" y="1893" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="14.41" y="1903.5" ></text>
</g>
<g >
<title>__memcg_slab_free_hook (56,085,979 samples, 0.01%)</title><rect x="1137.9" y="1861" width="0.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="1140.89" y="1871.5" ></text>
</g>
<g >
<title>TransactionIdIsCurrentTransactionId (52,685,969 samples, 0.01%)</title><rect x="336.3" y="2053" width="0.1" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="339.30" y="2063.5" ></text>
</g>
<g >
<title>tick_sched_handle (58,681,141 samples, 0.01%)</title><rect x="1084.5" y="1941" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1087.52" y="1951.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (58,481,936 samples, 0.01%)</title><rect x="1036.0" y="1989" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1039.00" y="1999.5" ></text>
</g>
<g >
<title>tts_virtual_clear (120,250,991 samples, 0.02%)</title><rect x="939.9" y="2037" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="942.89" y="2047.5" ></text>
</g>
<g >
<title>submit_bio_noacct_nocheck (258,530,848 samples, 0.04%)</title><rect x="1041.1" y="1813" width="0.5" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1044.06" y="1823.5" ></text>
</g>
<g >
<title>transformSelectStmt (90,462,317 samples, 0.02%)</title><rect x="936.9" y="2037" width="0.1" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="939.86" y="2047.5" ></text>
</g>
<g >
<title>submit_bio (369,021,131 samples, 0.06%)</title><rect x="1037.5" y="1925" width="0.8" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="1040.53" y="1935.5" ></text>
</g>
<g >
<title>[libc.so.6] (1,874,971,750 samples, 0.31%)</title><rect x="520.4" y="2021" width="3.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="523.38" y="2031.5" ></text>
</g>
<g >
<title>standard_planner (261,422,704 samples, 0.04%)</title><rect x="1163.9" y="2053" width="0.5" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="1166.88" y="2063.5" ></text>
</g>
<g >
<title>irq_work_single (3,413,187,193 samples, 0.57%)</title><rect x="352.9" y="1957" width="6.7" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="355.88" y="1967.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (65,057,585 samples, 0.01%)</title><rect x="441.4" y="2021" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="444.38" y="2031.5" ></text>
</g>
<g >
<title>scsi_end_request (57,766,097 samples, 0.01%)</title><rect x="1188.5" y="1621" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="1191.55" y="1631.5" ></text>
</g>
<g >
<title>select_task_rq (1,291,808,819 samples, 0.22%)</title><rect x="137.1" y="1749" width="2.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="140.10" y="1759.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (172,502,138 samples, 0.03%)</title><rect x="91.7" y="1749" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="94.66" y="1759.5" ></text>
</g>
<g >
<title>xas_descend (195,045,652 samples, 0.03%)</title><rect x="738.6" y="1829" width="0.3" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="741.56" y="1839.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (518,009,672 samples, 0.09%)</title><rect x="184.7" y="1797" width="1.0" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="187.72" y="1807.5" ></text>
</g>
<g >
<title>update_process_times (55,840,878 samples, 0.01%)</title><rect x="794.9" y="1909" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="797.91" y="1919.5" ></text>
</g>
<g >
<title>make_op (58,605,727 samples, 0.01%)</title><rect x="1110.7" y="2053" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="1113.73" y="2063.5" ></text>
</g>
<g >
<title>bpf_ringbuf_reserve (100,154,243 samples, 0.02%)</title><rect x="264.7" y="1877" width="0.2" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="267.65" y="1887.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (176,812,184 samples, 0.03%)</title><rect x="353.6" y="1749" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="356.59" y="1759.5" ></text>
</g>
<g >
<title>bms_overlap (83,853,294 samples, 0.01%)</title><rect x="959.0" y="2053" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="962.04" y="2063.5" ></text>
</g>
<g >
<title>irq_work_queue (1,119,219,916 samples, 0.19%)</title><rect x="348.0" y="1861" width="2.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="350.95" y="1871.5" ></text>
</g>
<g >
<title>__schedule (51,054,532 samples, 0.01%)</title><rect x="1157.6" y="1957" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1160.60" y="1967.5" ></text>
</g>
<g >
<title>RecoveryInProgress (114,563,796 samples, 0.02%)</title><rect x="311.3" y="2053" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="314.35" y="2063.5" ></text>
</g>
<g >
<title>match_foreign_keys_to_quals (56,992,078 samples, 0.01%)</title><rect x="857.5" y="2037" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="860.48" y="2047.5" ></text>
</g>
<g >
<title>enqueue_task (1,312,835,579 samples, 0.22%)</title><rect x="481.9" y="1717" width="2.6" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="484.91" y="1727.5" ></text>
</g>
<g >
<title>dequeue_entity (1,032,800,493 samples, 0.17%)</title><rect x="75.8" y="1781" width="2.0" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="78.76" y="1791.5" ></text>
</g>
<g >
<title>__libc_pwrite (4,164,089,511 samples, 0.70%)</title><rect x="942.5" y="2053" width="8.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="945.47" y="2063.5" ></text>
</g>
<g >
<title>pick_next_task_fair (55,214,375 samples, 0.01%)</title><rect x="523.9" y="1893" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="526.92" y="1903.5" ></text>
</g>
<g >
<title>process_one_work (84,443,636 samples, 0.01%)</title><rect x="10.5" y="1989" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="13.51" y="1999.5" ></text>
</g>
<g >
<title>__refill_stock (59,912,521 samples, 0.01%)</title><rect x="178.3" y="1733" width="0.1" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="181.33" y="1743.5" ></text>
</g>
<g >
<title>bpf_ringbuf_reserve (56,273,542 samples, 0.01%)</title><rect x="477.8" y="1877" width="0.1" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="480.82" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (27,981,581,082 samples, 4.68%)</title><rect x="524.8" y="1909" width="55.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="527.81" y="1919.5" >[unkn..</text>
</g>
<g >
<title>perf_log_itrace_start (119,393,231 samples, 0.02%)</title><rect x="553.1" y="1573" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="556.11" y="1583.5" ></text>
</g>
<g >
<title>apparmor_task_kill (56,774,873 samples, 0.01%)</title><rect x="1100.8" y="1909" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="1103.84" y="1919.5" ></text>
</g>
<g >
<title>rseq_update_cpu_node_id (141,217,031 samples, 0.02%)</title><rect x="61.8" y="1909" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="64.80" y="1919.5" ></text>
</g>
<g >
<title>ProcSleep (200,068,392 samples, 0.03%)</title><rect x="307.7" y="2053" width="0.4" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="310.66" y="2063.5" ></text>
</g>
<g >
<title>[libc.so.6] (117,638,624 samples, 0.02%)</title><rect x="158.2" y="1989" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="161.17" y="1999.5" ></text>
</g>
<g >
<title>hw_breakpoint_del (54,673,059 samples, 0.01%)</title><rect x="528.4" y="1685" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="531.36" y="1695.5" ></text>
</g>
<g >
<title>__wake_up (2,479,988,534 samples, 0.41%)</title><rect x="480.5" y="1813" width="4.9" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="483.47" y="1823.5" ></text>
</g>
<g >
<title>pick_eevdf (142,582,719 samples, 0.02%)</title><rect x="33.4" y="1813" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="36.42" y="1823.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (86,016,307 samples, 0.01%)</title><rect x="537.9" y="1557" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="540.87" y="1567.5" ></text>
</g>
<g >
<title>__sysvec_irq_work (93,016,533 samples, 0.02%)</title><rect x="437.4" y="1989" width="0.1" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="440.36" y="1999.5" ></text>
</g>
<g >
<title>pqClearAsyncResult (56,233,620 samples, 0.01%)</title><rect x="206.7" y="2053" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="209.73" y="2063.5" ></text>
</g>
<g >
<title>__pmu_ctx_sched_out (456,217,877 samples, 0.08%)</title><rect x="556.0" y="1621" width="0.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="558.99" y="1631.5" ></text>
</g>
<g >
<title>bpf_ringbuf_notify (56,686,249 samples, 0.01%)</title><rect x="527.5" y="1733" width="0.1" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="530.47" y="1743.5" ></text>
</g>
<g >
<title>irqentry_exit (160,338,434 samples, 0.03%)</title><rect x="359.6" y="2005" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="362.62" y="2015.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (54,962,641 samples, 0.01%)</title><rect x="481.3" y="1701" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="484.30" y="1711.5" ></text>
</g>
<g >
<title>core_yylex_init (192,291,658 samples, 0.03%)</title><rect x="969.5" y="2053" width="0.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="972.46" y="2063.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (223,096,923 samples, 0.04%)</title><rect x="797.2" y="2037" width="0.5" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="800.23" y="2047.5" ></text>
</g>
<g >
<title>psi_group_change (2,108,759,791 samples, 0.35%)</title><rect x="715.7" y="1781" width="4.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="718.70" y="1791.5" ></text>
</g>
<g >
<title>set_next_entity (55,798,079 samples, 0.01%)</title><rect x="194.1" y="1813" width="0.1" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="197.13" y="1823.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (50,894,112 samples, 0.01%)</title><rect x="449.7" y="1989" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="452.70" y="1999.5" ></text>
</g>
<g >
<title>do_shared_fault (53,727,425 samples, 0.01%)</title><rect x="486.9" y="1909" width="0.1" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="489.88" y="1919.5" ></text>
</g>
<g >
<title>malloc (400,341,291 samples, 0.07%)</title><rect x="208.8" y="2037" width="0.8" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="211.85" y="2047.5" ></text>
</g>
<g >
<title>__rcu_read_lock (111,740,479 samples, 0.02%)</title><rect x="82.4" y="1797" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="85.35" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (28,038,451,042 samples, 4.69%)</title><rect x="524.8" y="2005" width="55.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="527.81" y="2015.5" >[unkn..</text>
</g>
<g >
<title>__rseq_handle_notify_resume (547,067,300 samples, 0.09%)</title><rect x="645.1" y="1973" width="1.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="648.13" y="1983.5" ></text>
</g>
<g >
<title>[[vdso]] (112,095,043 samples, 0.02%)</title><rect x="367.9" y="2053" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="370.86" y="2063.5" ></text>
</g>
<g >
<title>llseek (3,684,715,545 samples, 0.62%)</title><rect x="844.3" y="2037" width="7.3" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="847.32" y="2047.5" ></text>
</g>
<g >
<title>__ext4_mark_inode_dirty (398,910,688 samples, 0.07%)</title><rect x="944.2" y="1861" width="0.8" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="947.19" y="1871.5" ></text>
</g>
<g >
<title>do_syscall_64 (116,565,316 samples, 0.02%)</title><rect x="249.1" y="2005" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="252.13" y="2015.5" ></text>
</g>
<g >
<title>pgstat_report_plan_id (236,263,816 samples, 0.04%)</title><rect x="880.1" y="2037" width="0.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="883.10" y="2047.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (53,889,830 samples, 0.01%)</title><rect x="471.8" y="1877" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="474.81" y="1887.5" ></text>
</g>
<g >
<title>GetSysCacheOid (280,322,235 samples, 0.05%)</title><rect x="428.3" y="2037" width="0.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="431.27" y="2047.5" ></text>
</g>
<g >
<title>DynaHashAlloc (54,916,348 samples, 0.01%)</title><rect x="502.3" y="2021" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="505.26" y="2031.5" ></text>
</g>
<g >
<title>EvalPlanQualBegin (57,189,127 samples, 0.01%)</title><rect x="402.0" y="2037" width="0.1" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="404.96" y="2047.5" ></text>
</g>
<g >
<title>hw_breakpoint_add (664,268,318 samples, 0.11%)</title><rect x="1010.5" y="1765" width="1.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="1013.48" y="1775.5" ></text>
</g>
<g >
<title>x86_64_start_reservations (853,548,337 samples, 0.14%)</title><rect x="1188.3" y="2021" width="1.7" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="1191.31" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="677" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="687.5" ></text>
</g>
<g >
<title>__x64_sys_recvfrom (10,984,198,551 samples, 1.84%)</title><rect x="166.5" y="1957" width="21.6" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="169.46" y="1967.5" >_..</text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (55,840,878 samples, 0.01%)</title><rect x="794.9" y="1989" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="797.91" y="1999.5" ></text>
</g>
<g >
<title>__switch_to_asm (391,415,168 samples, 0.07%)</title><rect x="951.1" y="2037" width="0.8" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="954.10" y="2047.5" ></text>
</g>
<g >
<title>PopActiveSnapshot (55,566,005 samples, 0.01%)</title><rect x="305.7" y="2053" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="308.66" y="2063.5" ></text>
</g>
<g >
<title>ExecGetRangeTableRelation (118,064,174 samples, 0.02%)</title><rect x="406.1" y="2037" width="0.2" height="15.0" fill="rgb(241,167,39)" rx="2" ry="2" />
<text x="409.09" y="2047.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (50,815,657 samples, 0.01%)</title><rect x="264.3" y="1941" width="0.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="267.27" y="1951.5" ></text>
</g>
<g >
<title>select_idle_sibling (317,619,665 samples, 0.05%)</title><rect x="137.9" y="1717" width="0.6" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="140.89" y="1727.5" ></text>
</g>
<g >
<title>checkInsertTargets (56,050,974 samples, 0.01%)</title><rect x="772.2" y="2037" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="775.22" y="2047.5" ></text>
</g>
<g >
<title>__schedule (304,080,912 samples, 0.05%)</title><rect x="111.0" y="1925" width="0.6" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="113.95" y="1935.5" ></text>
</g>
<g >
<title>find_forced_null_var (87,547,334 samples, 0.01%)</title><rect x="805.2" y="2037" width="0.2" height="15.0" fill="rgb(241,167,39)" rx="2" ry="2" />
<text x="808.20" y="2047.5" ></text>
</g>
<g >
<title>ep_poll (7,717,636,114 samples, 1.29%)</title><rect x="22.4" y="1941" width="15.2" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" />
<text x="25.36" y="1951.5" ></text>
</g>
<g >
<title>arch_exit_to_user_mode_prepare.isra.0 (774,052,868 samples, 0.13%)</title><rect x="62.1" y="1925" width="1.5" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="65.08" y="1935.5" ></text>
</g>
<g >
<title>asm_exc_debug (2,886,041,973 samples, 0.48%)</title><rect x="890.2" y="2021" width="5.7" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="893.19" y="2031.5" ></text>
</g>
<g >
<title>wake_up_process (58,839,432 samples, 0.01%)</title><rect x="1038.0" y="1701" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="1040.98" y="1711.5" ></text>
</g>
<g >
<title>bpf_overflow_handler (178,776,503 samples, 0.03%)</title><rect x="1098.7" y="1909" width="0.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="1101.69" y="1919.5" ></text>
</g>
<g >
<title>update_process_times (54,862,766 samples, 0.01%)</title><rect x="1146.8" y="1781" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1149.77" y="1791.5" ></text>
</g>
<g >
<title>_IO_do_write (53,656,837 samples, 0.01%)</title><rect x="19.0" y="2005" width="0.1" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="22.04" y="2015.5" ></text>
</g>
<g >
<title>transformTargetEntry (55,667,966 samples, 0.01%)</title><rect x="937.7" y="2037" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="940.67" y="2047.5" ></text>
</g>
<g >
<title>schedule (73,249,823 samples, 0.01%)</title><rect x="501.1" y="1957" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="504.13" y="1967.5" ></text>
</g>
<g >
<title>fault_dirty_shared_page (371,672,297 samples, 0.06%)</title><rect x="498.2" y="1893" width="0.7" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="501.20" y="1903.5" ></text>
</g>
<g >
<title>start_kernel (853,548,337 samples, 0.14%)</title><rect x="1188.3" y="2005" width="1.7" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1191.31" y="2015.5" ></text>
</g>
<g >
<title>blk_mq_sched_dispatch_requests (56,515,670 samples, 0.01%)</title><rect x="10.7" y="1925" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="13.68" y="1935.5" ></text>
</g>
<g >
<title>_raw_spin_lock (112,547,994 samples, 0.02%)</title><rect x="661.7" y="1925" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="664.75" y="1935.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (486,235,044 samples, 0.08%)</title><rect x="846.4" y="1989" width="0.9" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="849.39" y="1999.5" ></text>
</g>
<g >
<title>pick_next_task (112,902,165 samples, 0.02%)</title><rect x="897.7" y="1941" width="0.2" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="900.67" y="1951.5" ></text>
</g>
<g >
<title>RelnameGetRelid (252,421,333 samples, 0.04%)</title><rect x="460.1" y="2037" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="463.07" y="2047.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (138,519,250 samples, 0.02%)</title><rect x="428.0" y="2021" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="431.00" y="2031.5" ></text>
</g>
<g >
<title>__schedule (50,662,186 samples, 0.01%)</title><rect x="514.2" y="1925" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="517.17" y="1935.5" ></text>
</g>
<g >
<title>page_counter_uncharge (59,912,521 samples, 0.01%)</title><rect x="178.3" y="1701" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="181.33" y="1711.5" ></text>
</g>
<g >
<title>propagate_protected_usage (56,957,813 samples, 0.01%)</title><rect x="129.8" y="1781" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="132.79" y="1791.5" ></text>
</g>
<g >
<title>schedule (330,735,007 samples, 0.06%)</title><rect x="110.9" y="1941" width="0.7" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="113.90" y="1951.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (76,739,314 samples, 0.01%)</title><rect x="344.4" y="1925" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="347.35" y="1935.5" ></text>
</g>
<g >
<title>_bt_compare (538,378,067 samples, 0.09%)</title><rect x="953.1" y="2053" width="1.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="956.11" y="2063.5" ></text>
</g>
<g >
<title>hash_bytes (323,806,579 samples, 0.05%)</title><rect x="1058.3" y="2053" width="0.7" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="1061.33" y="2063.5" ></text>
</g>
<g >
<title>bms_make_singleton (404,236,327 samples, 0.07%)</title><rect x="766.4" y="2037" width="0.8" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="769.37" y="2047.5" ></text>
</g>
<g >
<title>irqentry_exit (194,298,806 samples, 0.03%)</title><rect x="615.8" y="1973" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="618.80" y="1983.5" ></text>
</g>
<g >
<title>flush_block (110,640,379 samples, 0.02%)</title><rect x="12.3" y="2037" width="0.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="15.33" y="2047.5" ></text>
</g>
<g >
<title>switch_mm_irqs_off (137,791,964 samples, 0.02%)</title><rect x="662.4" y="1941" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="665.37" y="1951.5" ></text>
</g>
<g >
<title>path_openat (88,677,712 samples, 0.01%)</title><rect x="249.1" y="1925" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="252.13" y="1935.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (1,565,807,561 samples, 0.26%)</title><rect x="551.8" y="1685" width="3.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="554.83" y="1695.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1093" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1103.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (136,000,631 samples, 0.02%)</title><rect x="36.5" y="1861" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="39.50" y="1871.5" ></text>
</g>
<g >
<title>EvalPlanQualEnd (113,030,408 samples, 0.02%)</title><rect x="253.8" y="2053" width="0.2" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="256.80" y="2063.5" ></text>
</g>
<g >
<title>mpage_submit_folio (185,826,744 samples, 0.03%)</title><rect x="1166.4" y="1845" width="0.4" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1169.41" y="1855.5" ></text>
</g>
<g >
<title>base_yylex (54,267,270 samples, 0.01%)</title><rect x="789.0" y="2021" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="792.02" y="2031.5" ></text>
</g>
<g >
<title>kmem_cache_free (987,359,296 samples, 0.17%)</title><rect x="172.2" y="1845" width="2.0" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="175.23" y="1855.5" ></text>
</g>
<g >
<title>try_to_wake_up (16,919,542,314 samples, 2.83%)</title><rect x="693.1" y="1845" width="33.4" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="696.11" y="1855.5" >tr..</text>
</g>
<g >
<title>__rb_erase_color (82,500,187 samples, 0.01%)</title><rect x="85.3" y="1749" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="88.28" y="1759.5" ></text>
</g>
<g >
<title>ring_buffer__consume (918,616,187 samples, 0.15%)</title><rect x="38.5" y="2021" width="1.8" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="41.52" y="2031.5" ></text>
</g>
<g >
<title>place_entity (55,680,566 samples, 0.01%)</title><rect x="536.1" y="1525" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="539.07" y="1535.5" ></text>
</g>
<g >
<title>__wake_up_sync (10,265,802,646 samples, 1.72%)</title><rect x="132.5" y="1829" width="20.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="135.47" y="1839.5" ></text>
</g>
<g >
<title>try_to_wake_up (1,820,955,146 samples, 0.30%)</title><rect x="534.6" y="1605" width="3.6" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="537.61" y="1615.5" ></text>
</g>
<g >
<title>restore_fpregs_from_fpstate (348,141,577 samples, 0.06%)</title><rect x="545.9" y="1765" width="0.7" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="548.90" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1813" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1823.5" ></text>
</g>
<g >
<title>blk_mq_requeue_work (56,385,646 samples, 0.01%)</title><rect x="10.6" y="1973" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="13.56" y="1983.5" ></text>
</g>
<g >
<title>bpf_ringbuf_notify (214,870,638 samples, 0.04%)</title><rect x="265.4" y="1941" width="0.5" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="268.43" y="1951.5" ></text>
</g>
<g >
<title>perf_ctx_sched_task_cb (60,158,970 samples, 0.01%)</title><rect x="652.7" y="1925" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="655.75" y="1935.5" ></text>
</g>
<g >
<title>__futex_queue (86,449,640 samples, 0.01%)</title><rect x="547.8" y="1717" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="550.82" y="1727.5" ></text>
</g>
<g >
<title>copy_from_user_nofault (308,403,284 samples, 0.05%)</title><rect x="473.8" y="1845" width="0.6" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="476.79" y="1855.5" ></text>
</g>
<g >
<title>add_vars_to_targetlist (220,484,464 samples, 0.04%)</title><rect x="755.0" y="2037" width="0.5" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="758.03" y="2047.5" ></text>
</g>
<g >
<title>schedule (110,256,628 samples, 0.02%)</title><rect x="485.8" y="1957" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="488.75" y="1967.5" ></text>
</g>
<g >
<title>pick_next_task (2,144,316,363 samples, 0.36%)</title><rect x="82.6" y="1813" width="4.3" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="85.63" y="1823.5" ></text>
</g>
<g >
<title>tts_buffer_heap_clear (139,529,591 samples, 0.02%)</title><rect x="1170.6" y="2053" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="1173.55" y="2063.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (310,649,532 samples, 0.05%)</title><rect x="164.0" y="2005" width="0.6" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="167.03" y="2015.5" ></text>
</g>
<g >
<title>enqueue_task (58,514,268 samples, 0.01%)</title><rect x="1189.2" y="1701" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1192.22" y="1711.5" ></text>
</g>
<g >
<title>__common_interrupt (60,230,603 samples, 0.01%)</title><rect x="1185.5" y="1941" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1188.50" y="1951.5" ></text>
</g>
<g >
<title>ModifyWaitEvent (94,450,991 samples, 0.02%)</title><rect x="298.9" y="2053" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="301.94" y="2063.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (159,846,193 samples, 0.03%)</title><rect x="196.2" y="1877" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="199.16" y="1887.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (79,651,082 samples, 0.01%)</title><rect x="898.2" y="1909" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="901.24" y="1919.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (5,626,065,128 samples, 0.94%)</title><rect x="26.5" y="1909" width="11.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="29.49" y="1919.5" ></text>
</g>
<g >
<title>_raw_spin_lock (171,965,423 samples, 0.03%)</title><rect x="999.8" y="1877" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1002.84" y="1887.5" ></text>
</g>
<g >
<title>xas_descend (59,852,847 samples, 0.01%)</title><rect x="946.0" y="1845" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="948.99" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="309" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="319.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2,456,752,664 samples, 0.41%)</title><rect x="983.7" y="2005" width="4.9" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="986.74" y="2015.5" ></text>
</g>
<g >
<title>remove_entity_load_avg (141,014,827 samples, 0.02%)</title><rect x="139.8" y="1717" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="142.81" y="1727.5" ></text>
</g>
<g >
<title>pick_next_task_fair (110,558,527 samples, 0.02%)</title><rect x="1184.5" y="1941" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1187.50" y="1951.5" ></text>
</g>
<g >
<title>memcpy@plt (57,509,361 samples, 0.01%)</title><rect x="858.8" y="2037" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="861.77" y="2047.5" ></text>
</g>
<g >
<title>update_load_avg (1,000,852,224 samples, 0.17%)</title><rect x="146.1" y="1701" width="2.0" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="149.11" y="1711.5" ></text>
</g>
<g >
<title>__raw_read_lock_irqsave (85,863,596 samples, 0.01%)</title><rect x="152.7" y="1813" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="155.74" y="1823.5" ></text>
</g>
<g >
<title>sock_alloc_send_pskb (9,709,017,287 samples, 1.62%)</title><rect x="671.6" y="1925" width="19.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="674.56" y="1935.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (83,049,259 samples, 0.01%)</title><rect x="1125.3" y="1989" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1128.27" y="1999.5" ></text>
</g>
<g >
<title>event_sched_in (55,161,559 samples, 0.01%)</title><rect x="846.7" y="1845" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="849.73" y="1855.5" ></text>
</g>
<g >
<title>enqueue_entity (2,965,027,098 samples, 0.50%)</title><rect x="705.0" y="1781" width="5.9" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="708.03" y="1791.5" ></text>
</g>
<g >
<title>prepare_task_switch (56,032,137 samples, 0.01%)</title><rect x="776.9" y="1925" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="779.88" y="1935.5" ></text>
</g>
<g >
<title>__pm_relax (56,435,069 samples, 0.01%)</title><rect x="994.1" y="1925" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="997.08" y="1935.5" ></text>
</g>
<g >
<title>pgstat_count_slru_blocks_hit (178,717,753 samples, 0.03%)</title><rect x="1132.3" y="2053" width="0.3" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1135.27" y="2063.5" ></text>
</g>
<g >
<title>irq_work_single (214,870,638 samples, 0.04%)</title><rect x="265.4" y="1957" width="0.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="268.43" y="1967.5" ></text>
</g>
<g >
<title>bms_next_member (57,420,992 samples, 0.01%)</title><rect x="767.6" y="2037" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="770.56" y="2047.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (54,546,685 samples, 0.01%)</title><rect x="1043.0" y="1797" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1045.97" y="1807.5" ></text>
</g>
<g >
<title>update_load_avg (436,259,178 samples, 0.07%)</title><rect x="1002.7" y="1829" width="0.9" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="1005.70" y="1839.5" ></text>
</g>
<g >
<title>default_wake_function (9,859,705,877 samples, 1.65%)</title><rect x="133.2" y="1781" width="19.5" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="136.22" y="1791.5" ></text>
</g>
<g >
<title>[[vdso]] (227,882,985 samples, 0.04%)</title><rect x="519.9" y="2021" width="0.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="522.93" y="2031.5" ></text>
</g>
<g >
<title>schedule_debug.isra.0 (117,356,027 samples, 0.02%)</title><rect x="1028.1" y="1877" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1031.08" y="1887.5" ></text>
</g>
<g >
<title>unix_poll (57,446,629 samples, 0.01%)</title><rect x="996.5" y="1909" width="0.1" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="999.50" y="1919.5" ></text>
</g>
<g >
<title>ReleasePredicateLocks (112,279,907 samples, 0.02%)</title><rect x="319.5" y="2053" width="0.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="322.47" y="2063.5" ></text>
</g>
<g >
<title>update_curr (232,624,284 samples, 0.04%)</title><rect x="143.7" y="1685" width="0.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="146.72" y="1695.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (1,592,298,062 samples, 0.27%)</title><rect x="60.7" y="1941" width="3.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="63.69" y="1951.5" ></text>
</g>
<g >
<title>tick_sched_handle (60,075,769 samples, 0.01%)</title><rect x="1040.5" y="1557" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1043.54" y="1567.5" ></text>
</g>
<g >
<title>__wake_up_common (56,991,187 samples, 0.01%)</title><rect x="505.3" y="1877" width="0.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="508.29" y="1887.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (200,351,370 samples, 0.03%)</title><rect x="1101.5" y="1861" width="0.4" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1104.46" y="1871.5" ></text>
</g>
<g >
<title>get_visible_ENR_metadata (200,924,377 samples, 0.03%)</title><rect x="812.3" y="2037" width="0.4" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="815.32" y="2047.5" ></text>
</g>
<g >
<title>schedule (565,959,644 samples, 0.09%)</title><rect x="527.6" y="1829" width="1.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="530.58" y="1839.5" ></text>
</g>
<g >
<title>AtEOXact_Files (59,255,399 samples, 0.01%)</title><rect x="245.0" y="2053" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="248.05" y="2063.5" ></text>
</g>
<g >
<title>virtscsi_complete_cmd (53,025,289 samples, 0.01%)</title><rect x="1015.5" y="1733" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1018.51" y="1743.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (304,929,293 samples, 0.05%)</title><rect x="82.0" y="1813" width="0.6" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="85.03" y="1823.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (84,395,727 samples, 0.01%)</title><rect x="149.7" y="1653" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="152.72" y="1663.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (56,680,433 samples, 0.01%)</title><rect x="652.5" y="1845" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="655.53" y="1855.5" ></text>
</g>
<g >
<title>__htab_map_lookup_elem (333,388,016 samples, 0.06%)</title><rect x="344.9" y="1877" width="0.6" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="347.85" y="1887.5" ></text>
</g>
<g >
<title>__schedule (649,394,699 samples, 0.11%)</title><rect x="1184.0" y="1973" width="1.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1186.99" y="1983.5" ></text>
</g>
<g >
<title>virtscsi_complete_cmd (57,766,097 samples, 0.01%)</title><rect x="1188.5" y="1733" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1191.55" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1125" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1135.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1717" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1727.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (58,738,006 samples, 0.01%)</title><rect x="1163.4" y="2053" width="0.2" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="1166.44" y="2063.5" ></text>
</g>
<g >
<title>vfs_write (3,608,659,751 samples, 0.60%)</title><rect x="943.5" y="1973" width="7.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="946.51" y="1983.5" ></text>
</g>
<g >
<title>ctx_sched_in (80,227,309 samples, 0.01%)</title><rect x="527.7" y="1765" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="530.65" y="1775.5" ></text>
</g>
<g >
<title>irqentry_exit (115,488,099 samples, 0.02%)</title><rect x="1093.3" y="2005" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1096.32" y="2015.5" ></text>
</g>
<g >
<title>restriction_is_always_false (87,491,885 samples, 0.01%)</title><rect x="918.9" y="2037" width="0.2" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" />
<text x="921.94" y="2047.5" ></text>
</g>
<g >
<title>psi_task_switch (1,387,772,177 samples, 0.23%)</title><rect x="1025.1" y="1877" width="2.7" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1028.07" y="1887.5" ></text>
</g>
<g >
<title>notify_die (3,066,648,489 samples, 0.51%)</title><rect x="344.5" y="2005" width="6.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="347.50" y="2015.5" ></text>
</g>
<g >
<title>__memcg_slab_post_alloc_hook (527,903,919 samples, 0.09%)</title><rect x="118.1" y="1813" width="1.0" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="121.08" y="1823.5" ></text>
</g>
<g >
<title>dequeue_entity (60,693,000 samples, 0.01%)</title><rect x="506.6" y="1781" width="0.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="509.61" y="1791.5" ></text>
</g>
<g >
<title>simplify_function (87,977,717 samples, 0.01%)</title><rect x="925.5" y="2037" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="928.55" y="2047.5" ></text>
</g>
<g >
<title>XLogBytePosToEndRecPtr (54,627,317 samples, 0.01%)</title><rect x="361.2" y="2053" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="364.16" y="2063.5" ></text>
</g>
<g >
<title>pv_native_set_debugreg (342,089,554 samples, 0.06%)</title><rect x="552.4" y="1557" width="0.7" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="555.44" y="1567.5" ></text>
</g>
<g >
<title>recv (51,816,822 samples, 0.01%)</title><rect x="1138.7" y="2053" width="0.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1141.72" y="2063.5" ></text>
</g>
<g >
<title>try_to_wake_up (58,839,432 samples, 0.01%)</title><rect x="1038.0" y="1685" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="1040.98" y="1695.5" ></text>
</g>
<g >
<title>do_read_fault (174,848,233 samples, 0.03%)</title><rect x="947.9" y="1765" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="950.86" y="1775.5" ></text>
</g>
<g >
<title>_raw_spin_lock (81,711,418 samples, 0.01%)</title><rect x="1146.6" y="1909" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1149.61" y="1919.5" ></text>
</g>
<g >
<title>pick_next_task (53,724,230 samples, 0.01%)</title><rect x="590.8" y="1893" width="0.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="593.78" y="1903.5" ></text>
</g>
<g >
<title>sched_clock_cpu (56,092,041 samples, 0.01%)</title><rect x="485.0" y="1717" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="488.05" y="1727.5" ></text>
</g>
<g >
<title>heap_update (435,840,384 samples, 0.07%)</title><rect x="831.5" y="2037" width="0.8" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="834.45" y="2047.5" ></text>
</g>
<g >
<title>sysvec_irq_work (266,429,464 samples, 0.04%)</title><rect x="279.7" y="2021" width="0.5" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="282.65" y="2031.5" ></text>
</g>
<g >
<title>__update_load_avg_se (251,504,315 samples, 0.04%)</title><rect x="147.5" y="1685" width="0.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="150.53" y="1695.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (80,873,495 samples, 0.01%)</title><rect x="30.8" y="1813" width="0.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="33.83" y="1823.5" ></text>
</g>
<g >
<title>scanner_init (280,098,106 samples, 0.05%)</title><rect x="1141.8" y="2053" width="0.5" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1144.79" y="2063.5" ></text>
</g>
<g >
<title>_copy_from_iter (57,723,329 samples, 0.01%)</title><rect x="667.9" y="1925" width="0.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="670.95" y="1935.5" ></text>
</g>
<g >
<title>PortalRunMulti (434,654,642 samples, 0.07%)</title><rect x="507.3" y="2021" width="0.8" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="510.29" y="2031.5" ></text>
</g>
<g >
<title>getBaseTypeAndTypmod (80,668,412 samples, 0.01%)</title><rect x="807.8" y="2037" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="810.77" y="2047.5" ></text>
</g>
<g >
<title>group_sched_out (55,976,096 samples, 0.01%)</title><rect x="616.1" y="1829" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="619.08" y="1839.5" ></text>
</g>
<g >
<title>__pte_offset_map_lock (55,933,961 samples, 0.01%)</title><rect x="498.9" y="1877" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="501.94" y="1887.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8,421,283,254 samples, 1.41%)</title><rect x="544.0" y="1845" width="16.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="547.04" y="1855.5" ></text>
</g>
<g >
<title>ttwu_do_activate (2,449,415,493 samples, 0.41%)</title><rect x="1149.5" y="1909" width="4.8" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="1152.51" y="1919.5" ></text>
</g>
<g >
<title>arch_install_hw_breakpoint (55,015,833 samples, 0.01%)</title><rect x="649.0" y="1813" width="0.1" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="652.00" y="1823.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (84,900,242 samples, 0.01%)</title><rect x="1144.0" y="1925" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1146.98" y="1935.5" ></text>
</g>
<g >
<title>__get_user_8 (58,876,751 samples, 0.01%)</title><rect x="191.0" y="1925" width="0.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="194.04" y="1935.5" ></text>
</g>
<g >
<title>update_rq_clock (53,031,358 samples, 0.01%)</title><rect x="1105.3" y="1765" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="1108.31" y="1775.5" ></text>
</g>
<g >
<title>btcostestimate (198,139,910 samples, 0.03%)</title><rect x="960.0" y="2053" width="0.4" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="963.05" y="2063.5" ></text>
</g>
<g >
<title>PQsendQueryInternal (426,734,737 samples, 0.07%)</title><rect x="47.9" y="2037" width="0.9" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="50.93" y="2047.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (254,995,723 samples, 0.04%)</title><rect x="479.2" y="1989" width="0.5" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="482.24" y="1999.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (194,823,721 samples, 0.03%)</title><rect x="726.1" y="1781" width="0.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="729.12" y="1791.5" ></text>
</g>
<g >
<title>local_clock_noinstr (137,909,999 samples, 0.02%)</title><rect x="660.5" y="1861" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="663.45" y="1871.5" ></text>
</g>
<g >
<title>__schedule (267,031,965 samples, 0.04%)</title><rect x="1039.4" y="1845" width="0.5" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1042.38" y="1855.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (53,627,794 samples, 0.01%)</title><rect x="288.5" y="1989" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="291.49" y="1999.5" ></text>
</g>
<g >
<title>x64_sys_call (1,927,866,182 samples, 0.32%)</title><rect x="847.3" y="1989" width="3.9" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="850.35" y="1999.5" ></text>
</g>
<g >
<title>ensure_tabstat_xact_level (555,711,923 samples, 0.09%)</title><rect x="789.0" y="2037" width="1.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="792.02" y="2047.5" ></text>
</g>
<g >
<title>FreeExecutorState (230,499,938 samples, 0.04%)</title><rect x="420.9" y="2037" width="0.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="423.88" y="2047.5" ></text>
</g>
<g >
<title>makeTargetEntry (141,749,194 samples, 0.02%)</title><rect x="1110.0" y="2053" width="0.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="1113.00" y="2063.5" ></text>
</g>
<g >
<title>blk_mq_complete_request (53,025,289 samples, 0.01%)</title><rect x="1015.5" y="1685" width="0.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1018.51" y="1695.5" ></text>
</g>
<g >
<title>wake_affine (621,878,420 samples, 0.10%)</title><rect x="699.7" y="1797" width="1.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="702.69" y="1807.5" ></text>
</g>
<g >
<title>check_stack_object (82,501,552 samples, 0.01%)</title><rect x="115.7" y="1861" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="118.72" y="1871.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (78,588,594 samples, 0.01%)</title><rect x="514.1" y="1957" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="517.11" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="517" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="527.5" ></text>
</g>
<g >
<title>bpf_ringbuf_submit (1,285,083,264 samples, 0.21%)</title><rect x="347.6" y="1877" width="2.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="350.62" y="1887.5" ></text>
</g>
<g >
<title>psi_task_switch (70,662,725 samples, 0.01%)</title><rect x="264.5" y="1957" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="267.47" y="1967.5" ></text>
</g>
<g >
<title>ep_poll_callback (214,870,638 samples, 0.04%)</title><rect x="265.4" y="1893" width="0.5" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="268.43" y="1903.5" ></text>
</g>
<g >
<title>__schedule (110,256,628 samples, 0.02%)</title><rect x="485.8" y="1941" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="488.75" y="1951.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (90,063,185 samples, 0.02%)</title><rect x="726.9" y="1877" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="729.88" y="1887.5" ></text>
</g>
<g >
<title>ReleaseCatCacheList (58,489,051 samples, 0.01%)</title><rect x="319.4" y="2053" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="322.35" y="2063.5" ></text>
</g>
<g >
<title>__wake_up (93,016,533 samples, 0.02%)</title><rect x="437.4" y="1813" width="0.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="440.36" y="1823.5" ></text>
</g>
<g >
<title>handle_edge_irq (51,692,594 samples, 0.01%)</title><rect x="449.5" y="1973" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="452.55" y="1983.5" ></text>
</g>
<g >
<title>reweight_entity (57,361,432 samples, 0.01%)</title><rect x="76.1" y="1749" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="79.11" y="1759.5" ></text>
</g>
<g >
<title>schedule_debug.isra.0 (190,411,958 samples, 0.03%)</title><rect x="36.8" y="1861" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="39.77" y="1871.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (115,357,557 samples, 0.02%)</title><rect x="908.3" y="1749" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="911.33" y="1759.5" ></text>
</g>
<g >
<title>page_counter_uncharge (57,155,469 samples, 0.01%)</title><rect x="126.3" y="1749" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="129.31" y="1759.5" ></text>
</g>
<g >
<title>prepare_task_switch (233,896,507 samples, 0.04%)</title><rect x="86.9" y="1813" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="89.86" y="1823.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (85,832,584 samples, 0.01%)</title><rect x="1099.8" y="2005" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="1102.77" y="2015.5" ></text>
</g>
<g >
<title>irq_work_run (54,158,423 samples, 0.01%)</title><rect x="367.7" y="1989" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="370.69" y="1999.5" ></text>
</g>
<g >
<title>__virt_addr_valid (82,541,897 samples, 0.01%)</title><rect x="185.5" y="1765" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="188.52" y="1775.5" ></text>
</g>
<g >
<title>bms_make_singleton (147,473,964 samples, 0.02%)</title><rect x="958.7" y="2053" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="961.69" y="2063.5" ></text>
</g>
<g >
<title>CommitTransactionCommand (111,124,396 samples, 0.02%)</title><rect x="395.7" y="2037" width="0.2" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="398.72" y="2047.5" ></text>
</g>
<g >
<title>put_prev_entity (87,662,805 samples, 0.01%)</title><rect x="656.6" y="1925" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="659.59" y="1935.5" ></text>
</g>
<g >
<title>prepare_task_switch (79,850,314 samples, 0.01%)</title><rect x="34.5" y="1861" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="37.46" y="1871.5" ></text>
</g>
<g >
<title>select_task_rq_fair (140,904,493 samples, 0.02%)</title><rect x="1103.2" y="1749" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1106.19" y="1759.5" ></text>
</g>
<g >
<title>remove_entity_load_avg (136,009,318 samples, 0.02%)</title><rect x="1149.2" y="1877" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1152.24" y="1887.5" ></text>
</g>
<g >
<title>do_fault (1,533,785,185 samples, 0.26%)</title><rect x="496.8" y="1925" width="3.0" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="499.77" y="1935.5" ></text>
</g>
<g >
<title>update_load_avg (84,602,422 samples, 0.01%)</title><rect x="34.2" y="1813" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="37.23" y="1823.5" ></text>
</g>
<g >
<title>native_write_msr (393,231,584 samples, 0.07%)</title><rect x="476.8" y="1781" width="0.7" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="479.76" y="1791.5" ></text>
</g>
<g >
<title>asm_exc_debug (50,782,273 samples, 0.01%)</title><rect x="1166.0" y="2037" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1168.96" y="2047.5" ></text>
</g>
<g >
<title>apply_scanjoin_target_to_paths (87,447,690 samples, 0.01%)</title><rect x="956.6" y="2053" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="959.60" y="2063.5" ></text>
</g>
<g >
<title>update_rq_clock (85,823,047 samples, 0.01%)</title><rect x="538.0" y="1589" width="0.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="541.04" y="1599.5" ></text>
</g>
<g >
<title>__filemap_get_folio (286,282,788 samples, 0.05%)</title><rect x="945.5" y="1893" width="0.6" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="948.54" y="1903.5" ></text>
</g>
<g >
<title>available_idle_cpu (219,484,045 samples, 0.04%)</title><rect x="699.8" y="1781" width="0.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="702.75" y="1791.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (119,933,891 samples, 0.02%)</title><rect x="554.6" y="1621" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="557.63" y="1631.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1781" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1791.5" ></text>
</g>
<g >
<title>btcost_correlation (88,783,366 samples, 0.01%)</title><rect x="768.1" y="2037" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="771.05" y="2047.5" ></text>
</g>
<g >
<title>drain_stock (226,745,210 samples, 0.04%)</title><rect x="130.2" y="1765" width="0.4" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="133.17" y="1775.5" ></text>
</g>
<g >
<title>psi_group_change (960,803,105 samples, 0.16%)</title><rect x="1025.9" y="1861" width="1.9" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="1028.85" y="1871.5" ></text>
</g>
<g >
<title>__memcg_slab_post_alloc_hook (746,063,150 samples, 0.12%)</title><rect x="677.8" y="1861" width="1.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="680.77" y="1871.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (403,053,849 samples, 0.07%)</title><rect x="98.4" y="1813" width="0.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="101.40" y="1823.5" ></text>
</g>
<g >
<title>perf_swevent_event (171,073,014 samples, 0.03%)</title><rect x="279.1" y="1941" width="0.3" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="282.08" y="1951.5" ></text>
</g>
<g >
<title>__alloc_skb (9,343,471,699 samples, 1.56%)</title><rect x="671.9" y="1893" width="18.5" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="674.95" y="1903.5" ></text>
</g>
<g >
<title>examine_variable (564,410,795 samples, 0.09%)</title><rect x="792.5" y="2037" width="1.1" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text x="795.50" y="2047.5" ></text>
</g>
<g >
<title>schedule (111,645,375 samples, 0.02%)</title><rect x="538.6" y="1813" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="541.60" y="1823.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (56,499,481 samples, 0.01%)</title><rect x="1021.0" y="1845" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1023.96" y="1855.5" ></text>
</g>
<g >
<title>check_heap_object (223,478,330 samples, 0.04%)</title><rect x="115.3" y="1845" width="0.4" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="118.28" y="1855.5" ></text>
</g>
<g >
<title>llist_reverse_order (108,543,342 samples, 0.02%)</title><rect x="1179.3" y="1861" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1182.30" y="1871.5" ></text>
</g>
<g >
<title>enlargeStringInfo (58,269,970 samples, 0.01%)</title><rect x="974.9" y="2053" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="977.88" y="2063.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (55,692,436 samples, 0.01%)</title><rect x="527.4" y="1813" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="530.36" y="1823.5" ></text>
</g>
<g >
<title>[libbpf.so.1.3.0] (790,884,025 samples, 0.13%)</title><rect x="38.7" y="2005" width="1.6" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="41.72" y="2015.5" ></text>
</g>
<g >
<title>ctx_sched_out (1,614,282,111 samples, 0.27%)</title><rect x="657.5" y="1893" width="3.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="660.54" y="1903.5" ></text>
</g>
<g >
<title>rep_movs_alternative (390,648,692 samples, 0.07%)</title><rect x="914.5" y="1829" width="0.8" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="917.49" y="1839.5" ></text>
</g>
<g >
<title>palloc0 (87,252,069 samples, 0.01%)</title><rect x="594.7" y="2005" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="597.72" y="2015.5" ></text>
</g>
<g >
<title>update_min_vruntime (58,382,238 samples, 0.01%)</title><rect x="79.3" y="1733" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="82.27" y="1743.5" ></text>
</g>
<g >
<title>LockAcquire (114,260,458 samples, 0.02%)</title><rect x="437.5" y="2037" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="440.55" y="2047.5" ></text>
</g>
<g >
<title>exec_simple_query (340,302,685 samples, 0.06%)</title><rect x="619.5" y="2021" width="0.6" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="622.47" y="2031.5" ></text>
</g>
<g >
<title>index_rescan (168,897,303 samples, 0.03%)</title><rect x="836.6" y="2037" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="839.58" y="2047.5" ></text>
</g>
<g >
<title>__pmu_ctx_sched_out (54,673,059 samples, 0.01%)</title><rect x="528.4" y="1733" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="531.36" y="1743.5" ></text>
</g>
<g >
<title>pick_next_task_fair (195,390,194 samples, 0.03%)</title><rect x="111.1" y="1893" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="114.06" y="1903.5" ></text>
</g>
<g >
<title>table_block_relation_estimate_size (56,625,839 samples, 0.01%)</title><rect x="1166.8" y="2053" width="0.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="1169.83" y="2063.5" ></text>
</g>
<g >
<title>btcostestimate (277,618,466 samples, 0.05%)</title><rect x="768.2" y="2037" width="0.6" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="771.23" y="2047.5" ></text>
</g>
<g >
<title>__errno_location (680,769,600 samples, 0.11%)</title><rect x="941.0" y="2053" width="1.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="943.97" y="2063.5" ></text>
</g>
<g >
<title>skb_set_owner_w (83,568,928 samples, 0.01%)</title><rect x="690.6" y="1909" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="693.56" y="1919.5" ></text>
</g>
<g >
<title>pg_qsort (82,290,551 samples, 0.01%)</title><rect x="1128.2" y="2053" width="0.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="1131.18" y="2063.5" ></text>
</g>
<g >
<title>bpf_ringbuf_reserve (673,646,563 samples, 0.11%)</title><rect x="346.3" y="1877" width="1.3" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="349.29" y="1887.5" ></text>
</g>
<g >
<title>set_rel_size (137,876,488 samples, 0.02%)</title><rect x="924.9" y="2037" width="0.3" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="927.95" y="2047.5" ></text>
</g>
<g >
<title>irqentry_exit (79,265,418 samples, 0.01%)</title><rect x="523.9" y="1973" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="526.92" y="1983.5" ></text>
</g>
<g >
<title>schedule (52,225,624 samples, 0.01%)</title><rect x="748.0" y="1957" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="751.03" y="1967.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (55,840,878 samples, 0.01%)</title><rect x="794.9" y="2021" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="797.91" y="2031.5" ></text>
</g>
<g >
<title>MakeTupleTableSlot (513,324,448 samples, 0.09%)</title><rect x="441.7" y="2037" width="1.0" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="444.67" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (114,324,974 samples, 0.02%)</title><rect x="110.0" y="1989" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="113.01" y="1999.5" ></text>
</g>
<g >
<title>heap_prune_record_unchanged_lp_normal (195,492,860 samples, 0.03%)</title><rect x="1093.7" y="2053" width="0.4" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="1096.71" y="2063.5" ></text>
</g>
<g >
<title>recv (13,803,365,391 samples, 2.31%)</title><rect x="889.6" y="2037" width="27.3" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="892.64" y="2047.5" >r..</text>
</g>
<g >
<title>[unknown] (27,981,581,082 samples, 4.68%)</title><rect x="524.8" y="1925" width="55.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="527.81" y="1935.5" >[unkn..</text>
</g>
<g >
<title>transformTargetList (77,789,564 samples, 0.01%)</title><rect x="1170.4" y="2053" width="0.2" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="1173.40" y="2063.5" ></text>
</g>
<g >
<title>scsi_complete (168,112,840 samples, 0.03%)</title><rect x="1175.6" y="1733" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="1178.61" y="1743.5" ></text>
</g>
<g >
<title>assign_query_collations_walker (373,872,035 samples, 0.06%)</title><rect x="756.1" y="2037" width="0.7" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="759.09" y="2047.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (1,200,440,927 samples, 0.20%)</title><rect x="544.3" y="1813" width="2.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="547.27" y="1823.5" ></text>
</g>
<g >
<title>log@plt (83,868,686 samples, 0.01%)</title><rect x="1109.3" y="2053" width="0.1" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="1112.28" y="2063.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (310,480,325 samples, 0.05%)</title><rect x="390.8" y="2037" width="0.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="393.83" y="2047.5" ></text>
</g>
<g >
<title>epoll_wait (509,204,568 samples, 0.09%)</title><rect x="17.7" y="2053" width="1.0" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="20.66" y="2063.5" ></text>
</g>
<g >
<title>__blk_mq_sched_dispatch_requests (56,195,609 samples, 0.01%)</title><rect x="10.9" y="1909" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="13.90" y="1919.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (429,484,558 samples, 0.07%)</title><rect x="791.5" y="2037" width="0.9" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="794.54" y="2047.5" ></text>
</g>
<g >
<title>native_write_msr (949,678,327 samples, 0.16%)</title><rect x="348.2" y="1797" width="1.9" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="351.23" y="1807.5" ></text>
</g>
<g >
<title>TransactionBlockStatusCode (86,146,920 samples, 0.01%)</title><rect x="519.8" y="2021" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="522.76" y="2031.5" ></text>
</g>
<g >
<title>__rcu_read_lock (272,127,624 samples, 0.05%)</title><rect x="32.3" y="1845" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="35.26" y="1855.5" ></text>
</g>
<g >
<title>message_level_is_interesting (227,049,398 samples, 0.04%)</title><rect x="1114.9" y="2053" width="0.4" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="1117.90" y="2063.5" ></text>
</g>
<g >
<title>relation_excluded_by_constraints (224,704,073 samples, 0.04%)</title><rect x="917.3" y="2037" width="0.5" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="920.33" y="2047.5" ></text>
</g>
<g >
<title>contain_volatile_functions_walker (115,518,710 samples, 0.02%)</title><rect x="968.2" y="2053" width="0.3" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="971.23" y="2063.5" ></text>
</g>
<g >
<title>do_idle (7,104,789,494 samples, 1.19%)</title><rect x="1174.2" y="2005" width="14.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1177.24" y="2015.5" ></text>
</g>
<g >
<title>pgwt_get_or_create_event (322,220,223 samples, 0.05%)</title><rect x="12.7" y="2037" width="0.6" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="15.66" y="2047.5" ></text>
</g>
<g >
<title>reweight_entity (145,445,118 samples, 0.02%)</title><rect x="550.9" y="1637" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="553.86" y="1647.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (55,308,989 samples, 0.01%)</title><rect x="534.1" y="1717" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="537.11" y="1727.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (56,085,979 samples, 0.01%)</title><rect x="1137.9" y="1845" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="1140.89" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (9,280,592,976 samples, 1.55%)</title><rect x="561.5" y="149" width="18.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="564.50" y="159.5" ></text>
</g>
<g >
<title>AtEOXact_on_commit_actions (115,710,306 samples, 0.02%)</title><rect x="248.8" y="2053" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="251.78" y="2063.5" ></text>
</g>
<g >
<title>__x64_sys_epoll_wait (20,758,040,668 samples, 3.47%)</title><rect x="988.9" y="1989" width="41.0" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="991.87" y="1999.5" >__x..</text>
</g>
<g >
<title>get_relids_in_jointree (56,025,853 samples, 0.01%)</title><rect x="811.4" y="2037" width="0.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="814.44" y="2047.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (115,671,261 samples, 0.02%)</title><rect x="661.5" y="1861" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="664.52" y="1871.5" ></text>
</g>
<g >
<title>pg_checksum_page (367,352,804 samples, 0.06%)</title><rect x="873.7" y="2037" width="0.7" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="876.71" y="2047.5" ></text>
</g>
<g >
<title>page_counter_cancel (114,854,087 samples, 0.02%)</title><rect x="685.8" y="1765" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="688.81" y="1775.5" ></text>
</g>
<g >
<title>RegisterSnapshot (53,976,567 samples, 0.01%)</title><rect x="311.6" y="2053" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="314.57" y="2063.5" ></text>
</g>
<g >
<title>update_load_avg (85,808,878 samples, 0.01%)</title><rect x="551.2" y="1653" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="554.15" y="1663.5" ></text>
</g>
<g >
<title>check_preempt_wakeup_fair (58,275,440 samples, 0.01%)</title><rect x="701.8" y="1813" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="704.82" y="1823.5" ></text>
</g>
<g >
<title>__memcg_slab_post_alloc_hook (571,343,522 samples, 0.10%)</title><rect x="673.9" y="1845" width="1.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="676.86" y="1855.5" ></text>
</g>
<g >
<title>handle_irq_event (60,230,603 samples, 0.01%)</title><rect x="1185.5" y="1909" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="1188.50" y="1919.5" ></text>
</g>
<g >
<title>pv_native_set_debugreg (51,651,580 samples, 0.01%)</title><rect x="343.6" y="1829" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="346.64" y="1839.5" ></text>
</g>
<g >
<title>_bt_getrootheight (57,970,584 samples, 0.01%)</title><rect x="954.5" y="2053" width="0.1" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="957.45" y="2063.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (54,797,211 samples, 0.01%)</title><rect x="1105.2" y="1765" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="1108.20" y="1775.5" ></text>
</g>
<g >
<title>submit_bio_wait (815,558,628 samples, 0.14%)</title><rect x="1037.5" y="1941" width="1.6" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="1040.53" y="1951.5" ></text>
</g>
<g >
<title>prepare_task_switch (120,512,882 samples, 0.02%)</title><rect x="897.9" y="1941" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="900.89" y="1951.5" ></text>
</g>
<g >
<title>schedule (58,277,250 samples, 0.01%)</title><rect x="624.2" y="1941" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="627.17" y="1951.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (84,900,242 samples, 0.01%)</title><rect x="1144.0" y="1941" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="1146.98" y="1951.5" ></text>
</g>
<g >
<title>heap_prepare_insert (55,966,334 samples, 0.01%)</title><rect x="1093.6" y="2053" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1096.60" y="2063.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (50,894,112 samples, 0.01%)</title><rect x="449.7" y="1973" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="452.70" y="1983.5" ></text>
</g>
<g >
<title>kthread (85,966,490 samples, 0.01%)</title><rect x="10.9" y="2021" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="13.90" y="2031.5" ></text>
</g>
<g >
<title>bpf_ktime_get_ns (86,862,173 samples, 0.01%)</title><rect x="345.5" y="1877" width="0.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="348.51" y="1887.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (253,354,429 samples, 0.04%)</title><rect x="471.5" y="1989" width="0.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="474.47" y="1999.5" ></text>
</g>
<g >
<title>__switch_to (55,794,681 samples, 0.01%)</title><rect x="647.5" y="1941" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="650.54" y="1951.5" ></text>
</g>
<g >
<title>scsi_complete (57,766,097 samples, 0.01%)</title><rect x="1188.5" y="1669" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="1191.55" y="1679.5" ></text>
</g>
<g >
<title>AtEOXact_Snapshot (52,208,968 samples, 0.01%)</title><rect x="248.6" y="2053" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="251.58" y="2063.5" ></text>
</g>
<g >
<title>filemap_map_pages (1,879,214,210 samples, 0.31%)</title><rect x="735.8" y="1893" width="3.7" height="15.0" fill="rgb(229,112,27)" rx="2" ry="2" />
<text x="738.79" y="1903.5" ></text>
</g>
<g >
<title>__fdget (61,839,816 samples, 0.01%)</title><rect x="112.2" y="1909" width="0.2" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="115.23" y="1919.5" ></text>
</g>
<g >
<title>event_sched_out (51,292,816 samples, 0.01%)</title><rect x="449.8" y="1829" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="452.80" y="1839.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (115,704,222 samples, 0.02%)</title><rect x="652.4" y="1861" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="655.41" y="1871.5" ></text>
</g>
<g >
<title>blk_mq_run_hw_queues (89,078,928 samples, 0.01%)</title><rect x="11.4" y="1957" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="14.36" y="1967.5" ></text>
</g>
<g >
<title>dequeue_task_fair (3,037,029,918 samples, 0.51%)</title><rect x="74.9" y="1797" width="6.0" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="77.86" y="1807.5" ></text>
</g>
<g >
<title>heapam_estimate_rel_size (223,731,067 samples, 0.04%)</title><rect x="1096.1" y="2053" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1099.05" y="2063.5" ></text>
</g>
<g >
<title>ProcLockWakeup (87,003,263 samples, 0.01%)</title><rect x="452.9" y="2037" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="455.93" y="2047.5" ></text>
</g>
<g >
<title>list_concat (55,539,637 samples, 0.01%)</title><rect x="1106.9" y="2053" width="0.1" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="1109.87" y="2063.5" ></text>
</g>
<g >
<title>enqueue_task_fair (109,973,956 samples, 0.02%)</title><rect x="720.9" y="1813" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="723.90" y="1823.5" ></text>
</g>
<g >
<title>pick_next_entity (194,852,702 samples, 0.03%)</title><rect x="33.4" y="1829" width="0.4" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="36.37" y="1839.5" ></text>
</g>
<g >
<title>__rcu_read_lock (55,698,461 samples, 0.01%)</title><rect x="72.9" y="1877" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="75.92" y="1887.5" ></text>
</g>
<g >
<title>prepare_task_switch (684,520,546 samples, 0.11%)</title><rect x="555.6" y="1685" width="1.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="558.65" y="1695.5" ></text>
</g>
<g >
<title>scheduler_tick (55,840,878 samples, 0.01%)</title><rect x="794.9" y="1893" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="797.91" y="1903.5" ></text>
</g>
<g >
<title>pull_varnos_walker (314,887,937 samples, 0.05%)</title><rect x="887.1" y="2037" width="0.6" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="890.12" y="2047.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (56,597,243 samples, 0.01%)</title><rect x="1058.0" y="2021" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="1061.05" y="2031.5" ></text>
</g>
<g >
<title>merge_sched_in (1,291,810,808 samples, 0.22%)</title><rect x="1009.9" y="1797" width="2.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1012.87" y="1807.5" ></text>
</g>
<g >
<title>list_concat (120,377,622 samples, 0.02%)</title><rect x="842.6" y="2037" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="845.56" y="2047.5" ></text>
</g>
<g >
<title>update_cfs_group (851,730,757 samples, 0.14%)</title><rect x="711.1" y="1781" width="1.7" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="714.11" y="1791.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (22,605,522,637 samples, 3.78%)</title><rect x="59.7" y="1973" width="44.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="62.68" y="1983.5" >entr..</text>
</g>
<g >
<title>ProcessClientWriteInterrupt (172,993,418 samples, 0.03%)</title><rect x="453.4" y="2037" width="0.4" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="456.44" y="2047.5" ></text>
</g>
<g >
<title>__remove_hrtimer (167,806,135 samples, 0.03%)</title><rect x="1185.7" y="1925" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1188.72" y="1935.5" ></text>
</g>
<g >
<title>__kmalloc_node_track_caller (1,175,893,938 samples, 0.20%)</title><rect x="673.0" y="1861" width="2.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="676.02" y="1871.5" ></text>
</g>
<g >
<title>__x64_sys_epoll_wait (165,004,776 samples, 0.03%)</title><rect x="18.1" y="1989" width="0.3" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="21.12" y="1999.5" ></text>
</g>
<g >
<title>AllocSetFree (1,339,076,281 samples, 0.22%)</title><rect x="383.6" y="2037" width="2.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="386.63" y="2047.5" ></text>
</g>
<g >
<title>exec_simple_query (710,591,946 samples, 0.12%)</title><rect x="793.6" y="2037" width="1.4" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="796.62" y="2047.5" ></text>
</g>
<g >
<title>blk_mq_sched_dispatch_requests (60,695,191 samples, 0.01%)</title><rect x="11.4" y="1925" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="14.41" y="1935.5" ></text>
</g>
<g >
<title>do_epoll_wait (20,641,005,151 samples, 3.45%)</title><rect x="989.1" y="1973" width="40.8" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="992.10" y="1983.5" >do_..</text>
</g>
<g >
<title>transformTargetList (180,127,739 samples, 0.03%)</title><rect x="937.8" y="2037" width="0.3" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="940.78" y="2047.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (52,005,258 samples, 0.01%)</title><rect x="514.3" y="2021" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="517.27" y="2031.5" ></text>
</g>
<g >
<title>select_task_rq_fair (170,753,097 samples, 0.03%)</title><rect x="481.5" y="1717" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="484.52" y="1727.5" ></text>
</g>
<g >
<title>dequeue_signal (276,110,725 samples, 0.05%)</title><rect x="1137.6" y="1909" width="0.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1140.56" y="1919.5" ></text>
</g>
<g >
<title>__wake_up (239,397,802 samples, 0.04%)</title><rect x="279.7" y="1925" width="0.5" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="282.70" y="1935.5" ></text>
</g>
<g >
<title>ExecResetTupleTable (199,508,018 samples, 0.03%)</title><rect x="260.4" y="2053" width="0.4" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="263.36" y="2063.5" ></text>
</g>
<g >
<title>memset_orig (432,776,684 samples, 0.07%)</title><rect x="675.7" y="1861" width="0.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="678.67" y="1871.5" ></text>
</g>
<g >
<title>io_schedule_timeout (192,902,131 samples, 0.03%)</title><rect x="1038.8" y="1909" width="0.3" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1041.76" y="1919.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (115,671,261 samples, 0.02%)</title><rect x="661.5" y="1893" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="664.52" y="1903.5" ></text>
</g>
<g >
<title>ExecInsert (55,835,748 samples, 0.01%)</title><rect x="410.7" y="2037" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="413.68" y="2047.5" ></text>
</g>
<g >
<title>__sigqueue_alloc (332,133,930 samples, 0.06%)</title><rect x="1101.3" y="1893" width="0.6" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1104.26" y="1903.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (85,152,331 samples, 0.01%)</title><rect x="153.1" y="1813" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="156.13" y="1823.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (86,040,697 samples, 0.01%)</title><rect x="1151.0" y="1829" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="1153.95" y="1839.5" ></text>
</g>
<g >
<title>AtEOXact_PgStat_Relations (396,952,452 samples, 0.07%)</title><rect x="388.7" y="2037" width="0.8" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="391.75" y="2047.5" ></text>
</g>
<g >
<title>refill_obj_stock (1,845,603,285 samples, 0.31%)</title><rect x="123.5" y="1813" width="3.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="126.52" y="1823.5" ></text>
</g>
<g >
<title>ep_send_events (58,572,475 samples, 0.01%)</title><rect x="1029.6" y="1957" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="1032.62" y="1967.5" ></text>
</g>
<g >
<title>__pmu_ctx_sched_out (1,390,526,563 samples, 0.23%)</title><rect x="657.7" y="1877" width="2.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="660.71" y="1887.5" ></text>
</g>
<g >
<title>try_charge_memcg (57,808,567 samples, 0.01%)</title><rect x="1101.7" y="1845" width="0.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1104.74" y="1855.5" ></text>
</g>
<g >
<title>update_load_avg (57,760,830 samples, 0.01%)</title><rect x="555.5" y="1637" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="558.48" y="1647.5" ></text>
</g>
<g >
<title>XLogInsertRecord (803,138,152 samples, 0.13%)</title><rect x="364.5" y="2053" width="1.6" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="367.47" y="2063.5" ></text>
</g>
<g >
<title>SearchSysCache1 (383,368,450 samples, 0.06%)</title><rect x="329.6" y="2053" width="0.7" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="332.56" y="2063.5" ></text>
</g>
<g >
<title>perf_swevent_event (2,947,969,773 samples, 0.49%)</title><rect x="344.7" y="1941" width="5.8" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="347.68" y="1951.5" ></text>
</g>
<g >
<title>core_yylex (4,973,874,708 samples, 0.83%)</title><rect x="581.1" y="2005" width="9.8" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="584.12" y="2015.5" ></text>
</g>
<g >
<title>irq_work_single (2,016,910,636 samples, 0.34%)</title><rect x="534.5" y="1797" width="4.0" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="537.50" y="1807.5" ></text>
</g>
<g >
<title>internal_get_user_pages_fast (368,816,298 samples, 0.06%)</title><rect x="1145.4" y="1909" width="0.8" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="1148.44" y="1919.5" ></text>
</g>
<g >
<title>processXactStats (108,784,836 samples, 0.02%)</title><rect x="188.9" y="2037" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="191.90" y="2047.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (1,325,422,125 samples, 0.22%)</title><rect x="192.4" y="1893" width="2.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="195.42" y="1903.5" ></text>
</g>
<g >
<title>irq_work_run (2,734,206,654 samples, 0.46%)</title><rect x="480.2" y="1973" width="5.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="483.25" y="1983.5" ></text>
</g>
<g >
<title>ret_from_fork_asm (59,379,595 samples, 0.01%)</title><rect x="10.8" y="2053" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="13.79" y="2063.5" ></text>
</g>
<g >
<title>update_load_avg (201,485,135 samples, 0.03%)</title><rect x="656.1" y="1893" width="0.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="659.09" y="1903.5" ></text>
</g>
<g >
<title>pq_startmsgread (232,091,873 samples, 0.04%)</title><rect x="640.5" y="2021" width="0.4" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="643.45" y="2031.5" ></text>
</g>
<g >
<title>LZ4_compress_fast (110,640,379 samples, 0.02%)</title><rect x="12.3" y="2021" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="15.33" y="2031.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesVacuumHorizon (1,293,820,579 samples, 0.22%)</title><rect x="273.3" y="2053" width="2.6" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="276.31" y="2063.5" ></text>
</g>
<g >
<title>AtCCI_RelationMap (227,167,788 samples, 0.04%)</title><rect x="243.0" y="2053" width="0.4" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="245.97" y="2063.5" ></text>
</g>
<g >
<title>__x64_sys_sync_file_range (369,092,309 samples, 0.06%)</title><rect x="1166.1" y="1989" width="0.7" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="1169.11" y="1999.5" ></text>
</g>
<g >
<title>futex_wake_mark (142,364,623 samples, 0.02%)</title><rect x="1145.0" y="1941" width="0.3" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="1148.04" y="1951.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (113,216,735 samples, 0.02%)</title><rect x="912.1" y="1861" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="915.07" y="1871.5" ></text>
</g>
<g >
<title>prepare_task_switch (55,653,767 samples, 0.01%)</title><rect x="1093.4" y="1941" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1096.37" y="1951.5" ></text>
</g>
<g >
<title>arch_cpu_idle_exit (55,560,610 samples, 0.01%)</title><rect x="1174.1" y="2005" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1177.13" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="709" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="719.5" ></text>
</g>
<g >
<title>pqParseInput3 (991,309,975 samples, 0.17%)</title><rect x="160.1" y="2037" width="2.0" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="163.13" y="2047.5" ></text>
</g>
<g >
<title>LWLockRelease (1,140,415,523 samples, 0.19%)</title><rect x="289.3" y="2053" width="2.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="292.27" y="2063.5" ></text>
</g>
<g >
<title>finish_fault (312,346,813 samples, 0.05%)</title><rect x="498.9" y="1893" width="0.7" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="501.94" y="1903.5" ></text>
</g>
<g >
<title>blk_mq_flush_plug_list (440,288,827 samples, 0.07%)</title><rect x="1040.1" y="1829" width="0.8" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="1043.07" y="1839.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (350,974,612 samples, 0.06%)</title><rect x="135.5" y="1733" width="0.7" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="138.50" y="1743.5" ></text>
</g>
<g >
<title>list_delete_nth_cell (57,358,473 samples, 0.01%)</title><rect x="843.1" y="2037" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="846.13" y="2047.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (83,039,457 samples, 0.01%)</title><rect x="1149.3" y="1861" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1152.34" y="1871.5" ></text>
</g>
<g >
<title>ExecInitNode (497,219,318 samples, 0.08%)</title><rect x="259.2" y="2053" width="1.0" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="262.22" y="2063.5" ></text>
</g>
<g >
<title>_copy_from_user (136,619,876 samples, 0.02%)</title><rect x="67.6" y="1893" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="70.63" y="1903.5" ></text>
</g>
<g >
<title>PreCommit_CheckForSerializationFailure (53,633,930 samples, 0.01%)</title><rect x="306.3" y="2053" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="309.27" y="2063.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (176,812,184 samples, 0.03%)</title><rect x="353.6" y="1717" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="356.59" y="1727.5" ></text>
</g>
<g >
<title>bms_is_subset (51,104,761 samples, 0.01%)</title><rect x="616.4" y="2021" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="619.35" y="2031.5" ></text>
</g>
<g >
<title>get_attavgwidth (267,469,535 samples, 0.04%)</title><rect x="1048.1" y="2053" width="0.6" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="1051.14" y="2063.5" ></text>
</g>
<g >
<title>heapam_tuple_lock (150,073,306 samples, 0.03%)</title><rect x="1096.6" y="2053" width="0.3" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="1099.56" y="2063.5" ></text>
</g>
<g >
<title>irqentry_exit (52,300,299 samples, 0.01%)</title><rect x="329.5" y="2005" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="332.45" y="2015.5" ></text>
</g>
<g >
<title>psi_group_change (230,231,359 samples, 0.04%)</title><rect x="1104.4" y="1717" width="0.5" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="1107.42" y="1727.5" ></text>
</g>
<g >
<title>bpf_overflow_handler (2,947,969,773 samples, 0.49%)</title><rect x="344.7" y="1909" width="5.8" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="347.68" y="1919.5" ></text>
</g>
<g >
<title>event_sched_in (57,757,274 samples, 0.01%)</title><rect x="648.5" y="1861" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="651.50" y="1871.5" ></text>
</g>
<g >
<title>__do_softirq (53,159,104 samples, 0.01%)</title><rect x="1183.8" y="1941" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1186.83" y="1951.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (81,031,526 samples, 0.01%)</title><rect x="667.8" y="1925" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="670.79" y="1935.5" ></text>
</g>
<g >
<title>mpage_process_page_bufs (621,441,964 samples, 0.10%)</title><rect x="1041.8" y="1845" width="1.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1044.85" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1205" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1215.5" ></text>
</g>
<g >
<title>tick_sched_handle (88,746,833 samples, 0.01%)</title><rect x="1015.7" y="1765" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1018.67" y="1775.5" ></text>
</g>
<g >
<title>min_vruntime_cb_rotate (56,378,057 samples, 0.01%)</title><rect x="143.2" y="1669" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="146.22" y="1679.5" ></text>
</g>
<g >
<title>__x64_sys_epoll_wait (55,536,262 samples, 0.01%)</title><rect x="983.6" y="2005" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="986.58" y="2015.5" ></text>
</g>
<g >
<title>x64_sys_call (33,140,513,491 samples, 5.54%)</title><rect x="662.9" y="1989" width="65.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="665.87" y="1999.5" >x64_sys..</text>
</g>
<g >
<title>blk_mq_dispatch_rq_list (144,329,100 samples, 0.02%)</title><rect x="11.9" y="1893" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="14.85" y="1903.5" ></text>
</g>
<g >
<title>ExtendCommitTs (200,158,305 samples, 0.03%)</title><rect x="261.6" y="2053" width="0.4" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="264.60" y="2063.5" ></text>
</g>
<g >
<title>ensure_tabstat_xact_level (332,100,811 samples, 0.06%)</title><rect x="975.1" y="2053" width="0.6" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="978.06" y="2063.5" ></text>
</g>
<g >
<title>[libc.so.6] (10,271,517,449 samples, 1.72%)</title><rect x="540.4" y="1861" width="20.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="543.39" y="1871.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (54,862,766 samples, 0.01%)</title><rect x="1146.8" y="1829" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1149.77" y="1839.5" ></text>
</g>
<g >
<title>kthread (84,443,636 samples, 0.01%)</title><rect x="10.5" y="2021" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="13.51" y="2031.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (58,338,954 samples, 0.01%)</title><rect x="830.7" y="2021" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="833.69" y="2031.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (378,892,848 samples, 0.06%)</title><rect x="1036.1" y="2053" width="0.8" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="1039.11" y="2063.5" ></text>
</g>
<g >
<title>build_index_paths (227,118,810 samples, 0.04%)</title><rect x="771.2" y="2037" width="0.4" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="774.18" y="2047.5" ></text>
</g>
<g >
<title>schedule (74,367,482 samples, 0.01%)</title><rect x="265.9" y="1973" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="268.91" y="1983.5" ></text>
</g>
<g >
<title>tbm_calculate_entries (55,807,311 samples, 0.01%)</title><rect x="642.5" y="2021" width="0.1" height="15.0" fill="rgb(241,170,40)" rx="2" ry="2" />
<text x="645.49" y="2031.5" ></text>
</g>
<g >
<title>update_curr (52,968,631 samples, 0.01%)</title><rect x="30.3" y="1797" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="33.34" y="1807.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (18,327,049,660 samples, 3.07%)</title><rect x="690.9" y="1909" width="36.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="693.88" y="1919.5" >__w..</text>
</g>
<g >
<title>kmem_cache_alloc_node (5,348,251,940 samples, 0.89%)</title><rect x="120.1" y="1845" width="10.6" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="123.13" y="1855.5" ></text>
</g>
<g >
<title>schedule_timeout (192,902,131 samples, 0.03%)</title><rect x="1038.8" y="1893" width="0.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="1041.76" y="1903.5" ></text>
</g>
<g >
<title>__perf_event_overflow (171,073,014 samples, 0.03%)</title><rect x="279.1" y="1925" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="282.08" y="1935.5" ></text>
</g>
<g >
<title>update_rq_clock (579,640,261 samples, 0.10%)</title><rect x="725.4" y="1829" width="1.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="728.36" y="1839.5" ></text>
</g>
<g >
<title>do_futex (136,205,934 samples, 0.02%)</title><rect x="560.4" y="1797" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="563.39" y="1807.5" ></text>
</g>
<g >
<title>cfree (730,506,546 samples, 0.12%)</title><rect x="834.6" y="2021" width="1.4" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="837.56" y="2031.5" ></text>
</g>
<g >
<title>_raw_spin_lock (454,347,066 samples, 0.08%)</title><rect x="1014.6" y="1861" width="0.9" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1017.56" y="1871.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (56,097,330 samples, 0.01%)</title><rect x="707.0" y="1765" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="710.03" y="1775.5" ></text>
</g>
<g >
<title>irq_enter_rcu (242,720,856 samples, 0.04%)</title><rect x="1179.5" y="1893" width="0.5" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="1182.51" y="1903.5" ></text>
</g>
<g >
<title>arch_irq_work_raise (393,231,584 samples, 0.07%)</title><rect x="476.8" y="1813" width="0.7" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="479.76" y="1823.5" ></text>
</g>
<g >
<title>_bt_next (113,676,187 samples, 0.02%)</title><rect x="749.9" y="2037" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="752.87" y="2047.5" ></text>
</g>
<g >
<title>__fdget (405,048,709 samples, 0.07%)</title><rect x="989.7" y="1957" width="0.8" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="992.67" y="1967.5" ></text>
</g>
<g >
<title>skb_release_data (2,434,867,932 samples, 0.41%)</title><rect x="904.4" y="1877" width="4.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="907.37" y="1887.5" ></text>
</g>
<g >
<title>file_modified (534,859,198 samples, 0.09%)</title><rect x="944.0" y="1925" width="1.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="947.03" y="1935.5" ></text>
</g>
<g >
<title>virtqueue_add_split (55,591,049 samples, 0.01%)</title><rect x="12.0" y="1781" width="0.1" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text x="14.96" y="1791.5" ></text>
</g>
<g >
<title>__kmalloc_node_track_caller (901,520,739 samples, 0.15%)</title><rect x="117.5" y="1829" width="1.8" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="120.52" y="1839.5" ></text>
</g>
<g >
<title>wakeup_preempt (224,992,715 samples, 0.04%)</title><rect x="1153.9" y="1893" width="0.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="1156.90" y="1903.5" ></text>
</g>
<g >
<title>malloc (144,932,735 samples, 0.02%)</title><rect x="158.1" y="2005" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="161.12" y="2015.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (55,641,772 samples, 0.01%)</title><rect x="1185.3" y="1941" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1188.27" y="1951.5" ></text>
</g>
<g >
<title>select_task_rq_fair (1,121,114,516 samples, 0.19%)</title><rect x="137.4" y="1733" width="2.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="140.43" y="1743.5" ></text>
</g>
<g >
<title>schedule_debug.isra.0 (97,331,648 samples, 0.02%)</title><rect x="90.8" y="1813" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="93.82" y="1823.5" ></text>
</g>
<g >
<title>default_wake_function (90,285,377 samples, 0.02%)</title><rect x="1099.1" y="1781" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1102.10" y="1791.5" ></text>
</g>
<g >
<title>restriction_selectivity (114,115,130 samples, 0.02%)</title><rect x="1141.1" y="2053" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="1144.06" y="2063.5" ></text>
</g>
<g >
<title>clause_selectivity_ext (402,393,602 samples, 0.07%)</title><rect x="965.7" y="2053" width="0.8" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="968.67" y="2063.5" ></text>
</g>
<g >
<title>group_sched_out (111,294,362 samples, 0.02%)</title><rect x="344.1" y="1877" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="347.08" y="1887.5" ></text>
</g>
<g >
<title>setTargetTable (367,863,090 samples, 0.06%)</title><rect x="1155.6" y="2053" width="0.8" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="1158.65" y="2063.5" ></text>
</g>
<g >
<title>PostgresMain (1,664,667,311 samples, 0.28%)</title><rect x="508.1" y="2021" width="3.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="511.15" y="2031.5" ></text>
</g>
<g >
<title>try_to_wake_up (4,406,687,762 samples, 0.74%)</title><rect x="1146.3" y="1925" width="8.7" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="1149.34" y="1935.5" ></text>
</g>
<g >
<title>get_page_from_freelist (88,208,428 samples, 0.01%)</title><rect x="1092.6" y="1845" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1095.59" y="1855.5" ></text>
</g>
<g >
<title>core_yy_scan_buffer (282,540,319 samples, 0.05%)</title><rect x="968.9" y="2053" width="0.6" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="971.90" y="2063.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (55,099,891 samples, 0.01%)</title><rect x="32.8" y="1781" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="35.80" y="1791.5" ></text>
</g>
<g >
<title>eval_const_expressions (84,410,151 samples, 0.01%)</title><rect x="1031.6" y="2053" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="1034.60" y="2063.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (57,098,518 samples, 0.01%)</title><rect x="505.2" y="1973" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="508.17" y="1983.5" ></text>
</g>
<g >
<title>perf_event_groups_next (56,575,288 samples, 0.01%)</title><rect x="651.0" y="1861" width="0.1" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="653.97" y="1871.5" ></text>
</g>
<g >
<title>index_can_return (206,034,661 samples, 0.03%)</title><rect x="1096.9" y="2053" width="0.4" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="1099.86" y="2063.5" ></text>
</g>
<g >
<title>__wake_up_common (239,397,802 samples, 0.04%)</title><rect x="279.7" y="1813" width="0.5" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="282.70" y="1823.5" ></text>
</g>
<g >
<title>select_task_rq_fair (165,050,864 samples, 0.03%)</title><rect x="535.3" y="1573" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="538.31" y="1583.5" ></text>
</g>
<g >
<title>__ep_eventpoll_poll.isra.0 (57,502,907 samples, 0.01%)</title><rect x="23.6" y="1909" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="26.57" y="1919.5" ></text>
</g>
<g >
<title>ctx_sched_out (1,399,817,444 samples, 0.23%)</title><rect x="1021.7" y="1829" width="2.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1024.74" y="1839.5" ></text>
</g>
<g >
<title>__wake_up (54,158,423 samples, 0.01%)</title><rect x="367.7" y="1829" width="0.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="370.69" y="1839.5" ></text>
</g>
<g >
<title>pick_next_task (55,214,375 samples, 0.01%)</title><rect x="523.9" y="1909" width="0.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="526.92" y="1919.5" ></text>
</g>
<g >
<title>threadRun (3,465,862,492 samples, 0.58%)</title><rect x="190.0" y="2037" width="6.9" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="193.04" y="2047.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (145,055,786 samples, 0.02%)</title><rect x="481.0" y="1717" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="484.01" y="1727.5" ></text>
</g>
<g >
<title>__x64_sys_recvfrom (113,402,441 samples, 0.02%)</title><rect x="165.1" y="1973" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="168.09" y="1983.5" ></text>
</g>
<g >
<title>scheduler_tick (140,628,802 samples, 0.02%)</title><rect x="479.5" y="1893" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="482.47" y="1903.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (319,543,605 samples, 0.05%)</title><rect x="352.0" y="2037" width="0.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="355.03" y="2047.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (194,298,806 samples, 0.03%)</title><rect x="615.8" y="2005" width="0.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="618.80" y="2015.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (53,911,540 samples, 0.01%)</title><rect x="407.6" y="2005" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="410.59" y="2015.5" ></text>
</g>
<g >
<title>x64_sys_call (7,075,918,655 samples, 1.18%)</title><rect x="546.7" y="1813" width="14.0" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="549.69" y="1823.5" ></text>
</g>
<g >
<title>lookup_nulls_elem_raw (223,708,446 samples, 0.04%)</title><rect x="345.0" y="1861" width="0.5" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="348.01" y="1871.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (54,220,547 samples, 0.01%)</title><rect x="1078.5" y="1957" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="1081.53" y="1967.5" ></text>
</g>
<g >
<title>drain_stock (119,956,337 samples, 0.02%)</title><rect x="686.4" y="1781" width="0.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="689.42" y="1791.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (79,265,418 samples, 0.01%)</title><rect x="523.9" y="2005" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="526.92" y="2015.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (192,157,704 samples, 0.03%)</title><rect x="871.2" y="2005" width="0.4" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="874.25" y="2015.5" ></text>
</g>
<g >
<title>__schedule (139,155,661 samples, 0.02%)</title><rect x="590.7" y="1909" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="593.67" y="1919.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (54,042,616 samples, 0.01%)</title><rect x="543.9" y="1845" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="546.93" y="1855.5" ></text>
</g>
<g >
<title>futex_wait_queue (61,624,818 samples, 0.01%)</title><rect x="560.3" y="1749" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="563.27" y="1759.5" ></text>
</g>
<g >
<title>psi_task_change (230,231,359 samples, 0.04%)</title><rect x="1104.4" y="1733" width="0.5" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="1107.42" y="1743.5" ></text>
</g>
<g >
<title>blk_mq_requeue_work (56,515,670 samples, 0.01%)</title><rect x="10.7" y="1973" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="13.68" y="1983.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (117,605,230 samples, 0.02%)</title><rect x="534.9" y="1589" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="537.90" y="1599.5" ></text>
</g>
<g >
<title>_bt_first (86,383,945 samples, 0.01%)</title><rect x="954.2" y="2053" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="957.23" y="2063.5" ></text>
</g>
<g >
<title>FunctionCall4Coll (57,955,036 samples, 0.01%)</title><rect x="421.5" y="2037" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="424.50" y="2047.5" ></text>
</g>
<g >
<title>is_publishable_relation (178,107,973 samples, 0.03%)</title><rect x="1098.3" y="2053" width="0.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1101.34" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="549" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="559.5" ></text>
</g>
<g >
<title>pull_varattnos_walker (81,650,722 samples, 0.01%)</title><rect x="886.7" y="2037" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="889.73" y="2047.5" ></text>
</g>
<g >
<title>migrate_task_rq_fair (136,009,318 samples, 0.02%)</title><rect x="1149.2" y="1893" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="1152.24" y="1903.5" ></text>
</g>
<g >
<title>simplify_function (432,995,244 samples, 0.07%)</title><rect x="1159.3" y="2053" width="0.9" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="1162.30" y="2063.5" ></text>
</g>
<g >
<title>mod_delayed_work_on (171,138,878 samples, 0.03%)</title><rect x="1037.9" y="1781" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1040.87" y="1791.5" ></text>
</g>
<g >
<title>__sysvec_irq_work (90,285,377 samples, 0.02%)</title><rect x="1099.1" y="2005" width="0.2" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="1102.10" y="2015.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (147,530,759 samples, 0.02%)</title><rect x="1015.6" y="1845" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1018.62" y="1855.5" ></text>
</g>
<g >
<title>_bt_first (369,176,734 samples, 0.06%)</title><rect x="596.3" y="2021" width="0.8" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="599.34" y="2031.5" ></text>
</g>
<g >
<title>unix_write_space (1,831,772,834 samples, 0.31%)</title><rect x="179.6" y="1813" width="3.6" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="182.57" y="1823.5" ></text>
</g>
<g >
<title>asm_sysvec_irq_work (366,290,211 samples, 0.06%)</title><rect x="265.3" y="2037" width="0.8" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="268.33" y="2047.5" ></text>
</g>
<g >
<title>irq_work_queue (150,705,923 samples, 0.03%)</title><rect x="1098.7" y="1861" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1101.75" y="1871.5" ></text>
</g>
<g >
<title>GetSnapshotData (170,888,976 samples, 0.03%)</title><rect x="504.6" y="2021" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="507.56" y="2031.5" ></text>
</g>
<g >
<title>irq_work_single (60,067,863 samples, 0.01%)</title><rect x="471.6" y="1893" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="474.64" y="1903.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (523,168,219 samples, 0.09%)</title><rect x="418.5" y="2037" width="1.0" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="421.46" y="2047.5" ></text>
</g>
<g >
<title>ep_item_poll.isra.0 (1,004,607,588 samples, 0.17%)</title><rect x="994.6" y="1925" width="2.0" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="997.63" y="1935.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (72,132,779 samples, 0.01%)</title><rect x="618.2" y="1957" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="621.21" y="1967.5" ></text>
</g>
<g >
<title>__x86_indirect_thunk_rax (61,201,865 samples, 0.01%)</title><rect x="663.8" y="1941" width="0.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="666.78" y="1951.5" ></text>
</g>
<g >
<title>index_other_operands_eval_cost (80,730,403 samples, 0.01%)</title><rect x="1097.6" y="2053" width="0.2" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text x="1100.61" y="2063.5" ></text>
</g>
<g >
<title>schedule (52,300,299 samples, 0.01%)</title><rect x="329.5" y="1973" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="332.45" y="1983.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (56,318,212 samples, 0.01%)</title><rect x="767.4" y="2021" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="770.45" y="2031.5" ></text>
</g>
<g >
<title>kmalloc_reserve (1,807,368,502 samples, 0.30%)</title><rect x="673.0" y="1877" width="3.6" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="676.02" y="1887.5" ></text>
</g>
<g >
<title>arch_irq_work_raise (949,678,327 samples, 0.16%)</title><rect x="348.2" y="1829" width="1.9" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="351.23" y="1839.5" ></text>
</g>
<g >
<title>update_load_avg (141,421,615 samples, 0.02%)</title><rect x="356.3" y="1701" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="359.27" y="1711.5" ></text>
</g>
<g >
<title>pv_native_set_debugreg (84,900,242 samples, 0.01%)</title><rect x="1144.0" y="1829" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="1146.98" y="1839.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (62,422,137 samples, 0.01%)</title><rect x="726.9" y="1813" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="729.88" y="1823.5" ></text>
</g>
<g >
<title>pick_eevdf (57,874,259 samples, 0.01%)</title><rect x="151.2" y="1701" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="154.20" y="1711.5" ></text>
</g>
<g >
<title>signalfd_dequeue (360,241,974 samples, 0.06%)</title><rect x="1137.4" y="1925" width="0.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1140.45" y="1935.5" ></text>
</g>
<g >
<title>max_parallel_hazard_walker (169,085,334 samples, 0.03%)</title><rect x="857.8" y="2037" width="0.3" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="860.76" y="2047.5" ></text>
</g>
<g >
<title>analyze_requires_snapshot (88,605,741 samples, 0.01%)</title><rect x="755.6" y="2037" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="758.58" y="2047.5" ></text>
</g>
<g >
<title>kfree_skbmem (1,099,793,262 samples, 0.18%)</title><rect x="172.0" y="1861" width="2.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="175.01" y="1871.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (171,726,476 samples, 0.03%)</title><rect x="539.0" y="1893" width="0.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="542.04" y="1903.5" ></text>
</g>
<g >
<title>do_syscall_64 (42,893,564,416 samples, 7.18%)</title><rect x="643.6" y="2005" width="84.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="646.62" y="2015.5" >do_syscal..</text>
</g>
<g >
<title>ExecInitFunc (86,124,473 samples, 0.01%)</title><rect x="408.8" y="2037" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="411.83" y="2047.5" ></text>
</g>
<g >
<title>asm_common_interrupt (57,766,097 samples, 0.01%)</title><rect x="1188.5" y="1861" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1191.55" y="1871.5" ></text>
</g>
<g >
<title>schedule (345,990,984 samples, 0.06%)</title><rect x="846.7" y="1973" width="0.6" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="849.67" y="1983.5" ></text>
</g>
<g >
<title>ttwu_do_activate (2,162,261,813 samples, 0.36%)</title><rect x="354.4" y="1749" width="4.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="357.44" y="1759.5" ></text>
</g>
<g >
<title>pg_any_to_server (56,216,785 samples, 0.01%)</title><rect x="1125.9" y="2053" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="1128.93" y="2063.5" ></text>
</g>
<g >
<title>makeVar (56,904,564 samples, 0.01%)</title><rect x="1110.3" y="2053" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="1113.28" y="2063.5" ></text>
</g>
<g >
<title>[libc.so.6] (717,094,793 samples, 0.12%)</title><rect x="46.1" y="2053" width="1.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="49.08" y="2063.5" ></text>
</g>
<g >
<title>btcanreturn (312,163,442 samples, 0.05%)</title><rect x="959.4" y="2053" width="0.6" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="962.43" y="2063.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (60,625,435 samples, 0.01%)</title><rect x="450.7" y="1973" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="453.73" y="1983.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (51,292,816 samples, 0.01%)</title><rect x="449.8" y="2005" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="452.80" y="2015.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (338,173,152 samples, 0.06%)</title><rect x="670.8" y="1909" width="0.7" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="673.79" y="1919.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (51,292,816 samples, 0.01%)</title><rect x="449.8" y="1909" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="452.80" y="1919.5" ></text>
</g>
<g >
<title>sysvec_call_function_single (426,894,709 samples, 0.07%)</title><rect x="1188.7" y="1845" width="0.8" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="1191.66" y="1855.5" ></text>
</g>
<g >
<title>base_yylex (116,592,477 samples, 0.02%)</title><rect x="757.0" y="2037" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="760.04" y="2047.5" ></text>
</g>
<g >
<title>BufferLockAcquire (55,836,941 samples, 0.01%)</title><rect x="389.6" y="2037" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="392.59" y="2047.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (142,464,600 samples, 0.02%)</title><rect x="423.2" y="2037" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="426.20" y="2047.5" ></text>
</g>
<g >
<title>rseq_ip_fixup (440,412,112 samples, 0.07%)</title><rect x="645.3" y="1957" width="0.9" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="648.28" y="1967.5" ></text>
</g>
<g >
<title>all (597,730,918,347 samples, 100%)</title><rect x="10.0" y="2085" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="2095.5" ></text>
</g>
<g >
<title>__update_load_avg_se (116,663,544 samples, 0.02%)</title><rect x="710.5" y="1749" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="713.54" y="1759.5" ></text>
</g>
<g >
<title>pv_native_set_debugreg (675,570,518 samples, 0.11%)</title><rect x="1022.8" y="1749" width="1.4" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="1025.84" y="1759.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge_pages (88,961,294 samples, 0.01%)</title><rect x="178.3" y="1765" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="181.27" y="1775.5" ></text>
</g>
<g >
<title>kworker/0:1H-kb (110,456,860 samples, 0.02%)</title><rect x="10.2" y="2069" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="13.18" y="2079.5" ></text>
</g>
<g >
<title>extract_restriction_or_clauses (201,915,638 samples, 0.03%)</title><rect x="802.9" y="2037" width="0.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="805.95" y="2047.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (684,520,546 samples, 0.11%)</title><rect x="555.6" y="1669" width="1.4" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="558.65" y="1679.5" ></text>
</g>
<g >
<title>QueryRewrite (115,825,682 samples, 0.02%)</title><rect x="454.6" y="2037" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="457.62" y="2047.5" ></text>
</g>
<g >
<title>standard_ExecutorStart (163,954,672 samples, 0.03%)</title><rect x="1163.6" y="2053" width="0.3" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="1166.56" y="2063.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (58,029,573 samples, 0.01%)</title><rect x="153.4" y="1877" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="156.41" y="1887.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (397,803,871 samples, 0.07%)</title><rect x="136.3" y="1749" width="0.7" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="139.25" y="1759.5" ></text>
</g>
<g >
<title>element_alloc (115,230,914 samples, 0.02%)</title><rect x="618.7" y="2021" width="0.2" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="621.68" y="2031.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (53,068,267 samples, 0.01%)</title><rect x="443.3" y="2021" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="446.30" y="2031.5" ></text>
</g>
<g >
<title>asm_exc_debug (2,697,545,018 samples, 0.45%)</title><rect x="977.7" y="2037" width="5.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="980.75" y="2047.5" ></text>
</g>
<g >
<title>ExecComputeSlotInfo.isra.0 (82,123,744 samples, 0.01%)</title><rect x="1171.7" y="2037" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="1174.72" y="2047.5" ></text>
</g>
<g >
<title>HeapTupleHeaderAdvanceConflictHorizon (59,027,273 samples, 0.01%)</title><rect x="273.1" y="2053" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="276.13" y="2063.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (56,270,981 samples, 0.01%)</title><rect x="725.3" y="1781" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="728.25" y="1791.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesVisibility (715,209,094 samples, 0.12%)</title><rect x="433.3" y="2037" width="1.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="436.25" y="2047.5" ></text>
</g>
<g >
<title>switch_mm_irqs_off (225,006,837 samples, 0.04%)</title><rect x="952.1" y="1957" width="0.4" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="955.05" y="1967.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (56,073,598 samples, 0.01%)</title><rect x="1100.2" y="1957" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1103.24" y="1967.5" ></text>
</g>
<g >
<title>__blk_mq_sched_dispatch_requests (60,695,191 samples, 0.01%)</title><rect x="11.4" y="1909" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="14.41" y="1919.5" ></text>
</g>
<g >
<title>mas_walk (114,145,839 samples, 0.02%)</title><rect x="1093.1" y="1973" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1096.09" y="1983.5" ></text>
</g>
<g >
<title>coerce_to_target_type (112,398,261 samples, 0.02%)</title><rect x="966.7" y="2053" width="0.3" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="969.74" y="2063.5" ></text>
</g>
<g >
<title>irq_work_run (56,686,249 samples, 0.01%)</title><rect x="527.5" y="1781" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="530.47" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="661" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="671.5" ></text>
</g>
<g >
<title>unix_write_space (53,817,384 samples, 0.01%)</title><rect x="911.3" y="1845" width="0.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="914.28" y="1855.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (57,423,164 samples, 0.01%)</title><rect x="1163.0" y="2037" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1166.01" y="2047.5" ></text>
</g>
<g >
<title>standard_planner (221,596,782 samples, 0.04%)</title><rect x="928.7" y="2037" width="0.5" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="931.74" y="2047.5" ></text>
</g>
<g >
<title>consume_obj_stock (58,954,960 samples, 0.01%)</title><rect x="119.2" y="1797" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="122.18" y="1807.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (80,149,402 samples, 0.01%)</title><rect x="1078.5" y="2021" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1081.53" y="2031.5" ></text>
</g>
<g >
<title>psi_group_change (827,681,556 samples, 0.14%)</title><rect x="34.7" y="1845" width="1.7" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="37.72" y="1855.5" ></text>
</g>
<g >
<title>apply_tlist_labeling (172,127,395 samples, 0.03%)</title><rect x="956.8" y="2053" width="0.3" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="959.77" y="2063.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (837,879,734 samples, 0.14%)</title><rect x="1136.5" y="2037" width="1.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1139.50" y="2047.5" ></text>
</g>
<g >
<title>__pte_offset_map (59,249,315 samples, 0.01%)</title><rect x="499.8" y="1909" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="502.79" y="1919.5" ></text>
</g>
<g >
<title>parser_init (247,758,879 samples, 0.04%)</title><rect x="594.9" y="2005" width="0.5" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="597.89" y="2015.5" ></text>
</g>
<g >
<title>__get_user_8 (359,428,212 samples, 0.06%)</title><rect x="645.4" y="1941" width="0.8" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="648.44" y="1951.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (60,083,337 samples, 0.01%)</title><rect x="846.5" y="1957" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="849.55" y="1967.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (58,115,313 samples, 0.01%)</title><rect x="558.2" y="1637" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="561.23" y="1647.5" ></text>
</g>
<g >
<title>can_coerce_type (88,500,351 samples, 0.01%)</title><rect x="962.3" y="2053" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="965.32" y="2063.5" ></text>
</g>
<g >
<title>arch_cpu_idle (82,930,569 samples, 0.01%)</title><rect x="1174.6" y="1973" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="1177.58" y="1983.5" ></text>
</g>
<g >
<title>select_idle_sibling (139,619,356 samples, 0.02%)</title><rect x="354.2" y="1717" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="357.16" y="1727.5" ></text>
</g>
<g >
<title>lapic_next_event (572,007,204 samples, 0.10%)</title><rect x="1182.0" y="1893" width="1.2" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="1185.03" y="1903.5" ></text>
</g>
<g >
<title>psi_group_change (81,959,771 samples, 0.01%)</title><rect x="1178.8" y="1781" width="0.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="1181.75" y="1791.5" ></text>
</g>
<g >
<title>scsi_dispatch_cmd (117,653,793 samples, 0.02%)</title><rect x="11.9" y="1861" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="14.90" y="1871.5" ></text>
</g>
<g >
<title>__schedule (56,318,212 samples, 0.01%)</title><rect x="767.4" y="1941" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="770.45" y="1951.5" ></text>
</g>
<g >
<title>__wake_up_common (60,067,863 samples, 0.01%)</title><rect x="471.6" y="1749" width="0.2" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="474.64" y="1759.5" ></text>
</g>
<g >
<title>ctx_groups_sched_in (2,316,325,828 samples, 0.39%)</title><rect x="1008.9" y="1829" width="4.6" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1011.92" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="581" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="591.5" ></text>
</g>
<g >
<title>signalfd_poll (59,813,856 samples, 0.01%)</title><rect x="995.5" y="1909" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="998.54" y="1919.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (119,207,167 samples, 0.02%)</title><rect x="710.3" y="1749" width="0.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="713.30" y="1759.5" ></text>
</g>
<g >
<title>heapam_index_fetch_begin (142,199,719 samples, 0.02%)</title><rect x="633.6" y="2021" width="0.2" height="15.0" fill="rgb(243,174,41)" rx="2" ry="2" />
<text x="636.56" y="2031.5" ></text>
</g>
<g >
<title>put_prev_entity (65,057,585 samples, 0.01%)</title><rect x="441.4" y="1893" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="444.38" y="1903.5" ></text>
</g>
<g >
<title>__build_skb_around (136,708,579 samples, 0.02%)</title><rect x="672.3" y="1877" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="675.28" y="1887.5" ></text>
</g>
<g >
<title>blk_mq_run_hw_queue (53,434,795 samples, 0.01%)</title><rect x="10.2" y="1941" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="13.18" y="1951.5" ></text>
</g>
<g >
<title>submit_bio_noacct (258,530,848 samples, 0.04%)</title><rect x="1041.1" y="1829" width="0.5" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1044.06" y="1839.5" ></text>
</g>
<g >
<title>estimate_expression_value (55,622,025 samples, 0.01%)</title><rect x="791.3" y="2037" width="0.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="794.26" y="2047.5" ></text>
</g>
<g >
<title>list_insert_nth (52,704,217 samples, 0.01%)</title><rect x="843.9" y="2037" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="846.94" y="2047.5" ></text>
</g>
<g >
<title>unix_write_space (517,087,486 samples, 0.09%)</title><rect x="910.3" y="1829" width="1.0" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="913.26" y="1839.5" ></text>
</g>
<g >
<title>get_mergejoin_opfamilies (1,298,531,638 samples, 0.22%)</title><rect x="1050.6" y="2053" width="2.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1053.56" y="2063.5" ></text>
</g>
<g >
<title>asm_exc_debug (452,050,356 samples, 0.08%)</title><rect x="278.7" y="2037" width="0.9" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="281.70" y="2047.5" ></text>
</g>
<g >
<title>PopActiveSnapshot (201,438,703 samples, 0.03%)</title><rect x="506.9" y="2021" width="0.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="509.89" y="2031.5" ></text>
</g>
<g >
<title>event_sched_in (80,227,309 samples, 0.01%)</title><rect x="527.7" y="1701" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="530.65" y="1711.5" ></text>
</g>
<g >
<title>add_wait_queue (55,834,484 samples, 0.01%)</title><rect x="99.2" y="1845" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="102.20" y="1855.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (118,075,693 samples, 0.02%)</title><rect x="151.5" y="1717" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="154.48" y="1727.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (312,095,004 samples, 0.05%)</title><rect x="947.7" y="1877" width="0.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="950.70" y="1887.5" ></text>
</g>
<g >
<title>do_syscall_64 (11,848,907,288 samples, 1.98%)</title><rect x="164.8" y="1989" width="23.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="167.75" y="1999.5" >d..</text>
</g>
<g >
<title>SS_identify_outer_params (53,622,802 samples, 0.01%)</title><rect x="463.6" y="2037" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="466.64" y="2047.5" ></text>
</g>
<g >
<title>available_idle_cpu (198,606,564 samples, 0.03%)</title><rect x="138.8" y="1701" width="0.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="141.79" y="1711.5" ></text>
</g>
<g >
<title>heapam_fetch_row_version (111,223,361 samples, 0.02%)</title><rect x="832.3" y="2037" width="0.2" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="835.31" y="2047.5" ></text>
</g>
<g >
<title>perf_event_update_time (88,769,085 samples, 0.01%)</title><rect x="1011.8" y="1765" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="1014.79" y="1775.5" ></text>
</g>
<g >
<title>_bt_search.part.0 (166,255,537 samples, 0.03%)</title><rect x="750.5" y="2037" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="753.45" y="2047.5" ></text>
</g>
<g >
<title>filemap_get_entry (197,630,795 samples, 0.03%)</title><rect x="945.7" y="1877" width="0.4" height="15.0" fill="rgb(246,193,46)" rx="2" ry="2" />
<text x="948.72" y="1887.5" ></text>
</g>
<g >
<title>__put_user_8 (52,257,085 samples, 0.01%)</title><rect x="20.6" y="1957" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="23.62" y="1967.5" ></text>
</g>
<g >
<title>pick_eevdf (56,537,055 samples, 0.01%)</title><rect x="194.0" y="1797" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="197.02" y="1807.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (194,823,721 samples, 0.03%)</title><rect x="726.1" y="1765" width="0.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="729.12" y="1775.5" ></text>
</g>
<g >
<title>_copy_to_iter (199,702,630 samples, 0.03%)</title><rect x="185.7" y="1813" width="0.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="188.74" y="1823.5" ></text>
</g>
<g >
<title>__schedule (85,832,584 samples, 0.01%)</title><rect x="1099.8" y="1973" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1102.77" y="1983.5" ></text>
</g>
<g >
<title>bio_alloc_bioset (112,135,207 samples, 0.02%)</title><rect x="1042.5" y="1797" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1045.47" y="1807.5" ></text>
</g>
<g >
<title>RelationIncrementReferenceCount (55,426,586 samples, 0.01%)</title><rect x="318.3" y="2053" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="321.35" y="2063.5" ></text>
</g>
<g >
<title>getVariable (60,461,635 samples, 0.01%)</title><rect x="201.0" y="2053" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="204.01" y="2063.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (229,990,069 samples, 0.04%)</title><rect x="845.5" y="2021" width="0.5" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="848.52" y="2031.5" ></text>
</g>
<g >
<title>__x64_sys_write (53,656,837 samples, 0.01%)</title><rect x="19.0" y="1925" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="22.04" y="1935.5" ></text>
</g>
<g >
<title>__schedule (424,411,412 samples, 0.07%)</title><rect x="205.2" y="1893" width="0.8" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="208.17" y="1903.5" ></text>
</g>
<g >
<title>AtEOXact_LargeObject (137,187,727 samples, 0.02%)</title><rect x="245.7" y="2053" width="0.3" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="248.73" y="2063.5" ></text>
</g>
<g >
<title>ext4_da_write_end (556,008,111 samples, 0.09%)</title><rect x="946.4" y="1909" width="1.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="949.42" y="1919.5" ></text>
</g>
<g >
<title>reweight_entity (83,081,018 samples, 0.01%)</title><rect x="193.2" y="1797" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="196.17" y="1807.5" ></text>
</g>
<g >
<title>pv_native_set_debugreg (470,257,217 samples, 0.08%)</title><rect x="1010.9" y="1749" width="0.9" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="1013.86" y="1759.5" ></text>
</g>
<g >
<title>refresh_cpu_vm_stats (56,246,592 samples, 0.01%)</title><rect x="1183.4" y="1941" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1186.44" y="1951.5" ></text>
</g>
<g >
<title>cfree (56,460,519 samples, 0.01%)</title><rect x="41.7" y="2037" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="44.72" y="2047.5" ></text>
</g>
<g >
<title>blk_mq_flush_plug_list.part.0 (440,288,827 samples, 0.07%)</title><rect x="1040.1" y="1813" width="0.8" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1043.07" y="1823.5" ></text>
</g>
<g >
<title>__schedule (230,210,753 samples, 0.04%)</title><rect x="372.7" y="1893" width="0.5" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="375.72" y="1903.5" ></text>
</g>
<g >
<title>malloc (259,344,610 samples, 0.04%)</title><rect x="106.9" y="2021" width="0.5" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="109.92" y="2031.5" ></text>
</g>
<g >
<title>group_sched_out (54,215,438 samples, 0.01%)</title><rect x="485.8" y="1845" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="488.81" y="1855.5" ></text>
</g>
<g >
<title>rep_movs_alternative (86,714,391 samples, 0.01%)</title><rect x="116.1" y="1877" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="119.10" y="1887.5" ></text>
</g>
<g >
<title>[libc.so.6] (538,480,354 samples, 0.09%)</title><rect x="834.9" y="2005" width="1.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="837.94" y="2015.5" ></text>
</g>
<g >
<title>ctx_sched_in (1,961,387,679 samples, 0.33%)</title><rect x="647.9" y="1909" width="3.8" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="650.87" y="1919.5" ></text>
</g>
<g >
<title>__calc_delta.constprop.0 (116,732,115 samples, 0.02%)</title><rect x="1004.5" y="1797" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1007.52" y="1807.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (10,924,992,472 samples, 1.83%)</title><rect x="539.4" y="1893" width="21.5" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="542.38" y="1903.5" >P..</text>
</g>
<g >
<title>hrtimer_interrupt (54,042,616 samples, 0.01%)</title><rect x="543.9" y="1797" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="546.93" y="1807.5" ></text>
</g>
<g >
<title>blk_mq_run_hw_queue (89,078,928 samples, 0.01%)</title><rect x="11.4" y="1941" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="14.36" y="1951.5" ></text>
</g>
<g >
<title>import_ubuf (89,105,852 samples, 0.01%)</title><rect x="187.8" y="1941" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="190.80" y="1951.5" ></text>
</g>
<g >
<title>x64_sys_call (285,946,338 samples, 0.05%)</title><rect x="372.7" y="2005" width="0.6" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="375.72" y="2015.5" ></text>
</g>
<g >
<title>heap_update (993,136,084 samples, 0.17%)</title><rect x="1094.1" y="2053" width="2.0" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="1097.09" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (286,759,305,563 samples, 47.97%)</title><rect x="374.8" y="2053" width="566.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="377.81" y="2063.5" >[unknown]</text>
</g>
<g >
<title>__raw_spin_lock_irqsave (83,891,179 samples, 0.01%)</title><rect x="1102.7" y="1749" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1105.69" y="1759.5" ></text>
</g>
<g >
<title>notifier_call_chain (3,050,740,827 samples, 0.51%)</title><rect x="472.0" y="1973" width="6.0" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="475.02" y="1983.5" ></text>
</g>
<g >
<title>base_yyparse (292,223,092 samples, 0.05%)</title><rect x="831.7" y="2021" width="0.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="834.74" y="2031.5" ></text>
</g>
<g >
<title>reweight_entity (55,867,707 samples, 0.01%)</title><rect x="536.5" y="1525" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="539.52" y="1535.5" ></text>
</g>
<g >
<title>__x64_sys_recvfrom (8,937,892,584 samples, 1.50%)</title><rect x="898.8" y="1973" width="17.6" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="901.78" y="1983.5" ></text>
</g>
<g >
<title>x64_sys_call (58,027,951 samples, 0.01%)</title><rect x="916.4" y="2005" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="919.43" y="2015.5" ></text>
</g>
<g >
<title>bms_subset_compare (111,040,096 samples, 0.02%)</title><rect x="767.7" y="2037" width="0.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="770.67" y="2047.5" ></text>
</g>
<g >
<title>PageSetChecksumCopy (782,159,339 samples, 0.13%)</title><rect x="448.4" y="2037" width="1.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="451.36" y="2047.5" ></text>
</g>
<g >
<title>AllocSetAlloc (112,356,044 samples, 0.02%)</title><rect x="524.1" y="2005" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="527.08" y="2015.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (87,638,655 samples, 0.01%)</title><rect x="414.6" y="2037" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="417.63" y="2047.5" ></text>
</g>
<g >
<title>TransactionIdIsInProgress (443,202,036 samples, 0.07%)</title><rect x="467.9" y="2037" width="0.9" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="470.90" y="2047.5" ></text>
</g>
<g >
<title>__switch_to (83,555,215 samples, 0.01%)</title><rect x="204.3" y="2037" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="207.29" y="2047.5" ></text>
</g>
<g >
<title>sysvec_irq_work (339,146,943 samples, 0.06%)</title><rect x="265.4" y="2021" width="0.7" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="268.38" y="2031.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (57,082,973 samples, 0.01%)</title><rect x="1024.3" y="1781" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1027.34" y="1791.5" ></text>
</g>
<g >
<title>rseq_ip_fixup (227,312,919 samples, 0.04%)</title><rect x="61.4" y="1909" width="0.4" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="64.35" y="1919.5" ></text>
</g>
<g >
<title>__pmu_ctx_sched_out (55,496,476 samples, 0.01%)</title><rect x="359.8" y="1877" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="362.77" y="1887.5" ></text>
</g>
<g >
<title>__switch_to_asm (55,735,585 samples, 0.01%)</title><rect x="373.2" y="1893" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="376.17" y="1903.5" ></text>
</g>
<g >
<title>__schedule (55,062,137 samples, 0.01%)</title><rect x="940.8" y="1941" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="943.80" y="1951.5" ></text>
</g>
<g >
<title>do_send_sig_info (2,554,002,877 samples, 0.43%)</title><rect x="1101.0" y="1941" width="5.0" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1104.00" y="1951.5" ></text>
</g>
<g >
<title>setTargetTable (56,994,895 samples, 0.01%)</title><rect x="923.0" y="2037" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="925.99" y="2047.5" ></text>
</g>
<g >
<title>check_index_predicates (142,857,818 samples, 0.02%)</title><rect x="963.7" y="2053" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="966.72" y="2063.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (2,474,706,830 samples, 0.41%)</title><rect x="797.7" y="2037" width="4.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="800.67" y="2047.5" ></text>
</g>
<g >
<title>fput (54,074,046 samples, 0.01%)</title><rect x="195.9" y="1925" width="0.2" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="198.95" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="789" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="799.5" ></text>
</g>
<g >
<title>folio_mark_dirty (57,656,447 samples, 0.01%)</title><rect x="498.7" y="1877" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="501.66" y="1887.5" ></text>
</g>
<g >
<title>unix_stream_recvmsg (57,513,675 samples, 0.01%)</title><rect x="187.6" y="1925" width="0.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="190.63" y="1935.5" ></text>
</g>
<g >
<title>default_wake_function (1,407,344,175 samples, 0.24%)</title><rect x="1102.6" y="1797" width="2.8" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1105.63" y="1807.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (16,143,289,236 samples, 2.70%)</title><rect x="997.7" y="1925" width="31.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1000.75" y="1935.5" >sc..</text>
</g>
<g >
<title>get_typlen (54,734,045 samples, 0.01%)</title><rect x="812.2" y="2037" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="815.22" y="2047.5" ></text>
</g>
<g >
<title>[libc.so.6] (178,609,637 samples, 0.03%)</title><rect x="108.1" y="1989" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="111.07" y="1999.5" ></text>
</g>
<g >
<title>__wake_up_common (60,067,863 samples, 0.01%)</title><rect x="471.6" y="1845" width="0.2" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="474.64" y="1855.5" ></text>
</g>
<g >
<title>ExecTypeFromTLInternal (89,258,692 samples, 0.01%)</title><rect x="261.0" y="2053" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="264.03" y="2063.5" ></text>
</g>
<g >
<title>__pmu_ctx_sched_out (62,110,907 samples, 0.01%)</title><rect x="897.9" y="1877" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="900.95" y="1887.5" ></text>
</g>
<g >
<title>do_futex (742,636,989 samples, 0.12%)</title><rect x="301.9" y="1941" width="1.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="304.94" y="1951.5" ></text>
</g>
<g >
<title>bpf_prog_ab52827c9cfdf652_on_watchpoint (111,690,655 samples, 0.02%)</title><rect x="367.4" y="1893" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="370.42" y="1903.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (4,325,799,015 samples, 0.72%)</title><rect x="625.0" y="2021" width="8.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="628.02" y="2031.5" ></text>
</g>
<g >
<title>transformExpr (55,837,298 samples, 0.01%)</title><rect x="1168.4" y="2053" width="0.1" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="1171.37" y="2063.5" ></text>
</g>
<g >
<title>pick_next_task_fair (139,179,642 samples, 0.02%)</title><rect x="343.8" y="1941" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="346.80" y="1951.5" ></text>
</g>
<g >
<title>create_indexscan_plan (58,320,369 samples, 0.01%)</title><rect x="970.3" y="2053" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="973.29" y="2063.5" ></text>
</g>
<g >
<title>do_writepages (1,660,659,641 samples, 0.28%)</title><rect x="1040.0" y="1909" width="3.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="1042.96" y="1919.5" ></text>
</g>
<g >
<title>standard_ExecutorStart (114,895,922 samples, 0.02%)</title><rect x="928.5" y="2037" width="0.2" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="931.45" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,654,929,754 samples, 0.44%)</title><rect x="846.0" y="2021" width="5.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="848.97" y="2031.5" ></text>
</g>
<g >
<title>bms_is_member (115,419,312 samples, 0.02%)</title><rect x="958.3" y="2053" width="0.2" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="961.30" y="2063.5" ></text>
</g>
<g >
<title>psi_group_change (849,441,505 samples, 0.14%)</title><rect x="88.1" y="1797" width="1.7" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="91.08" y="1807.5" ></text>
</g>
<g >
<title>PQconsumeInput@plt (54,499,576 samples, 0.01%)</title><rect x="42.3" y="2053" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="45.34" y="2063.5" ></text>
</g>
<g >
<title>fireRIRrules (58,279,756 samples, 0.01%)</title><rect x="805.8" y="2037" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="808.75" y="2047.5" ></text>
</g>
<g >
<title>__switch_to_asm (304,265,241 samples, 0.05%)</title><rect x="204.5" y="2037" width="0.6" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="207.46" y="2047.5" ></text>
</g>
<g >
<title>create_scan_plan (334,594,267 samples, 0.06%)</title><rect x="785.5" y="2037" width="0.7" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="788.52" y="2047.5" ></text>
</g>
<g >
<title>SearchCatCache1 (54,276,015 samples, 0.01%)</title><rect x="325.4" y="2053" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="328.40" y="2063.5" ></text>
</g>
<g >
<title>irq_work_run (2,016,910,636 samples, 0.34%)</title><rect x="534.5" y="1829" width="4.0" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="537.50" y="1839.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (81,083,764 samples, 0.01%)</title><rect x="528.4" y="1781" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="531.36" y="1791.5" ></text>
</g>
<g >
<title>dequeue_task (3,656,948,866 samples, 0.61%)</title><rect x="74.8" y="1813" width="7.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="77.81" y="1823.5" ></text>
</g>
<g >
<title>name_matches_visible_ENR (80,398,566 samples, 0.01%)</title><rect x="858.9" y="2037" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="861.94" y="2047.5" ></text>
</g>
<g >
<title>enqueue_task (5,163,396,528 samples, 0.86%)</title><rect x="140.4" y="1733" width="10.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="143.38" y="1743.5" ></text>
</g>
<g >
<title>wait_for_unix_gc (201,075,872 samples, 0.03%)</title><rect x="153.5" y="1909" width="0.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="156.52" y="1919.5" ></text>
</g>
<g >
<title>skb_copy_datagram_iter (1,469,156,833 samples, 0.25%)</title><rect x="912.5" y="1877" width="2.9" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="915.47" y="1887.5" ></text>
</g>
<g >
<title>GetUserIdAndSecContext (138,197,454 samples, 0.02%)</title><rect x="271.3" y="2053" width="0.3" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="274.32" y="2063.5" ></text>
</g>
<g >
<title>preprocess_function_rtes (200,508,875 samples, 0.03%)</title><rect x="883.1" y="2037" width="0.4" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="886.10" y="2047.5" ></text>
</g>
<g >
<title>schedule (87,088,760 samples, 0.01%)</title><rect x="1093.4" y="1973" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1096.37" y="1983.5" ></text>
</g>
<g >
<title>unix_stream_read_generic (7,139,235,750 samples, 1.19%)</title><rect x="901.3" y="1909" width="14.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="904.28" y="1919.5" ></text>
</g>
<g >
<title>base_yyparse (501,444,653 samples, 0.08%)</title><rect x="789.1" y="2021" width="1.0" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="792.13" y="2031.5" ></text>
</g>
<g >
<title>event_sched_in (571,348,013 samples, 0.10%)</title><rect x="552.2" y="1589" width="1.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="555.22" y="1599.5" ></text>
</g>
<g >
<title>mutex_lock (318,182,186 samples, 0.05%)</title><rect x="996.7" y="1925" width="0.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="999.67" y="1935.5" ></text>
</g>
<g >
<title>avg_vruntime (85,397,526 samples, 0.01%)</title><rect x="1004.2" y="1813" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1007.25" y="1823.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (224,177,522 samples, 0.04%)</title><rect x="443.0" y="2037" width="0.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="445.96" y="2047.5" ></text>
</g>
<g >
<title>security_task_kill (79,713,304 samples, 0.01%)</title><rect x="1100.8" y="1925" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1103.84" y="1935.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (62,496,039 samples, 0.01%)</title><rect x="296.2" y="2037" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="299.18" y="2047.5" ></text>
</g>
<g >
<title>wakeup_preempt (201,173,056 samples, 0.03%)</title><rect x="151.0" y="1733" width="0.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="153.97" y="1743.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (58,681,141 samples, 0.01%)</title><rect x="1084.5" y="1957" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="1087.52" y="1967.5" ></text>
</g>
<g >
<title>hw_breakpoint_del (56,500,502 samples, 0.01%)</title><rect x="302.6" y="1733" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="305.62" y="1743.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (116,445,968 samples, 0.02%)</title><rect x="1015.6" y="1797" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1018.62" y="1807.5" ></text>
</g>
<g >
<title>[[vdso]] (59,184,899 samples, 0.01%)</title><rect x="214.9" y="2037" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="217.87" y="2047.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (136,000,631 samples, 0.02%)</title><rect x="36.5" y="1829" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="39.50" y="1839.5" ></text>
</g>
<g >
<title>ExecBSUpdateTriggers (66,663,621 samples, 0.01%)</title><rect x="402.5" y="2037" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="405.52" y="2047.5" ></text>
</g>
<g >
<title>lockless_pages_from_mm (563,173,417 samples, 0.09%)</title><rect x="559.1" y="1669" width="1.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="562.06" y="1679.5" ></text>
</g>
<g >
<title>XLogNeedsFlush (60,406,223 samples, 0.01%)</title><rect x="487.2" y="2037" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="490.16" y="2047.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (50,894,112 samples, 0.01%)</title><rect x="449.7" y="2021" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="452.70" y="2031.5" ></text>
</g>
<g >
<title>PQsocket (259,908,312 samples, 0.04%)</title><rect x="55.3" y="2005" width="0.5" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="58.28" y="2015.5" ></text>
</g>
<g >
<title>__wake_up (54,158,423 samples, 0.01%)</title><rect x="367.7" y="1877" width="0.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="370.69" y="1887.5" ></text>
</g>
<g >
<title>sock_poll (115,318,237 samples, 0.02%)</title><rect x="196.6" y="1925" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="199.59" y="1935.5" ></text>
</g>
<g >
<title>mem_cgroup_from_task (55,799,073 samples, 0.01%)</title><rect x="740.2" y="1973" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="743.21" y="1983.5" ></text>
</g>
<g >
<title>charhashfast (169,219,282 samples, 0.03%)</title><rect x="771.9" y="2037" width="0.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="774.89" y="2047.5" ></text>
</g>
<g >
<title>pgwt_encode_block (163,039,418 samples, 0.03%)</title><rect x="19.2" y="2053" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="22.20" y="2063.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (90,680,353 samples, 0.02%)</title><rect x="473.6" y="1813" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="476.55" y="1823.5" ></text>
</g>
<g >
<title>ctx_sched_out (55,976,096 samples, 0.01%)</title><rect x="616.1" y="1861" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="619.08" y="1871.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (743,280,726 samples, 0.12%)</title><rect x="552.1" y="1621" width="1.5" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="555.11" y="1631.5" ></text>
</g>
<g >
<title>__schedule (56,241,384 samples, 0.01%)</title><rect x="296.3" y="1957" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="299.31" y="1967.5" ></text>
</g>
<g >
<title>blk_mq_dispatch_rq_list (56,195,609 samples, 0.01%)</title><rect x="10.9" y="1893" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="13.90" y="1903.5" ></text>
</g>
<g >
<title>__wake_up (214,870,638 samples, 0.04%)</title><rect x="265.4" y="1877" width="0.5" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="268.43" y="1887.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,733,289,487 samples, 0.46%)</title><rect x="734.9" y="1989" width="5.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="737.93" y="1999.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (57,453,681 samples, 0.01%)</title><rect x="529.4" y="1685" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="532.45" y="1695.5" ></text>
</g>
<g >
<title>retbleed_return_thunk (136,657,755 samples, 0.02%)</title><rect x="188.4" y="2005" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="191.36" y="2015.5" ></text>
</g>
<g >
<title>arch_irq_work_raise (150,705,923 samples, 0.03%)</title><rect x="1098.7" y="1829" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1101.75" y="1839.5" ></text>
</g>
<g >
<title>MemoryContextDelete (262,598,210 samples, 0.04%)</title><rect x="445.1" y="2037" width="0.5" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="448.08" y="2047.5" ></text>
</g>
<g >
<title>mod_objcg_state (85,638,711 samples, 0.01%)</title><rect x="907.0" y="1813" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="910.02" y="1823.5" ></text>
</g>
<g >
<title>sem_post@plt (86,469,049 samples, 0.01%)</title><rect x="1155.5" y="2053" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1158.48" y="2063.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (920,108,955 samples, 0.15%)</title><rect x="316.5" y="2053" width="1.8" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="319.53" y="2063.5" ></text>
</g>
<g >
<title>schedule (53,911,540 samples, 0.01%)</title><rect x="407.6" y="1957" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="410.59" y="1967.5" ></text>
</g>
<g >
<title>notify_die (111,690,655 samples, 0.02%)</title><rect x="367.4" y="2005" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="370.42" y="2015.5" ></text>
</g>
<g >
<title>irqentry_exit (108,334,957 samples, 0.02%)</title><rect x="501.4" y="1989" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="504.44" y="1999.5" ></text>
</g>
<g >
<title>_raw_spin_lock (79,651,082 samples, 0.01%)</title><rect x="898.2" y="1925" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="901.24" y="1935.5" ></text>
</g>
<g >
<title>heapam_index_fetch_tuple (91,466,790 samples, 0.02%)</title><rect x="633.9" y="2021" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="636.90" y="2031.5" ></text>
</g>
<g >
<title>group_sched_out (988,538,126 samples, 0.17%)</title><rect x="1022.4" y="1797" width="1.9" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="1025.39" y="1807.5" ></text>
</g>
<g >
<title>__smp_call_single_queue (140,872,948 samples, 0.02%)</title><rect x="725.0" y="1813" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="727.97" y="1823.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (50,815,657 samples, 0.01%)</title><rect x="264.3" y="1957" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="267.27" y="1967.5" ></text>
</g>
<g >
<title>__wake_up (2,016,910,636 samples, 0.34%)</title><rect x="534.5" y="1765" width="4.0" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="537.50" y="1775.5" ></text>
</g>
<g >
<title>GetUserId (513,779,282 samples, 0.09%)</title><rect x="429.8" y="2037" width="1.0" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="432.82" y="2047.5" ></text>
</g>
<g >
<title>noist_exc_debug (57,098,518 samples, 0.01%)</title><rect x="505.2" y="1989" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="508.17" y="1999.5" ></text>
</g>
<g >
<title>pick_next_task (278,685,359 samples, 0.05%)</title><rect x="527.8" y="1797" width="0.6" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="530.81" y="1807.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,291,432,694 samples, 0.55%)</title><rect x="1099.7" y="2037" width="6.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1102.71" y="2047.5" ></text>
</g>
<g >
<title>noist_exc_debug (227,657,807 samples, 0.04%)</title><rect x="279.0" y="2021" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="281.97" y="2031.5" ></text>
</g>
<g >
<title>FastPathUnGrantRelationLock (252,270,665 samples, 0.04%)</title><rect x="262.8" y="2053" width="0.5" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="265.79" y="2063.5" ></text>
</g>
<g >
<title>asm_sysvec_call_function_single (2,568,149,472 samples, 0.43%)</title><rect x="1175.9" y="1925" width="5.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1178.94" y="1935.5" ></text>
</g>
<g >
<title>build_simple_rel (290,507,588 samples, 0.05%)</title><rect x="961.7" y="2053" width="0.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="964.75" y="2063.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (85,507,824 samples, 0.01%)</title><rect x="114.5" y="1893" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="117.48" y="1903.5" ></text>
</g>
<g >
<title>_raw_read_lock_irqsave (85,486,663 samples, 0.01%)</title><rect x="359.4" y="1829" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="362.39" y="1839.5" ></text>
</g>
<g >
<title>rw_verify_area (85,776,541 samples, 0.01%)</title><rect x="1136.9" y="1941" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="1139.95" y="1951.5" ></text>
</g>
<g >
<title>perf_log_itrace_start (54,626,481 samples, 0.01%)</title><rect x="527.7" y="1685" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="530.70" y="1695.5" ></text>
</g>
<g >
<title>[libc.so.6] (54,761,620 samples, 0.01%)</title><rect x="239.2" y="2005" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="242.23" y="2015.5" ></text>
</g>
<g >
<title>pv_native_get_debugreg (747,179,999 samples, 0.13%)</title><rect x="350.6" y="2021" width="1.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="353.56" y="2031.5" ></text>
</g>
<g >
<title>native_write_msr (118,075,693 samples, 0.02%)</title><rect x="151.5" y="1701" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="154.48" y="1711.5" ></text>
</g>
<g >
<title>bpf_overflow_handler (233,638,410 samples, 0.04%)</title><rect x="264.7" y="1909" width="0.4" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="267.65" y="1919.5" ></text>
</g>
<g >
<title>migrate_task_rq_fair (110,349,694 samples, 0.02%)</title><rect x="701.3" y="1813" width="0.2" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="704.33" y="1823.5" ></text>
</g>
<g >
<title>PQsocket (1,053,522,990 samples, 0.18%)</title><rect x="44.0" y="2053" width="2.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="47.00" y="2063.5" ></text>
</g>
<g >
<title>tick_program_event (80,933,492 samples, 0.01%)</title><rect x="1185.9" y="1909" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1188.89" y="1919.5" ></text>
</g>
<g >
<title>ReservePrivateRefCountEntry (545,296,051 samples, 0.09%)</title><rect x="319.9" y="2053" width="1.0" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="322.86" y="2063.5" ></text>
</g>
<g >
<title>__sigsetjmp (81,161,644 samples, 0.01%)</title><rect x="728.5" y="2037" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="731.52" y="2047.5" ></text>
</g>
<g >
<title>sock_recvmsg (9,794,409,501 samples, 1.64%)</title><rect x="167.7" y="1925" width="19.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="170.70" y="1935.5" ></text>
</g>
<g >
<title>index_getnext_slot (57,812,609 samples, 0.01%)</title><rect x="836.1" y="2037" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="839.12" y="2047.5" ></text>
</g>
<g >
<title>find_or_insert_session (51,954,628 samples, 0.01%)</title><rect x="18.9" y="2053" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="21.94" y="2063.5" ></text>
</g>
<g >
<title>table_close (57,552,520 samples, 0.01%)</title><rect x="933.3" y="2037" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="936.34" y="2047.5" ></text>
</g>
<g >
<title>__remove_hrtimer (61,403,247 samples, 0.01%)</title><rect x="1181.6" y="1925" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1184.64" y="1935.5" ></text>
</g>
<g >
<title>scsi_dispatch_cmd (60,695,191 samples, 0.01%)</title><rect x="11.4" y="1861" width="0.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="14.41" y="1871.5" ></text>
</g>
<g >
<title>all_rows_selectable (82,954,825 samples, 0.01%)</title><rect x="598.6" y="2021" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="601.63" y="2031.5" ></text>
</g>
<g >
<title>CommitTransactionCommandInternal (141,370,899 samples, 0.02%)</title><rect x="252.4" y="2053" width="0.2" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="255.36" y="2063.5" ></text>
</g>
<g >
<title>psi_group_change (224,644,638 samples, 0.04%)</title><rect x="536.8" y="1541" width="0.4" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="539.79" y="1551.5" ></text>
</g>
<g >
<title>postgres (485,461,449,721 samples, 81.22%)</title><rect x="215.5" y="2069" width="958.4" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="218.53" y="2079.5" >postgres</text>
</g>
<g >
<title>bms_union (117,572,776 samples, 0.02%)</title><rect x="959.2" y="2053" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="962.20" y="2063.5" ></text>
</g>
<g >
<title>sched_mm_cid_migrate_to (83,778,204 samples, 0.01%)</title><rect x="1104.9" y="1749" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="1107.87" y="1759.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (109,309,469 samples, 0.02%)</title><rect x="660.5" y="1829" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="663.51" y="1839.5" ></text>
</g>
<g >
<title>_raw_read_unlock_irqrestore (56,848,364 samples, 0.01%)</title><rect x="1105.8" y="1845" width="0.1" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="1108.75" y="1855.5" ></text>
</g>
<g >
<title>update_process_times (230,982,007 samples, 0.04%)</title><rect x="352.0" y="1925" width="0.5" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="355.03" y="1935.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (199,849,745 samples, 0.03%)</title><rect x="1189.1" y="1813" width="0.4" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1192.11" y="1823.5" ></text>
</g>
<g >
<title>[libc.so.6] (1,681,539,410 samples, 0.28%)</title><rect x="48.8" y="2037" width="3.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="51.84" y="2047.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (90,125,562 samples, 0.02%)</title><rect x="1029.2" y="1797" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1032.21" y="1807.5" ></text>
</g>
<g >
<title>get_loop_count (114,798,585 samples, 0.02%)</title><rect x="809.5" y="2037" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="812.52" y="2047.5" ></text>
</g>
<g >
<title>rseq_ip_fixup (508,793,426 samples, 0.09%)</title><rect x="544.7" y="1781" width="1.0" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="547.73" y="1791.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (87,905,175 samples, 0.01%)</title><rect x="420.7" y="1973" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="423.70" y="1983.5" ></text>
</g>
<g >
<title>realloc (278,567,684 samples, 0.05%)</title><rect x="201.8" y="2037" width="0.6" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="204.83" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1109" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1119.5" ></text>
</g>
<g >
<title>ttwu_do_activate (56,991,187 samples, 0.01%)</title><rect x="505.3" y="1717" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="508.29" y="1727.5" ></text>
</g>
<g >
<title>pick_eevdf (290,884,268 samples, 0.05%)</title><rect x="83.6" y="1765" width="0.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="86.63" y="1775.5" ></text>
</g>
<g >
<title>DeconstructQualifiedName (88,338,606 samples, 0.01%)</title><rect x="253.5" y="2053" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="256.51" y="2063.5" ></text>
</g>
<g >
<title>GrantLockLocal (228,865,502 samples, 0.04%)</title><rect x="272.6" y="2053" width="0.5" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="275.62" y="2063.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (822,384,302 samples, 0.14%)</title><rect x="1181.5" y="1941" width="1.7" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="1184.53" y="1951.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (84,395,727 samples, 0.01%)</title><rect x="149.7" y="1637" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="152.72" y="1647.5" ></text>
</g>
<g >
<title>sockfd_lookup_light (300,226,124 samples, 0.05%)</title><rect x="187.0" y="1925" width="0.6" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="190.04" y="1935.5" ></text>
</g>
<g >
<title>__wake_up_common (56,991,187 samples, 0.01%)</title><rect x="505.3" y="1829" width="0.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="508.29" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (9,530,418,183 samples, 1.59%)</title><rect x="561.0" y="261" width="18.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="564.01" y="271.5" ></text>
</g>
<g >
<title>CopySnapshot (203,292,170 samples, 0.03%)</title><rect x="398.8" y="2037" width="0.4" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="401.80" y="2047.5" ></text>
</g>
<g >
<title>native_write_msr (56,268,106 samples, 0.01%)</title><rect x="358.8" y="1701" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="361.77" y="1711.5" ></text>
</g>
<g >
<title>arch_call_rest_init (853,548,337 samples, 0.14%)</title><rect x="1188.3" y="1989" width="1.7" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="1191.31" y="1999.5" ></text>
</g>
<g >
<title>restriction_is_always_true (57,306,399 samples, 0.01%)</title><rect x="919.1" y="2037" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="922.12" y="2047.5" ></text>
</g>
<g >
<title>__put_user_nocheck_8 (55,256,228 samples, 0.01%)</title><rect x="23.0" y="1925" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="25.97" y="1935.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (109,533,074 samples, 0.02%)</title><rect x="174.0" y="1813" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="176.96" y="1823.5" ></text>
</g>
<g >
<title>__wake_up (85,236,206 samples, 0.01%)</title><rect x="505.3" y="1893" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="508.29" y="1903.5" ></text>
</g>
<g >
<title>update_curr (512,243,596 samples, 0.09%)</title><rect x="1001.7" y="1829" width="1.0" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1004.69" y="1839.5" ></text>
</g>
<g >
<title>ExecCloseResultRelations (201,579,787 samples, 0.03%)</title><rect x="255.1" y="2053" width="0.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="258.15" y="2063.5" ></text>
</g>
<g >
<title>SearchCatCache (85,526,989 samples, 0.01%)</title><rect x="325.2" y="2053" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="328.23" y="2063.5" ></text>
</g>
<g >
<title>event_sched_in (882,513,577 samples, 0.15%)</title><rect x="648.8" y="1845" width="1.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="651.83" y="1855.5" ></text>
</g>
<g >
<title>quiet_vmstat (115,441,901 samples, 0.02%)</title><rect x="1183.2" y="1941" width="0.2" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="1186.21" y="1951.5" ></text>
</g>
<g >
<title>skb_copy_datagram_iter (1,455,557,556 samples, 0.24%)</title><rect x="184.2" y="1861" width="2.8" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="187.16" y="1871.5" ></text>
</g>
<g >
<title>open64 (116,565,316 samples, 0.02%)</title><rect x="249.1" y="2037" width="0.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="252.13" y="2047.5" ></text>
</g>
<g >
<title>_raw_spin_lock (57,415,158 samples, 0.01%)</title><rect x="736.4" y="1877" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="739.35" y="1887.5" ></text>
</g>
<g >
<title>tick_nohz_idle_exit (1,371,565,697 samples, 0.23%)</title><rect x="1185.5" y="1989" width="2.7" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="1188.50" y="1999.5" ></text>
</g>
<g >
<title>_raw_write_lock_irq (163,967,370 samples, 0.03%)</title><rect x="23.7" y="1909" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="26.69" y="1919.5" ></text>
</g>
<g >
<title>__wake_up (1,960,505,517 samples, 0.33%)</title><rect x="534.5" y="1717" width="3.9" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="537.50" y="1727.5" ></text>
</g>
<g >
<title>ExecUpdatePrologue (56,910,288 samples, 0.01%)</title><rect x="418.1" y="2037" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="421.13" y="2047.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (53,068,267 samples, 0.01%)</title><rect x="443.3" y="2005" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="446.30" y="2015.5" ></text>
</g>
<g >
<title>hw_breakpoint_add (342,089,554 samples, 0.06%)</title><rect x="552.4" y="1573" width="0.7" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="555.44" y="1583.5" ></text>
</g>
<g >
<title>do_fault (1,987,104,757 samples, 0.33%)</title><rect x="735.7" y="1925" width="3.9" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="738.68" y="1935.5" ></text>
</g>
<g >
<title>__virtscsi_add_cmd (64,437,585 samples, 0.01%)</title><rect x="1040.4" y="1685" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="1043.36" y="1695.5" ></text>
</g>
<g >
<title>ConditionVariableBroadcast (129,609,806 samples, 0.02%)</title><rect x="252.6" y="2053" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="255.64" y="2063.5" ></text>
</g>
<g >
<title>LockCheckConflicts (85,157,751 samples, 0.01%)</title><rect x="296.5" y="2053" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="299.48" y="2063.5" ></text>
</g>
<g >
<title>update_load_avg (202,659,132 samples, 0.03%)</title><rect x="29.2" y="1813" width="0.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="32.18" y="1823.5" ></text>
</g>
<g >
<title>__wake_up_common (3,329,668,176 samples, 0.56%)</title><rect x="353.0" y="1861" width="6.6" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="355.99" y="1871.5" ></text>
</g>
<g >
<title>[libc.so.6] (56,450,925 samples, 0.01%)</title><rect x="190.7" y="2005" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="193.71" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="597" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="607.5" ></text>
</g>
<g >
<title>expand_function_arguments (214,029,069 samples, 0.04%)</title><rect x="1032.8" y="2053" width="0.4" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="1035.80" y="2063.5" ></text>
</g>
<g >
<title>sched_clock (58,115,313 samples, 0.01%)</title><rect x="558.2" y="1653" width="0.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="561.23" y="1663.5" ></text>
</g>
<g >
<title>j2date (52,912,043 samples, 0.01%)</title><rect x="1099.3" y="2053" width="0.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="1102.28" y="2063.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (53,911,540 samples, 0.01%)</title><rect x="407.6" y="2021" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="410.59" y="2031.5" ></text>
</g>
<g >
<title>ep_poll_callback (93,016,533 samples, 0.02%)</title><rect x="437.4" y="1877" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="440.36" y="1887.5" ></text>
</g>
<g >
<title>AtEOXact_Namespace (91,845,937 samples, 0.02%)</title><rect x="247.1" y="2053" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="250.15" y="2063.5" ></text>
</g>
<g >
<title>irqentry_exit (58,277,250 samples, 0.01%)</title><rect x="624.2" y="1973" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="627.17" y="1983.5" ></text>
</g>
<g >
<title>event_sched_out (56,500,502 samples, 0.01%)</title><rect x="302.6" y="1749" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="305.62" y="1759.5" ></text>
</g>
<g >
<title>SetCurrentStatementStartTimestamp (562,088,149 samples, 0.09%)</title><rect x="518.6" y="2021" width="1.1" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="521.59" y="2031.5" ></text>
</g>
<g >
<title>ext4_block_write_begin (156,437,881 samples, 0.03%)</title><rect x="946.1" y="1893" width="0.3" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="949.11" y="1903.5" ></text>
</g>
<g >
<title>subquery_planner (1,216,614,357 samples, 0.20%)</title><rect x="930.7" y="2037" width="2.4" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="933.67" y="2047.5" ></text>
</g>
<g >
<title>__wake_up (2,734,206,654 samples, 0.46%)</title><rect x="480.2" y="1909" width="5.4" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="483.25" y="1919.5" ></text>
</g>
<g >
<title>ChoosePortalStrategy (288,917,530 samples, 0.05%)</title><rect x="395.1" y="2037" width="0.6" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="398.09" y="2047.5" ></text>
</g>
<g >
<title>GetNewTransactionId (53,225,353 samples, 0.01%)</title><rect x="269.4" y="2053" width="0.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="272.36" y="2063.5" ></text>
</g>
<g >
<title>__xa_set_mark (186,225,883 samples, 0.03%)</title><rect x="946.6" y="1813" width="0.3" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="949.57" y="1823.5" ></text>
</g>
<g >
<title>mpage_prepare_extent_to_map (737,982,683 samples, 0.12%)</title><rect x="1041.6" y="1861" width="1.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1044.62" y="1871.5" ></text>
</g>
<g >
<title>malloc (336,968,390 samples, 0.06%)</title><rect x="1112.3" y="2053" width="0.7" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1115.32" y="2063.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (90,063,185 samples, 0.02%)</title><rect x="726.9" y="1861" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="729.88" y="1871.5" ></text>
</g>
<g >
<title>__sysvec_irq_work (54,158,423 samples, 0.01%)</title><rect x="367.7" y="2005" width="0.1" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="370.69" y="2015.5" ></text>
</g>
<g >
<title>enqueue_entity (341,665,407 samples, 0.06%)</title><rect x="482.4" y="1685" width="0.7" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="485.41" y="1695.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (55,976,096 samples, 0.01%)</title><rect x="616.1" y="1877" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="619.08" y="1887.5" ></text>
</g>
<g >
<title>ppoll (3,066,869,186 samples, 0.51%)</title><rect x="190.8" y="2021" width="6.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="193.82" y="2031.5" ></text>
</g>
<g >
<title>do_epoll_wait (165,004,776 samples, 0.03%)</title><rect x="18.1" y="1973" width="0.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="21.12" y="1983.5" ></text>
</g>
<g >
<title>EvalPlanQualSetPlan (169,105,864 samples, 0.03%)</title><rect x="254.1" y="2053" width="0.3" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="257.08" y="2063.5" ></text>
</g>
<g >
<title>__wake_up_common (214,870,638 samples, 0.04%)</title><rect x="265.4" y="1909" width="0.5" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="268.43" y="1919.5" ></text>
</g>
<g >
<title>update_cfs_group (358,911,199 samples, 0.06%)</title><rect x="81.3" y="1797" width="0.7" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="84.26" y="1807.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (77,357,119 samples, 0.01%)</title><rect x="32.8" y="1845" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="35.80" y="1855.5" ></text>
</g>
<g >
<title>enqueue_task (840,279,771 samples, 0.14%)</title><rect x="535.6" y="1573" width="1.7" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="538.63" y="1583.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1605" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1615.5" ></text>
</g>
<g >
<title>socket_putmessage (599,991,162 samples, 0.10%)</title><rect x="925.7" y="2037" width="1.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="928.72" y="2047.5" ></text>
</g>
<g >
<title>sysvec_irq_work (90,285,377 samples, 0.02%)</title><rect x="1099.1" y="2021" width="0.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="1102.10" y="2031.5" ></text>
</g>
<g >
<title>BuildIndexInfo (89,808,441 samples, 0.02%)</title><rect x="390.1" y="2037" width="0.1" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="393.07" y="2047.5" ></text>
</g>
<g >
<title>pv_native_get_debugreg (574,215,169 samples, 0.10%)</title><rect x="478.1" y="2005" width="1.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="481.11" y="2015.5" ></text>
</g>
<g >
<title>set_pte_range (54,826,547 samples, 0.01%)</title><rect x="1092.3" y="1893" width="0.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1095.31" y="1903.5" ></text>
</g>
<g >
<title>RelationGetIndexAttrBitmap (85,450,084 samples, 0.01%)</title><rect x="315.2" y="2053" width="0.2" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="318.22" y="2063.5" ></text>
</g>
<g >
<title>import_ubuf (111,997,963 samples, 0.02%)</title><rect x="727.7" y="1957" width="0.3" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="730.74" y="1967.5" ></text>
</g>
<g >
<title>irqentry_exit (51,501,438 samples, 0.01%)</title><rect x="239.4" y="1973" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="242.40" y="1983.5" ></text>
</g>
<g >
<title>__irq_work_queue_local (393,231,584 samples, 0.07%)</title><rect x="476.8" y="1829" width="0.7" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="479.76" y="1839.5" ></text>
</g>
<g >
<title>bpf_ringbuf_reserve (82,880,941 samples, 0.01%)</title><rect x="367.4" y="1877" width="0.2" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="370.42" y="1887.5" ></text>
</g>
<g >
<title>[libc.so.6] (619,214,849 samples, 0.10%)</title><rect x="578.3" y="37" width="1.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="581.31" y="47.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (83,197,614 samples, 0.01%)</title><rect x="562.3" y="37" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="565.28" y="47.5" ></text>
</g>
<g >
<title>pgwt_handle_trace_event (585,622,407 samples, 0.10%)</title><rect x="15.7" y="2037" width="1.2" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="18.69" y="2047.5" ></text>
</g>
<g >
<title>__futex_wait (686,204,644 samples, 0.11%)</title><rect x="302.1" y="1909" width="1.3" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="305.06" y="1919.5" ></text>
</g>
<g >
<title>pud_val (54,780,082 samples, 0.01%)</title><rect x="1093.0" y="1973" width="0.1" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" />
<text x="1095.98" y="1983.5" ></text>
</g>
<g >
<title>os_xsave (171,996,568 samples, 0.03%)</title><rect x="206.0" y="2037" width="0.3" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="209.00" y="2047.5" ></text>
</g>
<g >
<title>GlobalVisTestFor (294,263,614 samples, 0.05%)</title><rect x="272.0" y="2053" width="0.6" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="274.99" y="2063.5" ></text>
</g>
<g >
<title>tts_buffer_heap_clear (173,928,448 samples, 0.03%)</title><rect x="938.6" y="2037" width="0.4" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="941.64" y="2047.5" ></text>
</g>
<g >
<title>exprType (483,658,131 samples, 0.08%)</title><rect x="795.0" y="2037" width="1.0" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="798.02" y="2047.5" ></text>
</g>
<g >
<title>update_min_vruntime (53,462,773 samples, 0.01%)</title><rect x="193.2" y="1765" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="196.23" y="1775.5" ></text>
</g>
<g >
<title>maybe_add_creds (58,518,486 samples, 0.01%)</title><rect x="114.8" y="1893" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="117.81" y="1903.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (58,338,954 samples, 0.01%)</title><rect x="830.7" y="2005" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="833.69" y="2015.5" ></text>
</g>
<g >
<title>__x64_sys_futex (5,485,435,037 samples, 0.92%)</title><rect x="1144.3" y="1989" width="10.8" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="1147.25" y="1999.5" ></text>
</g>
<g >
<title>__pmu_ctx_sched_out (55,976,096 samples, 0.01%)</title><rect x="616.1" y="1845" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="619.08" y="1855.5" ></text>
</g>
<g >
<title>event_sched_out (904,114,396 samples, 0.15%)</title><rect x="1022.4" y="1781" width="1.8" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="1025.39" y="1791.5" ></text>
</g>
<g >
<title>ExecInitRangeTable (55,099,721 samples, 0.01%)</title><rect x="260.2" y="2053" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="263.20" y="2063.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (82,728,185 samples, 0.01%)</title><rect x="816.1" y="1973" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="819.10" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="325" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="335.5" ></text>
</g>
<g >
<title>GlobalVisTestIsRemovableXid (224,060,261 samples, 0.04%)</title><rect x="430.9" y="2037" width="0.5" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="433.95" y="2047.5" ></text>
</g>
<g >
<title>XLogInsert (803,444,393 samples, 0.13%)</title><rect x="362.8" y="2053" width="1.6" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="365.77" y="2063.5" ></text>
</g>
<g >
<title>get_timeout_active (55,566,975 samples, 0.01%)</title><rect x="622.8" y="2021" width="0.1" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="625.82" y="2031.5" ></text>
</g>
<g >
<title>parseVariable (56,478,748 samples, 0.01%)</title><rect x="157.7" y="2037" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="160.68" y="2047.5" ></text>
</g>
<g >
<title>__pmu_ctx_sched_out (84,900,242 samples, 0.01%)</title><rect x="1144.0" y="1893" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1146.98" y="1903.5" ></text>
</g>
<g >
<title>RelationGetIndexScan (83,995,030 samples, 0.01%)</title><rect x="315.9" y="2053" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="318.86" y="2063.5" ></text>
</g>
<g >
<title>[libc.so.6] (226,758,803 samples, 0.04%)</title><rect x="58.1" y="1989" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="61.05" y="1999.5" ></text>
</g>
<g >
<title>bpf_ringbuf_submit (88,304,509 samples, 0.01%)</title><rect x="279.2" y="1877" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="282.20" y="1887.5" ></text>
</g>
<g >
<title>__get_user_8 (166,036,965 samples, 0.03%)</title><rect x="20.8" y="1941" width="0.3" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="23.78" y="1951.5" ></text>
</g>
<g >
<title>hw_breakpoint_del (54,215,438 samples, 0.01%)</title><rect x="485.8" y="1813" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="488.81" y="1823.5" ></text>
</g>
<g >
<title>LockRelationOid (288,927,497 samples, 0.05%)</title><rect x="297.0" y="2053" width="0.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="299.98" y="2063.5" ></text>
</g>
<g >
<title>scsi_queue_rq (56,195,609 samples, 0.01%)</title><rect x="10.9" y="1877" width="0.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="13.90" y="1887.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (108,334,957 samples, 0.02%)</title><rect x="501.4" y="2005" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="504.44" y="2015.5" ></text>
</g>
<g >
<title>pte_alloc_one (51,355,191 samples, 0.01%)</title><rect x="739.5" y="1893" width="0.1" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="742.50" y="1903.5" ></text>
</g>
<g >
<title>pick_next_task (2,179,571,003 samples, 0.36%)</title><rect x="1016.0" y="1877" width="4.3" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="1019.02" y="1887.5" ></text>
</g>
<g >
<title>schedule (7,961,000,984 samples, 1.33%)</title><rect x="647.1" y="1973" width="15.7" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="650.10" y="1983.5" ></text>
</g>
<g >
<title>recomputeNamespacePath (56,865,025 samples, 0.01%)</title><rect x="889.1" y="2037" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="892.14" y="2047.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (600,798,862 samples, 0.10%)</title><rect x="241.0" y="2053" width="1.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="243.96" y="2063.5" ></text>
</g>
<g >
<title>handle_irq_event (51,692,594 samples, 0.01%)</title><rect x="449.5" y="1957" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="452.55" y="1967.5" ></text>
</g>
<g >
<title>ExecInitFunc (54,674,635 samples, 0.01%)</title><rect x="256.9" y="2053" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="259.95" y="2063.5" ></text>
</g>
<g >
<title>do_fault (2,234,176,350 samples, 0.37%)</title><rect x="1088.4" y="1941" width="4.4" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="1091.41" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="981" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="991.5" ></text>
</g>
<g >
<title>asm_sysvec_irq_work (3,681,830,116 samples, 0.62%)</title><rect x="352.7" y="2037" width="7.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="355.66" y="2047.5" ></text>
</g>
<g >
<title>__sysvec_irq_work (214,870,638 samples, 0.04%)</title><rect x="265.4" y="2005" width="0.5" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="268.43" y="2015.5" ></text>
</g>
<g >
<title>set_rel_size (221,410,245 samples, 0.04%)</title><rect x="1158.0" y="2053" width="0.5" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="1161.04" y="2063.5" ></text>
</g>
<g >
<title>sched_ttwu_pending (202,005,144 samples, 0.03%)</title><rect x="1188.7" y="1781" width="0.4" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="1191.66" y="1791.5" ></text>
</g>
<g >
<title>rebalance_domains (338,816,033 samples, 0.06%)</title><rect x="1180.2" y="1813" width="0.7" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="1183.22" y="1823.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (56,313,866 samples, 0.01%)</title><rect x="740.5" y="2021" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="743.54" y="2031.5" ></text>
</g>
<g >
<title>perf_event_groups_first (363,464,496 samples, 0.06%)</title><rect x="1012.4" y="1797" width="0.7" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="1015.42" y="1807.5" ></text>
</g>
<g >
<title>bms_free (83,070,641 samples, 0.01%)</title><rect x="765.2" y="2037" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="768.19" y="2047.5" ></text>
</g>
<g >
<title>arch_cpu_idle (544,038,790 samples, 0.09%)</title><rect x="1188.4" y="1893" width="1.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="1191.43" y="1903.5" ></text>
</g>
<g >
<title>AfterTriggerFireDeferred (142,727,202 samples, 0.02%)</title><rect x="227.5" y="2053" width="0.3" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="230.51" y="2063.5" ></text>
</g>
<g >
<title>gup_pgd_range (222,832,668 samples, 0.04%)</title><rect x="1145.7" y="1877" width="0.4" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="1148.68" y="1887.5" ></text>
</g>
<g >
<title>blk_mq_run_hw_queues (56,515,670 samples, 0.01%)</title><rect x="10.7" y="1957" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="13.68" y="1967.5" ></text>
</g>
<g >
<title>__schedule (59,928,843 samples, 0.01%)</title><rect x="165.9" y="1941" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="168.94" y="1951.5" ></text>
</g>
<g >
<title>heap_form_tuple (200,250,978 samples, 0.03%)</title><rect x="1080.1" y="2053" width="0.4" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="1083.08" y="2063.5" ></text>
</g>
<g >
<title>pgwt_summary_push_event (318,294,602 samples, 0.05%)</title><rect x="40.4" y="2053" width="0.7" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="43.43" y="2063.5" ></text>
</g>
<g >
<title>afterTriggerMarkEvents.isra.0 (86,451,039 samples, 0.01%)</title><rect x="956.4" y="2053" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="959.43" y="2063.5" ></text>
</g>
<g >
<title>pq_getmsgend (55,458,950 samples, 0.01%)</title><rect x="640.0" y="2021" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="643.01" y="2031.5" ></text>
</g>
<g >
<title>StartReadBuffer (1,178,609,351 samples, 0.20%)</title><rect x="331.4" y="2053" width="2.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="334.42" y="2063.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (226,812,591 samples, 0.04%)</title><rect x="90.4" y="1781" width="0.4" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="93.38" y="1791.5" ></text>
</g>
<g >
<title>pg_utf8_verifystr (1,030,055,140 samples, 0.17%)</title><rect x="1128.6" y="2053" width="2.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1131.62" y="2063.5" ></text>
</g>
<g >
<title>__irq_work_queue_local (626,036,052 samples, 0.10%)</title><rect x="531.4" y="1685" width="1.3" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="534.42" y="1695.5" ></text>
</g>
<g >
<title>reconsider_outer_join_clauses (196,474,035 samples, 0.03%)</title><rect x="889.3" y="2037" width="0.3" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="892.25" y="2047.5" ></text>
</g>
<g >
<title>[libc.so.6] (139,846,352 samples, 0.02%)</title><rect x="834.3" y="2021" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="837.29" y="2031.5" ></text>
</g>
<g >
<title>__sysvec_irq_work (3,441,397,043 samples, 0.58%)</title><rect x="352.8" y="2005" width="6.8" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="355.82" y="2015.5" ></text>
</g>
<g >
<title>pq_beginmessage (88,956,933 samples, 0.01%)</title><rect x="638.9" y="2021" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="641.87" y="2031.5" ></text>
</g>
<g >
<title>pick_next_task_fair (61,228,394 samples, 0.01%)</title><rect x="538.6" y="1765" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="541.64" y="1775.5" ></text>
</g>
<g >
<title>malloc (192,539,958 samples, 0.03%)</title><rect x="48.4" y="2005" width="0.4" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="51.39" y="2015.5" ></text>
</g>
<g >
<title>group_sched_out (55,496,476 samples, 0.01%)</title><rect x="359.8" y="1861" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="362.77" y="1871.5" ></text>
</g>
<g >
<title>mark_buffer_dirty (504,776,761 samples, 0.08%)</title><rect x="946.5" y="1845" width="1.0" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="949.52" y="1855.5" ></text>
</g>
<g >
<title>blkdev_issue_flush (844,042,729 samples, 0.14%)</title><rect x="1037.5" y="1957" width="1.6" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="1040.48" y="1967.5" ></text>
</g>
<g >
<title>__submit_bio (51,471,316 samples, 0.01%)</title><rect x="1166.2" y="1813" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1169.16" y="1823.5" ></text>
</g>
<g >
<title>irqentry_exit (83,049,259 samples, 0.01%)</title><rect x="1125.3" y="2005" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1128.27" y="2015.5" ></text>
</g>
<g >
<title>merge_sched_in (80,227,309 samples, 0.01%)</title><rect x="527.7" y="1717" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="530.65" y="1727.5" ></text>
</g>
<g >
<title>set_task_cpu (165,744,125 samples, 0.03%)</title><rect x="1149.2" y="1909" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1152.18" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1669" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1679.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (53,627,794 samples, 0.01%)</title><rect x="288.5" y="2037" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="291.49" y="2047.5" ></text>
</g>
<g >
<title>exprLocation (113,440,234 samples, 0.02%)</title><rect x="620.5" y="2021" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="623.53" y="2031.5" ></text>
</g>
<g >
<title>__schedule (82,074,909 samples, 0.01%)</title><rect x="1136.5" y="1973" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1139.50" y="1983.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (54,862,766 samples, 0.01%)</title><rect x="1146.8" y="1845" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1149.77" y="1855.5" ></text>
</g>
<g >
<title>cost_seqscan (114,542,608 samples, 0.02%)</title><rect x="782.1" y="2037" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="785.09" y="2047.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (58,277,250 samples, 0.01%)</title><rect x="624.2" y="2005" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="627.17" y="2015.5" ></text>
</g>
<g >
<title>rseq_get_rseq_cs (55,715,299 samples, 0.01%)</title><rect x="21.1" y="1941" width="0.1" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="24.11" y="1951.5" ></text>
</g>
<g >
<title>group_sched_out (56,032,137 samples, 0.01%)</title><rect x="776.9" y="1845" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="779.88" y="1855.5" ></text>
</g>
<g >
<title>x64_sys_call (5,485,435,037 samples, 0.92%)</title><rect x="1144.3" y="2005" width="10.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1147.25" y="2015.5" ></text>
</g>
<g >
<title>start_xact_command (111,510,006 samples, 0.02%)</title><rect x="1164.4" y="2053" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="1167.40" y="2063.5" ></text>
</g>
<g >
<title>irq_work_run_list (93,016,533 samples, 0.02%)</title><rect x="437.4" y="1957" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="440.36" y="1967.5" ></text>
</g>
<g >
<title>TransactionTreeSetCommitTsData (230,544,791 samples, 0.04%)</title><rect x="337.2" y="2053" width="0.5" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="340.23" y="2063.5" ></text>
</g>
<g >
<title>has_useful_pathkeys (89,403,429 samples, 0.01%)</title><rect x="816.3" y="2037" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="819.27" y="2047.5" ></text>
</g>
<g >
<title>ep_poll_callback (214,870,638 samples, 0.04%)</title><rect x="265.4" y="1845" width="0.5" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="268.43" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="965" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="975.5" ></text>
</g>
<g >
<title>pg_downcase_ident (793,973,553 samples, 0.13%)</title><rect x="874.9" y="2037" width="1.5" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="877.87" y="2047.5" ></text>
</g>
<g >
<title>__wrgsbase_inactive (58,787,114 samples, 0.01%)</title><rect x="372.5" y="2037" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="375.50" y="2047.5" ></text>
</g>
<g >
<title>LockReleaseAll (1,186,063,709 samples, 0.20%)</title><rect x="439.2" y="2037" width="2.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="442.17" y="2047.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (424,411,412 samples, 0.07%)</title><rect x="205.2" y="1941" width="0.8" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="208.17" y="1951.5" ></text>
</g>
<g >
<title>PageRepairFragmentation (658,967,576 samples, 0.11%)</title><rect x="303.9" y="2053" width="1.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="306.91" y="2063.5" ></text>
</g>
<g >
<title>try_to_wake_up (54,158,423 samples, 0.01%)</title><rect x="367.7" y="1765" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="370.69" y="1775.5" ></text>
</g>
<g >
<title>scanNameSpaceForCTE (53,507,019 samples, 0.01%)</title><rect x="920.4" y="2037" width="0.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="923.40" y="2047.5" ></text>
</g>
<g >
<title>irqentry_exit (81,363,468 samples, 0.01%)</title><rect x="1163.1" y="2005" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1166.12" y="2015.5" ></text>
</g>
<g >
<title>vring_interrupt (227,232,715 samples, 0.04%)</title><rect x="1175.5" y="1829" width="0.4" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="1178.49" y="1839.5" ></text>
</g>
<g >
<title>default_wake_function (1,820,955,146 samples, 0.30%)</title><rect x="534.6" y="1621" width="3.6" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="537.61" y="1631.5" ></text>
</g>
<g >
<title>_raw_spin_lock (145,866,350 samples, 0.02%)</title><rect x="554.2" y="1669" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="557.18" y="1679.5" ></text>
</g>
<g >
<title>schedule (51,555,308 samples, 0.01%)</title><rect x="876.3" y="1957" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="879.34" y="1967.5" ></text>
</g>
<g >
<title>_raw_spin_lock (493,775,527 samples, 0.08%)</title><rect x="1146.9" y="1893" width="1.0" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1149.95" y="1903.5" ></text>
</g>
<g >
<title>get_typavgwidth (234,921,693 samples, 0.04%)</title><rect x="1057.7" y="2053" width="0.5" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="1060.69" y="2063.5" ></text>
</g>
<g >
<title>handle_softirqs (173,618,872 samples, 0.03%)</title><rect x="1189.2" y="1797" width="0.3" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="1192.16" y="1807.5" ></text>
</g>
<g >
<title>propagate_protected_usage (197,007,474 samples, 0.03%)</title><rect x="688.9" y="1813" width="0.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="691.89" y="1823.5" ></text>
</g>
<g >
<title>PQpipelineStatus (108,824,701 samples, 0.02%)</title><rect x="42.9" y="2053" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="45.94" y="2063.5" ></text>
</g>
<g >
<title>__wake_up_common (1,875,165,149 samples, 0.31%)</title><rect x="534.5" y="1653" width="3.7" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="537.50" y="1663.5" ></text>
</g>
<g >
<title>enqueue_task (111,643,913 samples, 0.02%)</title><rect x="265.6" y="1733" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="268.59" y="1743.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (55,730,273 samples, 0.01%)</title><rect x="476.2" y="1813" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="479.15" y="1823.5" ></text>
</g>
<g >
<title>schedule (108,334,957 samples, 0.02%)</title><rect x="501.4" y="1957" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="504.44" y="1967.5" ></text>
</g>
<g >
<title>refill_stock (202,154,988 samples, 0.03%)</title><rect x="126.8" y="1781" width="0.4" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="129.76" y="1791.5" ></text>
</g>
<g >
<title>wait_for_unix_gc (55,732,988 samples, 0.01%)</title><rect x="727.1" y="1925" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="730.12" y="1935.5" ></text>
</g>
<g >
<title>update_cfs_group (518,020,533 samples, 0.09%)</title><rect x="145.1" y="1701" width="1.0" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="148.09" y="1711.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (147,530,759 samples, 0.02%)</title><rect x="1015.6" y="1829" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1018.62" y="1839.5" ></text>
</g>
<g >
<title>pv_native_set_debugreg (55,161,559 samples, 0.01%)</title><rect x="846.7" y="1813" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="849.73" y="1823.5" ></text>
</g>
<g >
<title>index_insert_cleanup (81,181,466 samples, 0.01%)</title><rect x="836.2" y="2037" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="839.23" y="2047.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (55,062,137 samples, 0.01%)</title><rect x="940.8" y="2021" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="943.80" y="2031.5" ></text>
</g>
<g >
<title>pv_native_safe_halt (544,038,790 samples, 0.09%)</title><rect x="1188.4" y="1877" width="1.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1191.43" y="1887.5" ></text>
</g>
<g >
<title>bio_endio (79,191,037 samples, 0.01%)</title><rect x="1175.8" y="1653" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="1178.78" y="1663.5" ></text>
</g>
<g >
<title>scheduler_tick (201,959,249 samples, 0.03%)</title><rect x="352.1" y="1909" width="0.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="355.09" y="1919.5" ></text>
</g>
<g >
<title>__wake_up_common (54,158,423 samples, 0.01%)</title><rect x="367.7" y="1813" width="0.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="370.69" y="1823.5" ></text>
</g>
<g >
<title>worker_thread (84,443,636 samples, 0.01%)</title><rect x="10.5" y="2005" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="13.51" y="2015.5" ></text>
</g>
<g >
<title>enforce_generic_type_consistency (172,361,630 samples, 0.03%)</title><rect x="974.5" y="2053" width="0.4" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="977.54" y="2063.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (724,811,305 samples, 0.12%)</title><rect x="267.5" y="2053" width="1.5" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="270.54" y="2063.5" ></text>
</g>
<g >
<title>restore_fpregs_from_fpstate (625,549,484 samples, 0.10%)</title><rect x="986.8" y="1957" width="1.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="989.80" y="1967.5" ></text>
</g>
<g >
<title>__x64_sys_fdatasync (3,166,965,236 samples, 0.53%)</title><rect x="1037.3" y="1989" width="6.3" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="1040.31" y="1999.5" ></text>
</g>
<g >
<title>do_softirq.part.0 (53,159,104 samples, 0.01%)</title><rect x="1183.8" y="1957" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1186.83" y="1967.5" ></text>
</g>
<g >
<title>notifier_call_chain (178,776,503 samples, 0.03%)</title><rect x="1098.7" y="1989" width="0.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="1101.69" y="1999.5" ></text>
</g>
<g >
<title>exc_page_fault (2,862,915,123 samples, 0.48%)</title><rect x="1087.9" y="2021" width="5.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1090.89" y="2031.5" ></text>
</g>
<g >
<title>get_attstatsslot (388,316,708 samples, 0.06%)</title><rect x="1048.7" y="2053" width="0.7" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="1051.67" y="2063.5" ></text>
</g>
<g >
<title>__wake_up (56,991,187 samples, 0.01%)</title><rect x="505.3" y="1845" width="0.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="508.29" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1573" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1583.5" ></text>
</g>
<g >
<title>__cond_resched (86,639,872 samples, 0.01%)</title><rect x="672.6" y="1877" width="0.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="675.55" y="1887.5" ></text>
</g>
<g >
<title>generic_perform_write (2,775,611,950 samples, 0.46%)</title><rect x="945.1" y="1925" width="5.5" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="948.09" y="1935.5" ></text>
</g>
<g >
<title>get_attstatsslot (58,857,820 samples, 0.01%)</title><rect x="808.3" y="2037" width="0.1" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="811.27" y="2047.5" ></text>
</g>
<g >
<title>psi_flags_change (62,627,108 samples, 0.01%)</title><rect x="1152.5" y="1861" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1155.54" y="1871.5" ></text>
</g>
<g >
<title>irqentry_exit (58,481,936 samples, 0.01%)</title><rect x="1036.0" y="2005" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1039.00" y="2015.5" ></text>
</g>
<g >
<title>page_counter_cancel (198,306,476 samples, 0.03%)</title><rect x="689.6" y="1765" width="0.3" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="692.56" y="1775.5" ></text>
</g>
<g >
<title>psi_task_switch (175,494,478 samples, 0.03%)</title><rect x="1184.8" y="1957" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1187.78" y="1967.5" ></text>
</g>
<g >
<title>ReleaseCatCache (60,039,406 samples, 0.01%)</title><rect x="319.2" y="2053" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="322.23" y="2063.5" ></text>
</g>
<g >
<title>virtscsi_queuecommand (89,278,288 samples, 0.01%)</title><rect x="12.0" y="1845" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="14.96" y="1855.5" ></text>
</g>
<g >
<title>pick_next_entity (56,340,171 samples, 0.01%)</title><rect x="1184.5" y="1925" width="0.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="1187.50" y="1935.5" ></text>
</g>
<g >
<title>tick_sched_handle (169,334,438 samples, 0.03%)</title><rect x="479.4" y="1925" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="482.41" y="1935.5" ></text>
</g>
<g >
<title>consume_skb (56,853,220 samples, 0.01%)</title><rect x="169.1" y="1893" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="172.06" y="1903.5" ></text>
</g>
<g >
<title>pv_native_set_debugreg (909,537,122 samples, 0.15%)</title><rect x="658.5" y="1813" width="1.8" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="661.54" y="1823.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (54,042,616 samples, 0.01%)</title><rect x="543.9" y="1813" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="546.93" y="1823.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (83,049,259 samples, 0.01%)</title><rect x="1125.3" y="2021" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="1128.27" y="2031.5" ></text>
</g>
<g >
<title>virtscsi_req_done (53,025,289 samples, 0.01%)</title><rect x="1015.5" y="1749" width="0.1" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="1018.51" y="1759.5" ></text>
</g>
<g >
<title>avg_vruntime (55,623,678 samples, 0.01%)</title><rect x="707.8" y="1749" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="710.80" y="1759.5" ></text>
</g>
<g >
<title>_raw_spin_lock (136,000,631 samples, 0.02%)</title><rect x="36.5" y="1845" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="39.50" y="1855.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberLock (117,056,766 samples, 0.02%)</title><rect x="324.3" y="2053" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="327.34" y="2063.5" ></text>
</g>
<g >
<title>scsi_done_internal (53,025,289 samples, 0.01%)</title><rect x="1015.5" y="1701" width="0.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="1018.51" y="1711.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (119,933,891 samples, 0.02%)</title><rect x="554.6" y="1637" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="557.63" y="1647.5" ></text>
</g>
<g >
<title>ep_autoremove_wake_function (93,016,533 samples, 0.02%)</title><rect x="437.4" y="1781" width="0.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="440.36" y="1791.5" ></text>
</g>
<g >
<title>compute_parallel_worker (56,910,062 samples, 0.01%)</title><rect x="778.6" y="2037" width="0.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="781.63" y="2047.5" ></text>
</g>
<g >
<title>__wake_up_common (60,067,863 samples, 0.01%)</title><rect x="471.6" y="1797" width="0.2" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="474.64" y="1807.5" ></text>
</g>
<g >
<title>ExecTypeFromTLInternal (57,119,487 samples, 0.01%)</title><rect x="417.5" y="2037" width="0.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="420.52" y="2047.5" ></text>
</g>
<g >
<title>TransactionIdSetPageStatus (203,831,573 samples, 0.03%)</title><rect x="336.5" y="2053" width="0.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="339.47" y="2063.5" ></text>
</g>
<g >
<title>drain_stock (114,854,087 samples, 0.02%)</title><rect x="685.8" y="1797" width="0.2" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="688.81" y="1807.5" ></text>
</g>
<g >
<title>asm_exc_debug (1,503,829,218 samples, 0.25%)</title><rect x="541.0" y="1845" width="2.9" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="543.96" y="1855.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (138,778,379 samples, 0.02%)</title><rect x="343.5" y="1957" width="0.3" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="346.53" y="1967.5" ></text>
</g>
<g >
<title>[libc.so.6] (400,341,291 samples, 0.07%)</title><rect x="208.8" y="2021" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="211.85" y="2031.5" ></text>
</g>
<g >
<title>worker_thread (110,456,860 samples, 0.02%)</title><rect x="10.2" y="2005" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="13.18" y="2015.5" ></text>
</g>
<g >
<title>schedule (424,411,412 samples, 0.07%)</title><rect x="205.2" y="1909" width="0.8" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="208.17" y="1919.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (85,929,636 samples, 0.01%)</title><rect x="909.0" y="1813" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="911.95" y="1823.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (56,313,866 samples, 0.01%)</title><rect x="740.5" y="2005" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="743.54" y="2015.5" ></text>
</g>
<g >
<title>make_parsestate (258,212,473 samples, 0.04%)</title><rect x="1111.8" y="2053" width="0.5" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1114.81" y="2063.5" ></text>
</g>
<g >
<title>__fdget (300,226,124 samples, 0.05%)</title><rect x="187.0" y="1909" width="0.6" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="190.04" y="1919.5" ></text>
</g>
<g >
<title>SyncRepWaitForLSN (249,863,417 samples, 0.04%)</title><rect x="334.3" y="2053" width="0.5" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="337.27" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="437" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="447.5" ></text>
</g>
<g >
<title>detach_tasks (84,685,137 samples, 0.01%)</title><rect x="1180.6" y="1781" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1183.56" y="1791.5" ></text>
</g>
<g >
<title>blk_mq_complete_request (168,112,840 samples, 0.03%)</title><rect x="1175.6" y="1749" width="0.3" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1178.61" y="1759.5" ></text>
</g>
<g >
<title>is_projection_capable_path (90,127,355 samples, 0.02%)</title><rect x="839.8" y="2037" width="0.1" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="842.75" y="2047.5" ></text>
</g>
<g >
<title>RelnameGetRelid (86,107,383 samples, 0.01%)</title><rect x="319.7" y="2053" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="322.69" y="2063.5" ></text>
</g>
<g >
<title>blk_flush_complete_seq (171,138,878 samples, 0.03%)</title><rect x="1037.9" y="1829" width="0.3" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="1040.87" y="1839.5" ></text>
</g>
<g >
<title>block_write_end (529,453,272 samples, 0.09%)</title><rect x="946.5" y="1877" width="1.0" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="949.47" y="1887.5" ></text>
</g>
<g >
<title>_bt_check_compare (363,142,352 samples, 0.06%)</title><rect x="729.4" y="2037" width="0.7" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="732.37" y="2047.5" ></text>
</g>
<g >
<title>schedule (422,689,549 samples, 0.07%)</title><rect x="897.6" y="1973" width="0.8" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="900.56" y="1983.5" ></text>
</g>
<g >
<title>sched_clock_cpu (229,475,209 samples, 0.04%)</title><rect x="152.1" y="1733" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="155.11" y="1743.5" ></text>
</g>
<g >
<title>BufferSetHintBits16 (139,021,234 samples, 0.02%)</title><rect x="250.2" y="2053" width="0.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="253.25" y="2063.5" ></text>
</g>
<g >
<title>get_user_pages_fast (589,610,453 samples, 0.10%)</title><rect x="559.1" y="1701" width="1.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="562.06" y="1711.5" ></text>
</g>
<g >
<title>set_plan_references (282,558,956 samples, 0.05%)</title><rect x="923.6" y="2037" width="0.6" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="926.60" y="2047.5" ></text>
</g>
<g >
<title>folio_wait_bit (352,743,867 samples, 0.06%)</title><rect x="1039.3" y="1909" width="0.7" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1042.26" y="1919.5" ></text>
</g>
<g >
<title>worker_thread (201,993,970 samples, 0.03%)</title><rect x="11.3" y="2005" width="0.4" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="14.30" y="2015.5" ></text>
</g>
<g >
<title>ret_from_fork_asm (56,515,670 samples, 0.01%)</title><rect x="10.7" y="2053" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="13.68" y="2063.5" ></text>
</g>
<g >
<title>pg_plan_queries (56,874,062 samples, 0.01%)</title><rect x="1128.1" y="2053" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1131.07" y="2063.5" ></text>
</g>
<g >
<title>switch_mm_irqs_off (268,883,014 samples, 0.04%)</title><rect x="91.0" y="1813" width="0.5" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="94.02" y="1823.5" ></text>
</g>
<g >
<title>heap_freetuple (113,170,893 samples, 0.02%)</title><rect x="1080.5" y="2053" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1083.48" y="2063.5" ></text>
</g>
<g >
<title>reweight_entity (599,607,741 samples, 0.10%)</title><rect x="1003.8" y="1829" width="1.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1006.85" y="1839.5" ></text>
</g>
<g >
<title>preprocess_qual_conditions (144,983,073 samples, 0.02%)</title><rect x="883.5" y="2037" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="886.49" y="2047.5" ></text>
</g>
<g >
<title>XLogBeginInsert (257,422,407 samples, 0.04%)</title><rect x="360.7" y="2053" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="363.65" y="2063.5" ></text>
</g>
<g >
<title>__sysvec_call_function_single (227,044,964 samples, 0.04%)</title><rect x="1188.7" y="1829" width="0.4" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="1191.66" y="1839.5" ></text>
</g>
<g >
<title>scheduler_tick (56,680,433 samples, 0.01%)</title><rect x="652.5" y="1797" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="655.53" y="1807.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (54,936,306 samples, 0.01%)</title><rect x="447.3" y="1765" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="450.35" y="1775.5" ></text>
</g>
<g >
<title>__x64_sys_sendto (21,580,932,782 samples, 3.61%)</title><rect x="111.7" y="1941" width="42.6" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="114.73" y="1951.5" >__x6..</text>
</g>
<g >
<title>syscall_exit_to_user_mode (394,637,832 samples, 0.07%)</title><rect x="1143.4" y="2005" width="0.8" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="1146.42" y="2015.5" ></text>
</g>
<g >
<title>heapam_index_fetch_tuple (151,376,894 samples, 0.03%)</title><rect x="832.8" y="2037" width="0.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="835.76" y="2047.5" ></text>
</g>
<g >
<title>page_counter_cancel (119,956,337 samples, 0.02%)</title><rect x="686.4" y="1749" width="0.3" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="689.42" y="1759.5" ></text>
</g>
<g >
<title>xas_descend (172,246,934 samples, 0.03%)</title><rect x="1092.0" y="1845" width="0.3" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="1094.97" y="1855.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (55,840,878 samples, 0.01%)</title><rect x="794.9" y="2005" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="797.91" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (8,862,930,242 samples, 1.48%)</title><rect x="20.3" y="2005" width="17.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="23.26" y="2015.5" ></text>
</g>
<g >
<title>__wake_up (239,397,802 samples, 0.04%)</title><rect x="279.7" y="1877" width="0.5" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="282.70" y="1887.5" ></text>
</g>
<g >
<title>scanNSItemForColumn (110,917,162 samples, 0.02%)</title><rect x="920.2" y="2037" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="923.18" y="2047.5" ></text>
</g>
<g >
<title>AtEOXact_RelationCache (60,988,048 samples, 0.01%)</title><rect x="247.6" y="2053" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="250.55" y="2063.5" ></text>
</g>
<g >
<title>set_next_entity (56,561,235 samples, 0.01%)</title><rect x="11.5" y="1925" width="0.1" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="14.53" y="1935.5" ></text>
</g>
<g >
<title>irqentry_exit (164,542,412 samples, 0.03%)</title><rect x="485.6" y="1989" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="488.65" y="1999.5" ></text>
</g>
<g >
<title>xas_load (59,852,847 samples, 0.01%)</title><rect x="946.0" y="1861" width="0.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="948.99" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1189" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1199.5" ></text>
</g>
<g >
<title>ExecInitQual (171,196,806 samples, 0.03%)</title><rect x="409.7" y="2037" width="0.3" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="412.68" y="2047.5" ></text>
</g>
<g >
<title>__wake_up_common (239,397,802 samples, 0.04%)</title><rect x="279.7" y="1861" width="0.5" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="282.70" y="1871.5" ></text>
</g>
<g >
<title>irqentry_exit (65,057,585 samples, 0.01%)</title><rect x="441.4" y="1989" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="444.38" y="1999.5" ></text>
</g>
<g >
<title>hw_breakpoint_exceptions_notify (111,690,655 samples, 0.02%)</title><rect x="367.4" y="1973" width="0.2" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="370.42" y="1983.5" ></text>
</g>
<g >
<title>transformStmt (230,172,944 samples, 0.04%)</title><rect x="937.2" y="2037" width="0.5" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="940.21" y="2047.5" ></text>
</g>
<g >
<title>update_curr_se (403,416,036 samples, 0.07%)</title><rect x="708.7" y="1749" width="0.7" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="711.65" y="1759.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (55,420,994 samples, 0.01%)</title><rect x="178.5" y="1797" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="181.50" y="1807.5" ></text>
</g>
<g >
<title>UnpinBufferNoOwner (140,626,751 samples, 0.02%)</title><rect x="470.0" y="2037" width="0.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="472.95" y="2047.5" ></text>
</g>
<g >
<title>timestamptz_timestamp (116,067,937 samples, 0.02%)</title><rect x="934.2" y="2037" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="937.18" y="2047.5" ></text>
</g>
<g >
<title>__wake_up_common (54,158,423 samples, 0.01%)</title><rect x="367.7" y="1909" width="0.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="370.69" y="1919.5" ></text>
</g>
<g >
<title>x2apic_send_IPI_self (55,205,073 samples, 0.01%)</title><rect x="279.2" y="1813" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="282.20" y="1823.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (112,904,579 samples, 0.02%)</title><rect x="651.4" y="1845" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="654.41" y="1855.5" ></text>
</g>
<g >
<title>pick_next_task (112,082,396 samples, 0.02%)</title><rect x="615.9" y="1909" width="0.2" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="618.86" y="1919.5" ></text>
</g>
<g >
<title>irqentry_exit (60,625,435 samples, 0.01%)</title><rect x="450.7" y="1989" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="453.73" y="1999.5" ></text>
</g>
<g >
<title>find_placeholders_in_jointree (54,936,488 samples, 0.01%)</title><rect x="805.6" y="2037" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="808.64" y="2047.5" ></text>
</g>
<g >
<title>irq_work_run_list (214,870,638 samples, 0.04%)</title><rect x="265.4" y="1973" width="0.5" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="268.43" y="1983.5" ></text>
</g>
<g >
<title>__strdup (111,908,282 samples, 0.02%)</title><rect x="197.1" y="2053" width="0.2" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="200.11" y="2063.5" ></text>
</g>
<g >
<title>update_load_avg (115,085,570 samples, 0.02%)</title><rect x="356.0" y="1685" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="358.98" y="1695.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (53,656,837 samples, 0.01%)</title><rect x="19.0" y="1973" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="22.04" y="1983.5" ></text>
</g>
<g >
<title>__fdget (84,046,672 samples, 0.01%)</title><rect x="113.5" y="1893" width="0.2" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="116.54" y="1903.5" ></text>
</g>
<g >
<title>update_curr_se (54,550,900 samples, 0.01%)</title><rect x="77.0" y="1749" width="0.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="79.97" y="1759.5" ></text>
</g>
<g >
<title>set_rel_pathlist (313,540,987 samples, 0.05%)</title><rect x="924.3" y="2037" width="0.6" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="927.33" y="2047.5" ></text>
</g>
<g >
<title>common_interrupt (57,766,097 samples, 0.01%)</title><rect x="1188.5" y="1845" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="1191.55" y="1855.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (91,225,851 samples, 0.02%)</title><rect x="528.5" y="1765" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="531.52" y="1775.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_safe_stack (56,623,495 samples, 0.01%)</title><rect x="851.2" y="2021" width="0.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="854.21" y="2031.5" ></text>
</g>
<g >
<title>GetFullPageWriteInfo (114,251,927 samples, 0.02%)</title><rect x="269.1" y="2053" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="272.08" y="2063.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,710,495,509 samples, 0.45%)</title><rect x="495.6" y="1989" width="5.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="498.56" y="1999.5" ></text>
</g>
<g >
<title>irqentry_exit (51,054,532 samples, 0.01%)</title><rect x="1157.6" y="2005" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1160.60" y="2015.5" ></text>
</g>
<g >
<title>__schedule (163,289,967 samples, 0.03%)</title><rect x="871.3" y="1941" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="874.30" y="1951.5" ></text>
</g>
<g >
<title>clock_gettime (89,515,100 samples, 0.01%)</title><rect x="197.5" y="2053" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="200.50" y="2063.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (135,571,642 samples, 0.02%)</title><rect x="1027.8" y="1845" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="1030.81" y="1855.5" ></text>
</g>
<g >
<title>get_typcollation (685,172,178 samples, 0.11%)</title><rect x="622.9" y="2021" width="1.4" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="625.93" y="2031.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (57,321,497 samples, 0.01%)</title><rect x="750.7" y="2021" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="753.67" y="2031.5" ></text>
</g>
<g >
<title>apply_tlist_labeling (58,565,317 samples, 0.01%)</title><rect x="755.8" y="2037" width="0.1" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="758.81" y="2047.5" ></text>
</g>
<g >
<title>__memcg_slab_free_hook (1,903,287,939 samples, 0.32%)</title><rect x="905.2" y="1829" width="3.8" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="908.20" y="1839.5" ></text>
</g>
<g >
<title>schedule (56,313,866 samples, 0.01%)</title><rect x="740.5" y="1957" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="743.54" y="1967.5" ></text>
</g>
<g >
<title>native_write_msr (122,191,627 samples, 0.02%)</title><rect x="537.6" y="1509" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="540.57" y="1519.5" ></text>
</g>
<g >
<title>kthread (201,993,970 samples, 0.03%)</title><rect x="11.3" y="2021" width="0.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="14.30" y="2031.5" ></text>
</g>
<g >
<title>hw_breakpoint_del (84,900,242 samples, 0.01%)</title><rect x="1144.0" y="1845" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1146.98" y="1855.5" ></text>
</g>
<g >
<title>make_one_rel (261,925,084 samples, 0.04%)</title><rect x="853.3" y="2037" width="0.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="856.32" y="2047.5" ></text>
</g>
<g >
<title>list_make1_impl (95,678,054 samples, 0.02%)</title><rect x="1107.7" y="2053" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1110.69" y="2063.5" ></text>
</g>
<g >
<title>psi_group_change (485,275,258 samples, 0.08%)</title><rect x="148.7" y="1701" width="1.0" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="151.71" y="1711.5" ></text>
</g>
<g >
<title>LockBufferInternal (170,795,925 samples, 0.03%)</title><rect x="437.8" y="2037" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="440.77" y="2047.5" ></text>
</g>
<g >
<title>evaluateExpr (143,991,985 samples, 0.02%)</title><rect x="200.1" y="2053" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="203.11" y="2063.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (55,308,989 samples, 0.01%)</title><rect x="534.1" y="1797" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="537.11" y="1807.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8,887,814,880 samples, 1.49%)</title><rect x="20.2" y="2021" width="17.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="23.21" y="2031.5" ></text>
</g>
<g >
<title>pqGetInt (118,285,936 samples, 0.02%)</title><rect x="159.3" y="2037" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="162.27" y="2047.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (135,571,642 samples, 0.02%)</title><rect x="1027.8" y="1877" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1030.81" y="1887.5" ></text>
</g>
<g >
<title>__handle_irq_event_percpu (53,025,289 samples, 0.01%)</title><rect x="1015.5" y="1781" width="0.1" height="15.0" fill="rgb(236,147,35)" rx="2" ry="2" />
<text x="1018.51" y="1791.5" ></text>
</g>
<g >
<title>file_write_and_wait_range (2,093,379,366 samples, 0.35%)</title><rect x="1039.2" y="1957" width="4.1" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" />
<text x="1042.21" y="1967.5" ></text>
</g>
<g >
<title>select_idle_cpu (86,822,566 samples, 0.01%)</title><rect x="138.3" y="1701" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="141.34" y="1711.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1285" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1295.5" ></text>
</g>
<g >
<title>table_slot_callbacks (58,030,895 samples, 0.01%)</title><rect x="933.8" y="2037" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="936.84" y="2047.5" ></text>
</g>
<g >
<title>native_write_msr (56,855,438 samples, 0.01%)</title><rect x="1154.2" y="1829" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1157.23" y="1839.5" ></text>
</g>
<g >
<title>_raw_read_lock_irqsave (84,858,954 samples, 0.01%)</title><rect x="1105.6" y="1845" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1108.59" y="1855.5" ></text>
</g>
<g >
<title>add_wait_queue (546,450,336 samples, 0.09%)</title><rect x="98.1" y="1829" width="1.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="101.12" y="1839.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (80,180,587 samples, 0.01%)</title><rect x="557.9" y="1653" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="560.85" y="1663.5" ></text>
</g>
<g >
<title>examine_variable (284,391,541 samples, 0.05%)</title><rect x="618.9" y="2021" width="0.6" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text x="621.91" y="2031.5" ></text>
</g>
<g >
<title>__common_interrupt (227,232,715 samples, 0.04%)</title><rect x="1175.5" y="1893" width="0.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1178.49" y="1903.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (51,555,308 samples, 0.01%)</title><rect x="876.3" y="1973" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="879.34" y="1983.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (62,422,137 samples, 0.01%)</title><rect x="726.9" y="1797" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="729.88" y="1807.5" ></text>
</g>
<g >
<title>__common_interrupt (57,766,097 samples, 0.01%)</title><rect x="1188.5" y="1829" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1191.55" y="1839.5" ></text>
</g>
<g >
<title>arch_exit_to_user_mode_prepare.isra.0 (83,046,640 samples, 0.01%)</title><rect x="501.0" y="1957" width="0.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="503.97" y="1967.5" ></text>
</g>
<g >
<title>pgstat_get_entry_ref (56,729,077 samples, 0.01%)</title><rect x="878.6" y="2037" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="881.58" y="2047.5" ></text>
</g>
<g >
<title>irq_work_run_list (90,285,377 samples, 0.02%)</title><rect x="1099.1" y="1973" width="0.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="1102.10" y="1983.5" ></text>
</g>
<g >
<title>transformColumnRef (83,271,217 samples, 0.01%)</title><rect x="935.1" y="2037" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="938.08" y="2047.5" ></text>
</g>
<g >
<title>kworker/4:1H-kb (85,370,938 samples, 0.01%)</title><rect x="11.1" y="2069" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="14.13" y="2079.5" ></text>
</g>
<g >
<title>finalize_in_progress_typentries (113,254,249 samples, 0.02%)</title><rect x="1044.1" y="2053" width="0.3" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="1047.13" y="2063.5" ></text>
</g>
<g >
<title>hw_breakpoint_del (62,110,907 samples, 0.01%)</title><rect x="897.9" y="1829" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="900.95" y="1839.5" ></text>
</g>
<g >
<title>noop_dirty_folio (57,212,453 samples, 0.01%)</title><rect x="498.8" y="1877" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="501.83" y="1887.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (56,241,384 samples, 0.01%)</title><rect x="296.3" y="2021" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="299.31" y="2031.5" ></text>
</g>
<g >
<title>RelationClose (507,501,866 samples, 0.08%)</title><rect x="456.7" y="2037" width="1.0" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="459.69" y="2047.5" ></text>
</g>
<g >
<title>xas_set_mark (103,548,606 samples, 0.02%)</title><rect x="946.7" y="1797" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="949.74" y="1807.5" ></text>
</g>
<g >
<title>x64_sys_call (165,004,776 samples, 0.03%)</title><rect x="18.1" y="2005" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="21.12" y="2015.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (226,771,850 samples, 0.04%)</title><rect x="91.7" y="1765" width="0.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="94.66" y="1775.5" ></text>
</g>
<g >
<title>ReleaseCatCache (86,908,805 samples, 0.01%)</title><rect x="459.8" y="2037" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="462.79" y="2047.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (1,066,318,929 samples, 0.18%)</title><rect x="984.4" y="1989" width="2.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="987.42" y="1999.5" ></text>
</g>
<g >
<title>[libc.so.6] (403,338,271 samples, 0.07%)</title><rect x="506.1" y="2005" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="509.10" y="2015.5" ></text>
</g>
<g >
<title>ExecInitUpdateProjection (171,437,792 samples, 0.03%)</title><rect x="410.3" y="2037" width="0.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="413.34" y="2047.5" ></text>
</g>
<g >
<title>update_rq_clock (284,910,646 samples, 0.05%)</title><rect x="91.5" y="1813" width="0.6" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="94.55" y="1823.5" ></text>
</g>
<g >
<title>bpf_prog_ab52827c9cfdf652_on_watchpoint (2,703,470,120 samples, 0.45%)</title><rect x="472.5" y="1877" width="5.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="475.48" y="1887.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (58,243,319 samples, 0.01%)</title><rect x="1105.5" y="1813" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1108.47" y="1823.5" ></text>
</g>
<g >
<title>distribute_row_identity_vars (54,667,929 samples, 0.01%)</title><rect x="974.3" y="2053" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="977.33" y="2063.5" ></text>
</g>
<g >
<title>GetCurrentTransactionId (115,803,842 samples, 0.02%)</title><rect x="423.5" y="2037" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="426.48" y="2047.5" ></text>
</g>
<g >
<title>RelationGetIndexList (154,132,446 samples, 0.03%)</title><rect x="315.4" y="2053" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="318.44" y="2063.5" ></text>
</g>
<g >
<title>update_process_times (58,681,141 samples, 0.01%)</title><rect x="1084.5" y="1925" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1087.52" y="1935.5" ></text>
</g>
<g >
<title>base_yyparse (8,175,342,381 samples, 1.37%)</title><rect x="600.0" y="2021" width="16.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="603.05" y="2031.5" ></text>
</g>
<g >
<title>fetch_search_path_array (263,872,340 samples, 0.04%)</title><rect x="1043.6" y="2053" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1046.56" y="2063.5" ></text>
</g>
<g >
<title>try_to_wake_up (1,407,344,175 samples, 0.24%)</title><rect x="1102.6" y="1781" width="2.8" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="1105.63" y="1791.5" ></text>
</g>
<g >
<title>update_min_vruntime (84,355,337 samples, 0.01%)</title><rect x="483.1" y="1637" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="486.13" y="1647.5" ></text>
</g>
<g >
<title>__raw_read_lock_irqsave (85,340,368 samples, 0.01%)</title><rect x="538.2" y="1653" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="541.21" y="1663.5" ></text>
</g>
<g >
<title>bms_union (53,766,323 samples, 0.01%)</title><rect x="616.5" y="2021" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="619.45" y="2031.5" ></text>
</g>
<g >
<title>count_memcg_events.constprop.0 (58,200,429 samples, 0.01%)</title><rect x="1092.9" y="1973" width="0.1" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="1095.87" y="1983.5" ></text>
</g>
<g >
<title>__blk_mq_sched_dispatch_requests (144,329,100 samples, 0.02%)</title><rect x="11.9" y="1909" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="14.85" y="1919.5" ></text>
</g>
<g >
<title>do_futex (488,596,836 samples, 0.08%)</title><rect x="446.9" y="1925" width="1.0" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="449.95" y="1935.5" ></text>
</g>
<g >
<title>MultiXactIdSetOldestMember (653,380,105 samples, 0.11%)</title><rect x="299.1" y="2053" width="1.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="302.13" y="2063.5" ></text>
</g>
<g >
<title>CreateExecutorState (226,298,089 samples, 0.04%)</title><rect x="253.1" y="2053" width="0.4" height="15.0" fill="rgb(228,105,25)" rx="2" ry="2" />
<text x="256.07" y="2063.5" ></text>
</g>
<g >
<title>schedule (136,229,404 samples, 0.02%)</title><rect x="1038.9" y="1877" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1041.88" y="1887.5" ></text>
</g>
<g >
<title>exprCollation (344,659,680 samples, 0.06%)</title><rect x="1033.2" y="2053" width="0.7" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="1036.23" y="2063.5" ></text>
</g>
<g >
<title>pgstat_clear_snapshot (59,125,677 samples, 0.01%)</title><rect x="1131.0" y="2053" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="1133.99" y="2063.5" ></text>
</g>
<g >
<title>psi_flags_change (82,847,207 samples, 0.01%)</title><rect x="483.7" y="1685" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="486.73" y="1695.5" ></text>
</g>
<g >
<title>__wake_up (56,686,249 samples, 0.01%)</title><rect x="527.5" y="1717" width="0.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="530.47" y="1727.5" ></text>
</g>
<g >
<title>ctx_groups_sched_in (743,280,726 samples, 0.12%)</title><rect x="552.1" y="1637" width="1.5" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="555.11" y="1647.5" ></text>
</g>
<g >
<title>_raw_spin_lock (91,225,851 samples, 0.02%)</title><rect x="528.5" y="1781" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="531.52" y="1791.5" ></text>
</g>
<g >
<title>sched_clock_cpu (87,348,937 samples, 0.01%)</title><rect x="558.2" y="1669" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="561.17" y="1679.5" ></text>
</g>
<g >
<title>CheckValidResultRel (120,537,189 samples, 0.02%)</title><rect x="251.0" y="2053" width="0.2" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="254.00" y="2063.5" ></text>
</g>
<g >
<title>bpf_overflow_handler (2,875,075,835 samples, 0.48%)</title><rect x="472.3" y="1893" width="5.7" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="475.31" y="1903.5" ></text>
</g>
<g >
<title>restore_fpregs_from_fpstate (544,645,681 samples, 0.09%)</title><rect x="62.5" y="1893" width="1.1" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="65.53" y="1903.5" ></text>
</g>
<g >
<title>hw_breakpoint_exceptions_notify (257,736,410 samples, 0.04%)</title><rect x="264.6" y="1973" width="0.5" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="267.61" y="1983.5" ></text>
</g>
<g >
<title>update_min_vruntime (87,336,170 samples, 0.01%)</title><rect x="1002.5" y="1813" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="1005.53" y="1823.5" ></text>
</g>
<g >
<title>cfree (409,204,443 samples, 0.07%)</title><rect x="107.6" y="2005" width="0.8" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="110.61" y="2015.5" ></text>
</g>
<g >
<title>io_schedule (325,903,601 samples, 0.05%)</title><rect x="1039.3" y="1877" width="0.7" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="1042.32" y="1887.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (424,411,412 samples, 0.07%)</title><rect x="205.2" y="2037" width="0.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="208.17" y="2047.5" ></text>
</g>
<g >
<title>fix_expr_common (86,090,928 samples, 0.01%)</title><rect x="622.4" y="2021" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="625.43" y="2031.5" ></text>
</g>
<g >
<title>perf_pmu_nop_txn (121,812,804 samples, 0.02%)</title><rect x="1013.2" y="1797" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="1016.20" y="1807.5" ></text>
</g>
<g >
<title>avg_vruntime (53,003,946 samples, 0.01%)</title><rect x="28.6" y="1813" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="31.59" y="1823.5" ></text>
</g>
<g >
<title>__sys_recvfrom (55,283,268 samples, 0.01%)</title><rect x="166.4" y="1957" width="0.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="169.35" y="1967.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (758,258,872 samples, 0.13%)</title><rect x="527.2" y="1845" width="1.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="530.21" y="1855.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (2,190,206,730 samples, 0.37%)</title><rect x="647.8" y="1925" width="4.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="650.82" y="1935.5" ></text>
</g>
<g >
<title>pqGetc (233,154,008 samples, 0.04%)</title><rect x="159.5" y="2037" width="0.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="162.50" y="2047.5" ></text>
</g>
<g >
<title>_raw_spin_lock (137,909,791 samples, 0.02%)</title><rect x="499.0" y="1877" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="502.05" y="1887.5" ></text>
</g>
<g >
<title>CheckForSerializableConflictIn (83,458,275 samples, 0.01%)</title><rect x="394.6" y="2037" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="397.59" y="2047.5" ></text>
</g>
<g >
<title>sysvec_irq_work (85,236,206 samples, 0.01%)</title><rect x="505.3" y="1989" width="0.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="508.29" y="1999.5" ></text>
</g>
<g >
<title>update_min_vruntime (79,235,533 samples, 0.01%)</title><rect x="29.6" y="1813" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="32.58" y="1823.5" ></text>
</g>
<g >
<title>schedule (53,995,505 samples, 0.01%)</title><rect x="858.7" y="1957" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="861.67" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1557" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1567.5" ></text>
</g>
<g >
<title>schedule (520,294,244 samples, 0.09%)</title><rect x="343.5" y="1989" width="1.0" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="346.48" y="1999.5" ></text>
</g>
<g >
<title>coerce_type (59,293,423 samples, 0.01%)</title><rect x="967.0" y="2053" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="969.96" y="2063.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (56,313,866 samples, 0.01%)</title><rect x="740.5" y="1973" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="743.54" y="1983.5" ></text>
</g>
<g >
<title>max_parallel_hazard_checker (83,321,349 samples, 0.01%)</title><rect x="857.6" y="2037" width="0.2" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="860.60" y="2047.5" ></text>
</g>
<g >
<title>bpf_ringbuf_submit (112,622,555 samples, 0.02%)</title><rect x="350.2" y="1893" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="353.22" y="1903.5" ></text>
</g>
<g >
<title>__schedule (225,907,871 samples, 0.04%)</title><rect x="1038.3" y="1893" width="0.4" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1041.26" y="1903.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (159,846,193 samples, 0.03%)</title><rect x="196.2" y="1893" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="199.16" y="1903.5" ></text>
</g>
<g >
<title>native_write_msr (452,149,545 samples, 0.08%)</title><rect x="357.7" y="1669" width="0.9" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="360.74" y="1679.5" ></text>
</g>
<g >
<title>ReindexIsProcessingIndex (167,157,379 samples, 0.03%)</title><rect x="456.4" y="2037" width="0.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="459.36" y="2047.5" ></text>
</g>
<g >
<title>heapam_index_fetch_end (57,302,495 samples, 0.01%)</title><rect x="832.5" y="2037" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="835.53" y="2047.5" ></text>
</g>
<g >
<title>pqPutMsgStart (168,917,221 samples, 0.03%)</title><rect x="162.3" y="2037" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="165.25" y="2047.5" ></text>
</g>
<g >
<title>futex_wait_setup (976,144,452 samples, 0.16%)</title><rect x="558.3" y="1733" width="2.0" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="561.35" y="1743.5" ></text>
</g>
<g >
<title>create_modifytable_path (233,268,962 samples, 0.04%)</title><rect x="784.0" y="2037" width="0.5" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="786.99" y="2047.5" ></text>
</g>
<g >
<title>dequeue_task (115,676,541 samples, 0.02%)</title><rect x="302.2" y="1845" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="305.22" y="1855.5" ></text>
</g>
<g >
<title>do_syscall_64 (22,255,607,792 samples, 3.72%)</title><rect x="110.4" y="1973" width="43.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="113.40" y="1983.5" >do_s..</text>
</g>
<g >
<title>obj_cgroup_uncharge_pages (344,936,300 samples, 0.06%)</title><rect x="126.5" y="1797" width="0.7" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="129.48" y="1807.5" ></text>
</g>
<g >
<title>VirtualXactLockTableInsert (51,417,808 samples, 0.01%)</title><rect x="338.5" y="2053" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="341.52" y="2063.5" ></text>
</g>
<g >
<title>__memcg_slab_free_hook (55,828,596 samples, 0.01%)</title><rect x="174.8" y="1829" width="0.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="177.80" y="1839.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (285,946,338 samples, 0.05%)</title><rect x="372.7" y="2037" width="0.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="375.72" y="2047.5" ></text>
</g>
<g >
<title>__x64_sys_ppoll (424,411,412 samples, 0.07%)</title><rect x="205.2" y="1989" width="0.8" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="208.17" y="1999.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (115,704,222 samples, 0.02%)</title><rect x="652.4" y="1925" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="655.41" y="1935.5" ></text>
</g>
<g >
<title>detoast_attr (83,940,813 samples, 0.01%)</title><rect x="787.2" y="2037" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="790.20" y="2047.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (895,090,069 samples, 0.15%)</title><rect x="907.2" y="1813" width="1.8" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="910.19" y="1823.5" ></text>
</g>
<g >
<title>tick_sched_handle (55,308,989 samples, 0.01%)</title><rect x="534.1" y="1781" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="537.11" y="1791.5" ></text>
</g>
<g >
<title>ext4_reserve_inode_write (111,693,961 samples, 0.02%)</title><rect x="944.8" y="1845" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="947.76" y="1855.5" ></text>
</g>
<g >
<title>perf_bp_event (2,111,598,213 samples, 0.35%)</title><rect x="528.8" y="1797" width="4.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="531.76" y="1807.5" ></text>
</g>
<g >
<title>update_io_ticks (89,957,009 samples, 0.02%)</title><rect x="1037.6" y="1829" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="1040.64" y="1839.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (51,054,532 samples, 0.01%)</title><rect x="1157.6" y="2021" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="1160.60" y="2031.5" ></text>
</g>
<g >
<title>get_futex_key (648,533,395 samples, 0.11%)</title><rect x="558.9" y="1717" width="1.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="561.94" y="1727.5" ></text>
</g>
<g >
<title>refill_stock (368,672,925 samples, 0.06%)</title><rect x="689.3" y="1829" width="0.7" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="692.27" y="1839.5" ></text>
</g>
<g >
<title>examine_indexcol_variable (112,240,941 samples, 0.02%)</title><rect x="1031.9" y="2053" width="0.3" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="1034.93" y="2063.5" ></text>
</g>
<g >
<title>update_cfs_group (88,092,393 samples, 0.01%)</title><rect x="1104.0" y="1717" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="1107.02" y="1727.5" ></text>
</g>
<g >
<title>_raw_read_lock_irqsave (85,863,596 samples, 0.01%)</title><rect x="152.7" y="1829" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="155.74" y="1839.5" ></text>
</g>
<g >
<title>tts_buffer_heap_getsomeattrs (198,609,952 samples, 0.03%)</title><rect x="939.0" y="2037" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="942.04" y="2047.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,722,199,748 samples, 0.46%)</title><rect x="1087.9" y="2005" width="5.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1090.94" y="2015.5" ></text>
</g>
<g >
<title>recomputeNamespacePath (111,309,263 samples, 0.02%)</title><rect x="1138.2" y="2053" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="1141.16" y="2063.5" ></text>
</g>
<g >
<title>get_index_paths (114,725,428 samples, 0.02%)</title><rect x="809.3" y="2037" width="0.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="812.29" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1029" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1039.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,000,898,521 samples, 0.17%)</title><rect x="301.4" y="2005" width="2.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="304.43" y="2015.5" ></text>
</g>
<g >
<title>group_sched_out (84,900,242 samples, 0.01%)</title><rect x="1144.0" y="1877" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="1146.98" y="1887.5" ></text>
</g>
<g >
<title>enforce_generic_type_consistency (169,947,927 samples, 0.03%)</title><rect x="788.7" y="2037" width="0.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="791.68" y="2047.5" ></text>
</g>
<g >
<title>make_parsestate (56,493,028 samples, 0.01%)</title><rect x="854.6" y="2037" width="0.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="857.57" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="389" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="399.5" ></text>
</g>
<g >
<title>virtscsi_queuecommand (60,695,191 samples, 0.01%)</title><rect x="11.4" y="1845" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="14.41" y="1855.5" ></text>
</g>
<g >
<title>__memcg_slab_free_hook (53,867,717 samples, 0.01%)</title><rect x="902.8" y="1861" width="0.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="905.79" y="1871.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (92,725,070 samples, 0.02%)</title><rect x="897.9" y="1909" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="900.95" y="1919.5" ></text>
</g>
<g >
<title>__switch_to (58,484,661 samples, 0.01%)</title><rect x="371.8" y="2037" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="374.82" y="2047.5" ></text>
</g>
<g >
<title>group_sched_out (1,196,636,128 samples, 0.20%)</title><rect x="658.1" y="1861" width="2.4" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="661.09" y="1871.5" ></text>
</g>
<g >
<title>WaitEventSetWait (10,766,834,895 samples, 1.80%)</title><rect x="338.7" y="2053" width="21.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="341.73" y="2063.5" >W..</text>
</g>
<g >
<title>blk_insert_flush (196,081,850 samples, 0.03%)</title><rect x="1037.8" y="1845" width="0.4" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="1040.82" y="1855.5" ></text>
</g>
<g >
<title>add_function_cost (137,946,229 samples, 0.02%)</title><rect x="752.4" y="2037" width="0.3" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="755.44" y="2047.5" ></text>
</g>
<g >
<title>dec_rlimit_put_ucounts (89,464,991 samples, 0.01%)</title><rect x="1137.6" y="1877" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="1140.56" y="1887.5" ></text>
</g>
<g >
<title>scsi_done (168,112,840 samples, 0.03%)</title><rect x="1175.6" y="1781" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1178.61" y="1791.5" ></text>
</g>
<g >
<title>__bpf_ringbuf_reserve (82,880,941 samples, 0.01%)</title><rect x="367.4" y="1861" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="370.42" y="1871.5" ></text>
</g>
<g >
<title>kmalloc_size_roundup (142,410,420 samples, 0.02%)</title><rect x="675.4" y="1861" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="678.39" y="1871.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (54,601,398 samples, 0.01%)</title><rect x="501.3" y="2005" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="504.34" y="2015.5" ></text>
</g>
<g >
<title>update_load_avg (133,429,672 samples, 0.02%)</title><rect x="1178.0" y="1765" width="0.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="1180.99" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="885" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="895.5" ></text>
</g>
<g >
<title>perf_bp_event (171,073,014 samples, 0.03%)</title><rect x="279.1" y="1957" width="0.3" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="282.08" y="1967.5" ></text>
</g>
<g >
<title>__wake_up_common (2,651,490,604 samples, 0.44%)</title><rect x="480.3" y="1893" width="5.2" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="483.30" y="1903.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (88,746,833 samples, 0.01%)</title><rect x="1015.7" y="1781" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="1018.67" y="1791.5" ></text>
</g>
<g >
<title>__smp_call_single_queue (145,304,110 samples, 0.02%)</title><rect x="1154.3" y="1893" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1157.34" y="1903.5" ></text>
</g>
<g >
<title>base_yylex (82,971,736 samples, 0.01%)</title><rect x="599.9" y="2021" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="602.89" y="2031.5" ></text>
</g>
<g >
<title>CreatePortal (314,941,785 samples, 0.05%)</title><rect x="400.8" y="2037" width="0.6" height="15.0" fill="rgb(219,66,16)" rx="2" ry="2" />
<text x="403.78" y="2047.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (293,682,248 samples, 0.05%)</title><rect x="352.0" y="2005" width="0.6" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="355.03" y="2015.5" ></text>
</g>
<g >
<title>lapic_next_event (59,995,012 samples, 0.01%)</title><rect x="153.2" y="1749" width="0.1" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="156.18" y="1759.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (130,829,857 samples, 0.02%)</title><rect x="1013.6" y="1781" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="1016.55" y="1791.5" ></text>
</g>
<g >
<title>default_wake_function (60,067,863 samples, 0.01%)</title><rect x="471.6" y="1717" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="474.64" y="1727.5" ></text>
</g>
<g >
<title>available_idle_cpu (79,270,560 samples, 0.01%)</title><rect x="1148.3" y="1861" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="1151.31" y="1871.5" ></text>
</g>
<g >
<title>ppoll (142,996,013 samples, 0.02%)</title><rect x="55.8" y="2005" width="0.3" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="58.84" y="2015.5" ></text>
</g>
<g >
<title>bpf_prog_ab52827c9cfdf652_on_watchpoint (2,747,236,993 samples, 0.46%)</title><rect x="344.8" y="1893" width="5.4" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="347.80" y="1903.5" ></text>
</g>
<g >
<title>__x64_sys_ppoll (2,662,918,961 samples, 0.45%)</title><rect x="191.6" y="1957" width="5.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="194.62" y="1967.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (319,543,605 samples, 0.05%)</title><rect x="352.0" y="2021" width="0.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="355.03" y="2031.5" ></text>
</g>
<g >
<title>dequeue_task (1,555,871,028 samples, 0.26%)</title><rect x="548.8" y="1685" width="3.0" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="551.76" y="1695.5" ></text>
</g>
<g >
<title>AllocSetAllocLarge (683,202,723 samples, 0.11%)</title><rect x="239.6" y="2053" width="1.4" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="242.61" y="2063.5" ></text>
</g>
<g >
<title>ttwu_do_activate (63,792,261 samples, 0.01%)</title><rect x="1099.2" y="1749" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="1102.15" y="1759.5" ></text>
</g>
<g >
<title>__perf_event_overflow (2,083,493,269 samples, 0.35%)</title><rect x="528.8" y="1765" width="4.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="531.82" y="1775.5" ></text>
</g>
<g >
<title>native_smp_send_reschedule (452,149,545 samples, 0.08%)</title><rect x="357.7" y="1685" width="0.9" height="15.0" fill="rgb(223,82,19)" rx="2" ry="2" />
<text x="360.74" y="1695.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (138,068,685 samples, 0.02%)</title><rect x="344.1" y="1941" width="0.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="347.08" y="1951.5" ></text>
</g>
<g >
<title>irq_exit_rcu (514,934,285 samples, 0.09%)</title><rect x="1180.0" y="1893" width="1.0" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1182.99" y="1903.5" ></text>
</g>
<g >
<title>sched_clock_cpu (58,337,618 samples, 0.01%)</title><rect x="86.5" y="1749" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="89.46" y="1759.5" ></text>
</g>
<g >
<title>ep_poll_callback (239,397,802 samples, 0.04%)</title><rect x="279.7" y="1845" width="0.5" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="282.70" y="1855.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (53,911,540 samples, 0.01%)</title><rect x="407.6" y="1973" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="410.59" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (9,306,341,418 samples, 1.56%)</title><rect x="561.4" y="165" width="18.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="564.45" y="175.5" ></text>
</g>
<g >
<title>bpf_ringbuf_submit (150,705,923 samples, 0.03%)</title><rect x="1098.7" y="1877" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1101.75" y="1887.5" ></text>
</g>
<g >
<title>enqueue_task (1,642,274,529 samples, 0.27%)</title><rect x="354.4" y="1733" width="3.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="357.44" y="1743.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (83,350,515 samples, 0.01%)</title><rect x="776.8" y="1973" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="779.83" y="1983.5" ></text>
</g>
<g >
<title>dequeue_task_fair (3,102,145,047 samples, 0.52%)</title><rect x="1000.3" y="1861" width="6.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1003.30" y="1871.5" ></text>
</g>
<g >
<title>[libc.so.6] (265,208,254 samples, 0.04%)</title><rect x="1111.1" y="2037" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1114.12" y="2047.5" ></text>
</g>
<g >
<title>raw_parser (353,468,922 samples, 0.06%)</title><rect x="1135.3" y="2053" width="0.7" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1138.28" y="2063.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (1,767,923,213 samples, 0.30%)</title><rect x="1021.4" y="1845" width="3.5" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1024.41" y="1855.5" ></text>
</g>
<g >
<title>__raw_read_lock_irqsave (482,471,780 samples, 0.08%)</title><rect x="181.7" y="1733" width="1.0" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="184.73" y="1743.5" ></text>
</g>
<g >
<title>load_balance (144,743,032 samples, 0.02%)</title><rect x="1189.2" y="1733" width="0.3" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="1192.22" y="1743.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (282,213,726 samples, 0.05%)</title><rect x="479.2" y="2021" width="0.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="482.24" y="2031.5" ></text>
</g>
<g >
<title>schedule (169,645,470 samples, 0.03%)</title><rect x="264.3" y="1989" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="267.27" y="1999.5" ></text>
</g>
<g >
<title>psi_task_switch (173,855,744 samples, 0.03%)</title><rect x="194.5" y="1845" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="197.47" y="1855.5" ></text>
</g>
<g >
<title>perf_ctx_disable (86,146,226 samples, 0.01%)</title><rect x="1024.5" y="1829" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="1027.51" y="1839.5" ></text>
</g>
<g >
<title>_IO_fwrite (79,947,921 samples, 0.01%)</title><rect x="19.0" y="2037" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="22.04" y="2047.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (58,681,141 samples, 0.01%)</title><rect x="1084.5" y="2021" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1087.52" y="2031.5" ></text>
</g>
<g >
<title>event_sched_in (54,688,229 samples, 0.01%)</title><rect x="1038.3" y="1781" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1041.32" y="1791.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (56,597,243 samples, 0.01%)</title><rect x="1058.0" y="1989" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1061.05" y="1999.5" ></text>
</g>
<g >
<title>make_fn_arguments (198,087,482 samples, 0.03%)</title><rect x="852.9" y="2037" width="0.4" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="855.93" y="2047.5" ></text>
</g>
<g >
<title>ctx_sched_out (84,900,242 samples, 0.01%)</title><rect x="1144.0" y="1909" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1146.98" y="1919.5" ></text>
</g>
<g >
<title>update_rq_clock (342,552,325 samples, 0.06%)</title><rect x="151.9" y="1749" width="0.7" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="154.88" y="1759.5" ></text>
</g>
<g >
<title>pick_next_task_fair (54,002,193 samples, 0.01%)</title><rect x="501.2" y="1909" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="504.17" y="1919.5" ></text>
</g>
<g >
<title>LockReassignCurrentOwner (170,313,291 samples, 0.03%)</title><rect x="296.6" y="2053" width="0.4" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="299.65" y="2063.5" ></text>
</g>
<g >
<title>schedule (81,363,468 samples, 0.01%)</title><rect x="1163.1" y="1973" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1166.12" y="1983.5" ></text>
</g>
<g >
<title>place_entity (137,551,370 samples, 0.02%)</title><rect x="143.4" y="1685" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="146.45" y="1695.5" ></text>
</g>
<g >
<title>start_secondary (7,186,225,688 samples, 1.20%)</title><rect x="1174.1" y="2037" width="14.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1177.13" y="2047.5" ></text>
</g>
<g >
<title>irq_work_run_list (3,441,397,043 samples, 0.58%)</title><rect x="352.8" y="1973" width="6.8" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="355.82" y="1983.5" ></text>
</g>
<g >
<title>SearchSysCache1 (112,805,226 samples, 0.02%)</title><rect x="518.3" y="2021" width="0.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="521.32" y="2031.5" ></text>
</g>
<g >
<title>enqueue_entity (195,860,675 samples, 0.03%)</title><rect x="1103.6" y="1717" width="0.4" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="1106.64" y="1727.5" ></text>
</g>
<g >
<title>x86_64_start_kernel (853,548,337 samples, 0.14%)</title><rect x="1188.3" y="2037" width="1.7" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1191.31" y="2047.5" ></text>
</g>
<g >
<title>pg_client_to_server (743,131,292 samples, 0.12%)</title><rect x="636.8" y="2021" width="1.5" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="639.84" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (27,981,581,082 samples, 4.68%)</title><rect x="524.8" y="1973" width="55.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="527.81" y="1983.5" >[unkn..</text>
</g>
<g >
<title>scsi_io_completion (57,766,097 samples, 0.01%)</title><rect x="1188.5" y="1637" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="1191.55" y="1647.5" ></text>
</g>
<g >
<title>__wake_up (90,285,377 samples, 0.02%)</title><rect x="1099.1" y="1829" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="1102.10" y="1839.5" ></text>
</g>
<g >
<title>bms_copy (54,036,370 samples, 0.01%)</title><rect x="616.2" y="2021" width="0.2" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text x="619.24" y="2031.5" ></text>
</g>
<g >
<title>[libc.so.6] (370,205,502 samples, 0.06%)</title><rect x="202.6" y="2037" width="0.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="205.61" y="2047.5" ></text>
</g>
<g >
<title>check_functions_in_node (188,960,983 samples, 0.03%)</title><rect x="772.4" y="2037" width="0.4" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="775.39" y="2047.5" ></text>
</g>
<g >
<title>HeapTupleIsSurelyDead (199,703,217 samples, 0.03%)</title><rect x="431.4" y="2037" width="0.4" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="434.44" y="2047.5" ></text>
</g>
<g >
<title>RelationGetIndexPredicate (56,118,349 samples, 0.01%)</title><rect x="459.2" y="2037" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="462.20" y="2047.5" ></text>
</g>
<g >
<title>check_kill_permission (222,751,630 samples, 0.04%)</title><rect x="1100.6" y="1941" width="0.4" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1103.56" y="1951.5" ></text>
</g>
<g >
<title>try_get_folio (56,790,272 samples, 0.01%)</title><rect x="1146.0" y="1829" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1149.01" y="1839.5" ></text>
</g>
<g >
<title>table_block_relation_size (111,506,838 samples, 0.02%)</title><rect x="1166.9" y="2053" width="0.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="1169.95" y="2063.5" ></text>
</g>
<g >
<title>attnameAttNum (59,154,229 samples, 0.01%)</title><rect x="957.2" y="2053" width="0.1" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="960.22" y="2063.5" ></text>
</g>
<g >
<title>update_load_avg (1,071,913,548 samples, 0.18%)</title><rect x="712.8" y="1781" width="2.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="715.79" y="1791.5" ></text>
</g>
<g >
<title>ExecIndexBuildScanKeys (166,959,767 samples, 0.03%)</title><rect x="256.6" y="2053" width="0.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="259.62" y="2063.5" ></text>
</g>
<g >
<title>rseq_update_cpu_node_id (57,315,909 samples, 0.01%)</title><rect x="191.2" y="1941" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="194.16" y="1951.5" ></text>
</g>
<g >
<title>tick_irq_enter (242,720,856 samples, 0.04%)</title><rect x="1179.5" y="1877" width="0.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="1182.51" y="1887.5" ></text>
</g>
<g >
<title>get_opfamily_member (175,218,517 samples, 0.03%)</title><rect x="809.8" y="2037" width="0.3" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="812.80" y="2047.5" ></text>
</g>
<g >
<title>os_xsave (280,813,378 samples, 0.05%)</title><rect x="1030.2" y="2037" width="0.5" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1033.19" y="2047.5" ></text>
</g>
<g >
<title>__mark_inode_dirty (509,272,457 samples, 0.09%)</title><rect x="944.0" y="1893" width="1.0" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="947.03" y="1903.5" ></text>
</g>
<g >
<title>PQisBusy (180,296,788 samples, 0.03%)</title><rect x="42.6" y="2053" width="0.3" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="45.59" y="2063.5" ></text>
</g>
<g >
<title>psi_task_switch (85,237,935 samples, 0.01%)</title><rect x="847.1" y="1941" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="850.13" y="1951.5" ></text>
</g>
<g >
<title>setup_eager_aggregation (83,752,674 samples, 0.01%)</title><rect x="925.2" y="2037" width="0.2" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="928.22" y="2047.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (55,976,096 samples, 0.01%)</title><rect x="616.1" y="1893" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="619.08" y="1903.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (53,068,267 samples, 0.01%)</title><rect x="443.3" y="1973" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="446.30" y="1983.5" ></text>
</g>
<g >
<title>mod_memcg_state (114,544,245 samples, 0.02%)</title><rect x="126.5" y="1765" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="129.54" y="1775.5" ></text>
</g>
<g >
<title>wakeup_preempt (519,987,284 samples, 0.09%)</title><rect x="357.7" y="1733" width="1.0" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="360.68" y="1743.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (56,419,944 samples, 0.01%)</title><rect x="302.5" y="1845" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="305.45" y="1855.5" ></text>
</g>
<g >
<title>enqueue_task_fair (82,607,564 samples, 0.01%)</title><rect x="1180.3" y="1749" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="1183.28" y="1759.5" ></text>
</g>
<g >
<title>process_one_work (59,379,595 samples, 0.01%)</title><rect x="10.8" y="1989" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="13.79" y="1999.5" ></text>
</g>
<g >
<title>SPI_inside_nonatomic_context (57,739,186 samples, 0.01%)</title><rect x="325.1" y="2053" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="328.12" y="2063.5" ></text>
</g>
<g >
<title>schedule (312,024,051 samples, 0.05%)</title><rect x="1143.6" y="1989" width="0.6" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1146.58" y="1999.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (4,056,040,074 samples, 0.68%)</title><rect x="1008.0" y="1877" width="8.0" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="1011.01" y="1887.5" ></text>
</g>
<g >
<title>scsi_io_completion (168,112,840 samples, 0.03%)</title><rect x="1175.6" y="1701" width="0.3" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="1178.61" y="1711.5" ></text>
</g>
<g >
<title>__skb_datagram_iter (1,314,579,475 samples, 0.22%)</title><rect x="184.3" y="1845" width="2.6" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="187.33" y="1855.5" ></text>
</g>
<g >
<title>get_baserel_parampathinfo (58,731,726 samples, 0.01%)</title><rect x="808.4" y="2037" width="0.1" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" />
<text x="811.38" y="2047.5" ></text>
</g>
<g >
<title>exprType (55,550,962 samples, 0.01%)</title><rect x="620.9" y="2021" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="623.87" y="2031.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (84,592,023 samples, 0.01%)</title><rect x="1031.8" y="2053" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1034.77" y="2063.5" ></text>
</g>
<g >
<title>reweight_entity (462,760,108 samples, 0.08%)</title><rect x="145.2" y="1685" width="0.9" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="148.20" y="1695.5" ></text>
</g>
<g >
<title>futex_wait (488,596,836 samples, 0.08%)</title><rect x="446.9" y="1909" width="1.0" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="449.95" y="1919.5" ></text>
</g>
<g >
<title>current_obj_cgroup (87,214,068 samples, 0.01%)</title><rect x="672.8" y="1877" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="675.84" y="1887.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (85,332,002 samples, 0.01%)</title><rect x="686.0" y="1797" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="689.04" y="1807.5" ></text>
</g>
<g >
<title>mod_objcg_state (84,262,311 samples, 0.01%)</title><rect x="121.2" y="1813" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="124.22" y="1823.5" ></text>
</g>
<g >
<title>simple_copy_to_iter (56,471,940 samples, 0.01%)</title><rect x="915.3" y="1861" width="0.1" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="918.26" y="1871.5" ></text>
</g>
<g >
<title>default_wake_function (54,158,423 samples, 0.01%)</title><rect x="367.7" y="1781" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="370.69" y="1791.5" ></text>
</g>
<g >
<title>__update_load_avg_se (107,405,861 samples, 0.02%)</title><rect x="1152.2" y="1845" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1155.22" y="1855.5" ></text>
</g>
<g >
<title>find_base_rel (54,231,032 samples, 0.01%)</title><rect x="805.0" y="2037" width="0.1" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="808.04" y="2047.5" ></text>
</g>
<g >
<title>_pthread_cleanup_push (117,513,455 samples, 0.02%)</title><rect x="560.7" y="1877" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="563.66" y="1887.5" ></text>
</g>
<g >
<title>pick_eevdf (83,621,849 samples, 0.01%)</title><rect x="653.7" y="1893" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="656.74" y="1903.5" ></text>
</g>
<g >
<title>switch_fpu_return (141,026,374 samples, 0.02%)</title><rect x="301.7" y="1941" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="304.67" y="1951.5" ></text>
</g>
<g >
<title>drain_stock (57,155,469 samples, 0.01%)</title><rect x="126.3" y="1765" width="0.1" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="129.31" y="1775.5" ></text>
</g>
<g >
<title>_raw_write_lock_irq (54,348,292 samples, 0.01%)</title><rect x="23.1" y="1925" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="26.08" y="1935.5" ></text>
</g>
<g >
<title>pqParseInput3 (504,457,874 samples, 0.08%)</title><rect x="207.0" y="2053" width="1.0" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="209.96" y="2063.5" ></text>
</g>
<g >
<title>markRTEForSelectPriv (85,232,291 samples, 0.01%)</title><rect x="856.7" y="2037" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="859.70" y="2047.5" ></text>
</g>
<g >
<title>drain_stock (59,912,521 samples, 0.01%)</title><rect x="178.3" y="1717" width="0.1" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="181.33" y="1727.5" ></text>
</g>
<g >
<title>folio_clear_dirty_for_io (54,075,861 samples, 0.01%)</title><rect x="1166.7" y="1829" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1169.67" y="1839.5" ></text>
</g>
<g >
<title>hw_breakpoint_exceptions_notify (171,073,014 samples, 0.03%)</title><rect x="279.1" y="1973" width="0.3" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="282.08" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="501" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="511.5" ></text>
</g>
<g >
<title>GlobalVisTestFor (56,676,567 samples, 0.01%)</title><rect x="430.8" y="2037" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="433.84" y="2047.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (83,350,515 samples, 0.01%)</title><rect x="776.8" y="2005" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="779.83" y="2015.5" ></text>
</g>
<g >
<title>__wake_up_common (1,236,016,821 samples, 0.21%)</title><rect x="180.3" y="1781" width="2.4" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="183.30" y="1791.5" ></text>
</g>
<g >
<title>virtscsi_add_cmd (89,278,288 samples, 0.01%)</title><rect x="12.0" y="1829" width="0.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="14.96" y="1839.5" ></text>
</g>
<g >
<title>x2apic_send_IPI_self (949,678,327 samples, 0.16%)</title><rect x="348.2" y="1813" width="1.9" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="351.23" y="1823.5" ></text>
</g>
<g >
<title>_bt_compare (3,789,245,066 samples, 0.63%)</title><rect x="740.6" y="2037" width="7.5" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="743.65" y="2047.5" ></text>
</g>
<g >
<title>signalfd_copyinfo (109,811,954 samples, 0.02%)</title><rect x="1137.2" y="1925" width="0.2" height="15.0" fill="rgb(246,193,46)" rx="2" ry="2" />
<text x="1140.23" y="1935.5" ></text>
</g>
<g >
<title>handle_pte_fault (2,322,052,898 samples, 0.39%)</title><rect x="1088.3" y="1957" width="4.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1091.28" y="1967.5" ></text>
</g>
<g >
<title>ExecComputeSlotInfo.isra.0 (173,035,666 samples, 0.03%)</title><rect x="404.1" y="2037" width="0.4" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="407.12" y="2047.5" ></text>
</g>
<g >
<title>update_curr (84,355,337 samples, 0.01%)</title><rect x="483.1" y="1653" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="486.13" y="1663.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (54,220,547 samples, 0.01%)</title><rect x="1078.5" y="2005" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1081.53" y="2015.5" ></text>
</g>
<g >
<title>__bitmap_and (53,894,444 samples, 0.01%)</title><rect x="698.6" y="1781" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="701.64" y="1791.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (58,307,786 samples, 0.01%)</title><rect x="122.8" y="1813" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="125.79" y="1823.5" ></text>
</g>
<g >
<title>__virt_addr_valid (252,404,916 samples, 0.04%)</title><rect x="913.5" y="1781" width="0.5" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="916.53" y="1791.5" ></text>
</g>
<g >
<title>__rcu_read_lock (83,084,123 samples, 0.01%)</title><rect x="554.0" y="1669" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="557.01" y="1679.5" ></text>
</g>
<g >
<title>hw_breakpoint_exceptions_notify (178,776,503 samples, 0.03%)</title><rect x="1098.7" y="1973" width="0.3" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="1101.69" y="1983.5" ></text>
</g>
<g >
<title>_bt_checkkeys (224,314,958 samples, 0.04%)</title><rect x="595.9" y="2021" width="0.4" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="598.90" y="2031.5" ></text>
</g>
<g >
<title>skb_copy_datagram_from_iter (63,812,583 samples, 0.01%)</title><rect x="665.1" y="1941" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="668.10" y="1951.5" ></text>
</g>
<g >
<title>x2apic_send_IPI_self (599,296,082 samples, 0.10%)</title><rect x="531.5" y="1653" width="1.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="534.47" y="1663.5" ></text>
</g>
<g >
<title>lcons (141,372,253 samples, 0.02%)</title><rect x="842.1" y="2037" width="0.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="845.13" y="2047.5" ></text>
</g>
<g >
<title>rseq_ip_fixup (117,235,158 samples, 0.02%)</title><rect x="301.4" y="1941" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="304.43" y="1951.5" ></text>
</g>
<g >
<title>__update_load_avg_se (174,100,720 samples, 0.03%)</title><rect x="1006.1" y="1829" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1009.08" y="1839.5" ></text>
</g>
<g >
<title>select_task_rq (2,047,535,949 samples, 0.34%)</title><rect x="696.9" y="1829" width="4.0" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="699.88" y="1839.5" ></text>
</g>
<g >
<title>ExecCloseResultRelations (113,038,411 samples, 0.02%)</title><rect x="403.9" y="2037" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="406.89" y="2047.5" ></text>
</g>
<g >
<title>update_rq_clock (201,085,665 samples, 0.03%)</title><rect x="359.0" y="1749" width="0.4" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="361.99" y="1759.5" ></text>
</g>
<g >
<title>memcmp (57,403,920 samples, 0.01%)</title><rect x="529.3" y="1701" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="532.33" y="1711.5" ></text>
</g>
<g >
<title>arch_exit_to_user_mode_prepare.isra.0 (53,966,843 samples, 0.01%)</title><rect x="1143.5" y="1989" width="0.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="1146.48" y="1999.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (173,296,669 samples, 0.03%)</title><rect x="806.7" y="2037" width="0.3" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="809.70" y="2047.5" ></text>
</g>
<g >
<title>perf_ctx_disable (55,588,762 samples, 0.01%)</title><rect x="652.6" y="1925" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="655.64" y="1935.5" ></text>
</g>
<g >
<title>do_futex (285,946,338 samples, 0.05%)</title><rect x="372.7" y="1973" width="0.6" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="375.72" y="1983.5" ></text>
</g>
<g >
<title>blk_account_io_start (89,957,009 samples, 0.02%)</title><rect x="1037.6" y="1845" width="0.2" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="1040.64" y="1855.5" ></text>
</g>
<g >
<title>irq_work_single (56,686,249 samples, 0.01%)</title><rect x="527.5" y="1749" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="530.47" y="1759.5" ></text>
</g>
<g >
<title>__wake_up_common (214,870,638 samples, 0.04%)</title><rect x="265.4" y="1861" width="0.5" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="268.43" y="1871.5" ></text>
</g>
<g >
<title>__schedule (56,313,866 samples, 0.01%)</title><rect x="740.5" y="1941" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="743.54" y="1951.5" ></text>
</g>
<g >
<title>remove_useless_results_recurse (59,200,230 samples, 0.01%)</title><rect x="918.5" y="2037" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="921.55" y="2047.5" ></text>
</g>
<g >
<title>update_load_avg (234,579,352 samples, 0.04%)</title><rect x="1019.3" y="1829" width="0.5" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="1022.29" y="1839.5" ></text>
</g>
<g >
<title>_raw_spin_lock (229,715,817 samples, 0.04%)</title><rect x="663.9" y="1941" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="666.90" y="1951.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (312,393,413 samples, 0.05%)</title><rect x="115.1" y="1861" width="0.6" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="118.10" y="1871.5" ></text>
</g>
<g >
<title>extract_update_targetlist_colnos (116,148,100 samples, 0.02%)</title><rect x="803.3" y="2037" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="806.35" y="2047.5" ></text>
</g>
<g >
<title>ep_poll_callback (1,960,505,517 samples, 0.33%)</title><rect x="534.5" y="1685" width="3.9" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="537.50" y="1695.5" ></text>
</g>
<g >
<title>kick_pool (58,839,432 samples, 0.01%)</title><rect x="1038.0" y="1717" width="0.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="1040.98" y="1727.5" ></text>
</g>
<g >
<title>equal (443,298,878 samples, 0.07%)</title><rect x="790.4" y="2037" width="0.9" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="793.39" y="2047.5" ></text>
</g>
<g >
<title>psi_flags_change (87,928,492 samples, 0.01%)</title><rect x="87.9" y="1797" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="90.90" y="1807.5" ></text>
</g>
<g >
<title>handle_edge_irq (57,766,097 samples, 0.01%)</title><rect x="1188.5" y="1813" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1191.55" y="1823.5" ></text>
</g>
<g >
<title>__wake_up_common (56,780,393 samples, 0.01%)</title><rect x="343.3" y="1813" width="0.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="346.31" y="1823.5" ></text>
</g>
<g >
<title>shmem_fault (53,727,425 samples, 0.01%)</title><rect x="486.9" y="1877" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="489.88" y="1887.5" ></text>
</g>
<g >
<title>irq_work_queue (506,240,679 samples, 0.08%)</title><rect x="476.6" y="1845" width="1.0" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="479.60" y="1855.5" ></text>
</g>
<g >
<title>futex_wait_setup (59,946,596 samples, 0.01%)</title><rect x="447.8" y="1877" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="450.79" y="1887.5" ></text>
</g>
<g >
<title>__flush_smp_call_function_queue (202,005,144 samples, 0.03%)</title><rect x="1188.7" y="1797" width="0.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="1191.66" y="1807.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (54,601,398 samples, 0.01%)</title><rect x="501.3" y="2021" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="504.34" y="2031.5" ></text>
</g>
<g >
<title>getBaseType (57,131,031 samples, 0.01%)</title><rect x="1048.0" y="2053" width="0.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="1050.97" y="2063.5" ></text>
</g>
<g >
<title>ExecAssignExprContext (56,234,237 samples, 0.01%)</title><rect x="402.1" y="2037" width="0.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="405.08" y="2047.5" ></text>
</g>
<g >
<title>irqentry_exit (51,292,816 samples, 0.01%)</title><rect x="449.8" y="1989" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="452.80" y="1999.5" ></text>
</g>
<g >
<title>wait_for_unix_gc (228,530,235 samples, 0.04%)</title><rect x="727.2" y="1941" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="730.23" y="1951.5" ></text>
</g>
<g >
<title>unix_stream_recvmsg (9,276,079,610 samples, 1.55%)</title><rect x="168.7" y="1909" width="18.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="171.73" y="1919.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (57,321,497 samples, 0.01%)</title><rect x="750.7" y="1941" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="753.67" y="1951.5" ></text>
</g>
<g >
<title>handle_irq_event (57,766,097 samples, 0.01%)</title><rect x="1188.5" y="1797" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="1191.55" y="1807.5" ></text>
</g>
<g >
<title>standard_ExecutorEnd (196,907,197 samples, 0.03%)</title><rect x="926.9" y="2037" width="0.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="929.91" y="2047.5" ></text>
</g>
<g >
<title>initStringInfo (55,255,582 samples, 0.01%)</title><rect x="836.9" y="2037" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="839.91" y="2047.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (256,777,555 samples, 0.04%)</title><rect x="952.0" y="2005" width="0.5" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="954.99" y="2015.5" ></text>
</g>
<g >
<title>irqentry_exit (56,597,243 samples, 0.01%)</title><rect x="1058.0" y="2005" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1061.05" y="2015.5" ></text>
</g>
<g >
<title>update_load_avg (410,537,042 samples, 0.07%)</title><rect x="1151.7" y="1861" width="0.8" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="1154.68" y="1871.5" ></text>
</g>
<g >
<title>schedule (5,245,739,222 samples, 0.88%)</title><rect x="548.0" y="1717" width="10.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="550.99" y="1727.5" ></text>
</g>
<g >
<title>limit_needed (79,453,876 samples, 0.01%)</title><rect x="842.4" y="2037" width="0.2" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="845.41" y="2047.5" ></text>
</g>
<g >
<title>table_openrv_extended (145,233,605 samples, 0.02%)</title><rect x="1167.2" y="2053" width="0.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1170.22" y="2063.5" ></text>
</g>
<g >
<title>do_syscall_64 (256,777,555 samples, 0.04%)</title><rect x="952.0" y="2021" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="954.99" y="2031.5" ></text>
</g>
<g >
<title>native_smp_send_reschedule (56,855,438 samples, 0.01%)</title><rect x="1154.2" y="1845" width="0.1" height="15.0" fill="rgb(223,82,19)" rx="2" ry="2" />
<text x="1157.23" y="1855.5" ></text>
</g>
<g >
<title>irq_work_run_list (56,686,249 samples, 0.01%)</title><rect x="527.5" y="1765" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="530.47" y="1775.5" ></text>
</g>
<g >
<title>asm_exc_debug (206,022,389 samples, 0.03%)</title><rect x="1098.7" y="2037" width="0.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1101.69" y="2047.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (51,501,438 samples, 0.01%)</title><rect x="239.4" y="1957" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="242.40" y="1967.5" ></text>
</g>
<g >
<title>reweight_entity (279,792,461 samples, 0.05%)</title><rect x="30.0" y="1813" width="0.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="32.95" y="1823.5" ></text>
</g>
<g >
<title>update_load_avg (430,348,935 samples, 0.07%)</title><rect x="144.2" y="1685" width="0.8" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="147.18" y="1695.5" ></text>
</g>
<g >
<title>__x64_sys_futex (488,596,836 samples, 0.08%)</title><rect x="446.9" y="1941" width="1.0" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="449.95" y="1951.5" ></text>
</g>
<g >
<title>psi_task_change (827,697,109 samples, 0.14%)</title><rect x="148.3" y="1717" width="1.6" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="151.26" y="1727.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (57,756,983 samples, 0.01%)</title><rect x="151.8" y="1733" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="154.77" y="1743.5" ></text>
</g>
<g >
<title>__wrgsbase_inactive (60,664,689 samples, 0.01%)</title><rect x="951.9" y="2037" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="954.87" y="2047.5" ></text>
</g>
<g >
<title>bpf_ringbuf_notify (60,067,863 samples, 0.01%)</title><rect x="471.6" y="1877" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="474.64" y="1887.5" ></text>
</g>
<g >
<title>task_h_load (87,604,911 samples, 0.01%)</title><rect x="699.5" y="1797" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="702.52" y="1807.5" ></text>
</g>
<g >
<title>pick_next_task (763,226,287 samples, 0.13%)</title><rect x="32.9" y="1861" width="1.6" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="35.95" y="1871.5" ></text>
</g>
<g >
<title>pg_plan_query (52,942,199 samples, 0.01%)</title><rect x="876.5" y="2037" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="879.49" y="2047.5" ></text>
</g>
<g >
<title>notifier_call_chain (3,066,648,489 samples, 0.51%)</title><rect x="344.5" y="1989" width="6.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="347.50" y="1999.5" ></text>
</g>
<g >
<title>_bt_readpage (195,788,526 samples, 0.03%)</title><rect x="955.7" y="2053" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="958.74" y="2063.5" ></text>
</g>
<g >
<title>hash_seq_init (164,890,257 samples, 0.03%)</title><rect x="1079.0" y="2053" width="0.3" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="1081.96" y="2063.5" ></text>
</g>
<g >
<title>conditional_active (680,455,018 samples, 0.11%)</title><rect x="197.7" y="2053" width="1.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="200.68" y="2063.5" ></text>
</g>
<g >
<title>schedule (511,443,850 samples, 0.09%)</title><rect x="302.1" y="1877" width="1.0" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="305.06" y="1887.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (52,225,624 samples, 0.01%)</title><rect x="748.0" y="2021" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="751.03" y="2031.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (109,309,469 samples, 0.02%)</title><rect x="660.5" y="1845" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="663.51" y="1855.5" ></text>
</g>
<g >
<title>timestamp_truncate (80,049,879 samples, 0.01%)</title><rect x="498.4" y="1845" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="501.44" y="1855.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (56,274,278 samples, 0.01%)</title><rect x="327.9" y="2037" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="330.95" y="2047.5" ></text>
</g>
<g >
<title>memset_orig (56,036,459 samples, 0.01%)</title><rect x="130.7" y="1845" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="133.68" y="1855.5" ></text>
</g>
<g >
<title>psi_task_change (521,613,571 samples, 0.09%)</title><rect x="356.5" y="1717" width="1.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="359.55" y="1727.5" ></text>
</g>
<g >
<title>int4pl (57,500,413 samples, 0.01%)</title><rect x="838.6" y="2037" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="841.63" y="2047.5" ></text>
</g>
<g >
<title>drain_obj_stock (57,284,274 samples, 0.01%)</title><rect x="681.9" y="1845" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="684.93" y="1855.5" ></text>
</g>
<g >
<title>select_task_rq_fair (1,680,655,613 samples, 0.28%)</title><rect x="697.6" y="1813" width="3.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="700.60" y="1823.5" ></text>
</g>
<g >
<title>__get_user_8 (141,187,394 samples, 0.02%)</title><rect x="61.5" y="1893" width="0.3" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="64.52" y="1903.5" ></text>
</g>
<g >
<title>ext4_bio_write_folio (108,100,076 samples, 0.02%)</title><rect x="1166.5" y="1829" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="1169.46" y="1839.5" ></text>
</g>
<g >
<title>futex_wake (5,460,701,918 samples, 0.91%)</title><rect x="1144.3" y="1957" width="10.7" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="1147.25" y="1967.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (80,227,309 samples, 0.01%)</title><rect x="527.7" y="1781" width="0.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="530.65" y="1791.5" ></text>
</g>
<g >
<title>asm_exc_debug (85,377,211 samples, 0.01%)</title><rect x="437.2" y="2021" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="440.19" y="2031.5" ></text>
</g>
<g >
<title>hrtimer_reprogram (869,346,703 samples, 0.15%)</title><rect x="1186.4" y="1941" width="1.7" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1189.38" y="1951.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (58,338,954 samples, 0.01%)</title><rect x="830.7" y="1973" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="833.69" y="1983.5" ></text>
</g>
<g >
<title>RelationGetBufferForTuple (641,752,780 samples, 0.11%)</title><rect x="313.9" y="2053" width="1.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="316.95" y="2063.5" ></text>
</g>
<g >
<title>__filemap_fdatawrite_range (1,660,659,641 samples, 0.28%)</title><rect x="1040.0" y="1941" width="3.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1042.96" y="1951.5" ></text>
</g>
<g >
<title>transformFromClause (257,528,391 samples, 0.04%)</title><rect x="936.1" y="2037" width="0.5" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="939.13" y="2047.5" ></text>
</g>
<g >
<title>ExecUpdateAct (81,888,994 samples, 0.01%)</title><rect x="417.9" y="2037" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="420.91" y="2047.5" ></text>
</g>
<g >
<title>xfd_validate_state (57,347,168 samples, 0.01%)</title><rect x="206.4" y="2037" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="209.40" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1653" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1663.5" ></text>
</g>
<g >
<title>AllocSetReset (1,140,937,675 samples, 0.19%)</title><rect x="386.3" y="2037" width="2.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="389.27" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1685" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1695.5" ></text>
</g>
<g >
<title>XLogInsertRecord (363,580,698 samples, 0.06%)</title><rect x="486.4" y="2037" width="0.8" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="489.44" y="2047.5" ></text>
</g>
<g >
<title>psi_flags_change (53,221,522 samples, 0.01%)</title><rect x="34.6" y="1845" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="37.61" y="1855.5" ></text>
</g>
<g >
<title>inode_needs_update_time (171,473,088 samples, 0.03%)</title><rect x="498.3" y="1861" width="0.3" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="501.26" y="1871.5" ></text>
</g>
<g >
<title>transformStmt (662,333,889 samples, 0.11%)</title><rect x="1168.9" y="2053" width="1.3" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="1171.93" y="2063.5" ></text>
</g>
<g >
<title>schedule (82,728,185 samples, 0.01%)</title><rect x="816.1" y="1957" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="819.10" y="1967.5" ></text>
</g>
<g >
<title>PortalStart (311,130,086 samples, 0.05%)</title><rect x="452.0" y="2037" width="0.6" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="455.03" y="2047.5" ></text>
</g>
<g >
<title>__schedule (7,843,176,726 samples, 1.31%)</title><rect x="647.2" y="1957" width="15.4" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="650.16" y="1967.5" ></text>
</g>
<g >
<title>blk_mq_submit_bio (51,471,316 samples, 0.01%)</title><rect x="1166.2" y="1797" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="1169.16" y="1807.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (116,565,316 samples, 0.02%)</title><rect x="249.1" y="2021" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="252.13" y="2031.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (173,381,623 samples, 0.03%)</title><rect x="1154.3" y="1909" width="0.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="1157.34" y="1919.5" ></text>
</g>
<g >
<title>XLogSaveBufferForHint (61,010,290 samples, 0.01%)</title><rect x="366.9" y="2053" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="369.86" y="2063.5" ></text>
</g>
<g >
<title>create_index_path (172,246,984 samples, 0.03%)</title><rect x="782.3" y="2037" width="0.4" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="785.32" y="2047.5" ></text>
</g>
<g >
<title>__check_object_size (790,244,438 samples, 0.13%)</title><rect x="912.7" y="1829" width="1.6" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="915.70" y="1839.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (91,225,851 samples, 0.02%)</title><rect x="528.5" y="1797" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="531.52" y="1807.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (51,292,816 samples, 0.01%)</title><rect x="449.8" y="1893" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="452.80" y="1903.5" ></text>
</g>
<g >
<title>__scm_recv_common.isra.0 (82,624,897 samples, 0.01%)</title><rect x="171.8" y="1877" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="174.79" y="1887.5" ></text>
</g>
<g >
<title>remove_wait_queue (903,842,342 samples, 0.15%)</title><rect x="100.7" y="1877" width="1.8" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="103.73" y="1887.5" ></text>
</g>
<g >
<title>__schedule (58,277,250 samples, 0.01%)</title><rect x="624.2" y="1925" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="627.17" y="1935.5" ></text>
</g>
<g >
<title>kworker/1:1H-kb (84,443,636 samples, 0.01%)</title><rect x="10.5" y="2069" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="13.51" y="2079.5" ></text>
</g>
<g >
<title>is_parallel_safe (112,610,193 samples, 0.02%)</title><rect x="839.5" y="2037" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="842.53" y="2047.5" ></text>
</g>
<g >
<title>__get_user_8 (89,656,679 samples, 0.01%)</title><rect x="301.5" y="1925" width="0.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="304.49" y="1935.5" ></text>
</g>
<g >
<title>handle_edge_irq (53,025,289 samples, 0.01%)</title><rect x="1015.5" y="1813" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1018.51" y="1823.5" ></text>
</g>
<g >
<title>base_yyparse (484,992,981 samples, 0.08%)</title><rect x="580.2" y="2005" width="0.9" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="583.16" y="2015.5" ></text>
</g>
<g >
<title>pick_eevdf (112,870,074 samples, 0.02%)</title><rect x="722.4" y="1781" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="725.37" y="1791.5" ></text>
</g>
<g >
<title>place_entity (50,829,897 samples, 0.01%)</title><rect x="482.8" y="1669" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="485.79" y="1679.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (54,215,438 samples, 0.01%)</title><rect x="485.8" y="1893" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="488.81" y="1903.5" ></text>
</g>
<g >
<title>__bpf_ringbuf_reserve (752,633,760 samples, 0.13%)</title><rect x="474.8" y="1845" width="1.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="477.77" y="1855.5" ></text>
</g>
<g >
<title>pick_next_task (61,056,020 samples, 0.01%)</title><rect x="677.6" y="1829" width="0.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="680.60" y="1839.5" ></text>
</g>
<g >
<title>schedule (51,054,532 samples, 0.01%)</title><rect x="1157.6" y="1973" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1160.60" y="1983.5" ></text>
</g>
<g >
<title>native_write_msr (572,007,204 samples, 0.10%)</title><rect x="1182.0" y="1877" width="1.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1185.03" y="1887.5" ></text>
</g>
<g >
<title>__common_interrupt (51,692,594 samples, 0.01%)</title><rect x="449.5" y="1989" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="452.55" y="1999.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (313,231,446 samples, 0.05%)</title><rect x="1131.7" y="2053" width="0.6" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="1134.66" y="2063.5" ></text>
</g>
<g >
<title>object_aclmask_ext.constprop.0 (54,042,239 samples, 0.01%)</title><rect x="1116.9" y="2053" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="1119.94" y="2063.5" ></text>
</g>
<g >
<title>unix_stream_sendmsg (59,857,200 samples, 0.01%)</title><rect x="728.2" y="1957" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="731.17" y="1967.5" ></text>
</g>
<g >
<title>default_wake_function (2,364,248,129 samples, 0.40%)</title><rect x="480.7" y="1765" width="4.7" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="483.70" y="1775.5" ></text>
</g>
<g >
<title>PageGetHeapFreeSpace (141,981,220 samples, 0.02%)</title><rect x="303.6" y="2053" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="306.63" y="2063.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (258,261,532 samples, 0.04%)</title><rect x="301.4" y="1973" width="0.5" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="304.43" y="1983.5" ></text>
</g>
<g >
<title>schedule (53,068,267 samples, 0.01%)</title><rect x="443.3" y="1957" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="446.30" y="1967.5" ></text>
</g>
<g >
<title>__rdgsbase_inactive (118,951,621 samples, 0.02%)</title><rect x="976.6" y="2037" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="979.61" y="2047.5" ></text>
</g>
<g >
<title>pull_varnos (118,145,025 samples, 0.02%)</title><rect x="886.9" y="2037" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="889.89" y="2047.5" ></text>
</g>
<g >
<title>enqueue_entity (1,671,590,442 samples, 0.28%)</title><rect x="141.7" y="1701" width="3.3" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="144.73" y="1711.5" ></text>
</g>
<g >
<title>irqentry_exit (51,491,587 samples, 0.01%)</title><rect x="740.4" y="1989" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="743.38" y="1999.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (50,894,112 samples, 0.01%)</title><rect x="449.7" y="2005" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="452.70" y="2015.5" ></text>
</g>
<g >
<title>irqentry_exit (78,588,594 samples, 0.01%)</title><rect x="514.1" y="1973" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="517.11" y="1983.5" ></text>
</g>
<g >
<title>pg_vsnprintf (86,946,587 samples, 0.01%)</title><rect x="158.4" y="2037" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="161.40" y="2047.5" ></text>
</g>
<g >
<title>LWLockAcquireOrWait (7,207,322,347 samples, 1.21%)</title><rect x="524.8" y="1893" width="14.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="527.81" y="1903.5" ></text>
</g>
<g >
<title>merge_sched_in (1,142,858,768 samples, 0.19%)</title><rect x="648.6" y="1861" width="2.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="651.62" y="1871.5" ></text>
</g>
<g >
<title>__wake_up_common (56,780,393 samples, 0.01%)</title><rect x="343.3" y="1765" width="0.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="346.31" y="1775.5" ></text>
</g>
<g >
<title>ttwu_do_activate (1,374,426,007 samples, 0.23%)</title><rect x="1176.5" y="1829" width="2.7" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="1179.53" y="1839.5" ></text>
</g>
<g >
<title>dopr.constprop.0 (278,256,157 samples, 0.05%)</title><rect x="156.9" y="2037" width="0.6" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="159.91" y="2047.5" ></text>
</g>
<g >
<title>set_pte_range (223,783,598 samples, 0.04%)</title><rect x="739.0" y="1877" width="0.4" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="742.00" y="1887.5" ></text>
</g>
<g >
<title>smgrnblocks (1,279,283,639 samples, 0.21%)</title><rect x="1160.8" y="2053" width="2.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1163.75" y="2063.5" ></text>
</g>
<g >
<title>bms_free (58,662,870 samples, 0.01%)</title><rect x="958.2" y="2053" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="961.18" y="2063.5" ></text>
</g>
<g >
<title>rebalance_domains (53,159,104 samples, 0.01%)</title><rect x="1183.8" y="1877" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="1186.83" y="1887.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (113,714,166 samples, 0.02%)</title><rect x="537.8" y="1589" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="540.81" y="1599.5" ></text>
</g>
<g >
<title>flush_end_io (59,618,957 samples, 0.01%)</title><rect x="1175.7" y="1653" width="0.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="1178.66" y="1663.5" ></text>
</g>
<g >
<title>[unknown] (9,280,592,976 samples, 1.55%)</title><rect x="561.5" y="133" width="18.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="564.50" y="143.5" ></text>
</g>
<g >
<title>pick_next_task (368,992,678 samples, 0.06%)</title><rect x="554.9" y="1685" width="0.7" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="557.92" y="1695.5" ></text>
</g>
<g >
<title>__schedule (61,506,993 samples, 0.01%)</title><rect x="945.6" y="1861" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="948.60" y="1871.5" ></text>
</g>
<g >
<title>load_balance (53,159,104 samples, 0.01%)</title><rect x="1183.8" y="1861" width="0.1" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="1186.83" y="1871.5" ></text>
</g>
<g >
<title>do_syscall_64 (424,411,412 samples, 0.07%)</title><rect x="205.2" y="2021" width="0.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="208.17" y="2031.5" ></text>
</g>
<g >
<title>__wake_up (90,285,377 samples, 0.02%)</title><rect x="1099.1" y="1877" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="1102.10" y="1887.5" ></text>
</g>
<g >
<title>schedule (194,298,806 samples, 0.03%)</title><rect x="615.8" y="1941" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="618.80" y="1951.5" ></text>
</g>
<g >
<title>lookupVariable (85,046,479 samples, 0.01%)</title><rect x="201.3" y="2053" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="204.35" y="2063.5" ></text>
</g>
<g >
<title>pg_strtoint32_safe (231,680,437 samples, 0.04%)</title><rect x="876.7" y="2037" width="0.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="879.66" y="2047.5" ></text>
</g>
<g >
<title>asm_sysvec_irq_work (2,303,472,560 samples, 0.39%)</title><rect x="534.3" y="1877" width="4.6" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="537.33" y="1887.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (112,904,579 samples, 0.02%)</title><rect x="651.4" y="1829" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="654.41" y="1839.5" ></text>
</g>
<g >
<title>do_syscall_64 (285,946,338 samples, 0.05%)</title><rect x="372.7" y="2021" width="0.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="375.72" y="2031.5" ></text>
</g>
<g >
<title>perf_event_groups_first (57,810,794 samples, 0.01%)</title><rect x="553.4" y="1605" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="556.40" y="1615.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (60,075,769 samples, 0.01%)</title><rect x="1040.5" y="1589" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1043.54" y="1599.5" ></text>
</g>
<g >
<title>ModifyWaitEvent (396,162,186 samples, 0.07%)</title><rect x="446.2" y="2037" width="0.7" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="449.17" y="2047.5" ></text>
</g>
<g >
<title>hash_seq_search (174,587,768 samples, 0.03%)</title><rect x="593.3" y="2005" width="0.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="596.32" y="2015.5" ></text>
</g>
<g >
<title>exc_page_fault (2,841,854,986 samples, 0.48%)</title><rect x="734.9" y="2005" width="5.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="737.87" y="2015.5" ></text>
</g>
<g >
<title>AtEOXact_PgStat (84,198,241 samples, 0.01%)</title><rect x="388.6" y="2037" width="0.1" height="15.0" fill="rgb(246,193,46)" rx="2" ry="2" />
<text x="391.58" y="2047.5" ></text>
</g>
<g >
<title>jit_compile_expr (57,599,093 samples, 0.01%)</title><rect x="1099.4" y="2053" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="1102.38" y="2063.5" ></text>
</g>
<g >
<title>__schedule (74,367,482 samples, 0.01%)</title><rect x="265.9" y="1957" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="268.91" y="1967.5" ></text>
</g>
<g >
<title>__switch_to_asm (129,913,512 samples, 0.02%)</title><rect x="17.8" y="2037" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="20.81" y="2047.5" ></text>
</g>
<g >
<title>pfree (561,934,423 samples, 0.09%)</title><rect x="872.6" y="2037" width="1.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="875.60" y="2047.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (114,145,839 samples, 0.02%)</title><rect x="1093.1" y="1989" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="1096.09" y="1999.5" ></text>
</g>
<g >
<title>p4d_offset (52,891,180 samples, 0.01%)</title><rect x="500.1" y="1957" width="0.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="503.07" y="1967.5" ></text>
</g>
<g >
<title>__blk_mq_sched_dispatch_requests (56,515,670 samples, 0.01%)</title><rect x="10.7" y="1909" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="13.68" y="1919.5" ></text>
</g>
<g >
<title>skb_free_head (57,872,202 samples, 0.01%)</title><rect x="174.2" y="1861" width="0.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="177.18" y="1871.5" ></text>
</g>
<g >
<title>prepare_task_switch (81,083,764 samples, 0.01%)</title><rect x="528.4" y="1797" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="531.36" y="1807.5" ></text>
</g>
<g >
<title>AtEOXact_Enum (142,187,636 samples, 0.02%)</title><rect x="244.8" y="2053" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="247.77" y="2063.5" ></text>
</g>
<g >
<title>MemoryContextAllocExtended (58,433,304 samples, 0.01%)</title><rect x="298.7" y="2053" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="301.72" y="2063.5" ></text>
</g>
<g >
<title>irqentry_exit (53,627,794 samples, 0.01%)</title><rect x="288.5" y="2005" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="291.49" y="2015.5" ></text>
</g>
<g >
<title>x64_sys_call (3,166,965,236 samples, 0.53%)</title><rect x="1037.3" y="2005" width="6.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1040.31" y="2015.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (58,903,058 samples, 0.01%)</title><rect x="666.7" y="1877" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="669.69" y="1887.5" ></text>
</g>
<g >
<title>resetPQExpBuffer (56,545,775 samples, 0.01%)</title><rect x="210.0" y="2053" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="213.03" y="2063.5" ></text>
</g>
<g >
<title>update_cfs_group (128,915,809 samples, 0.02%)</title><rect x="31.3" y="1845" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="34.26" y="1855.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (194,298,806 samples, 0.03%)</title><rect x="615.8" y="1989" width="0.4" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="618.80" y="1999.5" ></text>
</g>
<g >
<title>put_prev_entity (230,737,843 samples, 0.04%)</title><rect x="1018.2" y="1845" width="0.4" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1021.18" y="1855.5" ></text>
</g>
<g >
<title>irqentry_exit (138,519,250 samples, 0.02%)</title><rect x="428.0" y="1989" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="431.00" y="1999.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (58,903,058 samples, 0.01%)</title><rect x="666.7" y="1909" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="669.69" y="1919.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (138,519,250 samples, 0.02%)</title><rect x="428.0" y="1973" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="431.00" y="1983.5" ></text>
</g>
<g >
<title>sched_mm_cid_migrate_to (140,081,203 samples, 0.02%)</title><rect x="1153.6" y="1893" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="1156.62" y="1903.5" ></text>
</g>
<g >
<title>_bt_binsrch (350,407,838 samples, 0.06%)</title><rect x="728.7" y="2037" width="0.7" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="731.68" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="773" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="783.5" ></text>
</g>
<g >
<title>__enqueue_entity (80,516,595 samples, 0.01%)</title><rect x="1177.6" y="1765" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1180.62" y="1775.5" ></text>
</g>
<g >
<title>make_op (372,358,044 samples, 0.06%)</title><rect x="853.8" y="2037" width="0.8" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="856.84" y="2047.5" ></text>
</g>
<g >
<title>dequeue_task (60,377,019 samples, 0.01%)</title><rect x="1039.4" y="1829" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="1042.43" y="1839.5" ></text>
</g>
<g >
<title>__schedule (53,995,505 samples, 0.01%)</title><rect x="858.7" y="1941" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="861.67" y="1951.5" ></text>
</g>
<g >
<title>ep_poll (19,831,614,727 samples, 3.32%)</title><rect x="990.5" y="1957" width="39.1" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" />
<text x="993.47" y="1967.5" >ep_..</text>
</g>
<g >
<title>max_parallel_hazard_walker (58,091,408 samples, 0.01%)</title><rect x="1114.1" y="2053" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="1117.12" y="2063.5" ></text>
</g>
<g >
<title>AtEOXact_RelationMap (288,673,165 samples, 0.05%)</title><rect x="247.7" y="2053" width="0.5" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="250.67" y="2063.5" ></text>
</g>
<g >
<title>AtEOXact_TypeCache (53,647,899 samples, 0.01%)</title><rect x="248.7" y="2053" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="251.68" y="2063.5" ></text>
</g>
<g >
<title>transformAExprOp (85,234,361 samples, 0.01%)</title><rect x="934.4" y="2037" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="937.41" y="2047.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (116,291,231 samples, 0.02%)</title><rect x="124.4" y="1797" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="127.37" y="1807.5" ></text>
</g>
<g >
<title>pick_next_entity (53,908,879 samples, 0.01%)</title><rect x="111.2" y="1877" width="0.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="114.17" y="1887.5" ></text>
</g>
<g >
<title>rewriteTargetListIU (256,822,171 samples, 0.04%)</title><rect x="1141.3" y="2053" width="0.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1144.29" y="2063.5" ></text>
</g>
<g >
<title>irqentry_exit (100,318,489 samples, 0.02%)</title><rect x="265.9" y="2005" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="268.86" y="2015.5" ></text>
</g>
<g >
<title>filemap_map_pages (174,848,233 samples, 0.03%)</title><rect x="947.9" y="1749" width="0.3" height="15.0" fill="rgb(229,112,27)" rx="2" ry="2" />
<text x="950.86" y="1759.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (51,292,816 samples, 0.01%)</title><rect x="449.8" y="1973" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="452.80" y="1983.5" ></text>
</g>
<g >
<title>clockevents_program_event (653,653,360 samples, 0.11%)</title><rect x="1181.9" y="1909" width="1.3" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="1184.87" y="1919.5" ></text>
</g>
<g >
<title>futex_wait_queue (511,443,850 samples, 0.09%)</title><rect x="302.1" y="1893" width="1.0" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="305.06" y="1903.5" ></text>
</g>
<g >
<title>IndexScanEnd (57,591,037 samples, 0.01%)</title><rect x="435.4" y="2037" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="438.45" y="2047.5" ></text>
</g>
<g >
<title>skb_release_data (82,761,368 samples, 0.01%)</title><rect x="183.8" y="1877" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="186.78" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (55,105,176 samples, 0.01%)</title><rect x="1134.8" y="2037" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1137.82" y="2047.5" ></text>
</g>
<g >
<title>sysvec_irq_work (93,016,533 samples, 0.02%)</title><rect x="437.4" y="2005" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="440.36" y="2015.5" ></text>
</g>
<g >
<title>PredicateLockPage (86,465,310 samples, 0.01%)</title><rect x="306.8" y="2053" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="309.82" y="2063.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (109,247,460 samples, 0.02%)</title><rect x="343.6" y="1893" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="346.59" y="1903.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (488,596,836 samples, 0.08%)</title><rect x="446.9" y="1989" width="1.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="449.95" y="1999.5" ></text>
</g>
<g >
<title>add_wait_queue (57,802,825 samples, 0.01%)</title><rect x="195.8" y="1861" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="198.77" y="1871.5" ></text>
</g>
<g >
<title>free_attstatsslot (81,673,095 samples, 0.01%)</title><rect x="807.0" y="2037" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="810.04" y="2047.5" ></text>
</g>
<g >
<title>pqParseDone (56,080,496 samples, 0.01%)</title><rect x="160.0" y="2037" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="163.02" y="2047.5" ></text>
</g>
<g >
<title>MemoryContextReset (59,212,951 samples, 0.01%)</title><rect x="445.6" y="2037" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="448.60" y="2047.5" ></text>
</g>
<g >
<title>ExecConditionalAssignProjectionInfo (83,494,327 samples, 0.01%)</title><rect x="1172.0" y="2037" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1175.04" y="2047.5" ></text>
</g>
<g >
<title>pick_next_task (54,002,193 samples, 0.01%)</title><rect x="501.2" y="1925" width="0.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="504.17" y="1935.5" ></text>
</g>
<g >
<title>sched_clock (256,823,887 samples, 0.04%)</title><rect x="91.6" y="1781" width="0.5" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="94.60" y="1791.5" ></text>
</g>
<g >
<title>lockless_pages_from_mm (90,612,717 samples, 0.02%)</title><rect x="303.2" y="1829" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="306.18" y="1839.5" ></text>
</g>
<g >
<title>pte_alloc_one (145,576,029 samples, 0.02%)</title><rect x="1092.5" y="1909" width="0.3" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="1095.48" y="1919.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (403,053,849 samples, 0.07%)</title><rect x="98.4" y="1797" width="0.8" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="101.40" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (9,280,592,976 samples, 1.55%)</title><rect x="561.5" y="101" width="18.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="564.50" y="111.5" ></text>
</g>
<g >
<title>sched_clock_cpu (92,375,657 samples, 0.02%)</title><rect x="359.2" y="1733" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="362.21" y="1743.5" ></text>
</g>
<g >
<title>ExecShutdownNode (62,212,510 samples, 0.01%)</title><rect x="417.0" y="2037" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="419.95" y="2047.5" ></text>
</g>
<g >
<title>ep_send_events (2,397,824,272 samples, 0.40%)</title><rect x="992.7" y="1941" width="4.8" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="995.73" y="1951.5" ></text>
</g>
<g >
<title>bpf_ringbuf_notify (2,016,910,636 samples, 0.34%)</title><rect x="534.5" y="1781" width="4.0" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="537.50" y="1791.5" ></text>
</g>
<g >
<title>pick_next_task (195,390,194 samples, 0.03%)</title><rect x="111.1" y="1909" width="0.3" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="114.06" y="1919.5" ></text>
</g>
<g >
<title>XLogInsert (60,443,490 samples, 0.01%)</title><rect x="486.3" y="2037" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="489.32" y="2047.5" ></text>
</g>
<g >
<title>__schedule (15,682,536,011 samples, 2.62%)</title><rect x="998.4" y="1893" width="31.0" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1001.43" y="1903.5" >__..</text>
</g>
<g >
<title>socket_putmessage (56,932,698 samples, 0.01%)</title><rect x="1163.3" y="2053" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1166.33" y="2063.5" ></text>
</g>
<g >
<title>shmem_fault (501,283,067 samples, 0.08%)</title><rect x="497.0" y="1877" width="1.0" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="499.99" y="1887.5" ></text>
</g>
<g >
<title>ExecGetResultSlotOps (55,739,414 samples, 0.01%)</title><rect x="406.3" y="2037" width="0.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="409.32" y="2047.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (54,220,547 samples, 0.01%)</title><rect x="1078.5" y="1973" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1081.53" y="1983.5" ></text>
</g>
<g >
<title>__htab_map_lookup_elem (345,257,570 samples, 0.06%)</title><rect x="472.7" y="1861" width="0.7" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="475.71" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1317" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1327.5" ></text>
</g>
<g >
<title>[unknown] (9,280,592,976 samples, 1.55%)</title><rect x="561.5" y="69" width="18.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="564.50" y="79.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1269" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1279.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (60,075,769 samples, 0.01%)</title><rect x="1040.5" y="1621" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1043.54" y="1631.5" ></text>
</g>
<g >
<title>exec_simple_query (328,309,193 samples, 0.05%)</title><rect x="1032.2" y="2053" width="0.6" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="1035.15" y="2063.5" ></text>
</g>
<g >
<title>process_one_work (81,546,807 samples, 0.01%)</title><rect x="10.2" y="1989" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="13.18" y="1999.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (58,818,226 samples, 0.01%)</title><rect x="87.2" y="1797" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="90.21" y="1807.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (54,215,438 samples, 0.01%)</title><rect x="485.8" y="1909" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="488.81" y="1919.5" ></text>
</g>
<g >
<title>do_syscall_64 (258,675,223 samples, 0.04%)</title><rect x="506.4" y="1957" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="509.38" y="1967.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (794,905,416 samples, 0.13%)</title><rect x="20.5" y="1989" width="1.5" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="23.46" y="1999.5" ></text>
</g>
<g >
<title>__wake_up (56,780,393 samples, 0.01%)</title><rect x="343.3" y="1781" width="0.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="346.31" y="1791.5" ></text>
</g>
<g >
<title>psi_flags_change (88,224,209 samples, 0.01%)</title><rect x="148.5" y="1701" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="151.54" y="1711.5" ></text>
</g>
<g >
<title>sched_clock_cpu (173,637,035 samples, 0.03%)</title><rect x="37.3" y="1845" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="40.25" y="1855.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (78,588,594 samples, 0.01%)</title><rect x="514.1" y="2005" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="517.11" y="2015.5" ></text>
</g>
<g >
<title>check_heap_object (397,791,213 samples, 0.07%)</title><rect x="184.9" y="1781" width="0.8" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="187.89" y="1791.5" ></text>
</g>
<g >
<title>_bt_mark_scankey_required (247,288,687 samples, 0.04%)</title><rect x="597.1" y="2021" width="0.5" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="600.07" y="2031.5" ></text>
</g>
<g >
<title>drain_stock (147,521,583 samples, 0.02%)</title><rect x="126.9" y="1749" width="0.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="129.87" y="1759.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (172,008,025 samples, 0.03%)</title><rect x="90.0" y="1749" width="0.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="93.04" y="1759.5" ></text>
</g>
<g >
<title>scsi_prepare_cmd (114,686,095 samples, 0.02%)</title><rect x="1040.7" y="1733" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="1043.66" y="1743.5" ></text>
</g>
<g >
<title>[libc.so.6] (56,460,519 samples, 0.01%)</title><rect x="41.7" y="2021" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="44.72" y="2031.5" ></text>
</g>
<g >
<title>schedule (65,057,585 samples, 0.01%)</title><rect x="441.4" y="1957" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="444.38" y="1967.5" ></text>
</g>
<g >
<title>update_load_avg (115,480,424 samples, 0.02%)</title><rect x="193.3" y="1813" width="0.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="196.33" y="1823.5" ></text>
</g>
<g >
<title>irqentry_exit (56,313,866 samples, 0.01%)</title><rect x="740.5" y="1989" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="743.54" y="1999.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (862,363,238 samples, 0.14%)</title><rect x="342.8" y="2005" width="1.7" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="345.80" y="2015.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (80,841,626 samples, 0.01%)</title><rect x="471.8" y="1941" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="474.75" y="1951.5" ></text>
</g>
<g >
<title>bpf_ringbuf_notify (90,285,377 samples, 0.02%)</title><rect x="1099.1" y="1941" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="1102.10" y="1951.5" ></text>
</g>
<g >
<title>scsi_finish_command (57,766,097 samples, 0.01%)</title><rect x="1188.5" y="1653" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1191.55" y="1663.5" ></text>
</g>
<g >
<title>__rcu_read_lock (57,144,807 samples, 0.01%)</title><rect x="681.6" y="1845" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="684.59" y="1855.5" ></text>
</g>
<g >
<title>base_yyparse (88,148,892 samples, 0.01%)</title><rect x="1095.8" y="2037" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1098.82" y="2047.5" ></text>
</g>
<g >
<title>check_enable_rls (395,184,702 samples, 0.07%)</title><rect x="962.8" y="2053" width="0.8" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="965.77" y="2063.5" ></text>
</g>
<g >
<title>bms_add_members (82,727,194 samples, 0.01%)</title><rect x="957.8" y="2053" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="960.79" y="2063.5" ></text>
</g>
<g >
<title>set_next_entity (432,282,762 samples, 0.07%)</title><rect x="655.6" y="1909" width="0.9" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="658.63" y="1919.5" ></text>
</g>
<g >
<title>drain_stock (340,399,412 samples, 0.06%)</title><rect x="689.3" y="1797" width="0.6" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="692.27" y="1807.5" ></text>
</g>
<g >
<title>irqentry_exit (52,225,624 samples, 0.01%)</title><rect x="748.0" y="1989" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="751.03" y="1999.5" ></text>
</g>
<g >
<title>wakeup_preempt (220,688,834 samples, 0.04%)</title><rect x="484.5" y="1717" width="0.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="487.50" y="1727.5" ></text>
</g>
<g >
<title>examine_indexcol_variable (55,965,610 samples, 0.01%)</title><rect x="792.4" y="2037" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="795.39" y="2047.5" ></text>
</g>
<g >
<title>consume_skb (4,496,458,545 samples, 0.75%)</title><rect x="902.6" y="1893" width="8.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="905.62" y="1903.5" ></text>
</g>
<g >
<title>pgbench (88,351,576,062 samples, 14.78%)</title><rect x="41.1" y="2069" width="174.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="44.11" y="2079.5" >pgbench</text>
</g>
<g >
<title>try_to_wake_up (239,397,802 samples, 0.04%)</title><rect x="279.7" y="1765" width="0.5" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="282.70" y="1775.5" ></text>
</g>
<g >
<title>asm_sysvec_irq_work (85,236,206 samples, 0.01%)</title><rect x="505.3" y="2005" width="0.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="508.29" y="2015.5" ></text>
</g>
<g >
<title>pick_next_task (90,682,973 samples, 0.02%)</title><rect x="846.9" y="1941" width="0.2" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="849.89" y="1951.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (115,704,222 samples, 0.02%)</title><rect x="652.4" y="1877" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="655.41" y="1887.5" ></text>
</g>
<g >
<title>perf_ctx_disable (55,682,653 samples, 0.01%)</title><rect x="553.9" y="1653" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="556.90" y="1663.5" ></text>
</g>
<g >
<title>mem_cgroup_handle_over_high (55,887,545 samples, 0.01%)</title><rect x="63.7" y="1925" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="66.66" y="1935.5" ></text>
</g>
<g >
<title>__update_load_avg_se (55,075,190 samples, 0.01%)</title><rect x="707.1" y="1765" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="710.14" y="1775.5" ></text>
</g>
<g >
<title>PageAddItemExtended (55,828,543 samples, 0.01%)</title><rect x="303.5" y="2053" width="0.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="306.52" y="2063.5" ></text>
</g>
<g >
<title>__wake_up_common (56,780,393 samples, 0.01%)</title><rect x="343.3" y="1861" width="0.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="346.31" y="1871.5" ></text>
</g>
<g >
<title>do_filp_open (88,677,712 samples, 0.01%)</title><rect x="249.1" y="1941" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="252.13" y="1951.5" ></text>
</g>
<g >
<title>tag_pages_for_writeback (56,796,473 samples, 0.01%)</title><rect x="1043.1" y="1861" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="1046.13" y="1871.5" ></text>
</g>
<g >
<title>update_load_avg (461,089,228 samples, 0.08%)</title><rect x="85.7" y="1765" width="0.9" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="88.67" y="1775.5" ></text>
</g>
<g >
<title>cost_index (521,197,623 samples, 0.09%)</title><rect x="780.8" y="2037" width="1.0" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="783.78" y="2047.5" ></text>
</g>
<g >
<title>query_tree_walker_impl (200,061,983 samples, 0.03%)</title><rect x="888.7" y="2037" width="0.4" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="891.69" y="2047.5" ></text>
</g>
<g >
<title>signalfd_read (526,279,017 samples, 0.09%)</title><rect x="1137.1" y="1941" width="1.1" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="1140.12" y="1951.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (107,561,143 samples, 0.02%)</title><rect x="851.4" y="2021" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="854.38" y="2031.5" ></text>
</g>
<g >
<title>__pmu_ctx_sched_out (54,215,438 samples, 0.01%)</title><rect x="485.8" y="1861" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="488.81" y="1871.5" ></text>
</g>
<g >
<title>do_idle (824,074,974 samples, 0.14%)</title><rect x="1188.4" y="1941" width="1.6" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1191.37" y="1951.5" ></text>
</g>
<g >
<title>ReadBufferExtended (340,743,938 samples, 0.06%)</title><rect x="455.1" y="2037" width="0.7" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="458.13" y="2047.5" ></text>
</g>
<g >
<title>bpf_ringbuf_notify (2,734,206,654 samples, 0.46%)</title><rect x="480.2" y="1925" width="5.4" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="483.25" y="1935.5" ></text>
</g>
<g >
<title>__enqueue_entity (276,011,622 samples, 0.05%)</title><rect x="654.0" y="1893" width="0.6" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="657.01" y="1903.5" ></text>
</g>
<g >
<title>hash_seq_search (203,050,737 samples, 0.03%)</title><rect x="1079.3" y="2053" width="0.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1082.29" y="2063.5" ></text>
</g>
<g >
<title>LockRelease (227,759,774 samples, 0.04%)</title><rect x="297.6" y="2053" width="0.4" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="300.55" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="725" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="735.5" ></text>
</g>
<g >
<title>sched_clock_cpu (284,910,646 samples, 0.05%)</title><rect x="91.5" y="1797" width="0.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="94.55" y="1807.5" ></text>
</g>
<g >
<title>InitializeQueryCompletion (260,850,033 samples, 0.04%)</title><rect x="436.3" y="2037" width="0.5" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="439.29" y="2047.5" ></text>
</g>
<g >
<title>lappend (255,021,498 samples, 0.04%)</title><rect x="1106.2" y="2053" width="0.5" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="1109.21" y="2063.5" ></text>
</g>
<g >
<title>noist_exc_debug (477,915,249 samples, 0.08%)</title><rect x="264.2" y="2021" width="0.9" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="267.17" y="2031.5" ></text>
</g>
<g >
<title>xact_redo_commit (227,330,359 samples, 0.04%)</title><rect x="1173.4" y="2053" width="0.5" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="1176.45" y="2063.5" ></text>
</g>
<g >
<title>schedule (165,004,776 samples, 0.03%)</title><rect x="18.1" y="1909" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="21.12" y="1919.5" ></text>
</g>
<g >
<title>add_row_identity_var (114,109,214 samples, 0.02%)</title><rect x="753.9" y="2037" width="0.2" height="15.0" fill="rgb(210,25,5)" rx="2" ry="2" />
<text x="756.90" y="2047.5" ></text>
</g>
<g >
<title>futex_wait_queue (285,946,338 samples, 0.05%)</title><rect x="372.7" y="1925" width="0.6" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="375.72" y="1935.5" ></text>
</g>
<g >
<title>__do_fault (501,283,067 samples, 0.08%)</title><rect x="497.0" y="1893" width="1.0" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="499.99" y="1903.5" ></text>
</g>
<g >
<title>default_wake_function (3,188,124,532 samples, 0.53%)</title><rect x="353.1" y="1781" width="6.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="356.10" y="1791.5" ></text>
</g>
<g >
<title>kmalloc_size_roundup (227,736,415 samples, 0.04%)</title><rect x="119.3" y="1829" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="122.30" y="1839.5" ></text>
</g>
<g >
<title>ttwu_do_activate (5,712,788,950 samples, 0.96%)</title><rect x="140.1" y="1749" width="11.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="143.09" y="1759.5" ></text>
</g>
<g >
<title>x2apic_send_IPI_self (106,210,150 samples, 0.02%)</title><rect x="264.9" y="1813" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="267.85" y="1823.5" ></text>
</g>
<g >
<title>__mod_memcg_state (455,908,664 samples, 0.08%)</title><rect x="682.2" y="1813" width="0.9" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="685.16" y="1823.5" ></text>
</g>
<g >
<title>ep_poll_callback (54,158,423 samples, 0.01%)</title><rect x="367.7" y="1893" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="370.69" y="1903.5" ></text>
</g>
<g >
<title>setitimer (53,689,056 samples, 0.01%)</title><rect x="1158.8" y="2053" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1161.80" y="2063.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (58,277,250 samples, 0.01%)</title><rect x="624.2" y="1989" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="627.17" y="1999.5" ></text>
</g>
<g >
<title>__bpf_ringbuf_reserve (673,646,563 samples, 0.11%)</title><rect x="346.3" y="1861" width="1.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="349.29" y="1871.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (113,048,626 samples, 0.02%)</title><rect x="682.8" y="1797" width="0.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="685.83" y="1807.5" ></text>
</g>
<g >
<title>__schedule (203,746,813 samples, 0.03%)</title><rect x="506.4" y="1829" width="0.4" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="509.43" y="1839.5" ></text>
</g>
<g >
<title>cfree (756,372,292 samples, 0.13%)</title><rect x="387.0" y="2021" width="1.5" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="390.03" y="2031.5" ></text>
</g>
<g >
<title>ext4_da_do_write_end (529,453,272 samples, 0.09%)</title><rect x="946.5" y="1893" width="1.0" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="949.47" y="1903.5" ></text>
</g>
<g >
<title>enqueue_task_fair (3,903,352,178 samples, 0.65%)</title><rect x="140.4" y="1717" width="7.7" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="143.38" y="1727.5" ></text>
</g>
<g >
<title>psi_task_change (484,324,815 samples, 0.08%)</title><rect x="1152.5" y="1877" width="0.9" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="1155.49" y="1887.5" ></text>
</g>
<g >
<title>update_curr (141,293,638 samples, 0.02%)</title><rect x="550.2" y="1637" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="553.19" y="1647.5" ></text>
</g>
<g >
<title>update_rq_clock (106,999,614 samples, 0.02%)</title><rect x="485.2" y="1733" width="0.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="488.16" y="1743.5" ></text>
</g>
<g >
<title>pick_next_task_fair (82,790,231 samples, 0.01%)</title><rect x="871.4" y="1909" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="874.36" y="1919.5" ></text>
</g>
<g >
<title>pick_next_task_fair (54,500,904 samples, 0.01%)</title><rect x="428.0" y="1909" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="431.00" y="1919.5" ></text>
</g>
<g >
<title>__schedule (51,555,308 samples, 0.01%)</title><rect x="876.3" y="1941" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="879.34" y="1951.5" ></text>
</g>
<g >
<title>compute_bitmap_pages (56,087,341 samples, 0.01%)</title><rect x="778.5" y="2037" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="781.52" y="2047.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (110,015,546 samples, 0.02%)</title><rect x="534.1" y="1861" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="537.11" y="1871.5" ></text>
</g>
<g >
<title>default_idle_call (3,206,552,813 samples, 0.54%)</title><rect x="1174.7" y="1973" width="6.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.74" y="1983.5" ></text>
</g>
<g >
<title>__sysvec_irq_work (56,686,249 samples, 0.01%)</title><rect x="527.5" y="1797" width="0.1" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="530.47" y="1807.5" ></text>
</g>
<g >
<title>AllocSetAllocFromNewBlock (112,643,724 samples, 0.02%)</title><rect x="380.8" y="2037" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="383.76" y="2047.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (55,999,065 samples, 0.01%)</title><rect x="633.3" y="1989" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="636.35" y="1999.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (83,350,515 samples, 0.01%)</title><rect x="776.8" y="2021" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="779.83" y="2031.5" ></text>
</g>
<g >
<title>__sysvec_irq_work (2,734,206,654 samples, 0.46%)</title><rect x="480.2" y="1989" width="5.4" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="483.25" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (27,981,581,082 samples, 4.68%)</title><rect x="524.8" y="1989" width="55.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="527.81" y="1999.5" >[unkn..</text>
</g>
<g >
<title>unix_destruct_scm (57,648,355 samples, 0.01%)</title><rect x="911.4" y="1877" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="914.38" y="1887.5" ></text>
</g>
<g >
<title>__handle_mm_fault (203,209,534 samples, 0.03%)</title><rect x="947.8" y="1813" width="0.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="950.80" y="1823.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntrySlow (162,813,488 samples, 0.03%)</title><rect x="269.5" y="2053" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="272.52" y="2063.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (72,132,779 samples, 0.01%)</title><rect x="618.2" y="1989" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="621.21" y="1999.5" ></text>
</g>
<g >
<title>update_curr (222,964,272 samples, 0.04%)</title><rect x="1004.4" y="1813" width="0.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1007.42" y="1823.5" ></text>
</g>
<g >
<title>kworker/2:1H-kb (56,515,670 samples, 0.01%)</title><rect x="10.7" y="2069" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="13.68" y="2079.5" ></text>
</g>
<g >
<title>_copy_from_iter (147,971,251 samples, 0.02%)</title><rect x="669.9" y="1909" width="0.3" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="672.92" y="1919.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (138,068,685 samples, 0.02%)</title><rect x="344.1" y="1925" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="347.08" y="1935.5" ></text>
</g>
<g >
<title>tick_sched_handle (91,377,914 samples, 0.02%)</title><rect x="554.7" y="1573" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="557.69" y="1583.5" ></text>
</g>
<g >
<title>x64_sys_call (20,357,366,649 samples, 3.41%)</title><rect x="64.0" y="1941" width="40.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="67.00" y="1951.5" >x64..</text>
</g>
<g >
<title>attnumTypeId (82,831,642 samples, 0.01%)</title><rect x="756.9" y="2037" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="759.88" y="2047.5" ></text>
</g>
<g >
<title>event_sched_in (1,124,457,320 samples, 0.19%)</title><rect x="1010.1" y="1781" width="2.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1013.14" y="1791.5" ></text>
</g>
<g >
<title>ProcArrayEndTransaction (308,839,404 samples, 0.05%)</title><rect x="307.0" y="2053" width="0.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="309.99" y="2063.5" ></text>
</g>
<g >
<title>apparmor_socket_sendmsg (89,724,676 samples, 0.02%)</title><rect x="664.4" y="1941" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="667.35" y="1951.5" ></text>
</g>
<g >
<title>LWLockWaitForVar (209,652,201 samples, 0.04%)</title><rect x="437.1" y="2037" width="0.4" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="440.13" y="2047.5" ></text>
</g>
<g >
<title>x64_sys_call (21,609,293,905 samples, 3.62%)</title><rect x="111.7" y="1957" width="42.6" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="114.67" y="1967.5" >x64_..</text>
</g>
<g >
<title>save_fpregs_to_fpstate (56,238,433 samples, 0.01%)</title><rect x="1030.9" y="2037" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="1033.91" y="2047.5" ></text>
</g>
<g >
<title>schedule (428,650,240 samples, 0.07%)</title><rect x="446.9" y="1861" width="0.9" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="449.95" y="1871.5" ></text>
</g>
<g >
<title>get_typdefault (86,267,006 samples, 0.01%)</title><rect x="1058.2" y="2053" width="0.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="1061.16" y="2063.5" ></text>
</g>
<g >
<title>ep_autoremove_wake_function (90,285,377 samples, 0.02%)</title><rect x="1099.1" y="1797" width="0.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="1102.10" y="1807.5" ></text>
</g>
<g >
<title>PQgetResult (68,235,958 samples, 0.01%)</title><rect x="42.5" y="2053" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="45.45" y="2063.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (115,069,243 samples, 0.02%)</title><rect x="152.3" y="1685" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="155.33" y="1695.5" ></text>
</g>
<g >
<title>enqueue_task (682,570,614 samples, 0.11%)</title><rect x="1103.5" y="1749" width="1.4" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1106.52" y="1759.5" ></text>
</g>
<g >
<title>FigureColnameInternal.constprop.0 (54,172,721 samples, 0.01%)</title><rect x="263.3" y="2053" width="0.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="266.28" y="2063.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (100,318,489 samples, 0.02%)</title><rect x="265.9" y="1989" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="268.86" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (71,365,979,135 samples, 11.94%)</title><rect x="501.8" y="2037" width="140.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="504.77" y="2047.5" >[unknown]</text>
</g>
<g >
<title>[unknown] (9,280,592,976 samples, 1.55%)</title><rect x="561.5" y="117" width="18.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="564.50" y="127.5" ></text>
</g>
<g >
<title>futex_wait_queue (428,650,240 samples, 0.07%)</title><rect x="446.9" y="1877" width="0.9" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="449.95" y="1887.5" ></text>
</g>
<g >
<title>bpf_overflow_handler (2,028,851,368 samples, 0.34%)</title><rect x="528.9" y="1749" width="4.0" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="531.87" y="1759.5" ></text>
</g>
<g >
<title>FileWriteback (81,262,852 samples, 0.01%)</title><rect x="266.1" y="2053" width="0.1" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="269.05" y="2063.5" ></text>
</g>
<g >
<title>__check_object_size (54,695,723 samples, 0.01%)</title><rect x="346.1" y="1845" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="349.08" y="1855.5" ></text>
</g>
<g >
<title>schedule (131,806,002 samples, 0.02%)</title><rect x="359.7" y="1973" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="362.67" y="1983.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (56,597,243 samples, 0.01%)</title><rect x="1058.0" y="2037" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1061.05" y="2047.5" ></text>
</g>
<g >
<title>perf_ctx_sched_task_cb (111,631,337 samples, 0.02%)</title><rect x="1021.2" y="1845" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="1024.19" y="1855.5" ></text>
</g>
<g >
<title>XLogInsertAllowed (57,395,664 samples, 0.01%)</title><rect x="364.4" y="2053" width="0.1" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="367.36" y="2063.5" ></text>
</g>
<g >
<title>pqReadData (147,490,078 samples, 0.02%)</title><rect x="108.8" y="2021" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="111.75" y="2031.5" ></text>
</g>
<g >
<title>sock_poll (84,259,123 samples, 0.01%)</title><rect x="997.3" y="1925" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1000.30" y="1935.5" ></text>
</g>
<g >
<title>__wake_up (2,592,783,083 samples, 0.43%)</title><rect x="480.4" y="1861" width="5.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="483.36" y="1871.5" ></text>
</g>
<g >
<title>add_rtes_to_flat_rtable (220,411,653 samples, 0.04%)</title><rect x="754.6" y="2037" width="0.4" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="757.60" y="2047.5" ></text>
</g>
<g >
<title>consume_obj_stock (57,383,484 samples, 0.01%)</title><rect x="681.8" y="1845" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="684.82" y="1855.5" ></text>
</g>
<g >
<title>group_sched_out (54,673,059 samples, 0.01%)</title><rect x="528.4" y="1717" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="531.36" y="1727.5" ></text>
</g>
<g >
<title>dequeue_task (545,341,328 samples, 0.09%)</title><rect x="192.7" y="1845" width="1.0" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="195.66" y="1855.5" ></text>
</g>
<g >
<title>error_return (57,571,719 samples, 0.01%)</title><rect x="486.1" y="2021" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="489.07" y="2031.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (61,984,018 samples, 0.01%)</title><rect x="1031.0" y="2037" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1034.02" y="2047.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (1,346,034,153 samples, 0.23%)</title><rect x="325.5" y="2053" width="2.7" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="328.51" y="2063.5" ></text>
</g>
<g >
<title>_copy_to_user (53,448,059 samples, 0.01%)</title><rect x="1137.3" y="1909" width="0.1" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="1140.28" y="1919.5" ></text>
</g>
<g >
<title>folio_account_dirtied (177,923,624 samples, 0.03%)</title><rect x="947.0" y="1813" width="0.4" height="15.0" fill="rgb(241,170,40)" rx="2" ry="2" />
<text x="950.05" y="1823.5" ></text>
</g>
<g >
<title>common_interrupt (55,447,440 samples, 0.01%)</title><rect x="726.8" y="1861" width="0.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="729.77" y="1871.5" ></text>
</g>
<g >
<title>__memcg_slab_post_alloc_hook (60,286,985 samples, 0.01%)</title><rect x="672.7" y="1877" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="675.72" y="1887.5" ></text>
</g>
<g >
<title>assign_query_collations_walker (54,052,923 samples, 0.01%)</title><rect x="957.1" y="2053" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="960.11" y="2063.5" ></text>
</g>
<g >
<title>threadRun (2,702,410,088 samples, 0.45%)</title><rect x="210.2" y="2053" width="5.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="213.19" y="2063.5" ></text>
</g>
<g >
<title>pick_next_task (82,790,231 samples, 0.01%)</title><rect x="871.4" y="1925" width="0.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="874.36" y="1935.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (111,449,314 samples, 0.02%)</title><rect x="153.1" y="1845" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="156.13" y="1855.5" ></text>
</g>
<g >
<title>perf_swevent_event (111,690,655 samples, 0.02%)</title><rect x="367.4" y="1941" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="370.42" y="1951.5" ></text>
</g>
<g >
<title>bpf_ringbuf_reserve (752,633,760 samples, 0.13%)</title><rect x="474.8" y="1861" width="1.5" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="477.77" y="1871.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,013,943,638 samples, 0.50%)</title><rect x="190.9" y="2005" width="6.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="193.93" y="2015.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (53,764,412 samples, 0.01%)</title><rect x="474.1" y="1829" width="0.1" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="477.13" y="1839.5" ></text>
</g>
<g >
<title>[[vdso]] (518,988,850 samples, 0.09%)</title><rect x="267.9" y="2037" width="1.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="270.94" y="2047.5" ></text>
</g>
<g >
<title>wakeup_preempt (84,613,509 samples, 0.01%)</title><rect x="1179.1" y="1813" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="1182.08" y="1823.5" ></text>
</g>
<g >
<title>asm_sysvec_irq_work (60,067,863 samples, 0.01%)</title><rect x="471.6" y="1973" width="0.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="474.64" y="1983.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (54,675,874 samples, 0.01%)</title><rect x="457.7" y="2037" width="0.1" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="460.69" y="2047.5" ></text>
</g>
<g >
<title>ep_autoremove_wake_function (54,158,423 samples, 0.01%)</title><rect x="367.7" y="1797" width="0.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="370.69" y="1807.5" ></text>
</g>
<g >
<title>__pollwait (234,484,092 samples, 0.04%)</title><rect x="94.8" y="1861" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="97.80" y="1871.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (58,277,250 samples, 0.01%)</title><rect x="624.2" y="1957" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="627.17" y="1967.5" ></text>
</g>
<g >
<title>virtqueue_add_sgs (55,591,049 samples, 0.01%)</title><rect x="12.0" y="1797" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="14.96" y="1807.5" ></text>
</g>
<g >
<title>asm_exc_debug (4,817,433,334 samples, 0.81%)</title><rect x="342.5" y="2037" width="9.5" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="345.52" y="2047.5" ></text>
</g>
<g >
<title>unix_stream_sendmsg (20,116,813,782 samples, 3.37%)</title><rect x="113.8" y="1909" width="39.7" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="116.81" y="1919.5" >uni..</text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (192,157,704 samples, 0.03%)</title><rect x="871.2" y="2021" width="0.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="874.25" y="2031.5" ></text>
</g>
<g >
<title>__x86_indirect_thunk_rax (55,809,384 samples, 0.01%)</title><rect x="95.3" y="1861" width="0.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="98.26" y="1871.5" ></text>
</g>
<g >
<title>native_write_msr (80,933,492 samples, 0.01%)</title><rect x="1185.9" y="1861" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1188.89" y="1871.5" ></text>
</g>
<g >
<title>alloc_pages (145,576,029 samples, 0.02%)</title><rect x="1092.5" y="1893" width="0.3" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="1095.48" y="1903.5" ></text>
</g>
<g >
<title>unix_destruct_scm (1,060,919,563 samples, 0.18%)</title><rect x="909.3" y="1861" width="2.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="912.29" y="1871.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (119,933,891 samples, 0.02%)</title><rect x="554.6" y="1605" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="557.63" y="1615.5" ></text>
</g>
<g >
<title>heap_fetch (262,252,007 samples, 0.04%)</title><rect x="825.2" y="2037" width="0.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="828.17" y="2047.5" ></text>
</g>
<g >
<title>rseq_update_cpu_node_id (136,541,457 samples, 0.02%)</title><rect x="21.2" y="1957" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="24.22" y="1967.5" ></text>
</g>
<g >
<title>uint32_hash (367,947,537 samples, 0.06%)</title><rect x="940.2" y="2037" width="0.7" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="943.18" y="2047.5" ></text>
</g>
<g >
<title>datumIsEqual (87,558,003 samples, 0.01%)</title><rect x="972.6" y="2053" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="975.62" y="2063.5" ></text>
</g>
<g >
<title>EndCommand (174,411,226 samples, 0.03%)</title><rect x="401.6" y="2037" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="404.56" y="2047.5" ></text>
</g>
<g >
<title>checkInsertTargets (84,248,332 samples, 0.01%)</title><rect x="962.6" y="2053" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="965.61" y="2063.5" ></text>
</g>
<g >
<title>finalize_primnode (61,206,964 samples, 0.01%)</title><rect x="622.3" y="2021" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="625.31" y="2031.5" ></text>
</g>
<g >
<title>drm_fb_helper_damage_work (59,379,595 samples, 0.01%)</title><rect x="10.8" y="1973" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="13.79" y="1983.5" ></text>
</g>
<g >
<title>__check_heap_object (55,755,188 samples, 0.01%)</title><rect x="669.1" y="1877" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="672.07" y="1887.5" ></text>
</g>
<g >
<title>mod_objcg_state (84,670,167 samples, 0.01%)</title><rect x="173.7" y="1813" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="176.74" y="1823.5" ></text>
</g>
<g >
<title>update_cfs_group (109,429,730 samples, 0.02%)</title><rect x="1178.3" y="1781" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="1181.26" y="1791.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (87,905,175 samples, 0.01%)</title><rect x="420.7" y="2005" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="423.70" y="2015.5" ></text>
</g>
<g >
<title>pg_strdup (853,346,233 samples, 0.14%)</title><rect x="202.4" y="2053" width="1.7" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="205.38" y="2063.5" ></text>
</g>
<g >
<title>resched_curr (84,824,912 samples, 0.01%)</title><rect x="724.7" y="1797" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="727.69" y="1807.5" ></text>
</g>
<g >
<title>__schedule (136,229,404 samples, 0.02%)</title><rect x="1038.9" y="1861" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1041.88" y="1871.5" ></text>
</g>
<g >
<title>switch_mm_irqs_off (201,190,424 samples, 0.03%)</title><rect x="372.8" y="1877" width="0.4" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="375.78" y="1887.5" ></text>
</g>
<g >
<title>__memcg_slab_free_hook (1,646,765,963 samples, 0.28%)</title><rect x="175.2" y="1813" width="3.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="178.19" y="1823.5" ></text>
</g>
<g >
<title>next_uptodate_folio (1,286,045,281 samples, 0.22%)</title><rect x="736.5" y="1877" width="2.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="739.46" y="1887.5" ></text>
</g>
<g >
<title>inode_permission (60,472,142 samples, 0.01%)</title><rect x="249.2" y="1893" width="0.1" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="252.18" y="1903.5" ></text>
</g>
<g >
<title>pv_native_safe_halt (3,174,576,046 samples, 0.53%)</title><rect x="1174.7" y="1941" width="6.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1177.74" y="1951.5" ></text>
</g>
<g >
<title>nocachegetattr (304,495,828 samples, 0.05%)</title><rect x="859.4" y="2037" width="0.6" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="862.38" y="2047.5" ></text>
</g>
<g >
<title>ep_poll_callback (1,989,412,275 samples, 0.33%)</title><rect x="534.5" y="1733" width="3.9" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="537.50" y="1743.5" ></text>
</g>
<g >
<title>asm_sysvec_irq_work (56,686,249 samples, 0.01%)</title><rect x="527.5" y="1829" width="0.1" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="530.47" y="1839.5" ></text>
</g>
<g >
<title>pick_next_task (54,687,679 samples, 0.01%)</title><rect x="420.7" y="1925" width="0.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="423.70" y="1935.5" ></text>
</g>
<g >
<title>[libc.so.6] (57,255,481 samples, 0.01%)</title><rect x="48.2" y="2021" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="51.21" y="2031.5" ></text>
</g>
<g >
<title>create_scan_plan (52,917,770 samples, 0.01%)</title><rect x="972.3" y="2053" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="975.35" y="2063.5" ></text>
</g>
<g >
<title>irqentry_exit (58,338,954 samples, 0.01%)</title><rect x="830.7" y="1989" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="833.69" y="1999.5" ></text>
</g>
<g >
<title>bpf_ringbuf_submit (652,822,449 samples, 0.11%)</title><rect x="531.4" y="1717" width="1.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="534.36" y="1727.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (56,032,137 samples, 0.01%)</title><rect x="776.9" y="1893" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="779.88" y="1903.5" ></text>
</g>
<g >
<title>ResourceOwnerEnlarge (142,451,599 samples, 0.02%)</title><rect x="321.1" y="2053" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="324.10" y="2063.5" ></text>
</g>
<g >
<title>pv_native_set_debugreg (51,292,816 samples, 0.01%)</title><rect x="449.8" y="1797" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="452.80" y="1807.5" ></text>
</g>
<g >
<title>pv_native_set_debugreg (54,673,059 samples, 0.01%)</title><rect x="528.4" y="1669" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="531.36" y="1679.5" ></text>
</g>
<g >
<title>next_uptodate_folio (1,726,622,145 samples, 0.29%)</title><rect x="1088.9" y="1893" width="3.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1091.90" y="1903.5" ></text>
</g>
<g >
<title>ExecCheckPermissions (145,428,394 samples, 0.02%)</title><rect x="254.9" y="2053" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="257.86" y="2063.5" ></text>
</g>
<g >
<title>sched_clock_cpu (77,123,343 samples, 0.01%)</title><rect x="36.4" y="1845" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="39.35" y="1855.5" ></text>
</g>
<g >
<title>__wake_up (3,214,658,785 samples, 0.54%)</title><rect x="353.0" y="1829" width="6.4" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="356.04" y="1839.5" ></text>
</g>
<g >
<title>assign_collations_walker (554,420,269 samples, 0.09%)</title><rect x="598.8" y="2021" width="1.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="601.79" y="2031.5" ></text>
</g>
<g >
<title>enqueue_task_fair (6,398,166,341 samples, 1.07%)</title><rect x="702.3" y="1797" width="12.6" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="705.27" y="1807.5" ></text>
</g>
<g >
<title>ExecInitIndexScan (257,519,998 samples, 0.04%)</title><rect x="409.0" y="2037" width="0.5" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="412.00" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="821" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="831.5" ></text>
</g>
<g >
<title>native_smp_send_reschedule (122,191,627 samples, 0.02%)</title><rect x="537.6" y="1525" width="0.2" height="15.0" fill="rgb(223,82,19)" rx="2" ry="2" />
<text x="540.57" y="1535.5" ></text>
</g>
<g >
<title>__wake_up_common (10,939,464,288 samples, 1.83%)</title><rect x="131.3" y="1861" width="21.6" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="134.31" y="1871.5" >_..</text>
</g>
<g >
<title>ep_poll (165,004,776 samples, 0.03%)</title><rect x="18.1" y="1957" width="0.3" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" />
<text x="21.12" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="341" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="351.5" ></text>
</g>
<g >
<title>_raw_spin_lock (54,962,641 samples, 0.01%)</title><rect x="481.3" y="1717" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="484.30" y="1727.5" ></text>
</g>
<g >
<title>blk_mq_requeue_work (81,546,807 samples, 0.01%)</title><rect x="10.2" y="1973" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="13.18" y="1983.5" ></text>
</g>
<g >
<title>sched_clock_cpu (256,155,469 samples, 0.04%)</title><rect x="89.9" y="1797" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="92.87" y="1807.5" ></text>
</g>
<g >
<title>relation_close (57,782,260 samples, 0.01%)</title><rect x="1138.9" y="2053" width="0.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="1141.87" y="2063.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (58,903,058 samples, 0.01%)</title><rect x="666.7" y="1861" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="669.69" y="1871.5" ></text>
</g>
<g >
<title>blk_mq_plug_issue_direct (410,872,449 samples, 0.07%)</title><rect x="1040.1" y="1797" width="0.8" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="1043.13" y="1807.5" ></text>
</g>
<g >
<title>bpf_ringbuf_notify (85,236,206 samples, 0.01%)</title><rect x="505.3" y="1909" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="508.29" y="1919.5" ></text>
</g>
<g >
<title>add_path (455,627,590 samples, 0.08%)</title><rect x="752.9" y="2037" width="0.9" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="755.88" y="2047.5" ></text>
</g>
<g >
<title>event_sched_in (78,801,061 samples, 0.01%)</title><rect x="343.6" y="1861" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="346.59" y="1871.5" ></text>
</g>
<g >
<title>pstrdup (81,510,149 samples, 0.01%)</title><rect x="886.0" y="2037" width="0.1" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="888.95" y="2047.5" ></text>
</g>
<g >
<title>perf_swevent_event (233,638,410 samples, 0.04%)</title><rect x="264.7" y="1941" width="0.4" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="267.65" y="1951.5" ></text>
</g>
<g >
<title>bpf_ringbuf_submit (87,466,045 samples, 0.01%)</title><rect x="532.7" y="1733" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="535.65" y="1743.5" ></text>
</g>
<g >
<title>pick_next_task_fair (56,561,235 samples, 0.01%)</title><rect x="11.5" y="1941" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="14.53" y="1951.5" ></text>
</g>
<g >
<title>SimpleLruReadPage_ReadOnly (117,408,724 samples, 0.02%)</title><rect x="331.1" y="2053" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="334.08" y="2063.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (84,093,996 samples, 0.01%)</title><rect x="447.3" y="1813" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="450.35" y="1823.5" ></text>
</g>
<g >
<title>__wake_up (56,780,393 samples, 0.01%)</title><rect x="343.3" y="1877" width="0.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="346.31" y="1887.5" ></text>
</g>
<g >
<title>link_path_walk.part.0.constprop.0 (60,472,142 samples, 0.01%)</title><rect x="249.2" y="1909" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="252.18" y="1919.5" ></text>
</g>
<g >
<title>sched_clock (58,337,618 samples, 0.01%)</title><rect x="86.5" y="1733" width="0.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="89.46" y="1743.5" ></text>
</g>
<g >
<title>ExecInitResultSlot (56,348,728 samples, 0.01%)</title><rect x="1172.2" y="2037" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1175.21" y="2047.5" ></text>
</g>
<g >
<title>local_clock_noinstr (159,134,480 samples, 0.03%)</title><rect x="1013.5" y="1813" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1016.50" y="1823.5" ></text>
</g>
<g >
<title>type_maximum_size (144,871,964 samples, 0.02%)</title><rect x="1172.6" y="2053" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="1175.60" y="2063.5" ></text>
</g>
<g >
<title>ctx_groups_sched_in (54,936,306 samples, 0.01%)</title><rect x="447.3" y="1781" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="450.35" y="1791.5" ></text>
</g>
<g >
<title>__blk_mq_end_request (59,618,957 samples, 0.01%)</title><rect x="1175.7" y="1669" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1178.66" y="1679.5" ></text>
</g>
<g >
<title>pg_malloc (84,007,610 samples, 0.01%)</title><rect x="157.8" y="2037" width="0.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="160.79" y="2047.5" ></text>
</g>
<g >
<title>_raw_spin_lock (433,194,369 samples, 0.07%)</title><rect x="696.0" y="1813" width="0.9" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="699.03" y="1823.5" ></text>
</g>
<g >
<title>colNameToVar (293,104,300 samples, 0.05%)</title><rect x="777.5" y="2037" width="0.6" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="780.55" y="2047.5" ></text>
</g>
<g >
<title>event_sched_out (55,976,096 samples, 0.01%)</title><rect x="616.1" y="1813" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="619.08" y="1823.5" ></text>
</g>
<g >
<title>__blk_mq_alloc_requests (51,471,316 samples, 0.01%)</title><rect x="1166.2" y="1781" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="1169.16" y="1791.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (57,475,504 samples, 0.01%)</title><rect x="643.4" y="2021" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="646.45" y="2031.5" ></text>
</g>
<g >
<title>transformExprRecurse (247,268,150 samples, 0.04%)</title><rect x="935.5" y="2037" width="0.5" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="938.53" y="2047.5" ></text>
</g>
<g >
<title>can_coerce_type (57,245,121 samples, 0.01%)</title><rect x="771.7" y="2037" width="0.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="774.67" y="2047.5" ></text>
</g>
<g >
<title>_raw_spin_lock (136,796,740 samples, 0.02%)</title><rect x="652.1" y="1925" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="655.14" y="1935.5" ></text>
</g>
<g >
<title>ExecTargetListLength (168,536,839 samples, 0.03%)</title><rect x="417.2" y="2037" width="0.3" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="420.18" y="2047.5" ></text>
</g>
<g >
<title>schedule (285,946,338 samples, 0.05%)</title><rect x="372.7" y="1909" width="0.6" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="375.72" y="1919.5" ></text>
</g>
<g >
<title>sock_def_readable (11,365,284,391 samples, 1.90%)</title><rect x="131.1" y="1893" width="22.4" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="134.09" y="1903.5" >s..</text>
</g>
<g >
<title>irqentry_exit_to_user_mode (53,995,505 samples, 0.01%)</title><rect x="858.7" y="1973" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="861.67" y="1983.5" ></text>
</g>
<g >
<title>clockevents_program_event (82,747,023 samples, 0.01%)</title><rect x="1189.6" y="1845" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="1192.56" y="1855.5" ></text>
</g>
<g >
<title>__rcu_read_lock (57,154,653 samples, 0.01%)</title><rect x="122.7" y="1813" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="125.68" y="1823.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (58,681,141 samples, 0.01%)</title><rect x="1084.5" y="1973" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1087.52" y="1983.5" ></text>
</g>
<g >
<title>generic_update_time (534,859,198 samples, 0.09%)</title><rect x="944.0" y="1909" width="1.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="947.03" y="1919.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (51,555,308 samples, 0.01%)</title><rect x="876.3" y="2005" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="879.34" y="2015.5" ></text>
</g>
<g >
<title>__wake_up (3,329,668,176 samples, 0.56%)</title><rect x="353.0" y="1877" width="6.6" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="355.99" y="1887.5" ></text>
</g>
<g >
<title>drain_obj_stock (955,443,761 samples, 0.16%)</title><rect x="124.6" y="1797" width="1.9" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="127.60" y="1807.5" ></text>
</g>
<g >
<title>kthread (56,517,171 samples, 0.01%)</title><rect x="11.2" y="2021" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="14.19" y="2031.5" ></text>
</g>
<g >
<title>transformExprRecurse (113,421,189 samples, 0.02%)</title><rect x="1168.5" y="2053" width="0.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="1171.48" y="2063.5" ></text>
</g>
<g >
<title>TransactionIdGetStatus (84,973,479 samples, 0.01%)</title><rect x="467.2" y="2037" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="470.17" y="2047.5" ></text>
</g>
<g >
<title>cost_bitmap_heap_scan (176,135,025 samples, 0.03%)</title><rect x="780.4" y="2037" width="0.3" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="783.38" y="2047.5" ></text>
</g>
<g >
<title>ResourceOwnerDelete (82,227,262 samples, 0.01%)</title><rect x="320.9" y="2053" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="323.94" y="2063.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (81,363,468 samples, 0.01%)</title><rect x="1163.1" y="2021" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="1166.12" y="2031.5" ></text>
</g>
<g >
<title>deconstruct_recurse (201,122,431 samples, 0.03%)</title><rect x="786.8" y="2037" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="789.80" y="2047.5" ></text>
</g>
<g >
<title>__virt_addr_valid (178,660,689 samples, 0.03%)</title><rect x="669.2" y="1861" width="0.4" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="672.24" y="1871.5" ></text>
</g>
<g >
<title>schedule (87,905,175 samples, 0.01%)</title><rect x="420.7" y="1957" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="423.70" y="1967.5" ></text>
</g>
<g >
<title>__queue_delayed_work (113,590,264 samples, 0.02%)</title><rect x="1037.9" y="1765" width="0.3" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="1040.93" y="1775.5" ></text>
</g>
<g >
<title>__x64_sys_futex (232,890,161 samples, 0.04%)</title><rect x="506.4" y="1925" width="0.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="509.43" y="1935.5" ></text>
</g>
<g >
<title>ResourceOwnerEnlarge (142,828,137 samples, 0.02%)</title><rect x="460.6" y="2037" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="463.62" y="2047.5" ></text>
</g>
<g >
<title>arch_exit_to_user_mode_prepare.isra.0 (84,639,678 samples, 0.01%)</title><rect x="343.1" y="1989" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="346.09" y="1999.5" ></text>
</g>
<g >
<title>rseq_ip_fixup (58,876,751 samples, 0.01%)</title><rect x="191.0" y="1941" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="194.04" y="1951.5" ></text>
</g>
<g >
<title>__pollwait (814,346,691 samples, 0.14%)</title><rect x="97.6" y="1845" width="1.6" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="100.59" y="1855.5" ></text>
</g>
<g >
<title>update_curr (55,812,281 samples, 0.01%)</title><rect x="1103.8" y="1701" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1106.80" y="1711.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (57,802,825 samples, 0.01%)</title><rect x="195.8" y="1829" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="198.77" y="1839.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (113,012,693 samples, 0.02%)</title><rect x="656.2" y="1877" width="0.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="659.21" y="1887.5" ></text>
</g>
<g >
<title>security_socket_sendmsg (144,394,613 samples, 0.02%)</title><rect x="664.8" y="1941" width="0.3" height="15.0" fill="rgb(243,174,41)" rx="2" ry="2" />
<text x="667.81" y="1951.5" ></text>
</g>
<g >
<title>update_curr_se (86,469,300 samples, 0.01%)</title><rect x="144.0" y="1669" width="0.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="146.95" y="1679.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (57,826,287 samples, 0.01%)</title><rect x="352.1" y="1877" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="355.09" y="1887.5" ></text>
</g>
<g >
<title>sched_ttwu_pending (1,567,997,424 samples, 0.26%)</title><rect x="1176.2" y="1845" width="3.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="1179.20" y="1855.5" ></text>
</g>
<g >
<title>__wake_up_common (10,236,620,249 samples, 1.71%)</title><rect x="132.5" y="1813" width="20.2" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="135.47" y="1823.5" ></text>
</g>
<g >
<title>int4eq (221,981,624 samples, 0.04%)</title><rect x="837.2" y="2037" width="0.5" height="15.0" fill="rgb(206,9,2)" rx="2" ry="2" />
<text x="840.24" y="2047.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (658,787,854 samples, 0.11%)</title><rect x="694.7" y="1829" width="1.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="697.67" y="1839.5" ></text>
</g>
<g >
<title>sched_clock (60,023,656 samples, 0.01%)</title><rect x="144.9" y="1653" width="0.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="147.91" y="1663.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesMVCC.isra.0 (686,411,697 samples, 0.11%)</title><rect x="431.8" y="2037" width="1.4" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="434.84" y="2047.5" ></text>
</g>
<g >
<title>[libc.so.6] (7,085,911,803 samples, 1.19%)</title><rect x="487.8" y="2037" width="14.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="490.78" y="2047.5" ></text>
</g>
<g >
<title>RestrictInfoIsTidQual (258,083,104 samples, 0.04%)</title><rect x="324.6" y="2053" width="0.5" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="327.57" y="2063.5" ></text>
</g>
<g >
<title>ktime_get (55,641,772 samples, 0.01%)</title><rect x="1185.3" y="1973" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="1188.27" y="1983.5" ></text>
</g>
<g >
<title>perf_event_groups_first (52,000,194 samples, 0.01%)</title><rect x="650.9" y="1861" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="653.87" y="1871.5" ></text>
</g>
<g >
<title>__alloc_pages (145,576,029 samples, 0.02%)</title><rect x="1092.5" y="1861" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1095.48" y="1871.5" ></text>
</g>
<g >
<title>tts_buffer_heap_init (83,995,732 samples, 0.01%)</title><rect x="939.4" y="2037" width="0.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="942.43" y="2047.5" ></text>
</g>
<g >
<title>finalize_primnode (140,807,979 samples, 0.02%)</title><rect x="804.8" y="2037" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="807.76" y="2047.5" ></text>
</g>
<g >
<title>ext4_da_write_begin (468,309,546 samples, 0.08%)</title><rect x="945.5" y="1909" width="0.9" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="948.49" y="1919.5" ></text>
</g>
<g >
<title>ext4_dirty_inode (480,393,878 samples, 0.08%)</title><rect x="944.1" y="1877" width="0.9" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="947.09" y="1887.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (168,450,650 samples, 0.03%)</title><rect x="590.6" y="1989" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="593.61" y="1999.5" ></text>
</g>
<g >
<title>pick_next_task_fair (257,518,697 samples, 0.04%)</title><rect x="555.1" y="1669" width="0.5" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="558.14" y="1679.5" ></text>
</g>
<g >
<title>ExecInitExprRec (485,264,656 samples, 0.08%)</title><rect x="407.9" y="2037" width="0.9" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="410.87" y="2047.5" ></text>
</g>
<g >
<title>remove_useless_joins (140,396,137 samples, 0.02%)</title><rect x="918.2" y="2037" width="0.3" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="921.22" y="2047.5" ></text>
</g>
<g >
<title>sched_clock (194,823,721 samples, 0.03%)</title><rect x="726.1" y="1797" width="0.4" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="729.12" y="1807.5" ></text>
</g>
<g >
<title>schedule (85,832,584 samples, 0.01%)</title><rect x="1099.8" y="1989" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1102.77" y="1999.5" ></text>
</g>
<g >
<title>arch_exit_to_user_mode_prepare.isra.0 (203,125,895 samples, 0.03%)</title><rect x="165.5" y="1957" width="0.4" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="168.53" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="949" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="959.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1621" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1631.5" ></text>
</g>
<g >
<title>PQresultStatus (88,141,676 samples, 0.01%)</title><rect x="43.2" y="2053" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="46.21" y="2063.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (113,595,233 samples, 0.02%)</title><rect x="1155.3" y="2037" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1158.25" y="2047.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (54,042,616 samples, 0.01%)</title><rect x="543.9" y="1829" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="546.93" y="1839.5" ></text>
</g>
<g >
<title>__wake_up_common (2,479,988,534 samples, 0.41%)</title><rect x="480.5" y="1797" width="4.9" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="483.47" y="1807.5" ></text>
</g>
<g >
<title>do_read_fault (2,208,119,124 samples, 0.37%)</title><rect x="1088.4" y="1925" width="4.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1091.41" y="1935.5" ></text>
</g>
<g >
<title>maybe_add_creds (223,620,951 samples, 0.04%)</title><rect x="668.1" y="1925" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="671.12" y="1935.5" ></text>
</g>
<g >
<title>vruntime_eligible (58,949,895 samples, 0.01%)</title><rect x="84.2" y="1765" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="87.21" y="1775.5" ></text>
</g>
<g >
<title>dequeue_task_fair (55,762,152 samples, 0.01%)</title><rect x="1180.6" y="1717" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1183.62" y="1727.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (22,335,930,854 samples, 3.74%)</title><rect x="110.2" y="1989" width="44.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="113.24" y="1999.5" >entr..</text>
</g>
<g >
<title>CreateDestReceiver (53,394,208 samples, 0.01%)</title><rect x="400.1" y="2037" width="0.1" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="403.10" y="2047.5" ></text>
</g>
<g >
<title>pqPutMsgStart (109,881,153 samples, 0.02%)</title><rect x="208.2" y="2053" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="211.24" y="2063.5" ></text>
</g>
<g >
<title>consume_skb (5,720,918,778 samples, 0.96%)</title><rect x="171.9" y="1877" width="11.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="174.95" y="1887.5" ></text>
</g>
<g >
<title>pairingheap_add (144,873,479 samples, 0.02%)</title><rect x="636.0" y="2021" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="639.04" y="2031.5" ></text>
</g>
<g >
<title>_raw_spin_lock (365,291,064 samples, 0.06%)</title><rect x="136.3" y="1733" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="139.32" y="1743.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (90,680,353 samples, 0.02%)</title><rect x="473.6" y="1829" width="0.1" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="476.55" y="1839.5" ></text>
</g>
<g >
<title>make_oper_cache_key (492,521,775 samples, 0.08%)</title><rect x="1110.8" y="2053" width="1.0" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1113.84" y="2063.5" ></text>
</g>
<g >
<title>scanRTEForColumn.isra.0 (138,127,943 samples, 0.02%)</title><rect x="920.5" y="2037" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="923.51" y="2047.5" ></text>
</g>
<g >
<title>check_heap_object (618,417,837 samples, 0.10%)</title><rect x="912.8" y="1797" width="1.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="915.81" y="1807.5" ></text>
</g>
<g >
<title>BufferLockUnlock (84,260,016 samples, 0.01%)</title><rect x="250.1" y="2053" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="253.08" y="2063.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (709,902,808 samples, 0.12%)</title><rect x="100.9" y="1845" width="1.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="103.94" y="1855.5" ></text>
</g>
<g >
<title>threadRun (24,634,831,315 samples, 4.12%)</title><rect x="56.1" y="2005" width="48.7" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="59.13" y="2015.5" >thre..</text>
</g>
<g >
<title>TransactionIdGetStatus (326,674,279 samples, 0.05%)</title><rect x="335.7" y="2053" width="0.6" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="338.65" y="2063.5" ></text>
</g>
<g >
<title>__raw_read_lock_irqsave (84,858,954 samples, 0.01%)</title><rect x="1105.6" y="1829" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1108.59" y="1839.5" ></text>
</g>
<g >
<title>do_epoll_wait (52,145,078 samples, 0.01%)</title><rect x="37.6" y="1973" width="0.2" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="40.65" y="1983.5" ></text>
</g>
<g >
<title>check_functions_in_node (83,354,608 samples, 0.01%)</title><rect x="963.6" y="2053" width="0.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="966.55" y="2063.5" ></text>
</g>
<g >
<title>update_process_times (60,075,769 samples, 0.01%)</title><rect x="1040.5" y="1541" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1043.54" y="1551.5" ></text>
</g>
<g >
<title>leading_pad (112,969,176 samples, 0.02%)</title><rect x="201.1" y="2053" width="0.2" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="204.13" y="2063.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (55,161,559 samples, 0.01%)</title><rect x="846.7" y="1877" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="849.73" y="1887.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (146,290,857 samples, 0.02%)</title><rect x="714.3" y="1765" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="717.28" y="1775.5" ></text>
</g>
<g >
<title>__get_user_nocheck_4 (52,583,702 samples, 0.01%)</title><rect x="558.3" y="1717" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="561.35" y="1727.5" ></text>
</g>
<g >
<title>__x64_sys_kill (3,176,269,832 samples, 0.53%)</title><rect x="1099.9" y="1989" width="6.3" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="1102.94" y="1999.5" ></text>
</g>
<g >
<title>xas_find (563,671,848 samples, 0.09%)</title><rect x="737.8" y="1861" width="1.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="740.83" y="1871.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (721,489,438 samples, 0.12%)</title><rect x="1046.1" y="2053" width="1.4" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="1049.10" y="2063.5" ></text>
</g>
<g >
<title>place_entity (280,418,059 samples, 0.05%)</title><rect x="707.4" y="1765" width="0.5" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="710.35" y="1775.5" ></text>
</g>
<g >
<title>__perf_event_overflow (2,947,969,773 samples, 0.49%)</title><rect x="344.7" y="1925" width="5.8" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="347.68" y="1935.5" ></text>
</g>
<g >
<title>blk_mq_run_hw_queues (56,195,609 samples, 0.01%)</title><rect x="10.9" y="1957" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="13.90" y="1967.5" ></text>
</g>
<g >
<title>error_return (55,581,561 samples, 0.01%)</title><rect x="538.9" y="1877" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="541.93" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="901" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="911.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (113,402,381 samples, 0.02%)</title><rect x="1102.9" y="1733" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="1105.85" y="1743.5" ></text>
</g>
<g >
<title>fireRIRrules (110,711,469 samples, 0.02%)</title><rect x="1044.7" y="2053" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="1047.69" y="2063.5" ></text>
</g>
<g >
<title>update_load_avg (54,485,407 samples, 0.01%)</title><rect x="111.3" y="1861" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="114.28" y="1871.5" ></text>
</g>
<g >
<title>heap_page_prune_and_freeze (108,401,631 samples, 0.02%)</title><rect x="830.9" y="2037" width="0.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="833.85" y="2047.5" ></text>
</g>
<g >
<title>schedule (56,241,384 samples, 0.01%)</title><rect x="296.3" y="1973" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="299.31" y="1983.5" ></text>
</g>
<g >
<title>do_sys_poll (424,411,412 samples, 0.07%)</title><rect x="205.2" y="1973" width="0.8" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="208.17" y="1983.5" ></text>
</g>
<g >
<title>setup_simple_rel_arrays (81,240,404 samples, 0.01%)</title><rect x="925.4" y="2037" width="0.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="928.39" y="2047.5" ></text>
</g>
<g >
<title>ret_from_fork_asm (110,456,860 samples, 0.02%)</title><rect x="10.2" y="2053" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="13.18" y="2063.5" ></text>
</g>
<g >
<title>__fdget (235,092,109 samples, 0.04%)</title><rect x="191.9" y="1909" width="0.5" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="194.90" y="1919.5" ></text>
</g>
<g >
<title>RewriteQuery (231,590,241 samples, 0.04%)</title><rect x="461.7" y="2037" width="0.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="464.67" y="2047.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (58,000,169 samples, 0.01%)</title><rect x="474.2" y="1813" width="0.1" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="477.23" y="1823.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (54,862,766 samples, 0.01%)</title><rect x="1146.8" y="1893" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1149.77" y="1903.5" ></text>
</g>
<g >
<title>try_to_wake_up (56,991,187 samples, 0.01%)</title><rect x="505.3" y="1733" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="508.29" y="1743.5" ></text>
</g>
<g >
<title>x64_sys_call (53,656,837 samples, 0.01%)</title><rect x="19.0" y="1941" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="22.04" y="1951.5" ></text>
</g>
<g >
<title>malloc (304,886,969 samples, 0.05%)</title><rect x="52.4" y="2005" width="0.6" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="55.38" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1333" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1343.5" ></text>
</g>
<g >
<title>namehashfast (113,477,689 samples, 0.02%)</title><rect x="859.1" y="2037" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="862.10" y="2047.5" ></text>
</g>
<g >
<title>place_entity (86,172,453 samples, 0.01%)</title><rect x="710.9" y="1781" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="713.88" y="1791.5" ></text>
</g>
<g >
<title>subquery_planner (256,151,863 samples, 0.04%)</title><rect x="1165.2" y="2053" width="0.5" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="1168.23" y="2063.5" ></text>
</g>
<g >
<title>eqsel (138,615,624 samples, 0.02%)</title><rect x="790.1" y="2037" width="0.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="793.12" y="2047.5" ></text>
</g>
<g >
<title>__update_load_avg_se (136,984,276 samples, 0.02%)</title><rect x="31.0" y="1813" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="33.99" y="1823.5" ></text>
</g>
<g >
<title>__irq_work_queue_local (974,574,551 samples, 0.16%)</title><rect x="348.2" y="1845" width="1.9" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="351.18" y="1855.5" ></text>
</g>
<g >
<title>finalize_plan (385,894,017 samples, 0.06%)</title><rect x="621.5" y="2021" width="0.8" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="624.55" y="2031.5" ></text>
</g>
<g >
<title>pollwake (56,448,763 samples, 0.01%)</title><rect x="910.9" y="1781" width="0.2" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" />
<text x="913.94" y="1791.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (167,791,151 samples, 0.03%)</title><rect x="445.7" y="2037" width="0.4" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="448.72" y="2047.5" ></text>
</g>
<g >
<title>[libc.so.6] (56,155,844 samples, 0.01%)</title><rect x="190.6" y="2021" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="193.60" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1509" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1519.5" ></text>
</g>
<g >
<title>_bt_readnextpage (170,016,342 samples, 0.03%)</title><rect x="955.4" y="2053" width="0.3" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text x="958.41" y="2063.5" ></text>
</g>
<g >
<title>ttwu_do_activate (134,881,466 samples, 0.02%)</title><rect x="265.6" y="1749" width="0.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="268.59" y="1759.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (138,519,250 samples, 0.02%)</title><rect x="428.0" y="2005" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="431.00" y="2015.5" ></text>
</g>
<g >
<title>cpu_startup_entry (7,186,225,688 samples, 1.20%)</title><rect x="1174.1" y="2021" width="14.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="1177.13" y="2031.5" ></text>
</g>
<g >
<title>__send (115,704,969 samples, 0.02%)</title><rect x="196.9" y="2053" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="199.88" y="2063.5" ></text>
</g>
<g >
<title>pick_next_entity (141,512,966 samples, 0.02%)</title><rect x="653.7" y="1909" width="0.3" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="656.68" y="1919.5" ></text>
</g>
<g >
<title>genericcostestimate (114,048,081 samples, 0.02%)</title><rect x="807.5" y="2037" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="810.54" y="2047.5" ></text>
</g>
<g >
<title>__sysvec_irq_work (85,236,206 samples, 0.01%)</title><rect x="505.3" y="1973" width="0.2" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="508.29" y="1983.5" ></text>
</g>
<g >
<title>BufferLockAcquire (56,141,723 samples, 0.01%)</title><rect x="249.9" y="2053" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="252.92" y="2063.5" ></text>
</g>
<g >
<title>select_task_rq (167,481,078 samples, 0.03%)</title><rect x="1103.1" y="1765" width="0.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1106.14" y="1775.5" ></text>
</g>
<g >
<title>psi_task_change (225,176,310 samples, 0.04%)</title><rect x="1178.5" y="1797" width="0.5" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="1181.52" y="1807.5" ></text>
</g>
<g >
<title>update_cfs_group (346,044,492 samples, 0.06%)</title><rect x="149.9" y="1717" width="0.7" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="152.89" y="1727.5" ></text>
</g>
<g >
<title>btendscan (83,737,958 samples, 0.01%)</title><rect x="768.8" y="2037" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="771.78" y="2047.5" ></text>
</g>
<g >
<title>__folio_start_writeback (143,262,517 samples, 0.02%)</title><rect x="1042.1" y="1797" width="0.3" height="15.0" fill="rgb(209,20,5)" rx="2" ry="2" />
<text x="1045.12" y="1807.5" ></text>
</g>
<g >
<title>__skb_datagram_iter (1,412,684,893 samples, 0.24%)</title><rect x="912.5" y="1861" width="2.8" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="915.47" y="1871.5" ></text>
</g>
<g >
<title>pqPutMsgEnd (84,344,614 samples, 0.01%)</title><rect x="162.1" y="2037" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="165.09" y="2047.5" ></text>
</g>
<g >
<title>update_curr_se (56,558,803 samples, 0.01%)</title><rect x="145.9" y="1653" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="148.94" y="1663.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (54,688,229 samples, 0.01%)</title><rect x="1038.3" y="1861" width="0.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="1041.32" y="1871.5" ></text>
</g>
<g >
<title>exprType (348,556,151 samples, 0.06%)</title><rect x="1034.0" y="2053" width="0.7" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1037.01" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1301" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1311.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (53,744,145 samples, 0.01%)</title><rect x="818.6" y="2021" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="821.55" y="2031.5" ></text>
</g>
<g >
<title>ExecEndModifyTable (115,294,309 samples, 0.02%)</title><rect x="404.6" y="2037" width="0.3" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="407.63" y="2047.5" ></text>
</g>
<g >
<title>build_base_rel_tlists (60,222,398 samples, 0.01%)</title><rect x="771.0" y="2037" width="0.1" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="774.00" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (2,698,369,820 samples, 0.45%)</title><rect x="12.3" y="2053" width="5.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="15.33" y="2063.5" ></text>
</g>
<g >
<title>do_syscall_64 (837,879,734 samples, 0.14%)</title><rect x="1136.5" y="2021" width="1.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1139.50" y="2031.5" ></text>
</g>
<g >
<title>blk_mq_run_hw_queue (56,515,670 samples, 0.01%)</title><rect x="10.7" y="1941" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="13.68" y="1951.5" ></text>
</g>
<g >
<title>set_next_buddy (204,776,278 samples, 0.03%)</title><rect x="80.9" y="1797" width="0.4" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="83.86" y="1807.5" ></text>
</g>
<g >
<title>standard_ExecutorFinish (146,858,670 samples, 0.02%)</title><rect x="927.3" y="2037" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="930.29" y="2047.5" ></text>
</g>
<g >
<title>schedule (163,289,967 samples, 0.03%)</title><rect x="871.3" y="1957" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="874.30" y="1967.5" ></text>
</g>
<g >
<title>OidFunctionCall4Coll (260,300,297 samples, 0.04%)</title><rect x="300.4" y="2053" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="303.42" y="2063.5" ></text>
</g>
<g >
<title>update_cfs_group (90,291,736 samples, 0.02%)</title><rect x="1153.4" y="1877" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="1156.44" y="1887.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,291,432,694 samples, 0.55%)</title><rect x="1099.7" y="2021" width="6.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1102.71" y="2031.5" ></text>
</g>
<g >
<title>_raw_spin_lock (135,571,642 samples, 0.02%)</title><rect x="1027.8" y="1861" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1030.81" y="1871.5" ></text>
</g>
<g >
<title>irqentry_exit (56,318,212 samples, 0.01%)</title><rect x="767.4" y="1989" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="770.45" y="1999.5" ></text>
</g>
<g >
<title>create_indexscan_plan (307,262,676 samples, 0.05%)</title><rect x="783.3" y="2037" width="0.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="786.33" y="2047.5" ></text>
</g>
<g >
<title>pick_next_task_fair (199,192,961 samples, 0.03%)</title><rect x="193.9" y="1829" width="0.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="196.90" y="1839.5" ></text>
</g>
<g >
<title>prepare_task_switch (138,068,685 samples, 0.02%)</title><rect x="344.1" y="1957" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="347.08" y="1967.5" ></text>
</g>
<g >
<title>perf_event_groups_next (56,449,217 samples, 0.01%)</title><rect x="1009.4" y="1813" width="0.1" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="1012.35" y="1823.5" ></text>
</g>
<g >
<title>PQmakeEmptyPGresult (414,241,257 samples, 0.07%)</title><rect x="52.2" y="2021" width="0.8" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="55.16" y="2031.5" ></text>
</g>
<g >
<title>arch_exit_to_user_mode_prepare.isra.0 (449,239,976 samples, 0.08%)</title><rect x="646.2" y="1973" width="0.9" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="649.21" y="1983.5" ></text>
</g>
<g >
<title>ExecModifyTable (1,183,636,125 samples, 0.20%)</title><rect x="412.2" y="2037" width="2.4" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="415.23" y="2047.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (57,321,497 samples, 0.01%)</title><rect x="750.7" y="2005" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="753.67" y="2015.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (51,054,532 samples, 0.01%)</title><rect x="1157.6" y="2037" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1160.60" y="2047.5" ></text>
</g>
<g >
<title>irq_work_run_list (2,016,910,636 samples, 0.34%)</title><rect x="534.5" y="1813" width="4.0" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="537.50" y="1823.5" ></text>
</g>
<g >
<title>pgstat_count_backend_io_op (199,757,479 samples, 0.03%)</title><rect x="1131.1" y="2053" width="0.4" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="1134.11" y="2063.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (80,841,626 samples, 0.01%)</title><rect x="471.8" y="1925" width="0.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="474.75" y="1935.5" ></text>
</g>
<g >
<title>pick_next_task (61,228,394 samples, 0.01%)</title><rect x="538.6" y="1781" width="0.2" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="541.64" y="1791.5" ></text>
</g>
<g >
<title>__schedule (5,544,002,364 samples, 0.93%)</title><rect x="26.7" y="1877" width="10.9" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="29.65" y="1887.5" ></text>
</g>
<g >
<title>simple_copy_to_iter (1,171,708,306 samples, 0.20%)</title><rect x="184.6" y="1829" width="2.3" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="187.61" y="1839.5" ></text>
</g>
<g >
<title>perf_ctx_enable (58,216,047 samples, 0.01%)</title><rect x="1024.7" y="1829" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1027.68" y="1839.5" ></text>
</g>
<g >
<title>update_curr (155,439,704 samples, 0.03%)</title><rect x="355.7" y="1685" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="358.68" y="1695.5" ></text>
</g>
<g >
<title>asm_exc_debug (397,371,430 samples, 0.07%)</title><rect x="942.5" y="2037" width="0.8" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="945.53" y="2047.5" ></text>
</g>
<g >
<title>native_write_msr (112,547,085 samples, 0.02%)</title><rect x="725.0" y="1781" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="728.03" y="1791.5" ></text>
</g>
<g >
<title>tick_program_event (82,747,023 samples, 0.01%)</title><rect x="1189.6" y="1861" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1192.56" y="1871.5" ></text>
</g>
<g >
<title>list_copy (168,988,465 samples, 0.03%)</title><rect x="842.8" y="2037" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="845.80" y="2047.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (94,260,669 samples, 0.02%)</title><rect x="37.4" y="1813" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="40.41" y="1823.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (82,728,185 samples, 0.01%)</title><rect x="816.1" y="2005" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="819.10" y="2015.5" ></text>
</g>
<g >
<title>local_clock_noinstr (194,831,636 samples, 0.03%)</title><rect x="651.3" y="1877" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="654.25" y="1887.5" ></text>
</g>
<g >
<title>__raw_read_lock_irqsave (85,486,663 samples, 0.01%)</title><rect x="359.4" y="1813" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="362.39" y="1823.5" ></text>
</g>
<g >
<title>unix_stream_read_actor (1,510,046,323 samples, 0.25%)</title><rect x="184.1" y="1877" width="2.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="187.06" y="1887.5" ></text>
</g>
<g >
<title>dequeue_entity (1,336,155,452 samples, 0.22%)</title><rect x="1001.1" y="1845" width="2.6" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="1004.09" y="1855.5" ></text>
</g>
<g >
<title>pv_native_get_debugreg (85,712,808 samples, 0.01%)</title><rect x="279.4" y="2021" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="282.42" y="2031.5" ></text>
</g>
<g >
<title>pte_offset_map_nolock (59,249,315 samples, 0.01%)</title><rect x="499.8" y="1925" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="502.79" y="1935.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (106,623,066 samples, 0.02%)</title><rect x="1178.0" y="1749" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="1181.05" y="1759.5" ></text>
</g>
<g >
<title>__wake_up_common (214,870,638 samples, 0.04%)</title><rect x="265.4" y="1813" width="0.5" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="268.43" y="1823.5" ></text>
</g>
<g >
<title>LWLockAcquireOrWait (58,973,953 samples, 0.01%)</title><rect x="280.2" y="2053" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="283.18" y="2063.5" ></text>
</g>
<g >
<title>enqueue_entity (759,046,445 samples, 0.13%)</title><rect x="1149.8" y="1861" width="1.5" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="1152.79" y="1871.5" ></text>
</g>
<g >
<title>rep_movs_alternative (396,352,761 samples, 0.07%)</title><rect x="186.1" y="1813" width="0.8" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="189.14" y="1823.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (58,681,141 samples, 0.01%)</title><rect x="1084.5" y="2037" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1087.52" y="2047.5" ></text>
</g>
<g >
<title>psi_group_change (408,256,575 samples, 0.07%)</title><rect x="356.8" y="1701" width="0.8" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="359.77" y="1711.5" ></text>
</g>
<g >
<title>xas_load (506,291,078 samples, 0.08%)</title><rect x="737.9" y="1845" width="1.0" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="740.95" y="1855.5" ></text>
</g>
<g >
<title>page_counter_uncharge (147,521,583 samples, 0.02%)</title><rect x="126.9" y="1733" width="0.3" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="129.87" y="1743.5" ></text>
</g>
<g >
<title>palloc0 (140,709,691 samples, 0.02%)</title><rect x="636.4" y="2021" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="639.39" y="2031.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (60,120,451 samples, 0.01%)</title><rect x="916.8" y="2021" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="919.77" y="2031.5" ></text>
</g>
<g >
<title>heap_hot_search_buffer (2,367,557,539 samples, 0.40%)</title><rect x="826.2" y="2037" width="4.7" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="829.18" y="2047.5" ></text>
</g>
<g >
<title>find_coercion_pathway (111,868,951 samples, 0.02%)</title><rect x="1044.4" y="2053" width="0.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="1047.36" y="2063.5" ></text>
</g>
<g >
<title>do_poll.constprop.0 (16,021,485,774 samples, 2.68%)</title><rect x="68.0" y="1893" width="31.6" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="70.96" y="1903.5" >do..</text>
</g>
<g >
<title>hrtimer_interrupt (90,063,185 samples, 0.02%)</title><rect x="726.9" y="1829" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="729.88" y="1839.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (317,715,409 samples, 0.05%)</title><rect x="910.6" y="1813" width="0.6" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="913.60" y="1823.5" ></text>
</g>
<g >
<title>sock_wfree (2,197,125,463 samples, 0.37%)</title><rect x="178.8" y="1829" width="4.4" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="181.85" y="1839.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (138,560,431 samples, 0.02%)</title><rect x="1038.3" y="1877" width="0.3" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="1041.32" y="1887.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (86,088,033 samples, 0.01%)</title><rect x="1154.5" y="1877" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="1157.46" y="1887.5" ></text>
</g>
<g >
<title>__schedule (83,767,850 samples, 0.01%)</title><rect x="11.5" y="1973" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="14.53" y="1983.5" ></text>
</g>
<g >
<title>hw_breakpoint_del (111,294,362 samples, 0.02%)</title><rect x="344.1" y="1845" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="347.08" y="1855.5" ></text>
</g>
<g >
<title>pv_native_set_debugreg (55,496,476 samples, 0.01%)</title><rect x="359.8" y="1813" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="362.77" y="1823.5" ></text>
</g>
<g >
<title>native_write_msr (86,088,033 samples, 0.01%)</title><rect x="1154.5" y="1861" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1157.46" y="1871.5" ></text>
</g>
<g >
<title>perf_swevent_event (2,962,171,196 samples, 0.50%)</title><rect x="472.2" y="1925" width="5.8" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="475.20" y="1935.5" ></text>
</g>
<g >
<title>RelationClose (257,104,090 samples, 0.04%)</title><rect x="313.4" y="2053" width="0.5" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="316.44" y="2063.5" ></text>
</g>
<g >
<title>ctx_sched_out (62,110,907 samples, 0.01%)</title><rect x="897.9" y="1893" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="900.95" y="1903.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (56,274,278 samples, 0.01%)</title><rect x="327.9" y="1989" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="330.95" y="1999.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (117,419,725 samples, 0.02%)</title><rect x="144.6" y="1669" width="0.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="147.58" y="1679.5" ></text>
</g>
<g >
<title>update_curr (112,453,803 samples, 0.02%)</title><rect x="536.2" y="1525" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="539.18" y="1535.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (119,933,891 samples, 0.02%)</title><rect x="554.6" y="1669" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="557.63" y="1679.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="757" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="767.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (1,253,405,862 samples, 0.21%)</title><rect x="301.0" y="2053" width="2.5" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="303.99" y="2063.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (147,530,759 samples, 0.02%)</title><rect x="1015.6" y="1813" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1018.62" y="1823.5" ></text>
</g>
<g >
<title>do_writepages (340,557,852 samples, 0.06%)</title><rect x="1166.1" y="1925" width="0.7" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="1169.11" y="1935.5" ></text>
</g>
<g >
<title>rep_movs_alternative (105,747,017 samples, 0.02%)</title><rect x="474.6" y="1845" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="477.57" y="1855.5" ></text>
</g>
<g >
<title>__smp_call_single_queue (86,016,307 samples, 0.01%)</title><rect x="537.9" y="1573" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="540.87" y="1583.5" ></text>
</g>
<g >
<title>run_rebalance_domains (53,159,104 samples, 0.01%)</title><rect x="1183.8" y="1909" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="1186.83" y="1919.5" ></text>
</g>
<g >
<title>gup_pgd_range (59,739,302 samples, 0.01%)</title><rect x="303.2" y="1813" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="306.24" y="1823.5" ></text>
</g>
<g >
<title>next_uptodate_folio (86,100,421 samples, 0.01%)</title><rect x="948.0" y="1733" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="951.03" y="1743.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (3,087,786,394 samples, 0.52%)</title><rect x="1008.2" y="1861" width="6.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="1011.18" y="1871.5" ></text>
</g>
<g >
<title>SIGetDataEntries (627,996,830 samples, 0.11%)</title><rect x="462.1" y="2037" width="1.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="465.13" y="2047.5" ></text>
</g>
<g >
<title>__refill_stock (147,521,583 samples, 0.02%)</title><rect x="126.9" y="1765" width="0.3" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="129.87" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1765" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1775.5" ></text>
</g>
<g >
<title>extract_actual_clauses (57,897,694 samples, 0.01%)</title><rect x="802.6" y="2037" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="805.56" y="2047.5" ></text>
</g>
<g >
<title>enqueue_task_fair (1,509,725,024 samples, 0.25%)</title><rect x="1149.5" y="1877" width="3.0" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="1152.51" y="1887.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (79,265,418 samples, 0.01%)</title><rect x="523.9" y="1989" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="526.92" y="1999.5" ></text>
</g>
<g >
<title>worker_thread (85,966,490 samples, 0.01%)</title><rect x="10.9" y="2005" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="13.90" y="2015.5" ></text>
</g>
<g >
<title>down_read_trylock (61,671,648 samples, 0.01%)</title><rect x="495.7" y="1973" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="498.73" y="1983.5" ></text>
</g>
<g >
<title>heap_prune_record_unchanged_lp_normal (166,356,566 samples, 0.03%)</title><rect x="831.1" y="2037" width="0.4" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="834.13" y="2047.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (109,558,400 samples, 0.02%)</title><rect x="147.3" y="1685" width="0.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="150.32" y="1695.5" ></text>
</g>
<g >
<title>perf_log_itrace_start (118,029,034 samples, 0.02%)</title><rect x="650.3" y="1829" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="653.29" y="1839.5" ></text>
</g>
<g >
<title>audit_signal_info (143,038,326 samples, 0.02%)</title><rect x="1100.6" y="1925" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1103.56" y="1935.5" ></text>
</g>
<g >
<title>[libc.so.6] (488,596,836 samples, 0.08%)</title><rect x="446.9" y="2021" width="1.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="449.95" y="2031.5" ></text>
</g>
<g >
<title>asm_exc_debug (804,390,106 samples, 0.13%)</title><rect x="263.7" y="2037" width="1.6" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="266.69" y="2047.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (1,077,658,996 samples, 0.18%)</title><rect x="551.9" y="1669" width="2.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="554.88" y="1679.5" ></text>
</g>
<g >
<title>AllocSetAlloc (140,596,550 samples, 0.02%)</title><rect x="501.8" y="2021" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="504.77" y="2031.5" ></text>
</g>
<g >
<title>psi_flags_change (82,944,490 samples, 0.01%)</title><rect x="1025.7" y="1861" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1028.69" y="1871.5" ></text>
</g>
<g >
<title>irq_work_run (85,160,873 samples, 0.01%)</title><rect x="343.3" y="1941" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="346.26" y="1951.5" ></text>
</g>
<g >
<title>arch_uninstall_hw_breakpoint (85,634,652 samples, 0.01%)</title><rect x="658.4" y="1813" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="661.37" y="1823.5" ></text>
</g>
<g >
<title>__schedule (565,959,644 samples, 0.09%)</title><rect x="527.6" y="1813" width="1.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="530.58" y="1823.5" ></text>
</g>
<g >
<title>mas_walk (227,059,216 samples, 0.04%)</title><rect x="500.4" y="1957" width="0.5" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="503.40" y="1967.5" ></text>
</g>
<g >
<title>bpf_probe_read_user (310,061,582 samples, 0.05%)</title><rect x="345.7" y="1877" width="0.6" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="348.68" y="1887.5" ></text>
</g>
<g >
<title>mod_memcg_state (112,223,372 samples, 0.02%)</title><rect x="908.7" y="1749" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="911.67" y="1759.5" ></text>
</g>
<g >
<title>__wake_up_common (56,686,249 samples, 0.01%)</title><rect x="527.5" y="1653" width="0.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="530.47" y="1663.5" ></text>
</g>
<g >
<title>pgstat_report_query_id (353,365,498 samples, 0.06%)</title><rect x="880.6" y="2037" width="0.7" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="883.57" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1525" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1535.5" ></text>
</g>
<g >
<title>native_smp_send_reschedule (1,003,956,744 samples, 0.17%)</title><rect x="722.7" y="1765" width="1.9" height="15.0" fill="rgb(223,82,19)" rx="2" ry="2" />
<text x="725.65" y="1775.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (404,551,226 samples, 0.07%)</title><rect x="266.6" y="2053" width="0.8" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="269.58" y="2063.5" ></text>
</g>
<g >
<title>prepare_task_switch (55,496,476 samples, 0.01%)</title><rect x="359.8" y="1941" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="362.77" y="1951.5" ></text>
</g>
<g >
<title>dequeue_task_fair (1,215,467,546 samples, 0.20%)</title><rect x="548.9" y="1669" width="2.4" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="551.92" y="1679.5" ></text>
</g>
<g >
<title>try_charge_memcg (1,667,445,540 samples, 0.28%)</title><rect x="686.7" y="1845" width="3.3" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="689.71" y="1855.5" ></text>
</g>
<g >
<title>palloc (1,021,679,182 samples, 0.17%)</title><rect x="1117.3" y="2053" width="2.0" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1120.33" y="2063.5" ></text>
</g>
<g >
<title>update_load_avg (54,533,715 samples, 0.01%)</title><rect x="193.1" y="1797" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="196.06" y="1807.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (23,778,876,636 samples, 3.98%)</title><rect x="983.1" y="2037" width="47.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="986.13" y="2047.5" >entr..</text>
</g>
<g >
<title>pgstat_report_stat (114,436,726 samples, 0.02%)</title><rect x="638.6" y="2021" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="641.65" y="2031.5" ></text>
</g>
<g >
<title>__rcu_read_lock (90,633,203 samples, 0.02%)</title><rect x="124.2" y="1797" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="127.19" y="1807.5" ></text>
</g>
<g >
<title>CopyTriggerDesc (141,015,194 samples, 0.02%)</title><rect x="399.2" y="2037" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="402.20" y="2047.5" ></text>
</g>
<g >
<title>check_stack_depth (450,284,381 samples, 0.08%)</title><rect x="964.8" y="2053" width="0.9" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="967.78" y="2063.5" ></text>
</g>
<g >
<title>blk_mq_run_hw_queue (56,195,609 samples, 0.01%)</title><rect x="10.9" y="1941" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="13.90" y="1951.5" ></text>
</g>
<g >
<title>index_beginscan (52,131,194 samples, 0.01%)</title><rect x="833.8" y="2037" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="836.77" y="2047.5" ></text>
</g>
<g >
<title>convert_saop_to_hashed_saop_walker (139,079,486 samples, 0.02%)</title><rect x="968.5" y="2053" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="971.46" y="2063.5" ></text>
</g>
<g >
<title>enqueue_task_fair (821,708,083 samples, 0.14%)</title><rect x="1176.9" y="1797" width="1.6" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="1179.85" y="1807.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (55,840,878 samples, 0.01%)</title><rect x="794.9" y="1973" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="797.91" y="1983.5" ></text>
</g>
<g >
<title>tick_sched_handle (56,680,433 samples, 0.01%)</title><rect x="652.5" y="1829" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="655.53" y="1839.5" ></text>
</g>
<g >
<title>reweight_entity (613,167,533 samples, 0.10%)</title><rect x="711.6" y="1765" width="1.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="714.58" y="1775.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (57,321,497 samples, 0.01%)</title><rect x="750.7" y="1989" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="753.67" y="1999.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (108,730,477 samples, 0.02%)</title><rect x="1184.2" y="1957" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="1187.17" y="1967.5" ></text>
</g>
<g >
<title>cost_qual_eval_walker (492,694,087 samples, 0.08%)</title><rect x="617.4" y="2021" width="1.0" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="620.38" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1381" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1391.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (94,260,669 samples, 0.02%)</title><rect x="37.4" y="1781" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="40.41" y="1791.5" ></text>
</g>
<g >
<title>pick_next_task_fair (90,682,973 samples, 0.02%)</title><rect x="846.9" y="1925" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="849.89" y="1935.5" ></text>
</g>
<g >
<title>__queue_work (113,590,264 samples, 0.02%)</title><rect x="1037.9" y="1749" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1040.93" y="1759.5" ></text>
</g>
<g >
<title>submit_bio_noacct (75,143,270 samples, 0.01%)</title><rect x="1166.2" y="1845" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1169.16" y="1855.5" ></text>
</g>
<g >
<title>update_load_avg (676,836,077 samples, 0.11%)</title><rect x="1005.1" y="1845" width="1.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="1008.09" y="1855.5" ></text>
</g>
<g >
<title>bms_add_member (344,063,608 samples, 0.06%)</title><rect x="763.7" y="2037" width="0.6" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="766.67" y="2047.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (85,152,331 samples, 0.01%)</title><rect x="153.1" y="1797" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="156.13" y="1807.5" ></text>
</g>
<g >
<title>__memcg_slab_free_hook (371,985,186 samples, 0.06%)</title><rect x="903.3" y="1845" width="0.8" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="906.35" y="1855.5" ></text>
</g>
<g >
<title>ppoll (23,431,429,846 samples, 3.92%)</title><rect x="58.5" y="1989" width="46.3" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="61.50" y="1999.5" >ppoll</text>
</g>
<g >
<title>virtqueue_notify (87,465,347 samples, 0.01%)</title><rect x="1040.5" y="1685" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="1043.49" y="1695.5" ></text>
</g>
<g >
<title>sock_poll (462,009,814 samples, 0.08%)</title><rect x="195.0" y="1909" width="0.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="198.03" y="1919.5" ></text>
</g>
<g >
<title>remove_wait_queue (215,915,140 samples, 0.04%)</title><rect x="196.1" y="1909" width="0.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="199.11" y="1919.5" ></text>
</g>
<g >
<title>set_rel_width (164,447,971 samples, 0.03%)</title><rect x="1158.5" y="2053" width="0.3" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="1161.48" y="2063.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (87,905,175 samples, 0.01%)</title><rect x="420.7" y="2021" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="423.70" y="2031.5" ></text>
</g>
<g >
<title>prepare_task_switch (56,500,502 samples, 0.01%)</title><rect x="302.6" y="1845" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="305.62" y="1855.5" ></text>
</g>
<g >
<title>nmi_uaccess_okay (85,252,953 samples, 0.01%)</title><rect x="474.4" y="1845" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="477.40" y="1855.5" ></text>
</g>
<g >
<title>arch_uninstall_hw_breakpoint (86,629,347 samples, 0.01%)</title><rect x="1022.7" y="1765" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1025.67" y="1775.5" ></text>
</g>
<g >
<title>handle_pte_fault (1,708,613,860 samples, 0.29%)</title><rect x="496.5" y="1941" width="3.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="499.54" y="1951.5" ></text>
</g>
<g >
<title>prepare_task_switch (55,976,096 samples, 0.01%)</title><rect x="616.1" y="1909" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="619.08" y="1919.5" ></text>
</g>
<g >
<title>SearchSysCacheExists (57,162,185 samples, 0.01%)</title><rect x="330.3" y="2053" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="333.31" y="2063.5" ></text>
</g>
<g >
<title>handle_edge_irq (227,232,715 samples, 0.04%)</title><rect x="1175.5" y="1877" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1178.49" y="1887.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (141,014,827 samples, 0.02%)</title><rect x="139.8" y="1685" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="142.81" y="1695.5" ></text>
</g>
<g >
<title>get_user_pages_fast (116,053,590 samples, 0.02%)</title><rect x="303.2" y="1861" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="306.18" y="1871.5" ></text>
</g>
<g >
<title>mod_objcg_state (81,752,477 samples, 0.01%)</title><rect x="903.9" y="1829" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="906.92" y="1839.5" ></text>
</g>
<g >
<title>do_syscall_64 (10,086,283,250 samples, 1.69%)</title><rect x="896.5" y="2005" width="19.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="899.51" y="2015.5" ></text>
</g>
<g >
<title>_bt_next (85,610,774 samples, 0.01%)</title><rect x="597.6" y="2021" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="600.56" y="2031.5" ></text>
</g>
<g >
<title>eqsel_internal (89,849,701 samples, 0.02%)</title><rect x="1031.3" y="2053" width="0.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1034.31" y="2063.5" ></text>
</g>
<g >
<title>__cond_resched (86,892,726 samples, 0.01%)</title><rect x="677.6" y="1861" width="0.2" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="680.60" y="1871.5" ></text>
</g>
<g >
<title>ep_poll_callback (60,067,863 samples, 0.01%)</title><rect x="471.6" y="1781" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="474.64" y="1791.5" ></text>
</g>
<g >
<title>mpage_process_page_bufs (185,826,744 samples, 0.03%)</title><rect x="1166.4" y="1861" width="0.4" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1169.41" y="1871.5" ></text>
</g>
<g >
<title>get_user_pages_fast (368,816,298 samples, 0.06%)</title><rect x="1145.4" y="1925" width="0.8" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="1148.44" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1349" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1359.5" ></text>
</g>
<g >
<title>update_min_vruntime (57,043,434 samples, 0.01%)</title><rect x="655.1" y="1877" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="658.06" y="1887.5" ></text>
</g>
<g >
<title>__strdup (79,645,738 samples, 0.01%)</title><rect x="156.6" y="2037" width="0.2" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="159.63" y="2047.5" ></text>
</g>
<g >
<title>__wake_up_common (230,024,768 samples, 0.04%)</title><rect x="910.6" y="1797" width="0.5" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="913.60" y="1807.5" ></text>
</g>
<g >
<title>native_write_msr (869,346,703 samples, 0.15%)</title><rect x="1186.4" y="1877" width="1.7" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1189.38" y="1887.5" ></text>
</g>
<g >
<title>check_preempt_wakeup_fair (55,521,814 samples, 0.01%)</title><rect x="1105.1" y="1733" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1108.09" y="1743.5" ></text>
</g>
<g >
<title>flush_smp_call_function_queue (138,144,252 samples, 0.02%)</title><rect x="1183.7" y="1989" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1186.66" y="1999.5" ></text>
</g>
<g >
<title>__handle_mm_fault (2,184,235,103 samples, 0.37%)</title><rect x="735.3" y="1957" width="4.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="738.34" y="1967.5" ></text>
</g>
<g >
<title>sched_clock (84,395,727 samples, 0.01%)</title><rect x="149.7" y="1685" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="152.72" y="1695.5" ></text>
</g>
<g >
<title>AtCommit_Notify (111,731,479 samples, 0.02%)</title><rect x="243.4" y="2053" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="246.42" y="2063.5" ></text>
</g>
<g >
<title>pull_up_subqueries (108,565,638 samples, 0.02%)</title><rect x="886.1" y="2037" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="889.11" y="2047.5" ></text>
</g>
<g >
<title>ktime_get_mono_fast_ns (57,453,681 samples, 0.01%)</title><rect x="529.4" y="1701" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="532.45" y="1711.5" ></text>
</g>
<g >
<title>fix_scan_expr (454,812,085 samples, 0.08%)</title><rect x="1045.1" y="2053" width="0.9" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="1048.14" y="2063.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,000,898,521 samples, 0.17%)</title><rect x="301.4" y="1989" width="2.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="304.43" y="1999.5" ></text>
</g>
<g >
<title>GetSnapshotData (721,937,310 samples, 0.12%)</title><rect x="269.8" y="2053" width="1.5" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="272.84" y="2063.5" ></text>
</g>
<g >
<title>ext4_mark_iloc_dirty (229,221,516 samples, 0.04%)</title><rect x="944.3" y="1845" width="0.5" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="947.30" y="1855.5" ></text>
</g>
<g >
<title>raw_parser (60,323,930 samples, 0.01%)</title><rect x="595.4" y="2005" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="598.38" y="2015.5" ></text>
</g>
<g >
<title>set_cheapest (172,764,064 samples, 0.03%)</title><rect x="1156.5" y="2053" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1159.48" y="2063.5" ></text>
</g>
<g >
<title>ExecInitResultTypeTL (80,393,541 samples, 0.01%)</title><rect x="410.0" y="2037" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="413.01" y="2047.5" ></text>
</g>
<g >
<title>resetPQExpBuffer (342,208,321 samples, 0.06%)</title><rect x="154.8" y="2021" width="0.7" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="157.83" y="2031.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (57,416,177 samples, 0.01%)</title><rect x="499.4" y="1861" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="502.44" y="1871.5" ></text>
</g>
<g >
<title>tick_nohz_next_event (58,057,445 samples, 0.01%)</title><rect x="1183.5" y="1973" width="0.2" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1186.55" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="565" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="575.5" ></text>
</g>
<g >
<title>initStringInfo (119,623,675 samples, 0.02%)</title><rect x="634.9" y="2021" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="637.91" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (9,280,592,976 samples, 1.55%)</title><rect x="561.5" y="85" width="18.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="564.50" y="95.5" ></text>
</g>
<g >
<title>refill_obj_stock (56,085,979 samples, 0.01%)</title><rect x="1137.9" y="1829" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1140.89" y="1839.5" ></text>
</g>
<g >
<title>__sys_sendto (21,344,879,056 samples, 3.57%)</title><rect x="111.8" y="1925" width="42.1" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text x="114.78" y="1935.5" >__s..</text>
</g>
<g >
<title>psi_group_change (116,928,131 samples, 0.02%)</title><rect x="194.5" y="1829" width="0.3" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="197.53" y="1839.5" ></text>
</g>
<g >
<title>ep_poll_callback (90,285,377 samples, 0.02%)</title><rect x="1099.1" y="1845" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1102.10" y="1855.5" ></text>
</g>
<g >
<title>pgwt_print_header (10,543,826,331 samples, 1.76%)</title><rect x="19.6" y="2053" width="20.8" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="22.62" y="2063.5" ></text>
</g>
<g >
<title>ext4_do_update_inode.isra.0 (143,117,546 samples, 0.02%)</title><rect x="944.5" y="1829" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="947.47" y="1839.5" ></text>
</g>
<g >
<title>kworker/5:1H-kb (201,993,970 samples, 0.03%)</title><rect x="11.3" y="2069" width="0.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="14.30" y="2079.5" ></text>
</g>
<g >
<title>available_idle_cpu (80,172,886 samples, 0.01%)</title><rect x="698.8" y="1781" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="701.75" y="1791.5" ></text>
</g>
<g >
<title>rcu_note_context_switch (83,925,330 samples, 0.01%)</title><rect x="662.0" y="1941" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="664.97" y="1951.5" ></text>
</g>
<g >
<title>check_preempt_wakeup_fair (481,704,280 samples, 0.08%)</title><rect x="357.7" y="1717" width="0.9" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="360.68" y="1727.5" ></text>
</g>
<g >
<title>pgstat_count_heap_update (76,350,293 samples, 0.01%)</title><rect x="1131.5" y="2053" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="1134.50" y="2063.5" ></text>
</g>
<g >
<title>__dequeue_entity (221,810,856 samples, 0.04%)</title><rect x="1018.8" y="1829" width="0.4" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="1021.80" y="1839.5" ></text>
</g>
<g >
<title>psi_flags_change (55,611,593 samples, 0.01%)</title><rect x="557.3" y="1669" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="560.35" y="1679.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (11,193,496,719 samples, 1.87%)</title><rect x="131.3" y="1877" width="22.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="134.31" y="1887.5" >_..</text>
</g>
<g >
<title>memset_orig (135,632,738 samples, 0.02%)</title><rect x="119.7" y="1829" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="122.75" y="1839.5" ></text>
</g>
<g >
<title>sched_clock_cpu (145,839,200 samples, 0.02%)</title><rect x="661.5" y="1925" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="664.46" y="1935.5" ></text>
</g>
<g >
<title>__lruvec_stat_mod_folio (58,855,598 samples, 0.01%)</title><rect x="947.2" y="1797" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="950.16" y="1807.5" ></text>
</g>
<g >
<title>pqAppendCmdQueueEntry (85,763,829 samples, 0.01%)</title><rect x="158.8" y="2037" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="161.75" y="2047.5" ></text>
</g>
<g >
<title>__check_heap_object (82,424,265 samples, 0.01%)</title><rect x="115.4" y="1829" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="118.39" y="1839.5" ></text>
</g>
<g >
<title>bpf_ringbuf_notify (239,397,802 samples, 0.04%)</title><rect x="279.7" y="1941" width="0.5" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="282.70" y="1951.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (58,481,936 samples, 0.01%)</title><rect x="1036.0" y="2037" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1039.00" y="2047.5" ></text>
</g>
<g >
<title>mdnblocks (143,044,672 samples, 0.02%)</title><rect x="1114.2" y="2053" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="1117.24" y="2063.5" ></text>
</g>
<g >
<title>set_next_entity (567,481,028 samples, 0.09%)</title><rect x="1018.6" y="1845" width="1.2" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="1021.63" y="1855.5" ></text>
</g>
<g >
<title>__update_load_avg_se (87,851,003 samples, 0.01%)</title><rect x="1019.6" y="1813" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1022.58" y="1823.5" ></text>
</g>
<g >
<title>ExecFetchSlotHeapTuple (86,796,908 samples, 0.01%)</title><rect x="405.5" y="2037" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="408.53" y="2047.5" ></text>
</g>
<g >
<title>pqCheckOutBufferSpace (110,410,827 samples, 0.02%)</title><rect x="206.5" y="2053" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="209.51" y="2063.5" ></text>
</g>
<g >
<title>perf_ctx_disable (119,078,816 samples, 0.02%)</title><rect x="651.7" y="1909" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="654.74" y="1919.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (10,101,778,841 samples, 1.69%)</title><rect x="1059.0" y="2053" width="20.0" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1062.02" y="2063.5" ></text>
</g>
<g >
<title>timestamp2tm (178,693,160 samples, 0.03%)</title><rect x="1167.7" y="2053" width="0.3" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="1170.68" y="2063.5" ></text>
</g>
<g >
<title>distribute_row_identity_vars (58,857,065 samples, 0.01%)</title><rect x="788.0" y="2037" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="791.05" y="2047.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (57,263,560 samples, 0.01%)</title><rect x="485.5" y="1893" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="488.53" y="1903.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (55,146,136 samples, 0.01%)</title><rect x="484.9" y="1701" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="487.94" y="1711.5" ></text>
</g>
<g >
<title>do_futex (5,485,435,037 samples, 0.92%)</title><rect x="1144.3" y="1973" width="10.8" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="1147.25" y="1983.5" ></text>
</g>
<g >
<title>drain_obj_stock (54,360,904 samples, 0.01%)</title><rect x="1101.6" y="1829" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1104.58" y="1839.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (139,659,589 samples, 0.02%)</title><rect x="538.5" y="1829" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="541.54" y="1839.5" ></text>
</g>
<g >
<title>dequeue_task_fair (86,873,585 samples, 0.01%)</title><rect x="506.6" y="1797" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="509.61" y="1807.5" ></text>
</g>
<g >
<title>sockfd_lookup_light (446,599,095 samples, 0.07%)</title><rect x="915.4" y="1941" width="0.9" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="918.37" y="1951.5" ></text>
</g>
<g >
<title>__sysvec_irq_work (85,160,873 samples, 0.01%)</title><rect x="343.3" y="1957" width="0.1" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="346.26" y="1967.5" ></text>
</g>
<g >
<title>mm_cid_get (114,072,771 samples, 0.02%)</title><rect x="205.4" y="1877" width="0.2" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="208.39" y="1887.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (81,363,468 samples, 0.01%)</title><rect x="1163.1" y="1989" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1166.12" y="1999.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (56,155,277 samples, 0.01%)</title><rect x="102.3" y="1861" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="105.34" y="1871.5" ></text>
</g>
<g >
<title>native_write_msr (166,601,257 samples, 0.03%)</title><rect x="484.6" y="1653" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="487.61" y="1663.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="421" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="431.5" ></text>
</g>
<g >
<title>_bt_preprocess_keys (398,205,010 samples, 0.07%)</title><rect x="954.6" y="2053" width="0.8" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="957.62" y="2063.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (51,511,888 samples, 0.01%)</title><rect x="770.9" y="2021" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="773.90" y="2031.5" ></text>
</g>
<g >
<title>scsi_queue_rq (144,329,100 samples, 0.02%)</title><rect x="11.9" y="1877" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="14.85" y="1887.5" ></text>
</g>
<g >
<title>blk_update_request (79,191,037 samples, 0.01%)</title><rect x="1175.8" y="1669" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1178.78" y="1679.5" ></text>
</g>
<g >
<title>skb_free_head (63,255,143 samples, 0.01%)</title><rect x="904.2" y="1877" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="907.25" y="1887.5" ></text>
</g>
<g >
<title>ep_item_poll.isra.0 (1,064,929,936 samples, 0.18%)</title><rect x="24.1" y="1909" width="2.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="27.12" y="1919.5" ></text>
</g>
<g >
<title>psi_group_change (56,696,747 samples, 0.01%)</title><rect x="302.8" y="1829" width="0.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="305.79" y="1839.5" ></text>
</g>
<g >
<title>__schedule (87,088,760 samples, 0.01%)</title><rect x="1093.4" y="1957" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1096.37" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="629" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="639.5" ></text>
</g>
<g >
<title>update_load_avg (110,292,704 samples, 0.02%)</title><rect x="1104.2" y="1717" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="1107.20" y="1727.5" ></text>
</g>
<g >
<title>common_interrupt (227,232,715 samples, 0.04%)</title><rect x="1175.5" y="1909" width="0.4" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="1178.49" y="1919.5" ></text>
</g>
<g >
<title>gup_pte_range (362,361,677 samples, 0.06%)</title><rect x="559.4" y="1637" width="0.7" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="562.39" y="1647.5" ></text>
</g>
<g >
<title>update_min_vruntime (57,408,337 samples, 0.01%)</title><rect x="29.1" y="1797" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="32.06" y="1807.5" ></text>
</g>
<g >
<title>FileSize (672,296,112 samples, 0.11%)</title><rect x="419.6" y="2037" width="1.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="422.55" y="2047.5" ></text>
</g>
<g >
<title>ret_from_fork_asm (85,966,490 samples, 0.01%)</title><rect x="10.9" y="2053" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="13.90" y="2063.5" ></text>
</g>
<g >
<title>deactivate_task (84,685,137 samples, 0.01%)</title><rect x="1180.6" y="1749" width="0.1" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="1183.56" y="1759.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (403,136,324 samples, 0.07%)</title><rect x="844.7" y="2021" width="0.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="847.72" y="2031.5" ></text>
</g>
<g >
<title>[[vdso]] (113,305,031 samples, 0.02%)</title><rect x="423.3" y="2021" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="426.26" y="2031.5" ></text>
</g>
<g >
<title>event_sched_out (62,110,907 samples, 0.01%)</title><rect x="897.9" y="1845" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="900.95" y="1855.5" ></text>
</g>
<g >
<title>__schedule (428,650,240 samples, 0.07%)</title><rect x="446.9" y="1845" width="0.9" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="449.95" y="1855.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (168,686,802 samples, 0.03%)</title><rect x="153.0" y="1861" width="0.4" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="156.02" y="1871.5" ></text>
</g>
<g >
<title>perf_log_itrace_start (115,376,850 samples, 0.02%)</title><rect x="650.6" y="1845" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="653.64" y="1855.5" ></text>
</g>
<g >
<title>worker_thread (56,515,670 samples, 0.01%)</title><rect x="10.7" y="2005" width="0.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="13.68" y="2015.5" ></text>
</g>
<g >
<title>restriction_is_or_clause (59,431,657 samples, 0.01%)</title><rect x="1140.9" y="2053" width="0.2" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="1143.94" y="2063.5" ></text>
</g>
<g >
<title>find_lateral_references (135,267,344 samples, 0.02%)</title><rect x="805.4" y="2037" width="0.2" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="808.38" y="2047.5" ></text>
</g>
<g >
<title>SearchCatCacheList (703,622,017 samples, 0.12%)</title><rect x="328.2" y="2053" width="1.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="331.17" y="2063.5" ></text>
</g>
<g >
<title>virtscsi_complete_cmd (168,112,840 samples, 0.03%)</title><rect x="1175.6" y="1797" width="0.3" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1178.61" y="1807.5" ></text>
</g>
<g >
<title>folio_wait_writeback (352,743,867 samples, 0.06%)</title><rect x="1039.3" y="1925" width="0.7" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="1042.26" y="1935.5" ></text>
</g>
<g >
<title>flush_ps_display (84,712,998 samples, 0.01%)</title><rect x="806.4" y="2037" width="0.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="809.36" y="2047.5" ></text>
</g>
<g >
<title>__htab_map_lookup_elem (233,935,676 samples, 0.04%)</title><rect x="529.0" y="1717" width="0.4" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="531.99" y="1727.5" ></text>
</g>
<g >
<title>put_prev_entity (54,485,407 samples, 0.01%)</title><rect x="111.3" y="1877" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="114.28" y="1887.5" ></text>
</g>
<g >
<title>pv_native_set_debugreg (111,294,362 samples, 0.02%)</title><rect x="344.1" y="1829" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="347.08" y="1839.5" ></text>
</g>
<g >
<title>_raw_spin_lock (51,146,561 samples, 0.01%)</title><rect x="135.4" y="1749" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="138.40" y="1759.5" ></text>
</g>
<g >
<title>kfree (2,160,077,426 samples, 0.36%)</title><rect x="904.9" y="1845" width="4.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="907.91" y="1855.5" ></text>
</g>
<g >
<title>[libc.so.6] (1,165,898,301 samples, 0.20%)</title><rect x="53.0" y="2021" width="2.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="55.98" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="693" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="703.5" ></text>
</g>
<g >
<title>pick_next_task (1,975,126,138 samples, 0.33%)</title><rect x="652.9" y="1941" width="3.9" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="655.87" y="1951.5" ></text>
</g>
<g >
<title>preprocess_relation_rtes (224,413,865 samples, 0.04%)</title><rect x="883.8" y="2037" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="886.78" y="2047.5" ></text>
</g>
<g >
<title>event_sched_out (431,204,337 samples, 0.07%)</title><rect x="556.0" y="1589" width="0.9" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="559.04" y="1599.5" ></text>
</g>
<g >
<title>__wake_up (60,067,863 samples, 0.01%)</title><rect x="471.6" y="1813" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="474.64" y="1823.5" ></text>
</g>
<g >
<title>kblockd_mod_delayed_work_on (171,138,878 samples, 0.03%)</title><rect x="1037.9" y="1797" width="0.3" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1040.87" y="1807.5" ></text>
</g>
<g >
<title>preprocess_targetlist (339,889,241 samples, 0.06%)</title><rect x="884.2" y="2037" width="0.7" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="887.22" y="2047.5" ></text>
</g>
<g >
<title>RelationGetIndexAttrBitmap (394,947,379 samples, 0.07%)</title><rect x="457.8" y="2037" width="0.8" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="460.80" y="2047.5" ></text>
</g>
<g >
<title>pg_class_aclmask_ext (165,488,701 samples, 0.03%)</title><rect x="874.5" y="2037" width="0.4" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="877.55" y="2047.5" ></text>
</g>
<g >
<title>try_to_wake_up (93,016,533 samples, 0.02%)</title><rect x="437.4" y="1749" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="440.36" y="1759.5" ></text>
</g>
<g >
<title>ttwu_do_activate (60,067,863 samples, 0.01%)</title><rect x="471.6" y="1685" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="474.64" y="1695.5" ></text>
</g>
<g >
<title>noist_exc_debug (171,621,280 samples, 0.03%)</title><rect x="367.3" y="2021" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="370.30" y="2031.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (654,908,601 samples, 0.11%)</title><rect x="503.3" y="2021" width="1.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="506.27" y="2031.5" ></text>
</g>
<g >
<title>blk_mq_sched_dispatch_requests (144,329,100 samples, 0.02%)</title><rect x="11.9" y="1925" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="14.85" y="1935.5" ></text>
</g>
<g >
<title>kthread (110,456,860 samples, 0.02%)</title><rect x="10.2" y="2021" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="13.18" y="2031.5" ></text>
</g>
<g >
<title>__schedule (56,454,131 samples, 0.01%)</title><rect x="1125.3" y="1957" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1128.32" y="1967.5" ></text>
</g>
<g >
<title>AllocSetAllocFromNewBlock (2,606,257,327 samples, 0.44%)</title><rect x="234.5" y="2053" width="5.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="237.47" y="2063.5" ></text>
</g>
<g >
<title>ep_send_events (1,642,948,485 samples, 0.27%)</title><rect x="23.2" y="1925" width="3.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="26.25" y="1935.5" ></text>
</g>
<g >
<title>hw_breakpoint_exceptions_notify (3,066,648,489 samples, 0.51%)</title><rect x="344.5" y="1973" width="6.1" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="347.50" y="1983.5" ></text>
</g>
<g >
<title>__pmu_ctx_sched_out (51,292,816 samples, 0.01%)</title><rect x="449.8" y="1861" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="452.80" y="1871.5" ></text>
</g>
<g >
<title>irqentry_exit (139,659,589 samples, 0.02%)</title><rect x="538.5" y="1845" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="541.54" y="1855.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (55,775,462 samples, 0.01%)</title><rect x="651.3" y="1861" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="654.30" y="1871.5" ></text>
</g>
<g >
<title>XLogWrite (388,527,603 samples, 0.07%)</title><rect x="367.0" y="2053" width="0.8" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="370.03" y="2063.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (55,999,065 samples, 0.01%)</title><rect x="633.3" y="2005" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="636.35" y="2015.5" ></text>
</g>
<g >
<title>__fdget (175,611,574 samples, 0.03%)</title><rect x="67.3" y="1893" width="0.3" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="70.29" y="1903.5" ></text>
</g>
<g >
<title>BufferLockUnlock (85,577,301 samples, 0.01%)</title><rect x="389.7" y="2037" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="392.70" y="2047.5" ></text>
</g>
<g >
<title>kworker/2:3-eve (59,379,595 samples, 0.01%)</title><rect x="10.8" y="2069" width="0.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="13.79" y="2079.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (121,995,659 samples, 0.02%)</title><rect x="675.1" y="1845" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="678.10" y="1855.5" ></text>
</g>
<g >
<title>pick_next_task_fair (53,724,230 samples, 0.01%)</title><rect x="590.8" y="1877" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="593.78" y="1887.5" ></text>
</g>
<g >
<title>__schedule (82,728,185 samples, 0.01%)</title><rect x="816.1" y="1941" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="819.10" y="1951.5" ></text>
</g>
<g >
<title>avg_vruntime (57,059,648 samples, 0.01%)</title><rect x="78.5" y="1749" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="81.53" y="1759.5" ></text>
</g>
<g >
<title>skb_set_owner_w (53,622,303 samples, 0.01%)</title><rect x="671.5" y="1925" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="674.45" y="1935.5" ></text>
</g>
<g >
<title>TupleDescFinalize (198,291,841 samples, 0.03%)</title><rect x="337.7" y="2053" width="0.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="340.68" y="2063.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (82,797,006 samples, 0.01%)</title><rect x="534.1" y="1829" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="537.11" y="1839.5" ></text>
</g>
<g >
<title>asm_sysvec_irq_work (3,125,974,938 samples, 0.52%)</title><rect x="479.8" y="2021" width="6.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="482.80" y="2031.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (137,660,374 samples, 0.02%)</title><rect x="1078.7" y="2037" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1081.69" y="2047.5" ></text>
</g>
<g >
<title>notify_die (171,073,014 samples, 0.03%)</title><rect x="279.1" y="2005" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="282.08" y="2015.5" ></text>
</g>
<g >
<title>update_load_avg (65,057,585 samples, 0.01%)</title><rect x="441.4" y="1877" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="444.38" y="1887.5" ></text>
</g>
<g >
<title>handle_mm_fault (253,553,893 samples, 0.04%)</title><rect x="947.8" y="1829" width="0.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="950.75" y="1839.5" ></text>
</g>
<g >
<title>recv (12,816,184,617 samples, 2.14%)</title><rect x="163.4" y="2021" width="25.3" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="166.38" y="2031.5" >r..</text>
</g>
<g >
<title>sysvec_reschedule_ipi (56,274,278 samples, 0.01%)</title><rect x="327.9" y="2021" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="330.95" y="2031.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (205,581,791 samples, 0.03%)</title><rect x="621.1" y="2021" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="624.14" y="2031.5" ></text>
</g>
<g >
<title>reweight_entity (169,607,884 samples, 0.03%)</title><rect x="1151.3" y="1845" width="0.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1154.34" y="1855.5" ></text>
</g>
<g >
<title>irq_work_single (2,734,206,654 samples, 0.46%)</title><rect x="480.2" y="1941" width="5.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="483.25" y="1951.5" ></text>
</g>
<g >
<title>xfd_validate_state (54,776,680 samples, 0.01%)</title><rect x="647.0" y="1941" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="649.99" y="1951.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (80,914,173 samples, 0.01%)</title><rect x="739.3" y="1861" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="742.29" y="1871.5" ></text>
</g>
<g >
<title>mdnblocks (344,022,456 samples, 0.06%)</title><rect x="858.1" y="2037" width="0.7" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="861.09" y="2047.5" ></text>
</g>
<g >
<title>[libc.so.6] (279,988,674 samples, 0.05%)</title><rect x="1077.9" y="2037" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1080.92" y="2047.5" ></text>
</g>
<g >
<title>ext4_fill_raw_inode (54,851,971 samples, 0.01%)</title><rect x="944.6" y="1813" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="947.59" y="1823.5" ></text>
</g>
<g >
<title>ep_poll_callback (56,991,187 samples, 0.01%)</title><rect x="505.3" y="1861" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="508.29" y="1871.5" ></text>
</g>
<g >
<title>bms_copy (224,940,099 samples, 0.04%)</title><rect x="764.5" y="2037" width="0.5" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text x="767.51" y="2047.5" ></text>
</g>
<g >
<title>do_futex (6,910,444,769 samples, 1.16%)</title><rect x="546.8" y="1781" width="13.6" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="549.75" y="1791.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (4,619,245,691 samples, 0.77%)</title><rect x="121.5" y="1829" width="9.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="124.50" y="1839.5" ></text>
</g>
<g >
<title>add_rte_to_flat_rtable (237,713,024 samples, 0.04%)</title><rect x="754.1" y="2037" width="0.5" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="757.13" y="2047.5" ></text>
</g>
<g >
<title>asm_sysvec_irq_work (266,429,464 samples, 0.04%)</title><rect x="279.7" y="2037" width="0.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="282.65" y="2047.5" ></text>
</g>
<g >
<title>lookupVariable (557,767,715 samples, 0.09%)</title><rect x="105.8" y="2021" width="1.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="108.82" y="2031.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (82,797,006 samples, 0.01%)</title><rect x="534.1" y="1845" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="537.11" y="1855.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (2,081,331,820 samples, 0.35%)</title><rect x="1020.8" y="1861" width="4.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="1023.79" y="1871.5" ></text>
</g>
<g >
<title>page_counter_uncharge (114,854,087 samples, 0.02%)</title><rect x="685.8" y="1781" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="688.81" y="1791.5" ></text>
</g>
<g >
<title>update_load_avg (170,398,946 samples, 0.03%)</title><rect x="1150.9" y="1845" width="0.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="1153.89" y="1855.5" ></text>
</g>
<g >
<title>CommitTransactionCommandInternal (81,378,832 samples, 0.01%)</title><rect x="395.9" y="2037" width="0.2" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="398.94" y="2047.5" ></text>
</g>
<g >
<title>refill_obj_stock (1,761,074,005 samples, 0.29%)</title><rect x="683.2" y="1845" width="3.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="686.18" y="1855.5" ></text>
</g>
<g >
<title>pfree (168,912,635 samples, 0.03%)</title><rect x="1125.6" y="2053" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1128.60" y="2063.5" ></text>
</g>
<g >
<title>blk_mq_run_hw_queues (81,546,807 samples, 0.01%)</title><rect x="10.2" y="1957" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="13.18" y="1967.5" ></text>
</g>
<g >
<title>__count_memcg_events (79,722,519 samples, 0.01%)</title><rect x="499.9" y="1941" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="502.91" y="1951.5" ></text>
</g>
<g >
<title>__wake_up (93,016,533 samples, 0.02%)</title><rect x="437.4" y="1909" width="0.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="440.36" y="1919.5" ></text>
</g>
<g >
<title>filemap_fdatawrite_wbc (1,660,659,641 samples, 0.28%)</title><rect x="1040.0" y="1925" width="3.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="1042.96" y="1935.5" ></text>
</g>
<g >
<title>sched_mm_cid_migrate_to (58,508,866 samples, 0.01%)</title><rect x="1189.3" y="1701" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="1192.34" y="1711.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (65,057,585 samples, 0.01%)</title><rect x="441.4" y="1973" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="444.38" y="1983.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,596,710,953 samples, 0.43%)</title><rect x="846.0" y="2005" width="5.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="849.03" y="2015.5" ></text>
</g>
<g >
<title>sockfd_lookup_light (686,851,221 samples, 0.11%)</title><rect x="665.5" y="1941" width="1.3" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="668.45" y="1951.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (57,082,973 samples, 0.01%)</title><rect x="1024.3" y="1749" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1027.34" y="1759.5" ></text>
</g>
<g >
<title>BuildQueryCompletionString (296,814,108 samples, 0.05%)</title><rect x="390.2" y="2037" width="0.6" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="393.25" y="2047.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (54,860,944 samples, 0.01%)</title><rect x="421.4" y="2037" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="424.39" y="2047.5" ></text>
</g>
<g >
<title>fetch_upper_rel (227,380,386 samples, 0.04%)</title><rect x="803.6" y="2037" width="0.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="806.58" y="2047.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (60,023,656 samples, 0.01%)</title><rect x="144.9" y="1621" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="147.91" y="1631.5" ></text>
</g>
<g >
<title>makeTargetEntry (58,033,745 samples, 0.01%)</title><rect x="851.8" y="2037" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="854.83" y="2047.5" ></text>
</g>
<g >
<title>blk_flush_complete_seq (59,618,957 samples, 0.01%)</title><rect x="1175.7" y="1637" width="0.1" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="1178.66" y="1647.5" ></text>
</g>
<g >
<title>ExecInitFunc (171,061,174 samples, 0.03%)</title><rect x="502.8" y="2021" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="505.76" y="2031.5" ></text>
</g>
<g >
<title>__wake_up (93,016,533 samples, 0.02%)</title><rect x="437.4" y="1861" width="0.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="440.36" y="1871.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (167,558,115 samples, 0.03%)</title><rect x="726.2" y="1749" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="729.18" y="1759.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (58,243,319 samples, 0.01%)</title><rect x="1105.5" y="1829" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1108.47" y="1839.5" ></text>
</g>
<g >
<title>makeIndexInfo (55,620,750 samples, 0.01%)</title><rect x="1109.8" y="2053" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1112.83" y="2063.5" ></text>
</g>
<g >
<title>__handle_irq_event_percpu (57,766,097 samples, 0.01%)</title><rect x="1188.5" y="1781" width="0.2" height="15.0" fill="rgb(236,147,35)" rx="2" ry="2" />
<text x="1191.55" y="1791.5" ></text>
</g>
<g >
<title>ReindexIsProcessingIndex (489,243,729 samples, 0.08%)</title><rect x="311.7" y="2053" width="0.9" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="314.68" y="2063.5" ></text>
</g>
<g >
<title>ttwu_do_activate (11,781,931,476 samples, 1.97%)</title><rect x="701.6" y="1829" width="23.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="704.60" y="1839.5" >t..</text>
</g>
<g >
<title>psi_task_change (2,595,052,245 samples, 0.43%)</title><rect x="715.0" y="1797" width="5.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="718.01" y="1807.5" ></text>
</g>
<g >
<title>scsi_alloc_sgtables (55,781,102 samples, 0.01%)</title><rect x="1040.8" y="1685" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1043.78" y="1695.5" ></text>
</g>
<g >
<title>retbleed_return_thunk (85,785,296 samples, 0.01%)</title><rect x="1030.7" y="2037" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1033.74" y="2047.5" ></text>
</g>
<g >
<title>__rb_insert_augmented (80,516,595 samples, 0.01%)</title><rect x="1177.6" y="1749" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1180.62" y="1759.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (137,660,374 samples, 0.02%)</title><rect x="1078.7" y="2021" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="1081.69" y="2031.5" ></text>
</g>
<g >
<title>write (53,656,837 samples, 0.01%)</title><rect x="19.0" y="1989" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="22.04" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1445" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1455.5" ></text>
</g>
<g >
<title>merge_sched_in (55,161,559 samples, 0.01%)</title><rect x="846.7" y="1861" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="849.73" y="1871.5" ></text>
</g>
<g >
<title>avg_vruntime (54,046,191 samples, 0.01%)</title><rect x="712.3" y="1749" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="715.29" y="1759.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (55,653,767 samples, 0.01%)</title><rect x="1093.4" y="1909" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1096.37" y="1919.5" ></text>
</g>
<g >
<title>irq_work_run_list (266,429,464 samples, 0.04%)</title><rect x="279.7" y="1973" width="0.5" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="282.65" y="1983.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (52,300,299 samples, 0.01%)</title><rect x="329.5" y="2021" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="332.45" y="2031.5" ></text>
</g>
<g >
<title>pick_next_task_fair (52,123,207 samples, 0.01%)</title><rect x="501.4" y="1909" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="504.44" y="1919.5" ></text>
</g>
<g >
<title>ctx_sched_out (54,215,438 samples, 0.01%)</title><rect x="485.8" y="1877" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="488.81" y="1887.5" ></text>
</g>
<g >
<title>try_charge_memcg (1,752,102,299 samples, 0.29%)</title><rect x="127.2" y="1813" width="3.4" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="130.16" y="1823.5" ></text>
</g>
<g >
<title>deconstruct_recurse (108,551,358 samples, 0.02%)</title><rect x="618.4" y="2021" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="621.35" y="2031.5" ></text>
</g>
<g >
<title>blk_mq_run_hw_queue (56,385,646 samples, 0.01%)</title><rect x="10.6" y="1941" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="13.56" y="1951.5" ></text>
</g>
<g >
<title>irqentry_exit (55,062,137 samples, 0.01%)</title><rect x="940.8" y="1989" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="943.80" y="1999.5" ></text>
</g>
<g >
<title>mod_memcg_state (484,125,036 samples, 0.08%)</title><rect x="682.1" y="1829" width="1.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="685.10" y="1839.5" ></text>
</g>
<g >
<title>parserOpenTable (54,859,801 samples, 0.01%)</title><rect x="1125.5" y="2053" width="0.1" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="1128.49" y="2063.5" ></text>
</g>
<g >
<title>ep_poll_callback (3,329,668,176 samples, 0.56%)</title><rect x="353.0" y="1845" width="6.6" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="355.99" y="1855.5" ></text>
</g>
<g >
<title>buildRelationAliases (953,107,805 samples, 0.16%)</title><rect x="769.1" y="2037" width="1.9" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="772.12" y="2047.5" ></text>
</g>
<g >
<title>sysvec_irq_work (54,158,423 samples, 0.01%)</title><rect x="367.7" y="2021" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="370.69" y="2031.5" ></text>
</g>
<g >
<title>ep_autoremove_wake_function (214,870,638 samples, 0.04%)</title><rect x="265.4" y="1797" width="0.5" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="268.43" y="1807.5" ></text>
</g>
<g >
<title>__schedule (52,300,299 samples, 0.01%)</title><rect x="329.5" y="1957" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="332.45" y="1967.5" ></text>
</g>
<g >
<title>asm_common_interrupt (53,025,289 samples, 0.01%)</title><rect x="1015.5" y="1861" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1018.51" y="1871.5" ></text>
</g>
<g >
<title>blk_mq_requeue_work (89,078,928 samples, 0.01%)</title><rect x="11.4" y="1973" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="14.36" y="1983.5" ></text>
</g>
<g >
<title>scsi_queue_rq (382,596,707 samples, 0.06%)</title><rect x="1040.2" y="1749" width="0.7" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="1043.19" y="1759.5" ></text>
</g>
<g >
<title>ep_poll_callback (56,686,249 samples, 0.01%)</title><rect x="527.5" y="1685" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="530.47" y="1695.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (112,547,994 samples, 0.02%)</title><rect x="661.7" y="1909" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="664.75" y="1919.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (163,289,967 samples, 0.03%)</title><rect x="871.3" y="1973" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="874.30" y="1983.5" ></text>
</g>
<g >
<title>update_cfs_group (390,755,868 samples, 0.07%)</title><rect x="29.7" y="1829" width="0.8" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="32.73" y="1839.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (77,357,119 samples, 0.01%)</title><rect x="32.8" y="1829" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="35.80" y="1839.5" ></text>
</g>
<g >
<title>filemap_get_entry (391,035,766 samples, 0.07%)</title><rect x="497.2" y="1845" width="0.8" height="15.0" fill="rgb(246,193,46)" rx="2" ry="2" />
<text x="500.20" y="1855.5" ></text>
</g>
<g >
<title>BasicOpenFilePerm (116,565,316 samples, 0.02%)</title><rect x="249.1" y="2053" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="252.13" y="2063.5" ></text>
</g>
<g >
<title>bpf_prog_ab52827c9cfdf652_on_watchpoint (178,776,503 samples, 0.03%)</title><rect x="1098.7" y="1893" width="0.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="1101.69" y="1903.5" ></text>
</g>
<g >
<title>hw_breakpoint_add (55,161,559 samples, 0.01%)</title><rect x="846.7" y="1829" width="0.1" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="849.73" y="1839.5" ></text>
</g>
<g >
<title>malloc (282,536,277 samples, 0.05%)</title><rect x="203.3" y="2021" width="0.6" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="206.34" y="2031.5" ></text>
</g>
<g >
<title>tick_program_event (869,346,703 samples, 0.15%)</title><rect x="1186.4" y="1925" width="1.7" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1189.38" y="1935.5" ></text>
</g>
<g >
<title>pqsecure_raw_write.part.0 (85,430,447 samples, 0.01%)</title><rect x="188.7" y="2037" width="0.2" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" />
<text x="191.73" y="2047.5" ></text>
</g>
<g >
<title>sock_def_readable (58,896,588 samples, 0.01%)</title><rect x="665.3" y="1941" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="668.34" y="1951.5" ></text>
</g>
<g >
<title>pfree (90,800,529 samples, 0.02%)</title><rect x="636.7" y="2021" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="639.66" y="2031.5" ></text>
</g>
<g >
<title>ep_autoremove_wake_function (1,820,955,146 samples, 0.30%)</title><rect x="534.6" y="1637" width="3.6" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="537.61" y="1647.5" ></text>
</g>
<g >
<title>tick_program_event (59,995,012 samples, 0.01%)</title><rect x="153.2" y="1781" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="156.18" y="1791.5" ></text>
</g>
<g >
<title>bpf_ringbuf_notify (3,386,751,717 samples, 0.57%)</title><rect x="352.9" y="1941" width="6.7" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="355.93" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="277" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="287.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (254,995,723 samples, 0.04%)</title><rect x="479.2" y="1957" width="0.5" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="482.24" y="1967.5" ></text>
</g>
<g >
<title>__sys_recvfrom (8,908,616,389 samples, 1.49%)</title><rect x="898.8" y="1957" width="17.6" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="901.78" y="1967.5" ></text>
</g>
<g >
<title>sock_poll (510,218,195 samples, 0.09%)</title><rect x="102.7" y="1893" width="1.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="105.74" y="1903.5" ></text>
</g>
<g >
<title>tts_buffer_heap_getsomeattrs (452,034,679 samples, 0.08%)</title><rect x="1170.8" y="2053" width="0.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1173.83" y="2063.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (51,511,888 samples, 0.01%)</title><rect x="770.9" y="2005" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="773.90" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (9,280,592,976 samples, 1.55%)</title><rect x="561.5" y="53" width="18.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="564.50" y="63.5" ></text>
</g>
<g >
<title>process_one_work (89,078,928 samples, 0.01%)</title><rect x="11.4" y="1989" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="14.36" y="1999.5" ></text>
</g>
<g >
<title>matchLocks (117,309,670 samples, 0.02%)</title><rect x="856.9" y="2037" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="859.86" y="2047.5" ></text>
</g>
<g >
<title>memset_orig (112,800,814 samples, 0.02%)</title><rect x="690.1" y="1877" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="693.06" y="1887.5" ></text>
</g>
<g >
<title>sched_mm_cid_migrate_to (106,767,253 samples, 0.02%)</title><rect x="721.2" y="1813" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="724.17" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="293" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="303.5" ></text>
</g>
<g >
<title>irq_work_run (93,016,533 samples, 0.02%)</title><rect x="437.4" y="1973" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="440.36" y="1983.5" ></text>
</g>
<g >
<title>[libc.so.6] (201,048,224 samples, 0.03%)</title><rect x="209.2" y="2005" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="212.24" y="2015.5" ></text>
</g>
<g >
<title>create_projection_path (311,885,321 samples, 0.05%)</title><rect x="784.9" y="2037" width="0.6" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="787.90" y="2047.5" ></text>
</g>
<g >
<title>cost_qual_eval_walker (144,760,074 samples, 0.02%)</title><rect x="781.8" y="2037" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="784.81" y="2047.5" ></text>
</g>
<g >
<title>make_const (354,864,032 samples, 0.06%)</title><rect x="852.2" y="2037" width="0.7" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text x="855.23" y="2047.5" ></text>
</g>
<g >
<title>_IO_file_xsputn (79,947,921 samples, 0.01%)</title><rect x="19.0" y="2021" width="0.2" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="22.04" y="2031.5" ></text>
</g>
<g >
<title>try_to_wake_up (9,770,385,083 samples, 1.63%)</title><rect x="133.3" y="1765" width="19.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="136.27" y="1775.5" ></text>
</g>
<g >
<title>pqPrepareAsyncResult (59,456,616 samples, 0.01%)</title><rect x="208.0" y="2053" width="0.1" height="15.0" fill="rgb(243,174,41)" rx="2" ry="2" />
<text x="210.95" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (52,407,426,886 samples, 8.77%)</title><rect x="52.2" y="2037" width="103.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="55.16" y="2047.5" >[unknown]</text>
</g>
<g >
<title>IndexNext (258,628,965 samples, 0.04%)</title><rect x="434.9" y="2037" width="0.5" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="437.89" y="2047.5" ></text>
</g>
<g >
<title>set_next_entity (54,218,356 samples, 0.01%)</title><rect x="1184.6" y="1925" width="0.1" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="1187.61" y="1935.5" ></text>
</g>
<g >
<title>__rcu_read_lock (83,514,807 samples, 0.01%)</title><rect x="679.2" y="1861" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="682.24" y="1871.5" ></text>
</g>
<g >
<title>__futex_wait (232,890,161 samples, 0.04%)</title><rect x="506.4" y="1877" width="0.5" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="509.43" y="1887.5" ></text>
</g>
<g >
<title>native_write_msr (55,205,073 samples, 0.01%)</title><rect x="279.2" y="1797" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="282.20" y="1807.5" ></text>
</g>
<g >
<title>__switch_to_asm (309,572,190 samples, 0.05%)</title><rect x="977.0" y="2037" width="0.6" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="979.97" y="2047.5" ></text>
</g>
<g >
<title>build_path_tlist (201,724,255 samples, 0.03%)</title><rect x="961.3" y="2053" width="0.4" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="964.35" y="2063.5" ></text>
</g>
<g >
<title>parseVariable (80,349,036 samples, 0.01%)</title><rect x="201.6" y="2053" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="204.57" y="2063.5" ></text>
</g>
<g >
<title>__update_load_avg_se (144,747,264 samples, 0.02%)</title><rect x="714.6" y="1765" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="717.57" y="1775.5" ></text>
</g>
<g >
<title>evalStandardFunc (495,146,334 samples, 0.08%)</title><rect x="199.1" y="2053" width="1.0" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="202.13" y="2063.5" ></text>
</g>
<g >
<title>call_function_single_prep_ipi (59,216,077 samples, 0.01%)</title><rect x="1154.3" y="1877" width="0.2" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="1157.34" y="1887.5" ></text>
</g>
<g >
<title>ExecConstraints (82,454,107 samples, 0.01%)</title><rect x="502.6" y="2021" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="505.60" y="2031.5" ></text>
</g>
<g >
<title>wake_affine (333,422,312 samples, 0.06%)</title><rect x="1148.5" y="1877" width="0.7" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="1151.52" y="1887.5" ></text>
</g>
<g >
<title>update_process_times (56,680,433 samples, 0.01%)</title><rect x="652.5" y="1813" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="655.53" y="1823.5" ></text>
</g>
<g >
<title>__wake_up (60,067,863 samples, 0.01%)</title><rect x="471.6" y="1765" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="474.64" y="1775.5" ></text>
</g>
<g >
<title>kmalloc_reserve (1,349,646,103 samples, 0.23%)</title><rect x="117.4" y="1845" width="2.7" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="120.40" y="1855.5" ></text>
</g>
<g >
<title>pqPutMsgBytes (84,148,587 samples, 0.01%)</title><rect x="208.1" y="2053" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="211.07" y="2063.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (1,325,422,125 samples, 0.22%)</title><rect x="192.4" y="1909" width="2.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="195.42" y="1919.5" ></text>
</g>
<g >
<title>handle_pte_fault (2,066,738,506 samples, 0.35%)</title><rect x="735.6" y="1941" width="4.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="738.57" y="1951.5" ></text>
</g>
<g >
<title>count_memcg_events.constprop.0 (79,722,519 samples, 0.01%)</title><rect x="499.9" y="1957" width="0.2" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="502.91" y="1967.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (264,860,391 samples, 0.04%)</title><rect x="352.0" y="1973" width="0.6" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="355.03" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="613" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="623.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (51,555,308 samples, 0.01%)</title><rect x="876.3" y="2021" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="879.34" y="2031.5" ></text>
</g>
<g >
<title>pqAddTuple (60,489,823 samples, 0.01%)</title><rect x="158.6" y="2037" width="0.2" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="161.63" y="2047.5" ></text>
</g>
<g >
<title>object_aclcheck (83,217,076 samples, 0.01%)</title><rect x="860.0" y="2037" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="862.98" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="533" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="543.5" ></text>
</g>
<g >
<title>sock_wfree (948,994,447 samples, 0.16%)</title><rect x="909.4" y="1845" width="1.9" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="912.41" y="1855.5" ></text>
</g>
<g >
<title>update_process_times (91,377,914 samples, 0.02%)</title><rect x="554.7" y="1557" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="557.69" y="1567.5" ></text>
</g>
<g >
<title>select_task_rq_fair (89,528,325 samples, 0.01%)</title><rect x="700.9" y="1829" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="703.92" y="1839.5" ></text>
</g>
<g >
<title>pv_native_get_debugreg (81,839,049 samples, 0.01%)</title><rect x="265.1" y="2021" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="268.12" y="2031.5" ></text>
</g>
<g >
<title>event_sched_out (54,215,438 samples, 0.01%)</title><rect x="485.8" y="1829" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="488.81" y="1839.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (119,933,891 samples, 0.02%)</title><rect x="554.6" y="1653" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="557.63" y="1663.5" ></text>
</g>
<g >
<title>blk_mq_end_request (59,618,957 samples, 0.01%)</title><rect x="1175.7" y="1621" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="1178.66" y="1631.5" ></text>
</g>
<g >
<title>__wake_up (214,870,638 samples, 0.04%)</title><rect x="265.4" y="1829" width="0.5" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="268.43" y="1839.5" ></text>
</g>
<g >
<title>__submit_bio (231,541,924 samples, 0.04%)</title><rect x="1041.1" y="1797" width="0.4" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1044.06" y="1807.5" ></text>
</g>
<g >
<title>make_pathkeys_for_sortclauses (198,052,296 samples, 0.03%)</title><rect x="854.7" y="2037" width="0.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="857.69" y="2047.5" ></text>
</g>
<g >
<title>worker_thread (231,827,476 samples, 0.04%)</title><rect x="11.8" y="2005" width="0.5" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="14.80" y="2015.5" ></text>
</g>
<g >
<title>tick_nohz_next_event (147,828,197 samples, 0.02%)</title><rect x="1181.1" y="1957" width="0.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1184.13" y="1967.5" ></text>
</g>
<g >
<title>__x64_sys_recvfrom (78,887,310 samples, 0.01%)</title><rect x="896.9" y="1989" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="899.90" y="1999.5" ></text>
</g>
<g >
<title>relation_open (168,133,794 samples, 0.03%)</title><rect x="917.8" y="2037" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="920.77" y="2047.5" ></text>
</g>
<g >
<title>kill_something_info (3,052,468,161 samples, 0.51%)</title><rect x="1100.2" y="1973" width="6.0" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="1103.18" y="1983.5" ></text>
</g>
<g >
<title>sched_clock_cpu (84,395,727 samples, 0.01%)</title><rect x="149.7" y="1701" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="152.72" y="1711.5" ></text>
</g>
<g >
<title>page_counter_uncharge (198,306,476 samples, 0.03%)</title><rect x="689.6" y="1781" width="0.3" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="692.56" y="1791.5" ></text>
</g>
<g >
<title>ExtractReplicaIdentity (401,393,595 samples, 0.07%)</title><rect x="262.0" y="2053" width="0.8" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="264.99" y="2063.5" ></text>
</g>
<g >
<title>int4hashfast (480,163,464 samples, 0.08%)</title><rect x="837.7" y="2037" width="0.9" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="840.68" y="2047.5" ></text>
</g>
<g >
<title>heapam_tuple_update (110,028,688 samples, 0.02%)</title><rect x="833.6" y="2037" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="836.55" y="2047.5" ></text>
</g>
<g >
<title>kfree (1,847,541,303 samples, 0.31%)</title><rect x="175.0" y="1829" width="3.6" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="177.97" y="1839.5" ></text>
</g>
<g >
<title>enqueue_task_fair (839,490,955 samples, 0.14%)</title><rect x="481.9" y="1701" width="1.7" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="484.91" y="1711.5" ></text>
</g>
<g >
<title>rb_next (56,429,107 samples, 0.01%)</title><rect x="85.6" y="1765" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="88.56" y="1775.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (145,055,786 samples, 0.02%)</title><rect x="481.0" y="1733" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="484.01" y="1743.5" ></text>
</g>
<g >
<title>CommitTransaction (195,640,539 samples, 0.03%)</title><rect x="252.0" y="2053" width="0.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="254.97" y="2063.5" ></text>
</g>
<g >
<title>ResourceOwnerEnlarge (278,056,439 samples, 0.05%)</title><rect x="561.7" y="37" width="0.6" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="564.73" y="47.5" ></text>
</g>
<g >
<title>update_curr (113,528,833 samples, 0.02%)</title><rect x="1150.7" y="1845" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1153.67" y="1855.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (56,270,981 samples, 0.01%)</title><rect x="725.3" y="1749" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="728.25" y="1759.5" ></text>
</g>
<g >
<title>handle_softirqs (455,860,992 samples, 0.08%)</title><rect x="1180.1" y="1861" width="0.9" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="1183.05" y="1871.5" ></text>
</g>
<g >
<title>update_curr_se (85,072,286 samples, 0.01%)</title><rect x="1020.0" y="1845" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="1023.04" y="1855.5" ></text>
</g>
<g >
<title>LockReassignCurrentOwner (278,959,232 samples, 0.05%)</title><rect x="438.1" y="2037" width="0.6" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="441.11" y="2047.5" ></text>
</g>
<g >
<title>blk_mq_request_issue_directly (382,596,707 samples, 0.06%)</title><rect x="1040.2" y="1781" width="0.7" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1043.19" y="1791.5" ></text>
</g>
<g >
<title>convert_saop_to_hashed_saop_walker (256,319,783 samples, 0.04%)</title><rect x="778.8" y="2037" width="0.5" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="781.80" y="2047.5" ></text>
</g>
<g >
<title>psi_group_change (364,442,062 samples, 0.06%)</title><rect x="1152.7" y="1861" width="0.7" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="1155.67" y="1871.5" ></text>
</g>
<g >
<title>__wake_up_common (3,386,751,717 samples, 0.57%)</title><rect x="352.9" y="1909" width="6.7" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="355.93" y="1919.5" ></text>
</g>
<g >
<title>BufferGetTag (142,773,980 samples, 0.02%)</title><rect x="249.6" y="2053" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="252.58" y="2063.5" ></text>
</g>
<g >
<title>update_process_times (55,308,989 samples, 0.01%)</title><rect x="534.1" y="1765" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="537.11" y="1775.5" ></text>
</g>
<g >
<title>ExecInitModifyTable (833,760,229 samples, 0.14%)</title><rect x="257.6" y="2053" width="1.6" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="260.57" y="2063.5" ></text>
</g>
<g >
<title>exprTypmod (712,993,594 samples, 0.12%)</title><rect x="1034.7" y="2053" width="1.4" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="1037.70" y="2063.5" ></text>
</g>
<g >
<title>namestrcpy (193,970,991 samples, 0.03%)</title><rect x="1115.9" y="2053" width="0.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1118.93" y="2063.5" ></text>
</g>
<g >
<title>malloc@plt (54,089,569 samples, 0.01%)</title><rect x="1113.0" y="2053" width="0.1" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="1115.99" y="2063.5" ></text>
</g>
<g >
<title>btint4cmp (170,719,507 samples, 0.03%)</title><rect x="960.7" y="2053" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="963.67" y="2063.5" ></text>
</g>
<g >
<title>dequeue_task_fair (84,007,092 samples, 0.01%)</title><rect x="31.6" y="1861" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="34.57" y="1871.5" ></text>
</g>
<g >
<title>asm_common_interrupt (55,447,440 samples, 0.01%)</title><rect x="726.8" y="1877" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="729.77" y="1887.5" ></text>
</g>
<g >
<title>psi_task_change (55,650,724 samples, 0.01%)</title><rect x="279.9" y="1717" width="0.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="282.91" y="1727.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (58,115,313 samples, 0.01%)</title><rect x="558.2" y="1621" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="561.23" y="1631.5" ></text>
</g>
<g >
<title>ScanKeywordLookup (814,474,775 samples, 0.14%)</title><rect x="514.4" y="2021" width="1.6" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="517.37" y="2031.5" ></text>
</g>
<g >
<title>perf_cgroup_switch (58,818,226 samples, 0.01%)</title><rect x="87.2" y="1781" width="0.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="90.21" y="1791.5" ></text>
</g>
<g >
<title>update_process_times (62,422,137 samples, 0.01%)</title><rect x="726.9" y="1765" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="729.88" y="1775.5" ></text>
</g>
<g >
<title>ctx_groups_sched_in (55,161,559 samples, 0.01%)</title><rect x="846.7" y="1893" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="849.73" y="1903.5" ></text>
</g>
<g >
<title>choose_bitmap_and (60,070,030 samples, 0.01%)</title><rect x="777.0" y="2037" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="780.00" y="2047.5" ></text>
</g>
<g >
<title>scsi_done_internal (168,112,840 samples, 0.03%)</title><rect x="1175.6" y="1765" width="0.3" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="1178.61" y="1775.5" ></text>
</g>
<g >
<title>__enqueue_entity (226,418,436 samples, 0.04%)</title><rect x="706.6" y="1765" width="0.4" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="709.58" y="1775.5" ></text>
</g>
<g >
<title>ep_poll_callback (239,397,802 samples, 0.04%)</title><rect x="279.7" y="1893" width="0.5" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="282.70" y="1903.5" ></text>
</g>
<g >
<title>accumStats.part.0 (58,391,148 samples, 0.01%)</title><rect x="156.8" y="2037" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="159.79" y="2047.5" ></text>
</g>
<g >
<title>ep_autoremove_wake_function (9,859,705,877 samples, 1.65%)</title><rect x="133.2" y="1797" width="19.5" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="136.22" y="1807.5" ></text>
</g>
<g >
<title>pgstat_report_xact_timestamp (199,571,110 samples, 0.03%)</title><rect x="1133.6" y="2053" width="0.4" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1136.60" y="2063.5" ></text>
</g>
<g >
<title>native_smp_send_reschedule (166,601,257 samples, 0.03%)</title><rect x="484.6" y="1669" width="0.3" height="15.0" fill="rgb(223,82,19)" rx="2" ry="2" />
<text x="487.61" y="1679.5" ></text>
</g>
<g >
<title>page_counter_try_charge (1,122,470,055 samples, 0.19%)</title><rect x="127.7" y="1797" width="2.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="130.68" y="1807.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (55,641,772 samples, 0.01%)</title><rect x="1185.3" y="1957" width="0.1" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="1188.27" y="1967.5" ></text>
</g>
<g >
<title>native_write_msr (106,210,150 samples, 0.02%)</title><rect x="264.9" y="1797" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="267.85" y="1807.5" ></text>
</g>
<g >
<title>blk_mq_requeue_work (56,195,609 samples, 0.01%)</title><rect x="10.9" y="1973" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="13.90" y="1983.5" ></text>
</g>
<g >
<title>sched_clock_cpu (91,089,129 samples, 0.02%)</title><rect x="1154.9" y="1893" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1157.85" y="1903.5" ></text>
</g>
<g >
<title>skb_release_head_state (2,344,685,637 samples, 0.39%)</title><rect x="178.6" y="1861" width="4.6" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="181.61" y="1871.5" ></text>
</g>
<g >
<title>current_obj_cgroup (56,018,551 samples, 0.01%)</title><rect x="117.3" y="1845" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="120.29" y="1855.5" ></text>
</g>
<g >
<title>hw_breakpoint_del (51,292,816 samples, 0.01%)</title><rect x="449.8" y="1813" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="452.80" y="1823.5" ></text>
</g>
<g >
<title>sync_file_range (369,092,309 samples, 0.06%)</title><rect x="1166.1" y="1973" width="0.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1169.11" y="1983.5" ></text>
</g>
<g >
<title>make_rel_from_joinlist (169,920,421 samples, 0.03%)</title><rect x="855.7" y="2037" width="0.4" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="858.75" y="2047.5" ></text>
</g>
<g >
<title>schedule_debug.isra.0 (119,860,426 samples, 0.02%)</title><rect x="662.1" y="1941" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="665.13" y="1951.5" ></text>
</g>
<g >
<title>__fdget (420,323,832 samples, 0.07%)</title><rect x="915.4" y="1925" width="0.9" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="918.42" y="1935.5" ></text>
</g>
<g >
<title>put_prev_entity (51,650,310 samples, 0.01%)</title><rect x="528.2" y="1765" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="531.19" y="1775.5" ></text>
</g>
<g >
<title>blk_finish_plug (440,288,827 samples, 0.07%)</title><rect x="1040.1" y="1861" width="0.8" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="1043.07" y="1871.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (145,028,081 samples, 0.02%)</title><rect x="191.0" y="1957" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="193.98" y="1967.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (55,730,273 samples, 0.01%)</title><rect x="476.2" y="1829" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="479.15" y="1839.5" ></text>
</g>
<g >
<title>apparmor_socket_sendmsg (89,493,153 samples, 0.01%)</title><rect x="113.2" y="1909" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="116.20" y="1919.5" ></text>
</g>
<g >
<title>_copy_from_iter (108,124,583 samples, 0.02%)</title><rect x="115.9" y="1877" width="0.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="118.88" y="1887.5" ></text>
</g>
<g >
<title>x64_sys_call (369,092,309 samples, 0.06%)</title><rect x="1166.1" y="2005" width="0.7" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1169.11" y="2015.5" ></text>
</g>
<g >
<title>__schedule (86,892,726 samples, 0.01%)</title><rect x="677.6" y="1845" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="680.60" y="1855.5" ></text>
</g>
<g >
<title>pick_next_task_fair (82,104,211 samples, 0.01%)</title><rect x="1143.8" y="1941" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1146.82" y="1951.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (256,777,555 samples, 0.04%)</title><rect x="952.0" y="2037" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="954.99" y="2047.5" ></text>
</g>
<g >
<title>SysCacheGetAttrNotNull (105,563,701 samples, 0.02%)</title><rect x="335.0" y="2053" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="338.04" y="2063.5" ></text>
</g>
<g >
<title>create_plan (206,268,088 samples, 0.03%)</title><rect x="970.4" y="2053" width="0.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="973.41" y="2063.5" ></text>
</g>
<g >
<title>resched_curr (84,613,509 samples, 0.01%)</title><rect x="1179.1" y="1797" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="1182.08" y="1807.5" ></text>
</g>
<g >
<title>futex_wait (742,636,989 samples, 0.12%)</title><rect x="301.9" y="1925" width="1.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="304.94" y="1935.5" ></text>
</g>
<g >
<title>_equalList (113,098,651 samples, 0.02%)</title><rect x="751.0" y="2037" width="0.2" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text x="754.02" y="2047.5" ></text>
</g>
<g >
<title>notify_die (3,076,441,036 samples, 0.51%)</title><rect x="472.0" y="1989" width="6.0" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="474.97" y="1999.5" ></text>
</g>
<g >
<title>PQresultStatus@plt (57,276,894 samples, 0.01%)</title><rect x="43.4" y="2053" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="46.38" y="2063.5" ></text>
</g>
<g >
<title>disable_timeout (141,905,758 samples, 0.02%)</title><rect x="974.1" y="2053" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="977.05" y="2063.5" ></text>
</g>
<g >
<title>schedule (50,662,186 samples, 0.01%)</title><rect x="514.2" y="1941" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="517.17" y="1951.5" ></text>
</g>
<g >
<title>GetTransactionSnapshot (56,718,048 samples, 0.01%)</title><rect x="504.9" y="2021" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="507.90" y="2031.5" ></text>
</g>
<g >
<title>update_curr (169,429,523 samples, 0.03%)</title><rect x="712.4" y="1749" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="715.40" y="1759.5" ></text>
</g>
<g >
<title>__schedule (169,645,470 samples, 0.03%)</title><rect x="264.3" y="1973" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="267.27" y="1983.5" ></text>
</g>
<g >
<title>transformExpressionList (55,444,046 samples, 0.01%)</title><rect x="936.0" y="2037" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="939.02" y="2047.5" ></text>
</g>
<g >
<title>ctx_groups_sched_in (1,568,232,006 samples, 0.26%)</title><rect x="648.2" y="1893" width="3.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="651.16" y="1903.5" ></text>
</g>
<g >
<title>prepare_task_switch (2,318,779,178 samples, 0.39%)</title><rect x="1020.4" y="1877" width="4.6" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1023.38" y="1887.5" ></text>
</g>
<g >
<title>hash_create (737,211,997 samples, 0.12%)</title><rect x="818.7" y="2037" width="1.5" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="821.72" y="2047.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (220,178,839 samples, 0.04%)</title><rect x="264.2" y="2005" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="267.17" y="2015.5" ></text>
</g>
<g >
<title>native_write_msr (975,893,416 samples, 0.16%)</title><rect x="722.7" y="1749" width="1.9" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="725.71" y="1759.5" ></text>
</g>
<g >
<title>check_log_statement (107,933,365 samples, 0.02%)</title><rect x="964.6" y="2053" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="967.57" y="2063.5" ></text>
</g>
<g >
<title>run_rebalance_domains (431,538,728 samples, 0.07%)</title><rect x="1180.1" y="1845" width="0.9" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="1183.10" y="1855.5" ></text>
</g>
<g >
<title>shmem_get_folio_gfp (447,374,758 samples, 0.07%)</title><rect x="497.1" y="1861" width="0.9" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="500.09" y="1871.5" ></text>
</g>
<g >
<title>irqentry_exit (72,132,779 samples, 0.01%)</title><rect x="618.2" y="1973" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="621.21" y="1983.5" ></text>
</g>
<g >
<title>ExecIndexScan (424,063,314 samples, 0.07%)</title><rect x="406.9" y="2037" width="0.8" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="409.86" y="2047.5" ></text>
</g>
<g >
<title>arch_exit_to_user_mode_prepare.isra.0 (141,026,374 samples, 0.02%)</title><rect x="301.7" y="1957" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="304.67" y="1967.5" ></text>
</g>
<g >
<title>PushActiveSnapshotWithLevel (83,708,837 samples, 0.01%)</title><rect x="454.5" y="2037" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="457.45" y="2047.5" ></text>
</g>
<g >
<title>arch_exit_to_user_mode_prepare.isra.0 (60,083,337 samples, 0.01%)</title><rect x="846.5" y="1973" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="849.55" y="1983.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (83,019,739 samples, 0.01%)</title><rect x="1180.7" y="1765" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="1183.73" y="1775.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (900,201,955 samples, 0.15%)</title><rect x="512.5" y="2021" width="1.8" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text x="515.49" y="2031.5" ></text>
</g>
<g >
<title>memcg_account_kmem (257,260,182 samples, 0.04%)</title><rect x="123.0" y="1813" width="0.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="126.01" y="1823.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (168,450,650 samples, 0.03%)</title><rect x="590.6" y="1941" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="593.61" y="1951.5" ></text>
</g>
<g >
<title>default_wake_function (17,030,352,609 samples, 2.85%)</title><rect x="692.9" y="1861" width="33.7" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="695.94" y="1871.5" >de..</text>
</g>
<g >
<title>__calc_delta.constprop.0 (55,059,805 samples, 0.01%)</title><rect x="712.1" y="1749" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="715.13" y="1759.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (55,840,878 samples, 0.01%)</title><rect x="794.9" y="1941" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="797.91" y="1951.5" ></text>
</g>
<g >
<title>iowrite16 (87,465,347 samples, 0.01%)</title><rect x="1040.5" y="1669" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1043.49" y="1679.5" ></text>
</g>
<g >
<title>__log_finite@plt (114,425,394 samples, 0.02%)</title><rect x="950.7" y="2053" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="953.69" y="2063.5" ></text>
</g>
<g >
<title>pv_native_set_debugreg (349,841,631 samples, 0.06%)</title><rect x="556.1" y="1557" width="0.7" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="559.14" y="1567.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (119,933,891 samples, 0.02%)</title><rect x="554.6" y="1589" width="0.3" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="557.63" y="1599.5" ></text>
</g>
<g >
<title>__mod_memcg_state (84,752,108 samples, 0.01%)</title><rect x="908.7" y="1733" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="911.73" y="1743.5" ></text>
</g>
<g >
<title>__wake_up (56,991,187 samples, 0.01%)</title><rect x="505.3" y="1797" width="0.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="508.29" y="1807.5" ></text>
</g>
<g >
<title>_copy_to_iter (116,400,203 samples, 0.02%)</title><rect x="914.3" y="1829" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="917.26" y="1839.5" ></text>
</g>
<g >
<title>bpf_ringbuf_reserve (715,088,850 samples, 0.12%)</title><rect x="530.0" y="1717" width="1.4" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="532.95" y="1727.5" ></text>
</g>
<g >
<title>__sysvec_irq_work (60,067,863 samples, 0.01%)</title><rect x="471.6" y="1941" width="0.2" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="474.64" y="1951.5" ></text>
</g>
<g >
<title>heap_lock_tuple (86,303,474 samples, 0.01%)</title><rect x="1080.9" y="2053" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="1083.91" y="2063.5" ></text>
</g>
<g >
<title>__irq_work_queue_local (106,210,150 samples, 0.02%)</title><rect x="264.9" y="1845" width="0.2" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="267.85" y="1855.5" ></text>
</g>
<g >
<title>common_interrupt (51,692,594 samples, 0.01%)</title><rect x="449.5" y="2005" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="452.55" y="2015.5" ></text>
</g>
<g >
<title>run_rebalance_domains (173,618,872 samples, 0.03%)</title><rect x="1189.2" y="1781" width="0.3" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="1192.16" y="1791.5" ></text>
</g>
<g >
<title>tick_do_update_jiffies64 (61,241,002 samples, 0.01%)</title><rect x="1179.8" y="1845" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="1182.79" y="1855.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (2,613,417,640 samples, 0.44%)</title><rect x="647.7" y="1941" width="5.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="650.71" y="1951.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (542,403,954 samples, 0.09%)</title><rect x="61.0" y="1925" width="1.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="64.01" y="1935.5" ></text>
</g>
<g >
<title>gup_pte_range (59,739,302 samples, 0.01%)</title><rect x="303.2" y="1797" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="306.24" y="1807.5" ></text>
</g>
<g >
<title>__schedule (51,511,888 samples, 0.01%)</title><rect x="770.9" y="1941" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="773.90" y="1951.5" ></text>
</g>
<g >
<title>group_sched_out (51,292,816 samples, 0.01%)</title><rect x="449.8" y="1845" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="452.80" y="1855.5" ></text>
</g>
<g >
<title>__rcu_read_lock (143,543,484 samples, 0.02%)</title><rect x="1014.3" y="1861" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1017.28" y="1871.5" ></text>
</g>
<g >
<title>CreateExprContextInternal.constprop.0 (147,931,355 samples, 0.02%)</title><rect x="400.5" y="2037" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="403.49" y="2047.5" ></text>
</g>
<g >
<title>makeConst (56,974,648 samples, 0.01%)</title><rect x="1109.7" y="2053" width="0.1" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="1112.72" y="2063.5" ></text>
</g>
<g >
<title>__wrgsbase_inactive (56,781,510 samples, 0.01%)</title><rect x="977.6" y="2037" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="980.58" y="2047.5" ></text>
</g>
<g >
<title>noist_exc_debug (4,014,869,666 samples, 0.67%)</title><rect x="342.6" y="2021" width="8.0" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="345.63" y="2031.5" ></text>
</g>
<g >
<title>asm_sysvec_call_function_single (426,894,709 samples, 0.07%)</title><rect x="1188.7" y="1861" width="0.8" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1191.66" y="1871.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (60,591,430 samples, 0.01%)</title><rect x="911.1" y="1797" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="914.05" y="1807.5" ></text>
</g>
<g >
<title>restore_fpregs_from_fpstate (138,363,132 samples, 0.02%)</title><rect x="21.6" y="1941" width="0.3" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="24.65" y="1951.5" ></text>
</g>
<g >
<title>list_make1_impl (140,238,296 samples, 0.02%)</title><rect x="844.0" y="2037" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="847.04" y="2047.5" ></text>
</g>
<g >
<title>x64_sys_call (11,162,310,701 samples, 1.87%)</title><rect x="166.1" y="1973" width="22.0" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="169.11" y="1983.5" >x..</text>
</g>
<g >
<title>__sigsetjmp (143,261,763 samples, 0.02%)</title><rect x="595.6" y="2021" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="598.56" y="2031.5" ></text>
</g>
<g >
<title>ExecInitScanTupleSlot (83,853,525 samples, 0.01%)</title><rect x="410.2" y="2037" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="413.17" y="2047.5" ></text>
</g>
<g >
<title>LockReleaseAll (136,636,829 samples, 0.02%)</title><rect x="298.0" y="2053" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="301.00" y="2063.5" ></text>
</g>
<g >
<title>dequeue_task (3,937,377,695 samples, 0.66%)</title><rect x="1000.2" y="1877" width="7.8" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="1003.18" y="1887.5" ></text>
</g>
<g >
<title>transformGroupClause (59,766,090 samples, 0.01%)</title><rect x="936.7" y="2037" width="0.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="939.69" y="2047.5" ></text>
</g>
<g >
<title>_raw_spin_lock (85,307,822 samples, 0.01%)</title><rect x="168.8" y="1893" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="171.84" y="1903.5" ></text>
</g>
<g >
<title>arch_exit_to_user_mode_prepare.isra.0 (821,870,406 samples, 0.14%)</title><rect x="986.5" y="1989" width="1.6" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="989.53" y="1999.5" ></text>
</g>
<g >
<title>generic_smp_call_function_single_interrupt (227,044,964 samples, 0.04%)</title><rect x="1188.7" y="1813" width="0.4" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="1191.66" y="1823.5" ></text>
</g>
<g >
<title>__wake_up (60,067,863 samples, 0.01%)</title><rect x="471.6" y="1861" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="474.64" y="1871.5" ></text>
</g>
<g >
<title>irqentry_exit (51,555,308 samples, 0.01%)</title><rect x="876.3" y="1989" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="879.34" y="1999.5" ></text>
</g>
<g >
<title>psi_task_switch (431,014,348 samples, 0.07%)</title><rect x="557.0" y="1685" width="0.9" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="560.00" y="1695.5" ></text>
</g>
<g >
<title>MarkBufferDirty (83,830,091 samples, 0.01%)</title><rect x="298.3" y="2053" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="301.27" y="2063.5" ></text>
</g>
<g >
<title>ctx_sched_in (80,841,626 samples, 0.01%)</title><rect x="471.8" y="1909" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="474.75" y="1919.5" ></text>
</g>
<g >
<title>part_in_flight (89,957,009 samples, 0.02%)</title><rect x="1037.6" y="1813" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1040.64" y="1823.5" ></text>
</g>
<g >
<title>vruntime_eligible (91,042,193 samples, 0.02%)</title><rect x="1018.0" y="1829" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1021.00" y="1839.5" ></text>
</g>
<g >
<title>AtEOXact_Aio (254,356,864 samples, 0.04%)</title><rect x="243.6" y="2053" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="246.64" y="2063.5" ></text>
</g>
<g >
<title>pg_realloc (304,663,484 samples, 0.05%)</title><rect x="201.8" y="2053" width="0.6" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="204.78" y="2063.5" ></text>
</g>
<g >
<title>dequeue_task (145,152,876 samples, 0.02%)</title><rect x="447.0" y="1829" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="450.00" y="1839.5" ></text>
</g>
<g >
<title>update_curr_se (56,732,836 samples, 0.01%)</title><rect x="79.2" y="1733" width="0.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="82.16" y="1743.5" ></text>
</g>
<g >
<title>pgstat_clear_backend_activity_snapshot (172,352,613 samples, 0.03%)</title><rect x="1130.7" y="2053" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1133.65" y="2063.5" ></text>
</g>
<g >
<title>enqueue_task (202,005,144 samples, 0.03%)</title><rect x="1188.7" y="1749" width="0.4" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1191.66" y="1759.5" ></text>
</g>
<g >
<title>get_relation_notnullatts (508,309,055 samples, 0.09%)</title><rect x="810.4" y="2037" width="1.0" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="813.43" y="2047.5" ></text>
</g>
<g >
<title>do_syscall_64 (8,361,700,688 samples, 1.40%)</title><rect x="544.2" y="1829" width="16.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="547.16" y="1839.5" ></text>
</g>
<g >
<title>RelationGetIndexList (203,881,677 samples, 0.03%)</title><rect x="458.8" y="2037" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="461.80" y="2047.5" ></text>
</g>
<g >
<title>sched_clock (115,069,243 samples, 0.02%)</title><rect x="152.3" y="1717" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="155.33" y="1727.5" ></text>
</g>
<g >
<title>ret_from_fork (56,515,670 samples, 0.01%)</title><rect x="10.7" y="2037" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="13.68" y="2047.5" ></text>
</g>
<g >
<title>irqentry_exit (56,241,384 samples, 0.01%)</title><rect x="296.3" y="2005" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="299.31" y="2015.5" ></text>
</g>
<g >
<title>xfd_validate_state (54,892,762 samples, 0.01%)</title><rect x="1031.1" y="2037" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="1034.15" y="2047.5" ></text>
</g>
<g >
<title>ep_poll_callback (2,563,581,402 samples, 0.43%)</title><rect x="480.4" y="1829" width="5.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="483.42" y="1839.5" ></text>
</g>
<g >
<title>default_wake_function (239,397,802 samples, 0.04%)</title><rect x="279.7" y="1781" width="0.5" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="282.70" y="1791.5" ></text>
</g>
<g >
<title>_raw_spin_lock (84,062,707 samples, 0.01%)</title><rect x="694.5" y="1829" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="697.51" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (9,476,952,129 samples, 1.59%)</title><rect x="561.1" y="213" width="18.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="564.11" y="223.5" ></text>
</g>
<g >
<title>arch_exit_to_user_mode_prepare.isra.0 (406,870,303 samples, 0.07%)</title><rect x="545.8" y="1797" width="0.8" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="548.79" y="1807.5" ></text>
</g>
<g >
<title>__smp_call_single_queue (85,932,562 samples, 0.01%)</title><rect x="358.7" y="1733" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="361.71" y="1743.5" ></text>
</g>
<g >
<title>GetCurrentSubTransactionId (205,407,869 samples, 0.03%)</title><rect x="422.8" y="2037" width="0.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="425.80" y="2047.5" ></text>
</g>
<g >
<title>scsi_dispatch_cmd (210,102,879 samples, 0.04%)</title><rect x="1040.2" y="1733" width="0.5" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="1043.25" y="1743.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (195,556,405 samples, 0.03%)</title><rect x="486.7" y="2021" width="0.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="489.71" y="2031.5" ></text>
</g>
<g >
<title>assign_collations_walker (85,335,731 samples, 0.01%)</title><rect x="755.9" y="2037" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="758.92" y="2047.5" ></text>
</g>
<g >
<title>__flush_smp_call_function_queue (1,647,884,521 samples, 0.28%)</title><rect x="1176.0" y="1861" width="3.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="1179.05" y="1871.5" ></text>
</g>
<g >
<title>compute_new_xmax_infomask (117,353,888 samples, 0.02%)</title><rect x="967.7" y="2053" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="970.65" y="2063.5" ></text>
</g>
<g >
<title>palloc0 (4,737,159,181 samples, 0.79%)</title><rect x="862.3" y="2037" width="9.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="865.28" y="2047.5" ></text>
</g>
<g >
<title>exprIsLengthCoercion (55,336,181 samples, 0.01%)</title><rect x="1033.9" y="2053" width="0.1" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text x="1036.91" y="2063.5" ></text>
</g>
<g >
<title>__x64_sys_lseek (1,900,489,129 samples, 0.32%)</title><rect x="847.4" y="1973" width="3.8" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="850.40" y="1983.5" ></text>
</g>
<g >
<title>skb_copy_datagram_from_iter (954,601,456 samples, 0.16%)</title><rect x="668.8" y="1925" width="1.9" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="671.78" y="1935.5" ></text>
</g>
<g >
<title>do_syscall_64 (488,596,836 samples, 0.08%)</title><rect x="446.9" y="1973" width="1.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="449.95" y="1983.5" ></text>
</g>
<g >
<title>irqentry_exit (51,511,888 samples, 0.01%)</title><rect x="770.9" y="1989" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="773.90" y="1999.5" ></text>
</g>
<g >
<title>printtup_create_DR (142,275,945 samples, 0.02%)</title><rect x="884.9" y="2037" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="887.89" y="2047.5" ></text>
</g>
<g >
<title>reduce_unique_semijoins (162,729,795 samples, 0.03%)</title><rect x="916.9" y="2037" width="0.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="919.95" y="2047.5" ></text>
</g>
<g >
<title>update_cfs_group (386,014,232 samples, 0.06%)</title><rect x="720.1" y="1797" width="0.8" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="723.14" y="1807.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (167,101,340 samples, 0.03%)</title><rect x="77.3" y="1749" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="80.30" y="1759.5" ></text>
</g>
<g >
<title>do_fault (53,727,425 samples, 0.01%)</title><rect x="486.9" y="1925" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="489.88" y="1935.5" ></text>
</g>
<g >
<title>remove_wait_queue (56,783,285 samples, 0.01%)</title><rect x="102.5" y="1893" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="105.51" y="1903.5" ></text>
</g>
<g >
<title>remove_useless_self_joins (111,934,020 samples, 0.02%)</title><rect x="918.7" y="2037" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="921.67" y="2047.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (78,588,594 samples, 0.01%)</title><rect x="514.1" y="1989" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="517.11" y="1999.5" ></text>
</g>
<g >
<title>__calc_delta.constprop.0 (53,765,982 samples, 0.01%)</title><rect x="1151.5" y="1813" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1154.52" y="1823.5" ></text>
</g>
<g >
<title>newidle_balance (81,004,434 samples, 0.01%)</title><rect x="1017.1" y="1845" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="1020.13" y="1855.5" ></text>
</g>
<g >
<title>scheduler_tick (58,681,141 samples, 0.01%)</title><rect x="1084.5" y="1909" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1087.52" y="1919.5" ></text>
</g>
<g >
<title>do_setitimer (53,689,056 samples, 0.01%)</title><rect x="1158.8" y="1973" width="0.1" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="1161.80" y="1983.5" ></text>
</g>
<g >
<title>ExecConditionalAssignProjectionInfo (56,206,828 samples, 0.01%)</title><rect x="404.5" y="2037" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="407.46" y="2047.5" ></text>
</g>
<g >
<title>XLogFlush (758,967,266 samples, 0.13%)</title><rect x="361.3" y="2053" width="1.5" height="15.0" fill="rgb(251,213,50)" rx="2" ry="2" />
<text x="364.27" y="2063.5" ></text>
</g>
<g >
<title>schedule (138,519,250 samples, 0.02%)</title><rect x="428.0" y="1957" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="431.00" y="1967.5" ></text>
</g>
<g >
<title>make_pathtarget_from_tlist (112,546,118 samples, 0.02%)</title><rect x="855.2" y="2037" width="0.3" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text x="858.24" y="2047.5" ></text>
</g>
<g >
<title>mas_walk (282,523,311 samples, 0.05%)</title><rect x="739.7" y="1957" width="0.5" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="742.65" y="1967.5" ></text>
</g>
<g >
<title>_raw_spin_lock (400,573,092 samples, 0.07%)</title><rect x="112.4" y="1909" width="0.8" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="115.41" y="1919.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (52,225,624 samples, 0.01%)</title><rect x="748.0" y="2005" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="751.03" y="2015.5" ></text>
</g>
<g >
<title>perf_event_task_tick (85,967,086 samples, 0.01%)</title><rect x="352.1" y="1893" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="355.09" y="1903.5" ></text>
</g>
<g >
<title>merge_sched_in (54,688,229 samples, 0.01%)</title><rect x="1038.3" y="1797" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1041.32" y="1807.5" ></text>
</g>
<g >
<title>MakeTupleTableSlot (83,821,225 samples, 0.01%)</title><rect x="1172.4" y="2037" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="1175.37" y="2047.5" ></text>
</g>
<g >
<title>__switch_to_asm (61,765,907 samples, 0.01%)</title><rect x="196.9" y="2037" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="199.88" y="2047.5" ></text>
</g>
<g >
<title>native_write_msr (82,747,023 samples, 0.01%)</title><rect x="1189.6" y="1813" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1192.56" y="1823.5" ></text>
</g>
<g >
<title>heap_page_prune_opt (4,456,780,430 samples, 0.75%)</title><rect x="1084.8" y="2053" width="8.8" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1087.80" y="2063.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (501,236,048 samples, 0.08%)</title><rect x="110.6" y="1957" width="1.0" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="113.62" y="1967.5" ></text>
</g>
<g >
<title>sched_clock_cpu (56,878,686 samples, 0.01%)</title><rect x="1185.0" y="1941" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1188.01" y="1951.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (58,681,141 samples, 0.01%)</title><rect x="1084.5" y="1989" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1087.52" y="1999.5" ></text>
</g>
<g >
<title>put_prev_entity (847,013,059 samples, 0.14%)</title><rect x="654.0" y="1909" width="1.6" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="656.96" y="1919.5" ></text>
</g>
<g >
<title>__update_load_avg_se (56,564,385 samples, 0.01%)</title><rect x="193.5" y="1797" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="196.45" y="1807.5" ></text>
</g>
<g >
<title>x64_sys_call (116,565,316 samples, 0.02%)</title><rect x="249.1" y="1989" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="252.13" y="1999.5" ></text>
</g>
<g >
<title>__pmu_ctx_sched_out (56,500,502 samples, 0.01%)</title><rect x="302.6" y="1781" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="305.62" y="1791.5" ></text>
</g>
<g >
<title>distribute_restrictinfo_to_rels (111,832,839 samples, 0.02%)</title><rect x="787.8" y="2037" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="790.83" y="2047.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (60,625,435 samples, 0.01%)</title><rect x="450.7" y="2005" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="453.73" y="2015.5" ></text>
</g>
<g >
<title>nocachegetattr (228,598,668 samples, 0.04%)</title><rect x="1116.5" y="2053" width="0.4" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1119.48" y="2063.5" ></text>
</g>
<g >
<title>psi_task_switch (958,026,421 samples, 0.16%)</title><rect x="34.6" y="1861" width="1.9" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="37.61" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="469" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="479.5" ></text>
</g>
<g >
<title>reweight_entity (179,955,041 samples, 0.03%)</title><rect x="707.9" y="1749" width="0.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="710.91" y="1759.5" ></text>
</g>
<g >
<title>ReadBufferExtended (364,938,093 samples, 0.06%)</title><rect x="310.1" y="2053" width="0.7" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="313.05" y="2063.5" ></text>
</g>
<g >
<title>EvalPlanQualSlot (58,982,362 samples, 0.01%)</title><rect x="254.4" y="2053" width="0.1" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="257.42" y="2063.5" ></text>
</g>
<g >
<title>find_or_insert_event (136,583,464 samples, 0.02%)</title><rect x="18.7" y="2053" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="21.67" y="2063.5" ></text>
</g>
<g >
<title>dequeue_task_fair (117,641,466 samples, 0.02%)</title><rect x="447.0" y="1813" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="450.00" y="1823.5" ></text>
</g>
<g >
<title>bpf_prog_ab52827c9cfdf652_on_watchpoint (116,519,584 samples, 0.02%)</title><rect x="279.1" y="1893" width="0.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="282.14" y="1903.5" ></text>
</g>
<g >
<title>update_cfs_group (169,607,884 samples, 0.03%)</title><rect x="1151.3" y="1861" width="0.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="1154.34" y="1871.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (822,738,127 samples, 0.14%)</title><rect x="464.7" y="2037" width="1.6" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="467.71" y="2047.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (58,481,936 samples, 0.01%)</title><rect x="1036.0" y="2021" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="1039.00" y="2031.5" ></text>
</g>
<g >
<title>ktime_get_mono_fast_ns (144,898,735 samples, 0.02%)</title><rect x="473.4" y="1845" width="0.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="476.45" y="1855.5" ></text>
</g>
<g >
<title>switch_mm_irqs_off (133,697,106 samples, 0.02%)</title><rect x="18.2" y="1877" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="21.18" y="1887.5" ></text>
</g>
<g >
<title>update_load_avg (312,462,735 samples, 0.05%)</title><rect x="77.2" y="1765" width="0.6" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="80.19" y="1775.5" ></text>
</g>
<g >
<title>kthread (56,515,670 samples, 0.01%)</title><rect x="10.7" y="2021" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="13.68" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="453" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="463.5" ></text>
</g>
<g >
<title>__handle_irq_event_percpu (227,232,715 samples, 0.04%)</title><rect x="1175.5" y="1845" width="0.4" height="15.0" fill="rgb(236,147,35)" rx="2" ry="2" />
<text x="1178.49" y="1855.5" ></text>
</g>
<g >
<title>update_load_avg (107,993,082 samples, 0.02%)</title><rect x="483.4" y="1685" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="486.36" y="1695.5" ></text>
</g>
<g >
<title>__update_load_avg_se (201,230,793 samples, 0.03%)</title><rect x="86.1" y="1749" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="89.07" y="1759.5" ></text>
</g>
<g >
<title>__wake_up_common (54,158,423 samples, 0.01%)</title><rect x="367.7" y="1861" width="0.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="370.69" y="1871.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (709,902,808 samples, 0.12%)</title><rect x="100.9" y="1861" width="1.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="103.94" y="1871.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (58,887,750 samples, 0.01%)</title><rect x="1029.7" y="1957" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1032.73" y="1967.5" ></text>
</g>
<g >
<title>psi_flags_change (86,920,928 samples, 0.01%)</title><rect x="356.6" y="1701" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="359.60" y="1711.5" ></text>
</g>
<g >
<title>xas_load (82,677,277 samples, 0.01%)</title><rect x="946.6" y="1797" width="0.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="949.57" y="1807.5" ></text>
</g>
<g >
<title>rseq_ip_fixup (863,482,596 samples, 0.14%)</title><rect x="984.5" y="1973" width="1.7" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="987.48" y="1983.5" ></text>
</g>
<g >
<title>do_syscall_64 (392,632,727 samples, 0.07%)</title><rect x="1166.1" y="2021" width="0.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1169.06" y="2031.5" ></text>
</g>
<g >
<title>create_empty_pathtarget (112,423,740 samples, 0.02%)</title><rect x="970.1" y="2053" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="973.07" y="2063.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (82,167,071 samples, 0.01%)</title><rect x="1100.4" y="1909" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1103.40" y="1919.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge_pages (227,167,787 samples, 0.04%)</title><rect x="686.2" y="1829" width="0.5" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="689.21" y="1839.5" ></text>
</g>
<g >
<title>heap_getattr (79,113,349 samples, 0.01%)</title><rect x="1080.7" y="2053" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1083.70" y="2063.5" ></text>
</g>
<g >
<title>common_interrupt (53,025,289 samples, 0.01%)</title><rect x="1015.5" y="1845" width="0.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="1018.51" y="1855.5" ></text>
</g>
<g >
<title>cost_bitmap_heap_scan (116,139,600 samples, 0.02%)</title><rect x="969.8" y="2053" width="0.3" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="972.84" y="2063.5" ></text>
</g>
<g >
<title>hash_create (202,020,832 samples, 0.03%)</title><rect x="624.6" y="2021" width="0.4" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="627.62" y="2031.5" ></text>
</g>
<g >
<title>XidInMVCCSnapshot (174,200,641 samples, 0.03%)</title><rect x="487.4" y="2037" width="0.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="490.44" y="2047.5" ></text>
</g>
<g >
<title>update_load_avg (146,831,695 samples, 0.02%)</title><rect x="550.5" y="1637" width="0.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="553.46" y="1647.5" ></text>
</g>
<g >
<title>GetSnapshotData (2,166,982,098 samples, 0.36%)</title><rect x="424.0" y="2037" width="4.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="426.99" y="2047.5" ></text>
</g>
<g >
<title>reweight_entity (138,729,647 samples, 0.02%)</title><rect x="483.1" y="1669" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="486.08" y="1679.5" ></text>
</g>
<g >
<title>psi_task_switch (1,544,870,191 samples, 0.26%)</title><rect x="87.3" y="1813" width="3.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="90.33" y="1823.5" ></text>
</g>
<g >
<title>LZ4_compress_fast_extState (110,640,379 samples, 0.02%)</title><rect x="12.3" y="2005" width="0.3" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="15.33" y="2015.5" ></text>
</g>
<g >
<title>distribute_qual_to_rels (235,759,367 samples, 0.04%)</title><rect x="787.4" y="2037" width="0.4" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="790.36" y="2047.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (227,049,926 samples, 0.04%)</title><rect x="455.8" y="2037" width="0.4" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="458.80" y="2047.5" ></text>
</g>
<g >
<title>x64_sys_call (82,121,181 samples, 0.01%)</title><rect x="188.2" y="1989" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="191.19" y="1999.5" ></text>
</g>
<g >
<title>worker_thread (59,379,595 samples, 0.01%)</title><rect x="10.8" y="2005" width="0.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="13.79" y="2015.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (56,500,502 samples, 0.01%)</title><rect x="302.6" y="1813" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="305.62" y="1823.5" ></text>
</g>
<g >
<title>dequeue_task_fair (2,064,290,342 samples, 0.35%)</title><rect x="27.2" y="1845" width="4.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="30.18" y="1855.5" ></text>
</g>
<g >
<title>log (282,678,783 samples, 0.05%)</title><rect x="1108.7" y="2053" width="0.6" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="1111.72" y="2063.5" ></text>
</g>
<g >
<title>do_fault (174,848,233 samples, 0.03%)</title><rect x="947.9" y="1781" width="0.3" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="950.86" y="1791.5" ></text>
</g>
<g >
<title>[libc.so.6] (203,000,123 samples, 0.03%)</title><rect x="163.0" y="2021" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="165.98" y="2031.5" ></text>
</g>
<g >
<title>__x64_sys_futex (285,946,338 samples, 0.05%)</title><rect x="372.7" y="1989" width="0.6" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="375.72" y="1999.5" ></text>
</g>
<g >
<title>SearchCatCache (486,757,000 samples, 0.08%)</title><rect x="463.7" y="2037" width="1.0" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="466.75" y="2047.5" ></text>
</g>
<g >
<title>hw_breakpoint_del (675,570,518 samples, 0.11%)</title><rect x="1022.8" y="1765" width="1.4" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1025.84" y="1775.5" ></text>
</g>
<g >
<title>unix_destruct_scm (2,256,628,806 samples, 0.38%)</title><rect x="178.8" y="1845" width="4.4" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="181.79" y="1855.5" ></text>
</g>
<g >
<title>__virt_addr_valid (86,854,373 samples, 0.01%)</title><rect x="115.5" y="1829" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="118.55" y="1839.5" ></text>
</g>
<g >
<title>__futex_wait (6,574,992,453 samples, 1.10%)</title><rect x="547.3" y="1749" width="13.0" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="550.29" y="1759.5" ></text>
</g>
<g >
<title>default_idle_call (544,038,790 samples, 0.09%)</title><rect x="1188.4" y="1909" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.43" y="1919.5" ></text>
</g>
<g >
<title>hrtick_update (57,899,533 samples, 0.01%)</title><rect x="1006.4" y="1861" width="0.1" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="1009.42" y="1871.5" ></text>
</g>
<g >
<title>xas_start (59,056,133 samples, 0.01%)</title><rect x="497.9" y="1813" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="500.86" y="1823.5" ></text>
</g>
<g >
<title>irqentry_exit (53,911,540 samples, 0.01%)</title><rect x="407.6" y="1989" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="410.59" y="1999.5" ></text>
</g>
<g >
<title>sync_file_range (443,415,000 samples, 0.07%)</title><rect x="1166.0" y="2053" width="0.8" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1168.96" y="2063.5" ></text>
</g>
<g >
<title>__check_object_size (459,974,429 samples, 0.08%)</title><rect x="669.0" y="1909" width="0.9" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="672.02" y="1919.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,069,528,454 samples, 0.18%)</title><rect x="278.1" y="2053" width="2.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="281.07" y="2063.5" ></text>
</g>
<g >
<title>do_sys_poll (19,648,909,404 samples, 3.29%)</title><rect x="65.0" y="1909" width="38.7" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="67.95" y="1919.5" >do_..</text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (57,453,681 samples, 0.01%)</title><rect x="529.4" y="1669" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="532.45" y="1679.5" ></text>
</g>
<g >
<title>get_func_retset (399,905,818 samples, 0.07%)</title><rect x="808.5" y="2037" width="0.8" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="811.50" y="2047.5" ></text>
</g>
<g >
<title>sched_clock_cpu (60,023,656 samples, 0.01%)</title><rect x="144.9" y="1669" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="147.91" y="1679.5" ></text>
</g>
<g >
<title>update_rq_clock (200,213,704 samples, 0.03%)</title><rect x="37.2" y="1861" width="0.4" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="40.20" y="1871.5" ></text>
</g>
<g >
<title>ctx_sched_in (85,394,283 samples, 0.01%)</title><rect x="846.7" y="1909" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="849.67" y="1919.5" ></text>
</g>
<g >
<title>base_yylex (145,494,689 samples, 0.02%)</title><rect x="957.3" y="2053" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="960.34" y="2063.5" ></text>
</g>
<g >
<title>WaitEventSetWait (7,994,610,594 samples, 1.34%)</title><rect x="470.4" y="2037" width="15.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="473.40" y="2047.5" ></text>
</g>
<g >
<title>__slab_free (109,533,074 samples, 0.02%)</title><rect x="174.0" y="1829" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="176.96" y="1839.5" ></text>
</g>
<g >
<title>__schedule (53,911,540 samples, 0.01%)</title><rect x="407.6" y="1941" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="410.59" y="1951.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (114,521,011 samples, 0.02%)</title><rect x="719.9" y="1733" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="722.91" y="1743.5" ></text>
</g>
<g >
<title>psi_task_switch (84,454,400 samples, 0.01%)</title><rect x="447.6" y="1829" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="450.63" y="1839.5" ></text>
</g>
<g >
<title>compare_pathkeys (58,426,261 samples, 0.01%)</title><rect x="778.4" y="2037" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="781.41" y="2047.5" ></text>
</g>
<g >
<title>ext4_sync_file (3,083,682,835 samples, 0.52%)</title><rect x="1037.4" y="1973" width="6.1" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="1040.36" y="1983.5" ></text>
</g>
<g >
<title>_nohz_idle_balance.isra.0 (431,538,728 samples, 0.07%)</title><rect x="1180.1" y="1829" width="0.9" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="1183.10" y="1839.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (186,288,734 samples, 0.03%)</title><rect x="500.9" y="1973" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="503.91" y="1983.5" ></text>
</g>
<g >
<title>make_one_rel (142,267,963 samples, 0.02%)</title><rect x="1110.4" y="2053" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="1113.45" y="2063.5" ></text>
</g>
<g >
<title>update_curr_se (84,253,960 samples, 0.01%)</title><rect x="1019.9" y="1829" width="0.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="1022.87" y="1839.5" ></text>
</g>
<g >
<title>copyObjectImpl (139,058,867 samples, 0.02%)</title><rect x="779.3" y="2037" width="0.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="782.30" y="2047.5" ></text>
</g>
<g >
<title>RelationGetIndexPredicate (56,045,835 samples, 0.01%)</title><rect x="315.7" y="2053" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="318.74" y="2063.5" ></text>
</g>
<g >
<title>index_pages_fetched (64,262,277 samples, 0.01%)</title><rect x="836.4" y="2037" width="0.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="839.45" y="2047.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,217,106,387 samples, 0.37%)</title><rect x="495.9" y="1973" width="4.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="498.85" y="1983.5" ></text>
</g>
<g >
<title>select_idle_sibling (135,307,994 samples, 0.02%)</title><rect x="1148.3" y="1877" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="1151.26" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1861" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1871.5" ></text>
</g>
<g >
<title>ExecBuildProjectionInfo (203,257,701 samples, 0.03%)</title><rect x="402.7" y="2037" width="0.4" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="405.66" y="2047.5" ></text>
</g>
<g >
<title>check_heap_object (206,653,832 samples, 0.03%)</title><rect x="669.2" y="1877" width="0.4" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="672.18" y="1887.5" ></text>
</g>
<g >
<title>sem_post (6,594,406,392 samples, 1.10%)</title><rect x="1142.5" y="2053" width="13.0" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1145.46" y="2063.5" ></text>
</g>
<g >
<title>make_pathkeys_for_sortclauses_extended (83,728,254 samples, 0.01%)</title><rect x="855.1" y="2037" width="0.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="858.08" y="2047.5" ></text>
</g>
<g >
<title>__rb_insert_augmented (142,631,549 samples, 0.02%)</title><rect x="142.9" y="1669" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="145.94" y="1679.5" ></text>
</g>
<g >
<title>arch_irq_work_raise (55,205,073 samples, 0.01%)</title><rect x="279.2" y="1829" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="282.20" y="1839.5" ></text>
</g>
<g >
<title>blk_mq_kick_requeue_list (171,138,878 samples, 0.03%)</title><rect x="1037.9" y="1813" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="1040.87" y="1823.5" ></text>
</g>
<g >
<title>__count_memcg_events (58,200,429 samples, 0.01%)</title><rect x="1092.9" y="1957" width="0.1" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="1095.87" y="1967.5" ></text>
</g>
<g >
<title>switch_fpu_return (821,870,406 samples, 0.14%)</title><rect x="986.5" y="1973" width="1.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="989.53" y="1983.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (113,216,735 samples, 0.02%)</title><rect x="912.1" y="1877" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="915.07" y="1887.5" ></text>
</g>
<g >
<title>bpf_prog_ab52827c9cfdf652_on_watchpoint (206,364,393 samples, 0.03%)</title><rect x="264.7" y="1893" width="0.4" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="267.65" y="1903.5" ></text>
</g>
<g >
<title>ExecARUpdateTriggers (115,984,748 samples, 0.02%)</title><rect x="502.4" y="2021" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="505.37" y="2031.5" ></text>
</g>
<g >
<title>ExecutorStart (56,654,156 samples, 0.01%)</title><rect x="418.3" y="2037" width="0.2" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="421.35" y="2047.5" ></text>
</g>
<g >
<title>prepare_task_switch (54,215,438 samples, 0.01%)</title><rect x="485.8" y="1925" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="488.81" y="1935.5" ></text>
</g>
<g >
<title>do_softirq (53,159,104 samples, 0.01%)</title><rect x="1183.8" y="1973" width="0.1" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="1186.83" y="1983.5" ></text>
</g>
<g >
<title>set_ps_display_with_len (55,825,593 samples, 0.01%)</title><rect x="642.2" y="2021" width="0.1" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="645.15" y="2031.5" ></text>
</g>
<g >
<title>schedule_idle (649,394,699 samples, 0.11%)</title><rect x="1184.0" y="1989" width="1.3" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1186.99" y="1999.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (53,208,770 samples, 0.01%)</title><rect x="29.3" y="1797" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="32.28" y="1807.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (57,423,164 samples, 0.01%)</title><rect x="1163.0" y="2021" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1166.01" y="2031.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (291,487,949 samples, 0.05%)</title><rect x="669.0" y="1893" width="0.6" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="672.02" y="1903.5" ></text>
</g>
<g >
<title>__switch_to (58,663,871 samples, 0.01%)</title><rect x="1184.1" y="1957" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="1187.05" y="1967.5" ></text>
</g>
<g >
<title>folio_wait_bit_common (56,338,992 samples, 0.01%)</title><rect x="497.1" y="1829" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="500.09" y="1839.5" ></text>
</g>
<g >
<title>pick_next_task_fair (65,057,585 samples, 0.01%)</title><rect x="441.4" y="1909" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="444.38" y="1919.5" ></text>
</g>
<g >
<title>pqParseDone (57,504,231 samples, 0.01%)</title><rect x="206.8" y="2053" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="209.84" y="2063.5" ></text>
</g>
<g >
<title>rseq_update_cpu_node_id (173,909,659 samples, 0.03%)</title><rect x="986.2" y="1973" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="989.18" y="1983.5" ></text>
</g>
<g >
<title>ExecBuildUpdateProjection (254,860,812 samples, 0.04%)</title><rect x="403.1" y="2037" width="0.5" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="406.06" y="2047.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (648,354,434 samples, 0.11%)</title><rect x="897.1" y="1989" width="1.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="900.11" y="1999.5" ></text>
</g>
<g >
<title>irq_work_single (85,236,206 samples, 0.01%)</title><rect x="505.3" y="1925" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="508.29" y="1935.5" ></text>
</g>
<g >
<title>memcpy@plt (134,365,318 samples, 0.02%)</title><rect x="1114.6" y="2053" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1117.57" y="2063.5" ></text>
</g>
<g >
<title>lapic_next_event (82,747,023 samples, 0.01%)</title><rect x="1189.6" y="1829" width="0.1" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="1192.56" y="1839.5" ></text>
</g>
<g >
<title>ctx_sched_in (54,936,306 samples, 0.01%)</title><rect x="447.3" y="1797" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="450.35" y="1807.5" ></text>
</g>
<g >
<title>__schedule (53,068,267 samples, 0.01%)</title><rect x="443.3" y="1941" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="446.30" y="1951.5" ></text>
</g>
<g >
<title>ep_done_scan (166,893,598 samples, 0.03%)</title><rect x="994.3" y="1925" width="0.3" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="997.30" y="1935.5" ></text>
</g>
<g >
<title>__schedule (110,862,804 samples, 0.02%)</title><rect x="471.8" y="1957" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="474.75" y="1967.5" ></text>
</g>
<g >
<title>update_rq_clock (176,940,448 samples, 0.03%)</title><rect x="1154.7" y="1909" width="0.3" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="1157.69" y="1919.5" ></text>
</g>
<g >
<title>dequeue_task_fair (89,377,743 samples, 0.01%)</title><rect x="302.2" y="1829" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="305.22" y="1839.5" ></text>
</g>
<g >
<title>nr_iowait_cpu (116,183,187 samples, 0.02%)</title><rect x="1179.6" y="1845" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1182.56" y="1855.5" ></text>
</g>
<g >
<title>lappend_oid (59,507,887 samples, 0.01%)</title><rect x="842.0" y="2037" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="845.01" y="2047.5" ></text>
</g>
<g >
<title>ExecutorStart (56,075,681 samples, 0.01%)</title><rect x="261.4" y="2053" width="0.1" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="264.38" y="2063.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (84,778,537 samples, 0.01%)</title><rect x="1039.6" y="1829" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="1042.55" y="1839.5" ></text>
</g>
<g >
<title>asm_exc_debug (264,845,513 samples, 0.04%)</title><rect x="1136.0" y="2037" width="0.5" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1138.98" y="2047.5" ></text>
</g>
<g >
<title>hw_breakpoint_del (55,976,096 samples, 0.01%)</title><rect x="616.1" y="1797" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="619.08" y="1807.5" ></text>
</g>
<g >
<title>_bt_saveitem (63,997,558 samples, 0.01%)</title><rect x="956.1" y="2053" width="0.2" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="959.13" y="2063.5" ></text>
</g>
<g >
<title>check_preempt_wakeup_fair (170,687,752 samples, 0.03%)</title><rect x="151.0" y="1717" width="0.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="154.03" y="1727.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (824,436,170 samples, 0.14%)</title><rect x="443.4" y="2037" width="1.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="446.41" y="2047.5" ></text>
</g>
<g >
<title>update_cfs_group (83,081,018 samples, 0.01%)</title><rect x="193.2" y="1813" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="196.17" y="1823.5" ></text>
</g>
<g >
<title>tts_virtual_clear (81,445,703 samples, 0.01%)</title><rect x="1171.9" y="2053" width="0.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="1174.88" y="2063.5" ></text>
</g>
<g >
<title>makeString (253,781,027 samples, 0.04%)</title><rect x="594.2" y="2005" width="0.5" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="597.22" y="2015.5" ></text>
</g>
<g >
<title>add_base_rels_to_query (276,608,129 samples, 0.05%)</title><rect x="751.5" y="2037" width="0.6" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="754.51" y="2047.5" ></text>
</g>
<g >
<title>mutex_unlock (144,234,538 samples, 0.02%)</title><rect x="169.2" y="1893" width="0.3" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="172.17" y="1903.5" ></text>
</g>
<g >
<title>__rb_insert_augmented (92,066,160 samples, 0.02%)</title><rect x="1150.4" y="1829" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1153.37" y="1839.5" ></text>
</g>
<g >
<title>PortalRunSelect (83,117,081 samples, 0.01%)</title><rect x="306.0" y="2053" width="0.2" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="309.05" y="2063.5" ></text>
</g>
<g >
<title>cfree (53,120,440 samples, 0.01%)</title><rect x="771.8" y="2037" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="774.78" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1749" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1759.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (84,395,727 samples, 0.01%)</title><rect x="149.7" y="1669" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="152.72" y="1679.5" ></text>
</g>
<g >
<title>noist_exc_debug (59,422,893 samples, 0.01%)</title><rect x="437.2" y="2005" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="440.25" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (23,577,316,658 samples, 3.94%)</title><rect x="983.4" y="2021" width="46.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="986.36" y="2031.5" >do_s..</text>
</g>
<g >
<title>enqueue_task (53,416,757 samples, 0.01%)</title><rect x="1183.7" y="1925" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1186.66" y="1935.5" ></text>
</g>
<g >
<title>__put_user_8 (173,874,004 samples, 0.03%)</title><rect x="61.0" y="1909" width="0.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="64.01" y="1919.5" ></text>
</g>
<g >
<title>scheduler_tick (54,862,766 samples, 0.01%)</title><rect x="1146.8" y="1765" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1149.77" y="1775.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (58,215,442 samples, 0.01%)</title><rect x="1099.8" y="1957" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="1102.77" y="1967.5" ></text>
</g>
<g >
<title>fix_expr_common (82,092,759 samples, 0.01%)</title><rect x="805.9" y="2037" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="808.87" y="2047.5" ></text>
</g>
<g >
<title>noist_exc_debug (178,776,503 samples, 0.03%)</title><rect x="1098.7" y="2021" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1101.69" y="2031.5" ></text>
</g>
<g >
<title>refill_stock (281,816,310 samples, 0.05%)</title><rect x="130.1" y="1797" width="0.5" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="133.07" y="1807.5" ></text>
</g>
<g >
<title>load_balance (338,816,033 samples, 0.06%)</title><rect x="1180.2" y="1797" width="0.7" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="1183.22" y="1807.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (111,449,314 samples, 0.02%)</title><rect x="153.1" y="1829" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="156.13" y="1839.5" ></text>
</g>
<g >
<title>ep_done_scan (57,303,462 samples, 0.01%)</title><rect x="992.4" y="1941" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="995.44" y="1951.5" ></text>
</g>
<g >
<title>detach_task (84,685,137 samples, 0.01%)</title><rect x="1180.6" y="1765" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1183.56" y="1775.5" ></text>
</g>
<g >
<title>buildRelationAliases (56,890,717 samples, 0.01%)</title><rect x="961.0" y="2053" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="964.01" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (9,363,167,482 samples, 1.57%)</title><rect x="561.3" y="181" width="18.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="564.34" y="191.5" ></text>
</g>
<g >
<title>hrtimer_try_to_cancel.part.0 (221,995,539 samples, 0.04%)</title><rect x="1185.7" y="1941" width="0.5" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text x="1188.72" y="1951.5" ></text>
</g>
<g >
<title>futex_wait_setup (174,760,794 samples, 0.03%)</title><rect x="303.1" y="1893" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="306.07" y="1903.5" ></text>
</g>
<g >
<title>switch_fpu_return (164,531,231 samples, 0.03%)</title><rect x="21.6" y="1957" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="24.60" y="1967.5" ></text>
</g>
<g >
<title>ExecUpdate (141,185,631 samples, 0.02%)</title><rect x="417.6" y="2037" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="420.63" y="2047.5" ></text>
</g>
<g >
<title>refill_obj_stock (895,090,069 samples, 0.15%)</title><rect x="907.2" y="1797" width="1.8" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="910.19" y="1807.5" ></text>
</g>
<g >
<title>resetStringInfo (225,659,080 samples, 0.04%)</title><rect x="641.1" y="2021" width="0.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="644.07" y="2031.5" ></text>
</g>
<g >
<title>ExecARUpdateTriggers (107,894,594 samples, 0.02%)</title><rect x="254.5" y="2053" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="257.53" y="2063.5" ></text>
</g>
<g >
<title>update_load_avg (56,169,162 samples, 0.01%)</title><rect x="447.1" y="1797" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="450.12" y="1807.5" ></text>
</g>
<g >
<title>mutex_unlock (91,457,123 samples, 0.02%)</title><rect x="997.5" y="1941" width="0.1" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="1000.46" y="1951.5" ></text>
</g>
<g >
<title>ctx_sched_out (51,292,816 samples, 0.01%)</title><rect x="449.8" y="1877" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="452.80" y="1887.5" ></text>
</g>
<g >
<title>simple_copy_to_iter (1,297,293,333 samples, 0.22%)</title><rect x="912.7" y="1845" width="2.6" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="915.70" y="1855.5" ></text>
</g>
<g >
<title>do_syscall_64 (165,004,776 samples, 0.03%)</title><rect x="18.1" y="2021" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="21.12" y="2031.5" ></text>
</g>
<g >
<title>psi_task_change (445,425,637 samples, 0.07%)</title><rect x="483.6" y="1701" width="0.8" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="486.57" y="1711.5" ></text>
</g>
<g >
<title>irq_work_run_list (2,734,206,654 samples, 0.46%)</title><rect x="480.2" y="1957" width="5.4" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="483.25" y="1967.5" ></text>
</g>
<g >
<title>pgwt_duration_to_bucket (53,056,284 samples, 0.01%)</title><rect x="12.6" y="2037" width="0.1" height="15.0" fill="rgb(207,12,2)" rx="2" ry="2" />
<text x="15.55" y="2047.5" ></text>
</g>
<g >
<title>pick_next_task (65,057,585 samples, 0.01%)</title><rect x="441.4" y="1925" width="0.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="444.38" y="1935.5" ></text>
</g>
<g >
<title>pv_native_get_debugreg (567,530,208 samples, 0.09%)</title><rect x="533.0" y="1861" width="1.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="535.99" y="1871.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (56,318,212 samples, 0.01%)</title><rect x="767.4" y="1973" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="770.45" y="1983.5" ></text>
</g>
<g >
<title>pv_native_set_debugreg (56,032,137 samples, 0.01%)</title><rect x="776.9" y="1797" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="779.88" y="1807.5" ></text>
</g>
<g >
<title>balance_dirty_pages_ratelimited_flags (99,656,606 samples, 0.02%)</title><rect x="945.2" y="1893" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="948.24" y="1903.5" ></text>
</g>
<g >
<title>_bt_getroot (201,260,923 samples, 0.03%)</title><rect x="748.4" y="2037" width="0.4" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="751.36" y="2047.5" ></text>
</g>
<g >
<title>x64_sys_call (58,027,131 samples, 0.01%)</title><rect x="728.3" y="2005" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="731.29" y="2015.5" ></text>
</g>
<g >
<title>update_curr_se (85,172,799 samples, 0.01%)</title><rect x="536.2" y="1509" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="539.24" y="1519.5" ></text>
</g>
<g >
<title>[libc.so.6] (1,196,834,671 samples, 0.20%)</title><rect x="301.0" y="2037" width="2.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="304.05" y="2047.5" ></text>
</g>
<g >
<title>pv_native_set_debugreg (54,688,229 samples, 0.01%)</title><rect x="1038.3" y="1749" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="1041.32" y="1759.5" ></text>
</g>
<g >
<title>update_curr (142,306,658 samples, 0.02%)</title><rect x="1019.8" y="1845" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1022.75" y="1855.5" ></text>
</g>
<g >
<title>ExecEndNode (313,639,059 samples, 0.05%)</title><rect x="404.9" y="2037" width="0.6" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="407.86" y="2047.5" ></text>
</g>
<g >
<title>wakeup_preempt (1,762,352,667 samples, 0.29%)</title><rect x="721.4" y="1813" width="3.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="724.38" y="1823.5" ></text>
</g>
<g >
<title>GetTransactionSnapshot (505,448,293 samples, 0.08%)</title><rect x="428.8" y="2037" width="1.0" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="431.82" y="2047.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (51,501,438 samples, 0.01%)</title><rect x="239.4" y="1989" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="242.40" y="1999.5" ></text>
</g>
<g >
<title>retbleed_return_thunk (56,450,879 samples, 0.01%)</title><rect x="154.3" y="1989" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="157.33" y="1999.5" ></text>
</g>
<g >
<title>irq_work_single (90,285,377 samples, 0.02%)</title><rect x="1099.1" y="1957" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1102.10" y="1967.5" ></text>
</g>
<g >
<title>pqsecure_raw_read (13,076,997,525 samples, 2.19%)</title><rect x="162.9" y="2037" width="25.8" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="165.87" y="2047.5" >p..</text>
</g>
<g >
<title>__schedule (256,777,555 samples, 0.04%)</title><rect x="952.0" y="1973" width="0.5" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="954.99" y="1983.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (112,547,994 samples, 0.02%)</title><rect x="661.7" y="1941" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="664.75" y="1951.5" ></text>
</g>
<g >
<title>asm_sysvec_irq_work (85,160,873 samples, 0.01%)</title><rect x="343.3" y="1989" width="0.1" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="346.26" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (25,095,696,229 samples, 4.20%)</title><rect x="55.3" y="2021" width="49.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="58.28" y="2031.5" >[unk..</text>
</g>
<g >
<title>__cond_resched (253,635,366 samples, 0.04%)</title><rect x="1038.3" y="1909" width="0.5" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="1041.26" y="1919.5" ></text>
</g>
<g >
<title>put_prev_entity (53,120,003 samples, 0.01%)</title><rect x="86.7" y="1797" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="89.69" y="1807.5" ></text>
</g>
<g >
<title>exprCollation (196,294,517 samples, 0.03%)</title><rect x="620.1" y="2021" width="0.4" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="623.14" y="2031.5" ></text>
</g>
<g >
<title>newidle_balance (53,491,933 samples, 0.01%)</title><rect x="33.3" y="1829" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="36.26" y="1839.5" ></text>
</g>
<g >
<title>lappend (936,292,995 samples, 0.16%)</title><rect x="840.1" y="2037" width="1.8" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="843.10" y="2047.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode_prepare (82,795,712 samples, 0.01%)</title><rect x="898.4" y="1989" width="0.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="901.39" y="1999.5" ></text>
</g>
<g >
<title>file_update_time (228,533,730 samples, 0.04%)</title><rect x="498.2" y="1877" width="0.5" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="501.20" y="1887.5" ></text>
</g>
<g >
<title>__enqueue_entity (174,542,438 samples, 0.03%)</title><rect x="1018.2" y="1829" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1021.18" y="1839.5" ></text>
</g>
<g >
<title>set_cheapest (84,265,151 samples, 0.01%)</title><rect x="923.2" y="2037" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="926.16" y="2047.5" ></text>
</g>
<g >
<title>int2hashfast (112,658,860 samples, 0.02%)</title><rect x="837.0" y="2037" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="840.02" y="2047.5" ></text>
</g>
<g >
<title>blk_mq_run_hw_queues (56,385,646 samples, 0.01%)</title><rect x="10.6" y="1957" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="13.56" y="1967.5" ></text>
</g>
<g >
<title>handle_softirqs (53,159,104 samples, 0.01%)</title><rect x="1183.8" y="1925" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="1186.83" y="1935.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (56,101,465 samples, 0.01%)</title><rect x="261.5" y="2053" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="264.49" y="2063.5" ></text>
</g>
<g >
<title>__x64_sys_epoll_wait (7,879,833,225 samples, 1.32%)</title><rect x="22.1" y="1973" width="15.5" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="25.09" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="933" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="943.5" ></text>
</g>
<g >
<title>handle_irq_event (227,232,715 samples, 0.04%)</title><rect x="1175.5" y="1861" width="0.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="1178.49" y="1871.5" ></text>
</g>
<g >
<title>resched_curr (150,664,993 samples, 0.03%)</title><rect x="537.5" y="1541" width="0.3" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="540.52" y="1551.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (55,062,137 samples, 0.01%)</title><rect x="940.8" y="2005" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="943.80" y="2015.5" ></text>
</g>
<g >
<title>local_clock_noinstr (57,082,973 samples, 0.01%)</title><rect x="1024.3" y="1797" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1027.34" y="1807.5" ></text>
</g>
<g >
<title>cpus_share_cache (145,036,957 samples, 0.02%)</title><rect x="698.9" y="1781" width="0.3" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="701.91" y="1791.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (56,318,212 samples, 0.01%)</title><rect x="767.4" y="2005" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="770.45" y="2015.5" ></text>
</g>
<g >
<title>refill_stock (147,804,488 samples, 0.02%)</title><rect x="686.4" y="1813" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="689.36" y="1823.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (82,074,909 samples, 0.01%)</title><rect x="1136.5" y="2005" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="1139.50" y="2015.5" ></text>
</g>
<g >
<title>clockevents_program_event (869,346,703 samples, 0.15%)</title><rect x="1186.4" y="1909" width="1.7" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="1189.38" y="1919.5" ></text>
</g>
<g >
<title>noist_exc_debug (2,957,932,253 samples, 0.49%)</title><rect x="527.1" y="1861" width="5.9" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="530.15" y="1871.5" ></text>
</g>
<g >
<title>irqentry_exit (53,995,505 samples, 0.01%)</title><rect x="858.7" y="1989" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="861.67" y="1999.5" ></text>
</g>
<g >
<title>page_counter_uncharge (199,814,731 samples, 0.03%)</title><rect x="130.2" y="1749" width="0.4" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="133.23" y="1759.5" ></text>
</g>
<g >
<title>xas_descend (54,865,064 samples, 0.01%)</title><rect x="946.6" y="1781" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="949.57" y="1791.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (60,591,430 samples, 0.01%)</title><rect x="911.1" y="1781" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="914.05" y="1791.5" ></text>
</g>
<g >
<title>notifier_call_chain (111,690,655 samples, 0.02%)</title><rect x="367.4" y="1989" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="370.42" y="1999.5" ></text>
</g>
<g >
<title>__submit_bio (341,357,491 samples, 0.06%)</title><rect x="1037.5" y="1877" width="0.7" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1040.53" y="1887.5" ></text>
</g>
<g >
<title>asm_exc_debug (110,389,126 samples, 0.02%)</title><rect x="301.2" y="2005" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="304.22" y="2015.5" ></text>
</g>
<g >
<title>__schedule (511,443,850 samples, 0.09%)</title><rect x="302.1" y="1861" width="1.0" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="305.06" y="1871.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (58,903,058 samples, 0.01%)</title><rect x="666.7" y="1893" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="669.69" y="1903.5" ></text>
</g>
<g >
<title>set_next_entity (325,003,197 samples, 0.05%)</title><rect x="33.8" y="1829" width="0.6" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="36.75" y="1839.5" ></text>
</g>
<g >
<title>malloc (84,007,610 samples, 0.01%)</title><rect x="157.8" y="2021" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="160.79" y="2031.5" ></text>
</g>
<g >
<title>ttwu_do_activate (1,533,524,413 samples, 0.26%)</title><rect x="481.9" y="1733" width="3.0" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="484.91" y="1743.5" ></text>
</g>
<g >
<title>get_restriction_variable (146,325,319 samples, 0.02%)</title><rect x="1056.1" y="2053" width="0.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="1059.10" y="2063.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (16,196,944,759 samples, 2.71%)</title><rect x="997.6" y="1941" width="32.0" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1000.64" y="1951.5" >sc..</text>
</g>
<g >
<title>psi_task_switch (53,811,469 samples, 0.01%)</title><rect x="898.1" y="1941" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="901.13" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="917" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="927.5" ></text>
</g>
<g >
<title>irqentry_exit (192,157,704 samples, 0.03%)</title><rect x="871.2" y="1989" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="874.25" y="1999.5" ></text>
</g>
<g >
<title>_raw_read_lock_irqsave (482,471,780 samples, 0.08%)</title><rect x="181.7" y="1749" width="1.0" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="184.73" y="1759.5" ></text>
</g>
<g >
<title>pg_ulltoa_n.part.0 (402,669,708 samples, 0.07%)</title><rect x="877.3" y="2037" width="0.8" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text x="880.27" y="2047.5" ></text>
</g>
<g >
<title>ep_poll_callback (60,067,863 samples, 0.01%)</title><rect x="471.6" y="1829" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="474.64" y="1839.5" ></text>
</g>
<g >
<title>ConditionalLockBufferForCleanup (55,704,070 samples, 0.01%)</title><rect x="252.9" y="2053" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="255.89" y="2063.5" ></text>
</g>
<g >
<title>estimate_rel_size (85,966,675 samples, 0.01%)</title><rect x="791.4" y="2037" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="794.37" y="2047.5" ></text>
</g>
<g >
<title>LWLockQueueSelf (342,243,789 samples, 0.06%)</title><rect x="288.6" y="2053" width="0.7" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="291.60" y="2063.5" ></text>
</g>
<g >
<title>futex_wait_queue (203,746,813 samples, 0.03%)</title><rect x="506.4" y="1861" width="0.4" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="509.43" y="1871.5" ></text>
</g>
<g >
<title>__sysvec_call_function_single (1,783,620,141 samples, 0.30%)</title><rect x="1176.0" y="1893" width="3.5" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="1178.99" y="1903.5" ></text>
</g>
<g >
<title>local_clock (220,577,494 samples, 0.04%)</title><rect x="651.3" y="1893" width="0.4" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="654.25" y="1903.5" ></text>
</g>
<g >
<title>pick_next_task_fair (1,771,705,203 samples, 0.30%)</title><rect x="653.1" y="1925" width="3.5" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="656.10" y="1935.5" ></text>
</g>
<g >
<title>set_rel_consider_parallel (115,229,231 samples, 0.02%)</title><rect x="1157.8" y="2053" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1160.81" y="2063.5" ></text>
</g>
<g >
<title>__schedule (111,645,375 samples, 0.02%)</title><rect x="538.6" y="1797" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="541.60" y="1807.5" ></text>
</g>
<g >
<title>table_open (198,034,517 samples, 0.03%)</title><rect x="933.5" y="2037" width="0.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="936.45" y="2047.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (125,348,082 samples, 0.02%)</title><rect x="750.2" y="2037" width="0.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="753.20" y="2047.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (55,666,261 samples, 0.01%)</title><rect x="952.8" y="2053" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="955.78" y="2063.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (130,829,857 samples, 0.02%)</title><rect x="1013.6" y="1765" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1016.55" y="1775.5" ></text>
</g>
<g >
<title>ep_poll_callback (56,991,187 samples, 0.01%)</title><rect x="505.3" y="1813" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="508.29" y="1823.5" ></text>
</g>
<g >
<title>schedule (51,292,816 samples, 0.01%)</title><rect x="449.8" y="1957" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="452.80" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1013" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1023.5" ></text>
</g>
<g >
<title>tick_nohz_idle_stop_tick (1,254,686,891 samples, 0.21%)</title><rect x="1181.1" y="1973" width="2.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1184.07" y="1983.5" ></text>
</g>
<g >
<title>int4eqfast (148,242,915 samples, 0.02%)</title><rect x="579.5" y="37" width="0.3" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="582.53" y="47.5" ></text>
</g>
<g >
<title>x64_sys_call (232,890,161 samples, 0.04%)</title><rect x="506.4" y="1941" width="0.5" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="509.43" y="1951.5" ></text>
</g>
<g >
<title>free@plt (113,088,470 samples, 0.02%)</title><rect x="200.8" y="2053" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="203.78" y="2063.5" ></text>
</g>
<g >
<title>pgwt_summary_push_event (186,938,857 samples, 0.03%)</title><rect x="16.9" y="2037" width="0.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="19.90" y="2047.5" ></text>
</g>
<g >
<title>AtEOXact_LogicalRepWorkers (232,500,573 samples, 0.04%)</title><rect x="246.2" y="2053" width="0.4" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="249.18" y="2063.5" ></text>
</g>
<g >
<title>__do_fault (53,727,425 samples, 0.01%)</title><rect x="486.9" y="1893" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="489.88" y="1903.5" ></text>
</g>
<g >
<title>pqsecure_raw_read (57,827,080 samples, 0.01%)</title><rect x="109.0" y="2021" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="112.04" y="2031.5" ></text>
</g>
<g >
<title>__schedule (79,265,418 samples, 0.01%)</title><rect x="523.9" y="1925" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="526.92" y="1935.5" ></text>
</g>
<g >
<title>prepare_task_switch (51,292,816 samples, 0.01%)</title><rect x="449.8" y="1925" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="452.80" y="1935.5" ></text>
</g>
<g >
<title>blk_mq_requeue_work (176,849,772 samples, 0.03%)</title><rect x="11.9" y="1973" width="0.3" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="14.85" y="1983.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10,202,483,703 samples, 1.71%)</title><rect x="896.4" y="2021" width="20.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="899.40" y="2031.5" ></text>
</g>
<g >
<title>IsBinaryTidClause (147,256,815 samples, 0.02%)</title><rect x="276.2" y="2053" width="0.3" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="279.20" y="2063.5" ></text>
</g>
<g >
<title>AllocSetAlloc (3,380,768,693 samples, 0.57%)</title><rect x="227.8" y="2053" width="6.7" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="230.79" y="2063.5" ></text>
</g>
<g >
<title>__flush_smp_call_function_queue (84,985,148 samples, 0.01%)</title><rect x="1183.7" y="1973" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="1186.66" y="1983.5" ></text>
</g>
<g >
<title>sock_alloc_send_pskb (7,309,028,132 samples, 1.22%)</title><rect x="116.7" y="1893" width="14.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="119.66" y="1903.5" ></text>
</g>
<g >
<title>tick_nohz_stop_tick (111,495,905 samples, 0.02%)</title><rect x="1189.6" y="1893" width="0.2" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="1192.56" y="1903.5" ></text>
</g>
<g >
<title>TidQualFromRestrictInfoList (59,704,841 samples, 0.01%)</title><rect x="335.3" y="2053" width="0.1" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="338.25" y="2063.5" ></text>
</g>
<g >
<title>__schedule (283,895,353 samples, 0.05%)</title><rect x="1143.6" y="1973" width="0.5" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1146.58" y="1983.5" ></text>
</g>
<g >
<title>set_task_cpu (225,070,613 samples, 0.04%)</title><rect x="139.6" y="1749" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="142.65" y="1759.5" ></text>
</g>
<g >
<title>__pmu_ctx_sched_out (1,198,609,596 samples, 0.20%)</title><rect x="1022.0" y="1813" width="2.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1024.97" y="1823.5" ></text>
</g>
<g >
<title>unix_stream_recvmsg (58,249,232 samples, 0.01%)</title><rect x="916.3" y="1941" width="0.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="919.25" y="1951.5" ></text>
</g>
<g >
<title>__schedule (79,814,627 samples, 0.01%)</title><rect x="945.1" y="1893" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="948.09" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1829" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1839.5" ></text>
</g>
<g >
<title>CheckExprStillValid (1,589,497,192 samples, 0.27%)</title><rect x="391.4" y="2037" width="3.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="394.45" y="2047.5" ></text>
</g>
<g >
<title>submit_bio (75,143,270 samples, 0.01%)</title><rect x="1166.2" y="1861" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="1169.16" y="1871.5" ></text>
</g>
<g >
<title>switch_fpu_return (367,014,018 samples, 0.06%)</title><rect x="646.4" y="1957" width="0.7" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="649.37" y="1967.5" ></text>
</g>
<g >
<title>dequeue_entity (54,534,907 samples, 0.01%)</title><rect x="548.8" y="1669" width="0.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="551.81" y="1679.5" ></text>
</g>
<g >
<title>attach_entity_load_avg (58,470,838 samples, 0.01%)</title><rect x="710.8" y="1749" width="0.1" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="713.77" y="1759.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (114,521,011 samples, 0.02%)</title><rect x="719.9" y="1749" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="722.91" y="1759.5" ></text>
</g>
<g >
<title>tick_sched_handle (55,840,878 samples, 0.01%)</title><rect x="794.9" y="1925" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="797.91" y="1935.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (2,042,641,278 samples, 0.34%)</title><rect x="1009.5" y="1813" width="4.0" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="1012.46" y="1823.5" ></text>
</g>
<g >
<title>enqueue_task (2,084,341,575 samples, 0.35%)</title><rect x="1149.5" y="1893" width="4.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1152.51" y="1903.5" ></text>
</g>
<g >
<title>pull_up_subqueries_recurse (119,696,845 samples, 0.02%)</title><rect x="1135.0" y="2053" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1137.99" y="2063.5" ></text>
</g>
<g >
<title>transformAssignedExpr (253,418,060 samples, 0.04%)</title><rect x="934.6" y="2037" width="0.5" height="15.0" fill="rgb(241,170,40)" rx="2" ry="2" />
<text x="937.58" y="2047.5" ></text>
</g>
<g >
<title>ret_from_fork (110,456,860 samples, 0.02%)</title><rect x="10.2" y="2037" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="13.18" y="2047.5" ></text>
</g>
<g >
<title>folio_add_file_rmap_ptes (56,067,232 samples, 0.01%)</title><rect x="739.2" y="1861" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="742.17" y="1871.5" ></text>
</g>
<g >
<title>get_baserel_parampathinfo (56,324,790 samples, 0.01%)</title><rect x="1049.4" y="2053" width="0.1" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" />
<text x="1052.44" y="2063.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (150,444,983 samples, 0.03%)</title><rect x="1003.1" y="1813" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="1006.08" y="1823.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (141,396,012 samples, 0.02%)</title><rect x="182.7" y="1781" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="185.74" y="1791.5" ></text>
</g>
<g >
<title>__wake_up (3,386,751,717 samples, 0.57%)</title><rect x="352.9" y="1925" width="6.7" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="355.93" y="1935.5" ></text>
</g>
<g >
<title>fdatasync (3,275,640,787 samples, 0.55%)</title><rect x="1037.1" y="2053" width="6.5" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="1040.09" y="2063.5" ></text>
</g>
<g >
<title>perf_bp_event (178,776,503 samples, 0.03%)</title><rect x="1098.7" y="1957" width="0.3" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="1101.69" y="1967.5" ></text>
</g>
<g >
<title>consume_obj_stock (58,500,338 samples, 0.01%)</title><rect x="675.2" y="1829" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="678.15" y="1839.5" ></text>
</g>
<g >
<title>__x64_sys_openat (116,565,316 samples, 0.02%)</title><rect x="249.1" y="1973" width="0.3" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="252.13" y="1983.5" ></text>
</g>
<g >
<title>lapic_next_event (869,346,703 samples, 0.15%)</title><rect x="1186.4" y="1893" width="1.7" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="1189.38" y="1903.5" ></text>
</g>
<g >
<title>update_min_vruntime (58,259,855 samples, 0.01%)</title><rect x="1004.9" y="1813" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="1007.91" y="1823.5" ></text>
</g>
<g >
<title>update_curr (599,529,120 samples, 0.10%)</title><rect x="708.3" y="1765" width="1.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="711.26" y="1775.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (5,626,065,128 samples, 0.94%)</title><rect x="26.5" y="1925" width="11.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="29.49" y="1935.5" ></text>
</g>
<g >
<title>copy_from_user_nofault (84,959,265 samples, 0.01%)</title><rect x="477.6" y="1861" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="480.60" y="1871.5" ></text>
</g>
<g >
<title>create_index_paths (339,764,033 samples, 0.06%)</title><rect x="782.7" y="2037" width="0.6" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="785.66" y="2047.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (58,681,141 samples, 0.01%)</title><rect x="1084.5" y="2005" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1087.52" y="2015.5" ></text>
</g>
<g >
<title>flush_block (79,947,921 samples, 0.01%)</title><rect x="19.0" y="2053" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="22.04" y="2063.5" ></text>
</g>
<g >
<title>x64_sys_call (9,051,517,784 samples, 1.51%)</title><rect x="898.6" y="1989" width="17.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="901.56" y="1999.5" ></text>
</g>
<g >
<title>sockfd_lookup_light (138,804,909 samples, 0.02%)</title><rect x="113.5" y="1909" width="0.3" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="116.48" y="1919.5" ></text>
</g>
<g >
<title>pg_ulltoa_n (81,825,240 samples, 0.01%)</title><rect x="877.1" y="2037" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="880.11" y="2047.5" ></text>
</g>
<g >
<title>process_equivalence (248,871,948 samples, 0.04%)</title><rect x="885.5" y="2037" width="0.5" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="888.46" y="2047.5" ></text>
</g>
<g >
<title>MemoryContextReset (238,399,325 samples, 0.04%)</title><rect x="505.6" y="2021" width="0.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="508.62" y="2031.5" ></text>
</g>
<g >
<title>[libc.so.6] (10,645,463,626 samples, 1.78%)</title><rect x="539.6" y="1877" width="21.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="542.65" y="1887.5" ></text>
</g>
<g >
<title>pgstat_report_activity (282,026,642 samples, 0.05%)</title><rect x="1132.9" y="2053" width="0.6" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="1135.92" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1429" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1439.5" ></text>
</g>
<g >
<title>var_eq_const (177,497,231 samples, 0.03%)</title><rect x="1173.0" y="2053" width="0.4" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="1176.04" y="2063.5" ></text>
</g>
<g >
<title>ResourceOwnerRelease (60,424,831 samples, 0.01%)</title><rect x="321.8" y="2053" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="324.84" y="2063.5" ></text>
</g>
<g >
<title>ret_from_fork_asm (84,443,636 samples, 0.01%)</title><rect x="10.5" y="2053" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="13.51" y="2063.5" ></text>
</g>
<g >
<title>TransactionIdSetStatusBit (122,881,253 samples, 0.02%)</title><rect x="336.9" y="2053" width="0.3" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="339.93" y="2063.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (9,748,023,356 samples, 1.63%)</title><rect x="73.0" y="1877" width="19.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="76.03" y="1887.5" ></text>
</g>
<g >
<title>ext4_do_writepages (1,631,899,695 samples, 0.27%)</title><rect x="1040.0" y="1877" width="3.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1043.02" y="1887.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (111,238,177 samples, 0.02%)</title><rect x="484.9" y="1733" width="0.3" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="487.94" y="1743.5" ></text>
</g>
<g >
<title>transformSortClause (88,621,617 samples, 0.01%)</title><rect x="937.0" y="2037" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="940.04" y="2047.5" ></text>
</g>
<g >
<title>enqueue_entity (512,846,232 samples, 0.09%)</title><rect x="1177.2" y="1781" width="1.1" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="1180.24" y="1791.5" ></text>
</g>
<g >
<title>create_plan_recurse (228,817,801 samples, 0.04%)</title><rect x="784.5" y="2037" width="0.4" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="787.45" y="2047.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (55,062,137 samples, 0.01%)</title><rect x="940.8" y="1973" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="943.80" y="1983.5" ></text>
</g>
<g >
<title>simple_copy_to_iter (59,110,287 samples, 0.01%)</title><rect x="186.9" y="1845" width="0.1" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="189.92" y="1855.5" ></text>
</g>
<g >
<title>poll_freewait (244,842,999 samples, 0.04%)</title><rect x="196.1" y="1925" width="0.4" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="199.05" y="1935.5" ></text>
</g>
<g >
<title>blk_mq_run_hw_queue (144,329,100 samples, 0.02%)</title><rect x="11.9" y="1941" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="14.85" y="1951.5" ></text>
</g>
<g >
<title>strlen@plt (88,487,209 samples, 0.01%)</title><rect x="1111.6" y="2037" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1114.64" y="2047.5" ></text>
</g>
<g >
<title>ExecStoreBufferHeapTuple (56,044,589 samples, 0.01%)</title><rect x="417.1" y="2037" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="420.07" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (9,390,617,841 samples, 1.57%)</title><rect x="561.3" y="197" width="18.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="564.28" y="207.5" ></text>
</g>
<g >
<title>ExecPushExprSetupSteps (203,169,145 samples, 0.03%)</title><rect x="414.8" y="2037" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="417.80" y="2047.5" ></text>
</g>
<g >
<title>secure_read (284,265,800 samples, 0.05%)</title><rect x="921.2" y="2037" width="0.6" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="924.23" y="2047.5" ></text>
</g>
<g >
<title>ctx_sched_out (56,500,502 samples, 0.01%)</title><rect x="302.6" y="1797" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="305.62" y="1807.5" ></text>
</g>
<g >
<title>pq_getbyte (195,319,633 samples, 0.03%)</title><rect x="639.1" y="2021" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="642.05" y="2031.5" ></text>
</g>
<g >
<title>_raw_spin_lock (226,812,591 samples, 0.04%)</title><rect x="90.4" y="1797" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="93.38" y="1807.5" ></text>
</g>
<g >
<title>__update_load_avg_se (55,123,242 samples, 0.01%)</title><rect x="1151.1" y="1829" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1154.12" y="1839.5" ></text>
</g>
<g >
<title>apparmor_socket_recvmsg (113,498,780 samples, 0.02%)</title><rect x="900.1" y="1925" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="903.08" y="1935.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (52,225,624 samples, 0.01%)</title><rect x="748.0" y="1973" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="751.03" y="1983.5" ></text>
</g>
<g >
<title>schedule (53,655,523 samples, 0.01%)</title><rect x="997.6" y="1925" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1000.64" y="1935.5" ></text>
</g>
<g >
<title>_raw_spin_lock (80,180,587 samples, 0.01%)</title><rect x="557.9" y="1669" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="560.85" y="1679.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (172,502,138 samples, 0.03%)</title><rect x="91.7" y="1733" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="94.66" y="1743.5" ></text>
</g>
<g >
<title>strlen@plt (54,658,680 samples, 0.01%)</title><rect x="162.0" y="2021" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="164.98" y="2031.5" ></text>
</g>
<g >
<title>sched_clock_cpu (56,270,981 samples, 0.01%)</title><rect x="725.3" y="1813" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="728.25" y="1823.5" ></text>
</g>
<g >
<title>restore_fpregs_from_fpstate (56,289,811 samples, 0.01%)</title><rect x="191.4" y="1925" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="194.44" y="1935.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (174,539,800 samples, 0.03%)</title><rect x="321.4" y="2053" width="0.3" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text x="324.38" y="2063.5" ></text>
</g>
<g >
<title>blk_mq_dispatch_rq_list (56,515,670 samples, 0.01%)</title><rect x="10.7" y="1893" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="13.68" y="1903.5" ></text>
</g>
<g >
<title>is_vmalloc_addr (115,199,557 samples, 0.02%)</title><rect x="914.0" y="1797" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="917.03" y="1807.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (56,032,137 samples, 0.01%)</title><rect x="776.9" y="1909" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="779.88" y="1919.5" ></text>
</g>
<g >
<title>setTargetTable (59,942,745 samples, 0.01%)</title><rect x="641.6" y="2021" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="644.58" y="2031.5" ></text>
</g>
<g >
<title>aa_unix_msg_perm (57,762,822 samples, 0.01%)</title><rect x="665.0" y="1925" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="667.98" y="1935.5" ></text>
</g>
<g >
<title>check_stack_depth (2,003,932,753 samples, 0.34%)</title><rect x="773.0" y="2037" width="4.0" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="776.04" y="2047.5" ></text>
</g>
<g >
<title>irqentry_exit (137,660,374 samples, 0.02%)</title><rect x="1078.7" y="2005" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1081.69" y="2015.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (83,049,259 samples, 0.01%)</title><rect x="1125.3" y="2037" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1128.27" y="2047.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (55,999,065 samples, 0.01%)</title><rect x="633.3" y="1957" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="636.35" y="1967.5" ></text>
</g>
<g >
<title>ctx_groups_sched_in (80,227,309 samples, 0.01%)</title><rect x="527.7" y="1749" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="530.65" y="1759.5" ></text>
</g>
<g >
<title>pollwake (17,507,278,543 samples, 2.93%)</title><rect x="692.0" y="1877" width="34.6" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" />
<text x="695.05" y="1887.5" >po..</text>
</g>
<g >
<title>switch_mm_irqs_off (169,591,753 samples, 0.03%)</title><rect x="205.7" y="1877" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="208.67" y="1887.5" ></text>
</g>
<g >
<title>mutex_lock (192,665,558 samples, 0.03%)</title><rect x="183.3" y="1877" width="0.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="186.30" y="1887.5" ></text>
</g>
<g >
<title>extract_nonindex_conditions (138,832,543 samples, 0.02%)</title><rect x="802.7" y="2037" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="805.67" y="2047.5" ></text>
</g>
<g >
<title>PreCommit_on_commit_actions (115,022,016 samples, 0.02%)</title><rect x="306.6" y="2053" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="309.59" y="2063.5" ></text>
</g>
<g >
<title>LockRelease (196,493,764 samples, 0.03%)</title><rect x="438.8" y="2037" width="0.4" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="441.78" y="2047.5" ></text>
</g>
<g >
<title>__calc_delta.constprop.0 (57,825,216 samples, 0.01%)</title><rect x="551.0" y="1621" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="553.98" y="1631.5" ></text>
</g>
<g >
<title>__wake_up (56,780,393 samples, 0.01%)</title><rect x="343.3" y="1829" width="0.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="346.31" y="1839.5" ></text>
</g>
<g >
<title>update_process_times (57,321,497 samples, 0.01%)</title><rect x="750.7" y="1909" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="753.67" y="1919.5" ></text>
</g>
<g >
<title>available_idle_cpu (58,590,080 samples, 0.01%)</title><rect x="354.2" y="1701" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="357.22" y="1711.5" ></text>
</g>
<g >
<title>psi_group_change (118,615,792 samples, 0.02%)</title><rect x="1184.8" y="1941" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="1187.78" y="1951.5" ></text>
</g>
<g >
<title>recv (198,255,166 samples, 0.03%)</title><rect x="189.1" y="2037" width="0.4" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="192.12" y="2047.5" ></text>
</g>
<g >
<title>blk_mq_complete_request (57,766,097 samples, 0.01%)</title><rect x="1188.5" y="1685" width="0.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1191.55" y="1695.5" ></text>
</g>
<g >
<title>_bt_checkpage (5,351,335,919 samples, 0.90%)</title><rect x="730.1" y="2037" width="10.5" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="733.09" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1733" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1743.5" ></text>
</g>
<g >
<title>__schedule (5,135,192,326 samples, 0.86%)</title><rect x="548.2" y="1701" width="10.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="551.21" y="1711.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (486,000,067 samples, 0.08%)</title><rect x="1180.0" y="1877" width="1.0" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1182.99" y="1887.5" ></text>
</g>
<g >
<title>kthread (59,379,595 samples, 0.01%)</title><rect x="10.8" y="2021" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="13.79" y="2031.5" ></text>
</g>
<g >
<title>fix_indexqual_clause (90,533,667 samples, 0.02%)</title><rect x="1044.9" y="2053" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="1047.91" y="2063.5" ></text>
</g>
<g >
<title>IsSystemClass (83,539,235 samples, 0.01%)</title><rect x="436.9" y="2037" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="439.91" y="2047.5" ></text>
</g>
<g >
<title>_raw_spin_lock (113,402,381 samples, 0.02%)</title><rect x="1102.9" y="1749" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1105.85" y="1759.5" ></text>
</g>
<g >
<title>blkcg_maybe_throttle_current (55,409,039 samples, 0.01%)</title><rect x="988.1" y="1989" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="991.15" y="1999.5" ></text>
</g>
<g >
<title>skb_unlink (141,729,597 samples, 0.02%)</title><rect x="912.1" y="1893" width="0.3" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="915.07" y="1903.5" ></text>
</g>
<g >
<title>update_curr (197,314,488 samples, 0.03%)</title><rect x="145.7" y="1669" width="0.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="148.72" y="1679.5" ></text>
</g>
<g >
<title>enqueue_entity (52,519,516 samples, 0.01%)</title><rect x="1180.3" y="1733" width="0.1" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="1183.28" y="1743.5" ></text>
</g>
<g >
<title>__alloc_skb (7,044,817,097 samples, 1.18%)</title><rect x="116.9" y="1861" width="13.9" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="119.89" y="1871.5" ></text>
</g>
<g >
<title>bpf_overflow_handler (171,073,014 samples, 0.03%)</title><rect x="279.1" y="1909" width="0.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="282.08" y="1919.5" ></text>
</g>
<g >
<title>__check_object_size (82,888,827 samples, 0.01%)</title><rect x="474.2" y="1829" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="477.23" y="1839.5" ></text>
</g>
<g >
<title>local_clock (85,515,600 samples, 0.01%)</title><rect x="1024.3" y="1813" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="1027.34" y="1823.5" ></text>
</g>
<g >
<title>perf_event_update_time (56,078,602 samples, 0.01%)</title><rect x="1024.2" y="1781" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="1027.23" y="1791.5" ></text>
</g>
<g >
<title>ep_item_poll.isra.0 (523,029,660 samples, 0.09%)</title><rect x="24.6" y="1877" width="1.0" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="27.55" y="1887.5" ></text>
</g>
<g >
<title>ext4_buffered_write_iter (3,424,795,989 samples, 0.57%)</title><rect x="943.8" y="1941" width="6.8" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="946.81" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (27,981,581,082 samples, 4.68%)</title><rect x="524.8" y="1941" width="55.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="527.81" y="1951.5" >[unkn..</text>
</g>
<g >
<title>PQconsumeInput (199,640,342 samples, 0.03%)</title><rect x="41.9" y="2053" width="0.4" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="44.95" y="2063.5" ></text>
</g>
<g >
<title>enqueue_task_fair (452,339,255 samples, 0.08%)</title><rect x="1103.5" y="1733" width="0.9" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="1106.52" y="1743.5" ></text>
</g>
<g >
<title>ep_poll_callback (54,158,423 samples, 0.01%)</title><rect x="367.7" y="1845" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="370.69" y="1855.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (147,530,759 samples, 0.02%)</title><rect x="1015.6" y="1861" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1018.62" y="1871.5" ></text>
</g>
<g >
<title>heap_compute_data_size (141,118,001 samples, 0.02%)</title><rect x="1079.7" y="2053" width="0.3" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="1082.75" y="2063.5" ></text>
</g>
<g >
<title>notifier_call_chain (2,171,279,589 samples, 0.36%)</title><rect x="528.7" y="1829" width="4.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="531.70" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1893" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1903.5" ></text>
</g>
<g >
<title>update_cfs_group (52,765,873 samples, 0.01%)</title><rect x="357.6" y="1717" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="360.58" y="1727.5" ></text>
</g>
<g >
<title>available_idle_cpu (54,474,667 samples, 0.01%)</title><rect x="535.5" y="1541" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="538.47" y="1551.5" ></text>
</g>
<g >
<title>xas_descend (56,399,714 samples, 0.01%)</title><rect x="497.7" y="1813" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="500.75" y="1823.5" ></text>
</g>
<g >
<title>__virtscsi_add_cmd (55,591,049 samples, 0.01%)</title><rect x="12.0" y="1813" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="14.96" y="1823.5" ></text>
</g>
<g >
<title>__schedule (51,292,816 samples, 0.01%)</title><rect x="449.8" y="1941" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="452.80" y="1951.5" ></text>
</g>
<g >
<title>__cond_resched (84,044,081 samples, 0.01%)</title><rect x="673.7" y="1845" width="0.2" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="676.69" y="1855.5" ></text>
</g>
<g >
<title>__wrgsbase_inactive (54,528,596 samples, 0.01%)</title><rect x="205.1" y="2037" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="208.06" y="2047.5" ></text>
</g>
<g >
<title>update_load_avg (381,443,684 samples, 0.06%)</title><rect x="30.5" y="1829" width="0.8" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="33.50" y="1839.5" ></text>
</g>
<g >
<title>__check_heap_object (111,142,458 samples, 0.02%)</title><rect x="185.3" y="1765" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="188.30" y="1775.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (54,423,336 samples, 0.01%)</title><rect x="673.7" y="1813" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="676.69" y="1823.5" ></text>
</g>
<g >
<title>ttwu_do_activate (1,104,200,479 samples, 0.18%)</title><rect x="535.6" y="1589" width="2.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="538.63" y="1599.5" ></text>
</g>
<g >
<title>update_cfs_group (179,955,041 samples, 0.03%)</title><rect x="707.9" y="1765" width="0.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="710.91" y="1775.5" ></text>
</g>
<g >
<title>strlower_c (165,406,999 samples, 0.03%)</title><rect x="930.3" y="2037" width="0.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="933.34" y="2047.5" ></text>
</g>
<g >
<title>__schedule (65,057,585 samples, 0.01%)</title><rect x="441.4" y="1941" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="444.38" y="1951.5" ></text>
</g>
<g >
<title>blk_mq_submit_bio (313,417,070 samples, 0.05%)</title><rect x="1037.6" y="1861" width="0.6" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="1040.59" y="1871.5" ></text>
</g>
<g >
<title>lookup_nulls_elem_raw (259,354,711 samples, 0.04%)</title><rect x="472.8" y="1845" width="0.5" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="475.83" y="1855.5" ></text>
</g>
<g >
<title>match_clause_to_index.part.0 (327,877,960 samples, 0.05%)</title><rect x="1113.1" y="2053" width="0.7" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="1116.15" y="2063.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (424,411,412 samples, 0.07%)</title><rect x="205.2" y="1925" width="0.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="208.17" y="1935.5" ></text>
</g>
<g >
<title>__task_pid_nr_ns (89,478,537 samples, 0.01%)</title><rect x="1099.9" y="1973" width="0.2" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text x="1102.94" y="1983.5" ></text>
</g>
<g >
<title>ExecInterpExpr (646,504,024 samples, 0.11%)</title><rect x="410.8" y="2037" width="1.3" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text x="413.79" y="2047.5" ></text>
</g>
<g >
<title>__wake_up_common (1,548,713,471 samples, 0.26%)</title><rect x="1102.4" y="1829" width="3.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="1105.41" y="1839.5" ></text>
</g>
<g >
<title>transformAExprOp (56,595,308 samples, 0.01%)</title><rect x="1168.2" y="2053" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1171.19" y="2063.5" ></text>
</g>
<g >
<title>do_user_addr_fault (312,095,004 samples, 0.05%)</title><rect x="947.7" y="1845" width="0.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="950.70" y="1855.5" ></text>
</g>
<g >
<title>makeRangeVar (115,122,157 samples, 0.02%)</title><rect x="635.4" y="2021" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="638.41" y="2031.5" ></text>
</g>
<g >
<title>__wake_up (2,002,221,992 samples, 0.33%)</title><rect x="1101.9" y="1893" width="4.0" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="1104.91" y="1903.5" ></text>
</g>
<g >
<title>pick_next_task_fair (1,946,011,460 samples, 0.33%)</title><rect x="82.8" y="1797" width="3.9" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="85.85" y="1807.5" ></text>
</g>
<g >
<title>available_idle_cpu (57,353,049 samples, 0.01%)</title><rect x="481.5" y="1685" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="484.52" y="1695.5" ></text>
</g>
<g >
<title>[libc.so.6] (727,328,753 samples, 0.12%)</title><rect x="387.1" y="2005" width="1.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="390.09" y="2015.5" ></text>
</g>
<g >
<title>_bt_readfirstpage (111,936,493 samples, 0.02%)</title><rect x="598.0" y="2021" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="601.00" y="2031.5" ></text>
</g>
<g >
<title>fix_scan_expr_walker (141,686,059 samples, 0.02%)</title><rect x="806.0" y="2037" width="0.3" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="809.03" y="2047.5" ></text>
</g>
<g >
<title>update_curr (285,796,191 samples, 0.05%)</title><rect x="654.6" y="1893" width="0.6" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="657.61" y="1903.5" ></text>
</g>
<g >
<title>futex_wait (232,890,161 samples, 0.04%)</title><rect x="506.4" y="1893" width="0.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="509.43" y="1903.5" ></text>
</g>
<g >
<title>update_curr (87,345,429 samples, 0.01%)</title><rect x="192.9" y="1797" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="195.89" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1397" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1407.5" ></text>
</g>
<g >
<title>ep_item_poll.isra.0 (90,667,221 samples, 0.02%)</title><rect x="992.6" y="1941" width="0.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="995.55" y="1951.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (58,954,960 samples, 0.01%)</title><rect x="119.2" y="1813" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="122.18" y="1823.5" ></text>
</g>
<g >
<title>folio_wait_bit_common (352,743,867 samples, 0.06%)</title><rect x="1039.3" y="1893" width="0.7" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="1042.26" y="1903.5" ></text>
</g>
<g >
<title>palloc (808,987,974 samples, 0.14%)</title><rect x="860.7" y="2037" width="1.6" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="863.68" y="2047.5" ></text>
</g>
<g >
<title>RelationGetNumberOfBlocksInFork (243,629,378 samples, 0.04%)</title><rect x="459.3" y="2037" width="0.5" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="462.31" y="2047.5" ></text>
</g>
<g >
<title>SlruSelectLRUPage (83,667,321 samples, 0.01%)</title><rect x="466.7" y="2037" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="469.67" y="2047.5" ></text>
</g>
<g >
<title>__futex_wait (285,946,338 samples, 0.05%)</title><rect x="372.7" y="1941" width="0.6" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="375.72" y="1951.5" ></text>
</g>
<g >
<title>futex_wait (6,882,003,014 samples, 1.15%)</title><rect x="546.8" y="1765" width="13.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="549.81" y="1775.5" ></text>
</g>
<g >
<title>ExecFindJunkAttributeInTlist (197,469,918 samples, 0.03%)</title><rect x="405.7" y="2037" width="0.4" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="408.70" y="2047.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (230,982,007 samples, 0.04%)</title><rect x="352.0" y="1957" width="0.5" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="355.03" y="1967.5" ></text>
</g>
<g >
<title>compactify_tuples (231,685,447 samples, 0.04%)</title><rect x="967.2" y="2053" width="0.5" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="970.20" y="2063.5" ></text>
</g>
<g >
<title>__wake_up_common (90,285,377 samples, 0.02%)</title><rect x="1099.1" y="1861" width="0.2" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="1102.10" y="1871.5" ></text>
</g>
<g >
<title>sched_clock (56,270,981 samples, 0.01%)</title><rect x="725.3" y="1797" width="0.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="728.25" y="1807.5" ></text>
</g>
<g >
<title>blk_mq_sched_dispatch_requests (53,434,795 samples, 0.01%)</title><rect x="10.2" y="1925" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="13.18" y="1935.5" ></text>
</g>
<g >
<title>ttwu_do_activate (181,996,574 samples, 0.03%)</title><rect x="279.8" y="1749" width="0.4" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="282.82" y="1759.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (115,704,222 samples, 0.02%)</title><rect x="652.4" y="1909" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="655.41" y="1919.5" ></text>
</g>
<g >
<title>__refill_stock (255,006,798 samples, 0.04%)</title><rect x="130.1" y="1781" width="0.5" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="133.12" y="1791.5" ></text>
</g>
<g >
<title>__sys_recvfrom (60,427,144 samples, 0.01%)</title><rect x="898.7" y="1973" width="0.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="901.66" y="1983.5" ></text>
</g>
<g >
<title>[libc.so.6] (114,336,734 samples, 0.02%)</title><rect x="109.5" y="2005" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="112.49" y="2015.5" ></text>
</g>
<g >
<title>switch_fpu_return (145,146,436 samples, 0.02%)</title><rect x="191.3" y="1941" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="194.27" y="1951.5" ></text>
</g>
<g >
<title>query_or_expression_tree_walker_impl (117,015,377 samples, 0.02%)</title><rect x="887.7" y="2037" width="0.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="890.74" y="2047.5" ></text>
</g>
<g >
<title>[libc.so.6] (2,694,842,425 samples, 0.45%)</title><rect x="368.1" y="2053" width="5.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="371.08" y="2063.5" ></text>
</g>
<g >
<title>get_timeout_active (363,647,644 samples, 0.06%)</title><rect x="1057.0" y="2053" width="0.7" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="1059.98" y="2063.5" ></text>
</g>
<g >
<title>[libc.so.6] (375,282,848 samples, 0.06%)</title><rect x="506.2" y="1989" width="0.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="509.15" y="1999.5" ></text>
</g>
<g >
<title>irq_work_run_list (85,160,873 samples, 0.01%)</title><rect x="343.3" y="1925" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="346.26" y="1935.5" ></text>
</g>
<g >
<title>list_delete_ptr (168,855,876 samples, 0.03%)</title><rect x="843.2" y="2037" width="0.4" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="846.25" y="2047.5" ></text>
</g>
<g >
<title>clockevents_program_event (59,995,012 samples, 0.01%)</title><rect x="153.2" y="1765" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="156.18" y="1775.5" ></text>
</g>
<g >
<title>ExecComputeSlotInfo.isra.0 (86,776,352 samples, 0.01%)</title><rect x="255.5" y="2053" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="258.55" y="2063.5" ></text>
</g>
<g >
<title>TransactionIdIsCurrentTransactionId (283,329,549 samples, 0.05%)</title><rect x="467.3" y="2037" width="0.6" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="470.34" y="2047.5" ></text>
</g>
<g >
<title>wait_for_completion_io_timeout (446,537,497 samples, 0.07%)</title><rect x="1038.3" y="1925" width="0.8" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1041.26" y="1935.5" ></text>
</g>
<g >
<title>heap_fill_tuple (165,722,733 samples, 0.03%)</title><rect x="825.7" y="2037" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="828.69" y="2047.5" ></text>
</g>
<g >
<title>transformTargetEntry (83,088,072 samples, 0.01%)</title><rect x="1170.2" y="2053" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1173.23" y="2063.5" ></text>
</g>
<g >
<title>exc_page_fault (164,214,601 samples, 0.03%)</title><rect x="486.8" y="2005" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="489.77" y="2015.5" ></text>
</g>
<g >
<title>perf_bp_event (2,978,336,920 samples, 0.50%)</title><rect x="344.6" y="1957" width="5.9" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="347.62" y="1967.5" ></text>
</g>
<g >
<title>compute_bitmap_pages (113,499,008 samples, 0.02%)</title><rect x="617.0" y="2021" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="620.00" y="2031.5" ></text>
</g>
<g >
<title>_raw_spin_lock (76,739,314 samples, 0.01%)</title><rect x="344.4" y="1941" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="347.35" y="1951.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (290,174,517 samples, 0.05%)</title><rect x="191.0" y="1973" width="0.6" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="193.98" y="1983.5" ></text>
</g>
<g >
<title>__schedule (345,990,984 samples, 0.06%)</title><rect x="846.7" y="1957" width="0.6" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="849.67" y="1967.5" ></text>
</g>
<g >
<title>IsSubxactTopXidLogPending (85,288,145 samples, 0.01%)</title><rect x="277.7" y="2053" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="280.73" y="2063.5" ></text>
</g>
<g >
<title>_raw_spin_lock (53,478,386 samples, 0.01%)</title><rect x="707.2" y="1765" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="710.25" y="1775.5" ></text>
</g>
<g >
<title>__send_signal_locked (2,451,285,556 samples, 0.41%)</title><rect x="1101.1" y="1909" width="4.9" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="1104.14" y="1919.5" ></text>
</g>
<g >
<title>bpf_probe_read_user (197,150,195 samples, 0.03%)</title><rect x="529.6" y="1717" width="0.4" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="532.56" y="1727.5" ></text>
</g>
<g >
<title>reconsider_outer_join_clauses (171,739,839 samples, 0.03%)</title><rect x="1138.4" y="2053" width="0.3" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="1141.38" y="2063.5" ></text>
</g>
<g >
<title>AtStart_GUC (56,915,174 samples, 0.01%)</title><rect x="249.0" y="2053" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="252.01" y="2063.5" ></text>
</g>
<g >
<title>check_log_duration (286,916,819 samples, 0.05%)</title><rect x="964.0" y="2053" width="0.6" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="967.00" y="2063.5" ></text>
</g>
<g >
<title>ep_poll_callback (56,780,393 samples, 0.01%)</title><rect x="343.3" y="1845" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="346.31" y="1855.5" ></text>
</g>
<g >
<title>event_sched_out (55,496,476 samples, 0.01%)</title><rect x="359.8" y="1845" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="362.77" y="1855.5" ></text>
</g>
<g >
<title>sd_init_command (114,686,095 samples, 0.02%)</title><rect x="1040.7" y="1717" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1043.66" y="1727.5" ></text>
</g>
<g >
<title>[unknown] (75,672,216,714 samples, 12.66%)</title><rect x="47.5" y="2053" width="149.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="50.49" y="2063.5" >[unknown]</text>
</g>
<g >
<title>do_syscall_64 (53,656,837 samples, 0.01%)</title><rect x="19.0" y="1957" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="22.04" y="1967.5" ></text>
</g>
<g >
<title>pg_server_to_client (86,060,711 samples, 0.01%)</title><rect x="1128.3" y="2053" width="0.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="1131.35" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="869" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="879.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (1,726,580,714 samples, 0.29%)</title><rect x="657.4" y="1909" width="3.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="660.43" y="1919.5" ></text>
</g>
<g >
<title>[libc.so.6] (628,379,505 samples, 0.11%)</title><rect x="239.7" y="2021" width="1.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="242.72" y="2031.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (54,220,547 samples, 0.01%)</title><rect x="1078.5" y="1989" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1081.53" y="1999.5" ></text>
</g>
<g >
<title>pick_next_task (254,801,815 samples, 0.04%)</title><rect x="193.8" y="1845" width="0.5" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="196.79" y="1855.5" ></text>
</g>
<g >
<title>page_counter_cancel (199,814,731 samples, 0.03%)</title><rect x="130.2" y="1733" width="0.4" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="133.23" y="1743.5" ></text>
</g>
<g >
<title>hash_search (1,674,722,459 samples, 0.28%)</title><rect x="820.2" y="2037" width="3.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="823.18" y="2047.5" ></text>
</g>
<g >
<title>RangeVarGetRelidExtended (431,088,443 samples, 0.07%)</title><rect x="309.2" y="2053" width="0.9" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="312.20" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="357" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="367.5" ></text>
</g>
<g >
<title>lookup_nulls_elem_raw (176,531,756 samples, 0.03%)</title><rect x="529.0" y="1701" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="531.99" y="1711.5" ></text>
</g>
<g >
<title>enlargePQExpBuffer (53,013,684 samples, 0.01%)</title><rect x="105.6" y="2021" width="0.1" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="108.60" y="2031.5" ></text>
</g>
<g >
<title>AllocSetDelete (227,441,880 samples, 0.04%)</title><rect x="383.2" y="2037" width="0.4" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="386.18" y="2047.5" ></text>
</g>
<g >
<title>__send (22,706,883,661 samples, 3.80%)</title><rect x="109.7" y="2005" width="44.8" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="112.72" y="2015.5" >__send</text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="997" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1007.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (56,869,960 samples, 0.01%)</title><rect x="580.1" y="1989" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="583.05" y="1999.5" ></text>
</g>
<g >
<title>__wake_up_common (1,960,505,517 samples, 0.33%)</title><rect x="534.5" y="1701" width="3.9" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="537.50" y="1711.5" ></text>
</g>
<g >
<title>skb_set_owner_w (115,652,137 samples, 0.02%)</title><rect x="130.9" y="1877" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="133.86" y="1887.5" ></text>
</g>
<g >
<title>pqsecure_raw_read (84,556,737 samples, 0.01%)</title><rect x="209.8" y="2053" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="212.80" y="2063.5" ></text>
</g>
<g >
<title>expr_setup_walker (412,975,787 samples, 0.07%)</title><rect x="796.0" y="2037" width="0.8" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="798.97" y="2047.5" ></text>
</g>
<g >
<title>sched_ttwu_pending (84,985,148 samples, 0.01%)</title><rect x="1183.7" y="1957" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="1186.66" y="1967.5" ></text>
</g>
<g >
<title>ReportChangedGUCOptions (359,582,554 samples, 0.06%)</title><rect x="511.7" y="2021" width="0.7" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="514.66" y="2031.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (77,357,119 samples, 0.01%)</title><rect x="32.8" y="1797" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="35.80" y="1807.5" ></text>
</g>
<g >
<title>PQclear@plt (57,424,809 samples, 0.01%)</title><rect x="41.8" y="2053" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="44.84" y="2063.5" ></text>
</g>
<g >
<title>remove_useless_groupby_columns (59,931,593 samples, 0.01%)</title><rect x="918.1" y="2037" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="921.10" y="2047.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (9,123,849,274 samples, 1.53%)</title><rect x="644.8" y="1989" width="18.0" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="647.80" y="1999.5" ></text>
</g>
<g >
<title>security_socket_getpeersec_dgram (113,534,893 samples, 0.02%)</title><rect x="668.6" y="1925" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="671.56" y="1935.5" ></text>
</g>
<g >
<title>ReadBuffer (143,195,317 samples, 0.02%)</title><rect x="454.8" y="2037" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="457.85" y="2047.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (54,189,404 samples, 0.01%)</title><rect x="1186.1" y="1909" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1189.05" y="1919.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (77,357,119 samples, 0.01%)</title><rect x="32.8" y="1813" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="35.80" y="1823.5" ></text>
</g>
<g >
<title>__get_user_8 (425,580,141 samples, 0.07%)</title><rect x="544.9" y="1765" width="0.8" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="547.89" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (27,981,581,082 samples, 4.68%)</title><rect x="524.8" y="1957" width="55.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="527.81" y="1967.5" >[unkn..</text>
</g>
<g >
<title>wakeup_preempt (78,653,582 samples, 0.01%)</title><rect x="280.0" y="1733" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="283.02" y="1743.5" ></text>
</g>
<g >
<title>sched_clock (172,008,025 samples, 0.03%)</title><rect x="90.0" y="1781" width="0.4" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="93.04" y="1791.5" ></text>
</g>
<g >
<title>unix_poll (1,964,902,452 samples, 0.33%)</title><rect x="95.4" y="1861" width="3.9" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="98.43" y="1871.5" ></text>
</g>
<g >
<title>XLogNeedsFlush (206,403,280 samples, 0.03%)</title><rect x="366.1" y="2053" width="0.4" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="369.05" y="2063.5" ></text>
</g>
<g >
<title>arch_exit_to_user_mode_prepare.isra.0 (52,714,044 samples, 0.01%)</title><rect x="527.3" y="1829" width="0.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="530.26" y="1839.5" ></text>
</g>
<g >
<title>expression_returns_set (107,685,271 samples, 0.02%)</title><rect x="796.8" y="2037" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="799.79" y="2047.5" ></text>
</g>
<g >
<title>LockAcquireExtended (2,231,064,828 samples, 0.37%)</title><rect x="292.0" y="2053" width="4.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="295.01" y="2063.5" ></text>
</g>
<g >
<title>ctx_sched_out (456,217,877 samples, 0.08%)</title><rect x="556.0" y="1637" width="0.9" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="558.99" y="1647.5" ></text>
</g>
<g >
<title>lapic_next_event (80,933,492 samples, 0.01%)</title><rect x="1185.9" y="1877" width="0.2" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="1188.89" y="1887.5" ></text>
</g>
<g >
<title>__enqueue_entity (51,650,310 samples, 0.01%)</title><rect x="528.2" y="1749" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="531.19" y="1759.5" ></text>
</g>
<g >
<title>schedule (51,511,888 samples, 0.01%)</title><rect x="770.9" y="1957" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="773.90" y="1967.5" ></text>
</g>
<g >
<title>perf_event_task_tick (55,840,878 samples, 0.01%)</title><rect x="794.9" y="1877" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="797.91" y="1887.5" ></text>
</g>
<g >
<title>try_to_wake_up (214,870,638 samples, 0.04%)</title><rect x="265.4" y="1765" width="0.5" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="268.43" y="1775.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (115,704,222 samples, 0.02%)</title><rect x="652.4" y="1893" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="655.41" y="1903.5" ></text>
</g>
<g >
<title>IsInParallelMode (175,448,801 samples, 0.03%)</title><rect x="276.5" y="2053" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="279.49" y="2063.5" ></text>
</g>
<g >
<title>scsi_queue_rq (56,515,670 samples, 0.01%)</title><rect x="10.7" y="1877" width="0.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="13.68" y="1887.5" ></text>
</g>
<g >
<title>restore_fpregs_from_fpstate (141,026,374 samples, 0.02%)</title><rect x="301.7" y="1925" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="304.67" y="1935.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (56,741,827 samples, 0.01%)</title><rect x="1186.3" y="1941" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1189.26" y="1951.5" ></text>
</g>
<g >
<title>skb_free_head (2,275,133,269 samples, 0.38%)</title><rect x="904.7" y="1861" width="4.5" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="907.69" y="1871.5" ></text>
</g>
<g >
<title>generate_useful_gather_paths (57,037,025 samples, 0.01%)</title><rect x="1047.5" y="2053" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="1050.52" y="2063.5" ></text>
</g>
<g >
<title>try_get_folio (57,650,843 samples, 0.01%)</title><rect x="560.0" y="1605" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="562.99" y="1615.5" ></text>
</g>
<g >
<title>hw_breakpoint_del (56,032,137 samples, 0.01%)</title><rect x="776.9" y="1813" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="779.88" y="1823.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (135,886,104 samples, 0.02%)</title><rect x="324.1" y="2053" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="327.07" y="2063.5" ></text>
</g>
<g >
<title>exprTypmod (83,299,319 samples, 0.01%)</title><rect x="621.0" y="2021" width="0.1" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="623.97" y="2031.5" ></text>
</g>
<g >
<title>smgrDoPendingDeletes (303,732,464 samples, 0.05%)</title><rect x="1160.2" y="2053" width="0.6" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1163.15" y="2063.5" ></text>
</g>
<g >
<title>ep_autoremove_wake_function (2,364,248,129 samples, 0.40%)</title><rect x="480.7" y="1781" width="4.7" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="483.70" y="1791.5" ></text>
</g>
<g >
<title>__slab_free (57,519,587 samples, 0.01%)</title><rect x="904.8" y="1845" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="907.80" y="1855.5" ></text>
</g>
<g >
<title>pg_detoast_datum_copy (118,166,755 samples, 0.02%)</title><rect x="1127.7" y="2053" width="0.3" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="1130.73" y="2063.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (392,632,727 samples, 0.07%)</title><rect x="1166.1" y="2037" width="0.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1169.06" y="2047.5" ></text>
</g>
<g >
<title>add_eq_member (194,677,558 samples, 0.03%)</title><rect x="752.1" y="2037" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="755.05" y="2047.5" ></text>
</g>
<g >
<title>dequeue_entity (200,152,013 samples, 0.03%)</title><rect x="192.8" y="1813" width="0.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="195.78" y="1823.5" ></text>
</g>
<g >
<title>rewriteTargetListIU (426,434,739 samples, 0.07%)</title><rect x="919.3" y="2037" width="0.9" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="922.34" y="2047.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (57,321,497 samples, 0.01%)</title><rect x="750.7" y="1957" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="753.67" y="1967.5" ></text>
</g>
<g >
<title>ProcessClientReadInterrupt (171,469,554 samples, 0.03%)</title><rect x="453.1" y="2037" width="0.3" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="456.10" y="2047.5" ></text>
</g>
<g >
<title>vring_interrupt (53,025,289 samples, 0.01%)</title><rect x="1015.5" y="1765" width="0.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="1018.51" y="1775.5" ></text>
</g>
<g >
<title>drain_obj_stock (1,107,645,402 samples, 0.19%)</title><rect x="684.0" y="1829" width="2.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="687.02" y="1839.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (194,298,806 samples, 0.03%)</title><rect x="615.8" y="1957" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="618.80" y="1967.5" ></text>
</g>
<g >
<title>pgstat_relation_delete_pending_cb (59,118,204 samples, 0.01%)</title><rect x="878.7" y="2037" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="881.70" y="2047.5" ></text>
</g>
<g >
<title>update_curr_se (155,439,704 samples, 0.03%)</title><rect x="355.7" y="1669" width="0.3" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="358.68" y="1679.5" ></text>
</g>
<g >
<title>MarkPortalDone (141,093,200 samples, 0.02%)</title><rect x="442.7" y="2037" width="0.3" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="445.68" y="2047.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (85,808,868 samples, 0.01%)</title><rect x="225.9" y="2053" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="228.91" y="2063.5" ></text>
</g>
<g >
<title>pv_native_set_debugreg (62,110,907 samples, 0.01%)</title><rect x="897.9" y="1813" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="900.95" y="1823.5" ></text>
</g>
<g >
<title>__errno_location@plt (112,843,630 samples, 0.02%)</title><rect x="156.4" y="2037" width="0.2" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="159.41" y="2047.5" ></text>
</g>
<g >
<title>dequeue_entity (53,887,875 samples, 0.01%)</title><rect x="27.1" y="1845" width="0.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="30.08" y="1855.5" ></text>
</g>
<g >
<title>sockfd_lookup_light (84,772,305 samples, 0.01%)</title><rect x="188.0" y="1941" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="190.98" y="1951.5" ></text>
</g>
<g >
<title>__filemap_fdatawait_range (381,294,477 samples, 0.06%)</title><rect x="1039.2" y="1941" width="0.8" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1042.21" y="1951.5" ></text>
</g>
<g >
<title>schedule (112,297,376 samples, 0.02%)</title><rect x="1078.7" y="1973" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1081.74" y="1983.5" ></text>
</g>
<g >
<title>set_pte_range (118,503,061 samples, 0.02%)</title><rect x="499.3" y="1877" width="0.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="502.32" y="1887.5" ></text>
</g>
<g >
<title>__wake_up_common (93,016,533 samples, 0.02%)</title><rect x="437.4" y="1797" width="0.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="440.36" y="1807.5" ></text>
</g>
<g >
<title>ScanKeywords_hash_func (526,147,672 samples, 0.09%)</title><rect x="516.0" y="2021" width="1.0" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="518.98" y="2031.5" ></text>
</g>
<g >
<title>__refill_stock (119,956,337 samples, 0.02%)</title><rect x="686.4" y="1797" width="0.3" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="689.42" y="1807.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (57,321,497 samples, 0.01%)</title><rect x="750.7" y="1973" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="753.67" y="1983.5" ></text>
</g>
<g >
<title>cfree (56,450,925 samples, 0.01%)</title><rect x="190.7" y="2021" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="193.71" y="2031.5" ></text>
</g>
<g >
<title>_bt_first (114,322,054 samples, 0.02%)</title><rect x="748.1" y="2037" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="751.13" y="2047.5" ></text>
</g>
<g >
<title>__pmu_ctx_sched_out (56,032,137 samples, 0.01%)</title><rect x="776.9" y="1861" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="779.88" y="1871.5" ></text>
</g>
<g >
<title>skb_queue_tail (140,883,129 samples, 0.02%)</title><rect x="116.3" y="1893" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="119.32" y="1903.5" ></text>
</g>
<g >
<title>pick_next_task_fair (112,902,165 samples, 0.02%)</title><rect x="897.7" y="1925" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="900.67" y="1935.5" ></text>
</g>
<g >
<title>_raw_spin_rq_lock_irqsave (56,814,674 samples, 0.01%)</title><rect x="1176.4" y="1829" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="1179.42" y="1839.5" ></text>
</g>
<g >
<title>ep_poll_callback (2,620,959,066 samples, 0.44%)</title><rect x="480.4" y="1877" width="5.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="483.36" y="1887.5" ></text>
</g>
<g >
<title>schedule (15,916,022,973 samples, 2.66%)</title><rect x="998.2" y="1909" width="31.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1001.20" y="1919.5" >sc..</text>
</g>
<g >
<title>irq_work_queue (106,210,150 samples, 0.02%)</title><rect x="264.9" y="1861" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="267.85" y="1871.5" ></text>
</g>
<g >
<title>set_next_entity (57,760,830 samples, 0.01%)</title><rect x="555.5" y="1653" width="0.1" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="558.48" y="1663.5" ></text>
</g>
<g >
<title>ext4_io_submit (316,341,706 samples, 0.05%)</title><rect x="1040.9" y="1861" width="0.7" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="1043.94" y="1871.5" ></text>
</g>
<g >
<title>x64_sys_call (755,804,825 samples, 0.13%)</title><rect x="1136.7" y="2005" width="1.5" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1139.67" y="2015.5" ></text>
</g>
<g >
<title>ext4_writepages (340,557,852 samples, 0.06%)</title><rect x="1166.1" y="1909" width="0.7" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="1169.11" y="1919.5" ></text>
</g>
<g >
<title>finalize_plan (116,377,874 samples, 0.02%)</title><rect x="804.5" y="2037" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="807.53" y="2047.5" ></text>
</g>
<g >
<title>default_wake_function (214,870,638 samples, 0.04%)</title><rect x="265.4" y="1781" width="0.5" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="268.43" y="1791.5" ></text>
</g>
<g >
<title>__wake_up_common (2,592,783,083 samples, 0.43%)</title><rect x="480.4" y="1845" width="5.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="483.36" y="1855.5" ></text>
</g>
<g >
<title>asm_sysvec_irq_work (90,285,377 samples, 0.02%)</title><rect x="1099.1" y="2037" width="0.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="1102.10" y="2047.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (144,970,326 samples, 0.02%)</title><rect x="358.7" y="1749" width="0.3" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="361.71" y="1759.5" ></text>
</g>
<g >
<title>arch_exit_to_user_mode_prepare.isra.0 (145,146,436 samples, 0.02%)</title><rect x="191.3" y="1957" width="0.3" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="194.27" y="1967.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (85,394,283 samples, 0.01%)</title><rect x="846.7" y="1925" width="0.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="849.67" y="1935.5" ></text>
</g>
<g >
<title>ext4_do_writepages (340,557,852 samples, 0.06%)</title><rect x="1166.1" y="1893" width="0.7" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1169.11" y="1903.5" ></text>
</g>
<g >
<title>pgwt_get_or_create_system_event (54,685,308 samples, 0.01%)</title><rect x="15.6" y="2037" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="18.59" y="2047.5" ></text>
</g>
<g >
<title>__errno_location@plt (81,268,094 samples, 0.01%)</title><rect x="942.3" y="2053" width="0.2" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="945.31" y="2063.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (56,363,517 samples, 0.01%)</title><rect x="298.8" y="2053" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="301.83" y="2063.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (92,725,070 samples, 0.02%)</title><rect x="897.9" y="1925" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="900.95" y="1935.5" ></text>
</g>
<g >
<title>do_syscall_64 (53,689,056 samples, 0.01%)</title><rect x="1158.8" y="2021" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1161.80" y="2031.5" ></text>
</g>
<g >
<title>has_unique_index (171,081,194 samples, 0.03%)</title><rect x="624.3" y="2021" width="0.3" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="627.28" y="2031.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (117,605,230 samples, 0.02%)</title><rect x="534.9" y="1573" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="537.90" y="1583.5" ></text>
</g>
<g >
<title>__strdup (225,391,077 samples, 0.04%)</title><rect x="48.3" y="2021" width="0.5" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="51.33" y="2031.5" ></text>
</g>
<g >
<title>setup_simple_rel_arrays (113,269,693 samples, 0.02%)</title><rect x="1159.1" y="2053" width="0.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1162.08" y="2063.5" ></text>
</g>
<g >
<title>ctx_sched_out (81,083,764 samples, 0.01%)</title><rect x="528.4" y="1749" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="531.36" y="1759.5" ></text>
</g>
<g >
<title>bms_is_member (177,648,427 samples, 0.03%)</title><rect x="765.5" y="2037" width="0.3" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="768.47" y="2047.5" ></text>
</g>
<g >
<title>resched_curr (195,149,203 samples, 0.03%)</title><rect x="484.6" y="1685" width="0.3" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="487.55" y="1695.5" ></text>
</g>
<g >
<title>notify_die (2,171,279,589 samples, 0.36%)</title><rect x="528.7" y="1845" width="4.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="531.70" y="1855.5" ></text>
</g>
<g >
<title>update_min_vruntime (53,484,591 samples, 0.01%)</title><rect x="79.4" y="1749" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="82.39" y="1759.5" ></text>
</g>
<g >
<title>set_next_buddy (403,699,888 samples, 0.07%)</title><rect x="1006.5" y="1861" width="0.8" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="1009.54" y="1871.5" ></text>
</g>
<g >
<title>psi_flags_change (55,332,200 samples, 0.01%)</title><rect x="714.9" y="1797" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="717.91" y="1807.5" ></text>
</g>
<g >
<title>avg_vruntime (56,648,315 samples, 0.01%)</title><rect x="1151.4" y="1829" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1154.41" y="1839.5" ></text>
</g>
<g >
<title>asm_exc_debug (4,118,453,522 samples, 0.69%)</title><rect x="526.0" y="1877" width="8.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="528.98" y="1887.5" ></text>
</g>
<g >
<title>AtEOXact_Inval (88,836,191 samples, 0.01%)</title><rect x="245.6" y="2053" width="0.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="248.56" y="2063.5" ></text>
</g>
<g >
<title>ppoll (1,239,257,526 samples, 0.21%)</title><rect x="204.1" y="2053" width="2.4" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="207.07" y="2063.5" ></text>
</g>
<g >
<title>ep_poll_callback (1,888,887,816 samples, 0.32%)</title><rect x="1102.1" y="1861" width="3.8" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1105.14" y="1871.5" ></text>
</g>
<g >
<title>kmem_cache_free (161,104,317 samples, 0.03%)</title><rect x="1137.7" y="1877" width="0.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1140.73" y="1887.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (200,944,903 samples, 0.03%)</title><rect x="726.7" y="1893" width="0.4" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="729.66" y="1903.5" ></text>
</g>
<g >
<title>ep_poll_callback (90,285,377 samples, 0.02%)</title><rect x="1099.1" y="1893" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1102.10" y="1903.5" ></text>
</g>
<g >
<title>sd_setup_read_write_cmnd (55,781,102 samples, 0.01%)</title><rect x="1040.8" y="1701" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="1043.78" y="1711.5" ></text>
</g>
<g >
<title>local_clock_noinstr (165,195,251 samples, 0.03%)</title><rect x="553.6" y="1621" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="556.58" y="1631.5" ></text>
</g>
<g >
<title>irqentry_exit (186,288,734 samples, 0.03%)</title><rect x="500.9" y="1989" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="503.91" y="1999.5" ></text>
</g>
<g >
<title>x64_sys_call (488,596,836 samples, 0.08%)</title><rect x="446.9" y="1957" width="1.0" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="449.95" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="485" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="495.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (52,359,012 samples, 0.01%)</title><rect x="486.0" y="2021" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="488.97" y="2031.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (54,862,766 samples, 0.01%)</title><rect x="1146.8" y="1909" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1149.77" y="1919.5" ></text>
</g>
<g >
<title>security_socket_recvmsg (173,997,941 samples, 0.03%)</title><rect x="168.3" y="1909" width="0.4" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="171.32" y="1919.5" ></text>
</g>
<g >
<title>__refill_stock (114,854,087 samples, 0.02%)</title><rect x="685.8" y="1813" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="688.81" y="1823.5" ></text>
</g>
<g >
<title>pick_next_entity (408,742,259 samples, 0.07%)</title><rect x="83.5" y="1781" width="0.8" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="86.52" y="1791.5" ></text>
</g>
<g >
<title>heap_attisnull (193,781,880 samples, 0.03%)</title><rect x="824.8" y="2037" width="0.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="827.79" y="2047.5" ></text>
</g>
<g >
<title>skb_free_head (2,018,842,231 samples, 0.34%)</title><rect x="174.6" y="1845" width="4.0" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="177.63" y="1855.5" ></text>
</g>
<g >
<title>need_update (56,644,942 samples, 0.01%)</title><rect x="1183.3" y="1925" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1186.27" y="1935.5" ></text>
</g>
<g >
<title>match_index_to_operand (164,158,785 samples, 0.03%)</title><rect x="1113.8" y="2053" width="0.3" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="1116.80" y="2063.5" ></text>
</g>
<g >
<title>x2apic_send_IPI_self (150,705,923 samples, 0.03%)</title><rect x="1098.7" y="1813" width="0.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="1101.75" y="1823.5" ></text>
</g>
<g >
<title>record_times (55,717,978 samples, 0.01%)</title><rect x="1027.6" y="1845" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="1030.64" y="1855.5" ></text>
</g>
<g >
<title>ExecUpdateEpilogue.isra.0 (58,087,108 samples, 0.01%)</title><rect x="503.2" y="2021" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="506.15" y="2031.5" ></text>
</g>
<g >
<title>ProcessQuery (309,798,973 samples, 0.05%)</title><rect x="453.8" y="2037" width="0.6" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="456.78" y="2047.5" ></text>
</g>
<g >
<title>[libm.so.6] (714,897,436 samples, 0.12%)</title><rect x="373.4" y="2053" width="1.4" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="376.40" y="2063.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (76,739,314 samples, 0.01%)</title><rect x="344.4" y="1957" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="347.35" y="1967.5" ></text>
</g>
<g >
<title>__put_user_nocheck_4 (110,500,648 samples, 0.02%)</title><rect x="22.8" y="1925" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="25.75" y="1935.5" ></text>
</g>
<g >
<title>schedule (139,155,661 samples, 0.02%)</title><rect x="590.7" y="1925" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="593.67" y="1935.5" ></text>
</g>
<g >
<title>secure_write (607,073,696 samples, 0.10%)</title><rect x="921.8" y="2037" width="1.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="924.79" y="2047.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (62,496,039 samples, 0.01%)</title><rect x="296.2" y="2021" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="299.18" y="2031.5" ></text>
</g>
<g >
<title>pq_getmessage (292,483,616 samples, 0.05%)</title><rect x="639.4" y="2021" width="0.6" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="642.44" y="2031.5" ></text>
</g>
<g >
<title>__cond_resched (61,506,993 samples, 0.01%)</title><rect x="945.6" y="1877" width="0.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="948.60" y="1887.5" ></text>
</g>
<g >
<title>drm_fbdev_generic_helper_fb_dirty (59,379,595 samples, 0.01%)</title><rect x="10.8" y="1957" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="13.79" y="1967.5" ></text>
</g>
<g >
<title>__pollwait (85,393,407 samples, 0.01%)</title><rect x="195.7" y="1877" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="198.72" y="1887.5" ></text>
</g>
<g >
<title>is_dummy_rel (172,798,745 samples, 0.03%)</title><rect x="1097.9" y="2053" width="0.3" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text x="1100.89" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1477" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1487.5" ></text>
</g>
<g >
<title>wake_affine (490,322,986 samples, 0.08%)</title><rect x="138.7" y="1717" width="0.9" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="141.68" y="1727.5" ></text>
</g>
<g >
<title>[libc.so.6] (134,513,875 samples, 0.02%)</title><rect x="215.2" y="2021" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="218.21" y="2031.5" ></text>
</g>
<g >
<title>mutex_lock (241,315,777 samples, 0.04%)</title><rect x="25.6" y="1877" width="0.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="28.64" y="1887.5" ></text>
</g>
<g >
<title>tick_nohz_idle_stop_tick (139,364,022 samples, 0.02%)</title><rect x="1189.5" y="1909" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1192.51" y="1919.5" ></text>
</g>
<g >
<title>heapam_slot_callbacks (222,804,828 samples, 0.04%)</title><rect x="833.1" y="2037" width="0.4" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="836.06" y="2047.5" ></text>
</g>
<g >
<title>skb_release_head_state (1,117,575,527 samples, 0.19%)</title><rect x="909.2" y="1877" width="2.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="912.18" y="1887.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,013,943,638 samples, 0.50%)</title><rect x="190.9" y="1989" width="6.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="193.93" y="1999.5" ></text>
</g>
<g >
<title>__dequeue_entity (538,720,586 samples, 0.09%)</title><rect x="84.4" y="1765" width="1.0" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="87.38" y="1775.5" ></text>
</g>
<g >
<title>memcg_account_kmem (52,334,272 samples, 0.01%)</title><rect x="686.3" y="1813" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="689.26" y="1823.5" ></text>
</g>
<g >
<title>cpuacct_charge (147,954,255 samples, 0.02%)</title><rect x="76.7" y="1749" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="79.68" y="1759.5" ></text>
</g>
<g >
<title>sysvec_irq_work (60,067,863 samples, 0.01%)</title><rect x="471.6" y="1957" width="0.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="474.64" y="1967.5" ></text>
</g>
<g >
<title>pqResultAlloc (428,568,866 samples, 0.07%)</title><rect x="208.8" y="2053" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="211.79" y="2063.5" ></text>
</g>
<g >
<title>__wake_up_common (2,002,221,992 samples, 0.33%)</title><rect x="1101.9" y="1877" width="4.0" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="1104.91" y="1887.5" ></text>
</g>
<g >
<title>filemap_fdatawrite_wbc (340,557,852 samples, 0.06%)</title><rect x="1166.1" y="1941" width="0.7" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="1169.11" y="1951.5" ></text>
</g>
<g >
<title>rseq_ip_fixup (249,185,464 samples, 0.04%)</title><rect x="20.7" y="1957" width="0.5" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="23.72" y="1967.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,246,235,331 samples, 0.54%)</title><rect x="1037.1" y="2037" width="6.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1040.15" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (12,012,745,495 samples, 2.01%)</title><rect x="164.6" y="2005" width="23.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="167.64" y="2015.5" >e..</text>
</g>
<g >
<title>list_free_private (54,440,181 samples, 0.01%)</title><rect x="1107.6" y="2053" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1110.58" y="2063.5" ></text>
</g>
<g >
<title>switch_mm_irqs_off (254,821,032 samples, 0.04%)</title><rect x="1028.4" y="1877" width="0.5" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1031.36" y="1887.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,153,246,423 samples, 0.19%)</title><rect x="591.0" y="2005" width="2.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="593.99" y="2015.5" ></text>
</g>
<g >
<title>query_planner (364,959,138 samples, 0.06%)</title><rect x="888.0" y="2037" width="0.7" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="890.97" y="2047.5" ></text>
</g>
<g >
<title>core_yy_switch_to_buffer (88,208,942 samples, 0.01%)</title><rect x="779.6" y="2037" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="782.58" y="2047.5" ></text>
</g>
<g >
<title>virtscsi_req_done (57,766,097 samples, 0.01%)</title><rect x="1188.5" y="1749" width="0.2" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="1191.55" y="1759.5" ></text>
</g>
<g >
<title>select_task_rq (223,325,292 samples, 0.04%)</title><rect x="535.2" y="1589" width="0.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="538.19" y="1599.5" ></text>
</g>
<g >
<title>get_tablespace_page_costs (199,107,680 samples, 0.03%)</title><rect x="811.8" y="2037" width="0.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="814.77" y="2047.5" ></text>
</g>
<g >
<title>unix_poll (141,064,042 samples, 0.02%)</title><rect x="99.3" y="1877" width="0.3" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="102.31" y="1887.5" ></text>
</g>
<g >
<title>bpf_probe_read_user (528,520,782 samples, 0.09%)</title><rect x="473.7" y="1861" width="1.1" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="476.73" y="1871.5" ></text>
</g>
<g >
<title>bpf_ktime_get_ns (57,453,681 samples, 0.01%)</title><rect x="529.4" y="1717" width="0.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="532.45" y="1727.5" ></text>
</g>
<g >
<title>tts_buffer_heap_materialize (147,683,282 samples, 0.02%)</title><rect x="939.6" y="2037" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="942.60" y="2047.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (51,054,532 samples, 0.01%)</title><rect x="1157.6" y="1989" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1160.60" y="1999.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (53,454,180 samples, 0.01%)</title><rect x="1181.9" y="1893" width="0.1" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="1184.92" y="1903.5" ></text>
</g>
<g >
<title>perf_ctx_disable (149,638,023 samples, 0.03%)</title><rect x="1013.9" y="1845" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="1016.87" y="1855.5" ></text>
</g>
<g >
<title>page_counter_cancel (57,155,469 samples, 0.01%)</title><rect x="126.3" y="1733" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="129.31" y="1743.5" ></text>
</g>
<g >
<title>task_h_load (83,235,323 samples, 0.01%)</title><rect x="138.5" y="1717" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="141.51" y="1727.5" ></text>
</g>
<g >
<title>__htab_map_lookup_elem (58,736,149 samples, 0.01%)</title><rect x="472.4" y="1877" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="475.37" y="1887.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (131,806,002 samples, 0.02%)</title><rect x="359.7" y="1989" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="362.67" y="1999.5" ></text>
</g>
<g >
<title>asm_common_interrupt (227,232,715 samples, 0.04%)</title><rect x="1175.5" y="1925" width="0.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1178.49" y="1935.5" ></text>
</g>
<g >
<title>pick_next_task (139,179,642 samples, 0.02%)</title><rect x="343.8" y="1957" width="0.3" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="346.80" y="1967.5" ></text>
</g>
<g >
<title>tick_nohz_idle_enter (113,636,248 samples, 0.02%)</title><rect x="1185.3" y="1989" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="1188.27" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="373" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="383.5" ></text>
</g>
<g >
<title>__switch_to (56,975,535 samples, 0.01%)</title><rect x="74.6" y="1813" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="77.64" y="1823.5" ></text>
</g>
<g >
<title>pick_eevdf (296,479,723 samples, 0.05%)</title><rect x="1017.4" y="1829" width="0.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1020.41" y="1839.5" ></text>
</g>
<g >
<title>pick_next_entity (56,537,055 samples, 0.01%)</title><rect x="194.0" y="1813" width="0.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="197.02" y="1823.5" ></text>
</g>
<g >
<title>__folio_mark_dirty (417,775,329 samples, 0.07%)</title><rect x="946.6" y="1829" width="0.8" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="949.57" y="1839.5" ></text>
</g>
<g >
<title>set_plan_refs (417,167,349 samples, 0.07%)</title><rect x="1156.9" y="2053" width="0.8" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="1159.88" y="2063.5" ></text>
</g>
<g >
<title>prepare_task_switch (2,061,946,199 samples, 0.34%)</title><rect x="656.8" y="1941" width="4.0" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="659.77" y="1951.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,712,126,664 samples, 0.62%)</title><rect x="943.3" y="2037" width="7.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="946.31" y="2047.5" ></text>
</g>
<g >
<title>updateTargetListEntry (55,877,670 samples, 0.01%)</title><rect x="1172.9" y="2053" width="0.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="1175.88" y="2063.5" ></text>
</g>
<g >
<title>ext4_io_submit (75,143,270 samples, 0.01%)</title><rect x="1166.2" y="1877" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="1169.16" y="1887.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (350,974,612 samples, 0.06%)</title><rect x="135.5" y="1749" width="0.7" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="138.50" y="1759.5" ></text>
</g>
<g >
<title>planner (472,181,204 samples, 0.08%)</title><rect x="881.3" y="2037" width="0.9" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="884.26" y="2047.5" ></text>
</g>
<g >
<title>XLogBeginInsert (66,570,835 samples, 0.01%)</title><rect x="486.2" y="2037" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="489.19" y="2047.5" ></text>
</g>
<g >
<title>all_rows_selectable (55,967,924 samples, 0.01%)</title><rect x="755.5" y="2037" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="758.47" y="2047.5" ></text>
</g>
<g >
<title>copyObjectImpl (85,541,969 samples, 0.01%)</title><rect x="968.7" y="2053" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="971.73" y="2063.5" ></text>
</g>
<g >
<title>epoll_wait (28,133,961,410 samples, 4.71%)</title><rect x="975.7" y="2053" width="55.6" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="978.71" y="2063.5" >epoll..</text>
</g>
<g >
<title>futex_wait_queue (5,387,570,316 samples, 0.90%)</title><rect x="547.7" y="1733" width="10.6" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="550.71" y="1743.5" ></text>
</g>
<g >
<title>fput (349,520,003 samples, 0.06%)</title><rect x="99.6" y="1893" width="0.7" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="102.59" y="1903.5" ></text>
</g>
<g >
<title>__handle_mm_fault (2,350,840,848 samples, 0.39%)</title><rect x="1088.2" y="1973" width="4.7" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1091.23" y="1983.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (401,769,754 samples, 0.07%)</title><rect x="695.2" y="1797" width="0.8" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="698.18" y="1807.5" ></text>
</g>
<g >
<title>enqueue_task_fair (176,529,930 samples, 0.03%)</title><rect x="1188.7" y="1733" width="0.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="1191.66" y="1743.5" ></text>
</g>
<g >
<title>__irq_work_queue_local (150,705,923 samples, 0.03%)</title><rect x="1098.7" y="1845" width="0.3" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="1101.75" y="1855.5" ></text>
</g>
<g >
<title>notify_die (257,736,410 samples, 0.04%)</title><rect x="264.6" y="2005" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="267.61" y="2015.5" ></text>
</g>
<g >
<title>ext4_buffered_write_iter (53,656,837 samples, 0.01%)</title><rect x="19.0" y="1861" width="0.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="22.04" y="1871.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (1,481,654,892 samples, 0.25%)</title><rect x="648.3" y="1877" width="3.0" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="651.33" y="1887.5" ></text>
</g>
<g >
<title>AtEOXact_MultiXact (259,154,523 samples, 0.04%)</title><rect x="246.6" y="2053" width="0.5" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="249.63" y="2063.5" ></text>
</g>
<g >
<title>__refill_stock (85,433,284 samples, 0.01%)</title><rect x="126.3" y="1781" width="0.1" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="129.26" y="1791.5" ></text>
</g>
<g >
<title>sysvec_irq_work (2,927,949,713 samples, 0.49%)</title><rect x="480.2" y="2005" width="5.8" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="483.19" y="2015.5" ></text>
</g>
<g >
<title>index_beginscan_internal (59,256,096 samples, 0.01%)</title><rect x="833.9" y="2037" width="0.1" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text x="836.87" y="2047.5" ></text>
</g>
<g >
<title>malloc (62,678,126 samples, 0.01%)</title><rect x="203.9" y="2037" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="206.89" y="2047.5" ></text>
</g>
<g >
<title>irq_work_single (85,160,873 samples, 0.01%)</title><rect x="343.3" y="1909" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="346.26" y="1919.5" ></text>
</g>
<g >
<title>native_write_msr (55,146,136 samples, 0.01%)</title><rect x="484.9" y="1685" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="487.94" y="1695.5" ></text>
</g>
<g >
<title>heap_page_prune_and_freeze (1,824,609,328 samples, 0.31%)</title><rect x="1081.1" y="2053" width="3.6" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="1084.08" y="2063.5" ></text>
</g>
<g >
<title>submit_bio_noacct (369,021,131 samples, 0.06%)</title><rect x="1037.5" y="1909" width="0.8" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1040.53" y="1919.5" ></text>
</g>
<g >
<title>strdup@plt (87,326,687 samples, 0.01%)</title><rect x="189.7" y="2037" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="192.74" y="2047.5" ></text>
</g>
<g >
<title>__put_user_nocheck_4 (623,214,768 samples, 0.10%)</title><rect x="991.0" y="1941" width="1.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="993.97" y="1951.5" ></text>
</g>
<g >
<title>getRTEPermissionInfo (173,844,892 samples, 0.03%)</title><rect x="807.9" y="2037" width="0.4" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="810.93" y="2047.5" ></text>
</g>
<g >
<title>__blk_flush_plug (440,288,827 samples, 0.07%)</title><rect x="1040.1" y="1845" width="0.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1043.07" y="1855.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (57,802,825 samples, 0.01%)</title><rect x="195.8" y="1845" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="198.77" y="1855.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (165,195,251 samples, 0.03%)</title><rect x="553.6" y="1605" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="556.58" y="1615.5" ></text>
</g>
<g >
<title>pick_next_task_fair (194,121,746 samples, 0.03%)</title><rect x="528.0" y="1781" width="0.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="530.98" y="1791.5" ></text>
</g>
<g >
<title>psi_group_change (146,042,192 samples, 0.02%)</title><rect x="661.2" y="1925" width="0.3" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="664.17" y="1935.5" ></text>
</g>
<g >
<title>sysvec_irq_work (3,601,735,477 samples, 0.60%)</title><rect x="352.8" y="2021" width="7.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="355.82" y="2031.5" ></text>
</g>
<g >
<title>get_relation_info (1,450,563,366 samples, 0.24%)</title><rect x="1053.2" y="2053" width="2.8" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="1056.18" y="2063.5" ></text>
</g>
<g >
<title>__wake_up (214,870,638 samples, 0.04%)</title><rect x="265.4" y="1925" width="0.5" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="268.43" y="1935.5" ></text>
</g>
<g >
<title>TransactionIdDidCommit (114,031,389 samples, 0.02%)</title><rect x="466.9" y="2037" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="469.88" y="2047.5" ></text>
</g>
<g >
<title>x64_sys_call (53,689,056 samples, 0.01%)</title><rect x="1158.8" y="2005" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1161.80" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode_prepare (87,963,062 samples, 0.01%)</title><rect x="63.8" y="1941" width="0.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="66.83" y="1951.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (56,268,106 samples, 0.01%)</title><rect x="358.8" y="1717" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="361.77" y="1727.5" ></text>
</g>
<g >
<title>event_sched_out (54,673,059 samples, 0.01%)</title><rect x="528.4" y="1701" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="531.36" y="1711.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (165,004,776 samples, 0.03%)</title><rect x="18.1" y="2037" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="21.12" y="2047.5" ></text>
</g>
<g >
<title>swapper (8,158,610,847 samples, 1.36%)</title><rect x="1173.9" y="2069" width="16.1" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="1176.89" y="2079.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (80,180,587 samples, 0.01%)</title><rect x="557.9" y="1685" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="560.85" y="1695.5" ></text>
</g>
<g >
<title>idr_find (107,642,168 samples, 0.02%)</title><rect x="1100.3" y="1941" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1103.35" y="1951.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (90,125,562 samples, 0.02%)</title><rect x="1029.2" y="1829" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1032.21" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1253" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1263.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (53,995,505 samples, 0.01%)</title><rect x="858.7" y="2021" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="861.67" y="2031.5" ></text>
</g>
<g >
<title>ext4_file_write_iter (3,424,795,989 samples, 0.57%)</title><rect x="943.8" y="1957" width="6.8" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="946.81" y="1967.5" ></text>
</g>
<g >
<title>cpuacct_charge (79,869,397 samples, 0.01%)</title><rect x="28.9" y="1797" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="31.90" y="1807.5" ></text>
</g>
<g >
<title>add_function_cost (57,787,870 samples, 0.01%)</title><rect x="598.5" y="2021" width="0.1" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="601.51" y="2031.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (84,093,996 samples, 0.01%)</title><rect x="447.3" y="1829" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="450.35" y="1839.5" ></text>
</g>
<g >
<title>pick_next_task_fair (1,925,238,558 samples, 0.32%)</title><rect x="1016.5" y="1861" width="3.8" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1019.46" y="1871.5" ></text>
</g>
<g >
<title>__fdget (626,489,357 samples, 0.10%)</title><rect x="665.6" y="1925" width="1.2" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="668.57" y="1935.5" ></text>
</g>
<g >
<title>bms_get_singleton_member (56,404,179 samples, 0.01%)</title><rect x="765.4" y="2037" width="0.1" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="768.36" y="2047.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (616,220,983 samples, 0.10%)</title><rect x="31.7" y="1861" width="1.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="34.73" y="1871.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (165,195,251 samples, 0.03%)</title><rect x="553.6" y="1589" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="556.58" y="1599.5" ></text>
</g>
<g >
<title>set_pathtarget_cost_width (113,708,474 samples, 0.02%)</title><rect x="923.4" y="2037" width="0.2" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="926.38" y="2047.5" ></text>
</g>
<g >
<title>bms_join (86,116,558 samples, 0.01%)</title><rect x="958.5" y="2053" width="0.2" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="961.52" y="2063.5" ></text>
</g>
<g >
<title>__update_load_avg_se (89,160,895 samples, 0.01%)</title><rect x="77.6" y="1749" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="80.63" y="1759.5" ></text>
</g>
<g >
<title>hw_breakpoint_del (995,171,774 samples, 0.17%)</title><rect x="658.4" y="1829" width="1.9" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="661.37" y="1839.5" ></text>
</g>
<g >
<title>ctx_sched_in (1,021,976,343 samples, 0.17%)</title><rect x="551.9" y="1653" width="2.0" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="554.88" y="1663.5" ></text>
</g>
<g >
<title>local_clock (159,134,480 samples, 0.03%)</title><rect x="1013.5" y="1829" width="0.3" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="1016.50" y="1839.5" ></text>
</g>
<g >
<title>__enqueue_entity (591,315,141 samples, 0.10%)</title><rect x="142.2" y="1685" width="1.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="145.17" y="1695.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (81,083,764 samples, 0.01%)</title><rect x="528.4" y="1765" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="531.36" y="1775.5" ></text>
</g>
<g >
<title>tick_nohz_stop_tick (1,077,127,830 samples, 0.18%)</title><rect x="1181.4" y="1957" width="2.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="1184.42" y="1967.5" ></text>
</g>
<g >
<title>rseq_get_rseq_cs (55,981,490 samples, 0.01%)</title><rect x="544.6" y="1781" width="0.1" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="547.62" y="1791.5" ></text>
</g>
<g >
<title>rest_init (853,548,337 samples, 0.14%)</title><rect x="1188.3" y="1973" width="1.7" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="1191.31" y="1983.5" ></text>
</g>
<g >
<title>blk_mq_run_hw_queues (176,849,772 samples, 0.03%)</title><rect x="11.9" y="1957" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="14.85" y="1967.5" ></text>
</g>
<g >
<title>sched_clock_cpu (148,844,227 samples, 0.02%)</title><rect x="1029.1" y="1861" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1032.09" y="1871.5" ></text>
</g>
<g >
<title>asm_exc_debug (87,955,323 samples, 0.01%)</title><rect x="506.2" y="1973" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="509.21" y="1983.5" ></text>
</g>
<g >
<title>place_entity (61,197,758 samples, 0.01%)</title><rect x="1150.5" y="1845" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="1153.55" y="1855.5" ></text>
</g>
<g >
<title>native_write_msr (150,705,923 samples, 0.03%)</title><rect x="1098.7" y="1797" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1101.75" y="1807.5" ></text>
</g>
<g >
<title>default_wake_function (56,991,187 samples, 0.01%)</title><rect x="505.3" y="1749" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="508.29" y="1759.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (338,173,152 samples, 0.06%)</title><rect x="670.8" y="1893" width="0.7" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="673.79" y="1903.5" ></text>
</g>
<g >
<title>try_to_wake_up (2,364,248,129 samples, 0.40%)</title><rect x="480.7" y="1749" width="4.7" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="483.70" y="1759.5" ></text>
</g>
<g >
<title>update_load_avg (82,156,310 samples, 0.01%)</title><rect x="536.6" y="1541" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="539.63" y="1551.5" ></text>
</g>
<g >
<title>irq_work_queue (88,304,509 samples, 0.01%)</title><rect x="279.2" y="1861" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="282.20" y="1871.5" ></text>
</g>
<g >
<title>asm_exc_debug (59,383,744 samples, 0.01%)</title><rect x="266.1" y="2037" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="269.05" y="2047.5" ></text>
</g>
<g >
<title>select_idle_cpu (113,400,048 samples, 0.02%)</title><rect x="481.6" y="1685" width="0.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="484.63" y="1695.5" ></text>
</g>
<g >
<title>generate_base_implied_equalities (113,895,156 samples, 0.02%)</title><rect x="807.2" y="2037" width="0.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="810.20" y="2047.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (116,531,696 samples, 0.02%)</title><rect x="251.7" y="2053" width="0.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="254.74" y="2063.5" ></text>
</g>
<g >
<title>x64_sys_call (3,637,261,202 samples, 0.61%)</title><rect x="943.5" y="2005" width="7.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="946.46" y="2015.5" ></text>
</g>
<g >
<title>exc_page_fault (312,095,004 samples, 0.05%)</title><rect x="947.7" y="1861" width="0.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="950.70" y="1871.5" ></text>
</g>
<g >
<title>ReleaseSysCache (52,746,726 samples, 0.01%)</title><rect x="460.0" y="2037" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="462.96" y="2047.5" ></text>
</g>
<g >
<title>hrtimer_cancel (221,995,539 samples, 0.04%)</title><rect x="1185.7" y="1957" width="0.5" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="1188.72" y="1967.5" ></text>
</g>
<g >
<title>ctx_sched_out (138,068,685 samples, 0.02%)</title><rect x="344.1" y="1909" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="347.08" y="1919.5" ></text>
</g>
<g >
<title>cpuidle_idle_call (4,658,565,846 samples, 0.78%)</title><rect x="1174.5" y="1989" width="9.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1177.47" y="1999.5" ></text>
</g>
<g >
<title>task_h_load (220,712,800 samples, 0.04%)</title><rect x="1148.7" y="1861" width="0.5" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="1151.74" y="1871.5" ></text>
</g>
<g >
<title>__bpf_ringbuf_reserve (74,454,779 samples, 0.01%)</title><rect x="264.7" y="1861" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="267.65" y="1871.5" ></text>
</g>
<g >
<title>irq_work_single (239,397,802 samples, 0.04%)</title><rect x="279.7" y="1957" width="0.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="282.70" y="1967.5" ></text>
</g>
<g >
<title>process_one_work (176,849,772 samples, 0.03%)</title><rect x="11.9" y="1989" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="14.85" y="1999.5" ></text>
</g>
<g >
<title>SS_attach_initplans (110,279,394 samples, 0.02%)</title><rect x="463.4" y="2037" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="466.37" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (53,689,056 samples, 0.01%)</title><rect x="1158.8" y="2037" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1161.80" y="2047.5" ></text>
</g>
<g >
<title>tick_nohz_update_jiffies (61,241,002 samples, 0.01%)</title><rect x="1179.8" y="1861" width="0.1" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="1182.79" y="1871.5" ></text>
</g>
<g >
<title>get_quals_from_indexclauses (146,290,419 samples, 0.02%)</title><rect x="810.1" y="2037" width="0.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="813.15" y="2047.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (790,244,438 samples, 0.13%)</title><rect x="912.7" y="1813" width="1.6" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="915.70" y="1823.5" ></text>
</g>
<g >
<title>collect_signal (250,569,308 samples, 0.04%)</title><rect x="1137.6" y="1893" width="0.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1140.56" y="1903.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (226,812,591 samples, 0.04%)</title><rect x="90.4" y="1813" width="0.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="93.38" y="1823.5" ></text>
</g>
<g >
<title>bms_add_member (57,112,256 samples, 0.01%)</title><rect x="957.7" y="2053" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="960.68" y="2063.5" ></text>
</g>
<g >
<title>__x64_sys_ppoll (20,011,002,143 samples, 3.35%)</title><rect x="64.5" y="1925" width="39.5" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="67.52" y="1935.5" >__x..</text>
</g>
<g >
<title>__sysvec_irq_work (266,429,464 samples, 0.04%)</title><rect x="279.7" y="2005" width="0.5" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="282.65" y="2015.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (1,458,975,759 samples, 0.24%)</title><rect x="180.3" y="1797" width="2.8" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="183.25" y="1807.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (556,863,751 samples, 0.09%)</title><rect x="1146.9" y="1909" width="1.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1149.88" y="1919.5" ></text>
</g>
<g >
<title>pull_var_clause (86,816,612 samples, 0.01%)</title><rect x="886.4" y="2037" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="889.38" y="2047.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (1,087,462,183 samples, 0.18%)</title><rect x="381.0" y="2037" width="2.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="384.03" y="2047.5" ></text>
</g>
<g >
<title>unix_poll (286,639,525 samples, 0.05%)</title><rect x="995.9" y="1893" width="0.6" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="998.94" y="1903.5" ></text>
</g>
<g >
<title>filemap_get_entry (53,727,425 samples, 0.01%)</title><rect x="486.9" y="1845" width="0.1" height="15.0" fill="rgb(246,193,46)" rx="2" ry="2" />
<text x="489.88" y="1855.5" ></text>
</g>
<g >
<title>ctx_sched_in (54,688,229 samples, 0.01%)</title><rect x="1038.3" y="1845" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1041.32" y="1855.5" ></text>
</g>
<g >
<title>__wake_up_common (93,016,533 samples, 0.02%)</title><rect x="437.4" y="1893" width="0.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="440.36" y="1903.5" ></text>
</g>
<g >
<title>prepare_task_switch (56,454,131 samples, 0.01%)</title><rect x="1125.3" y="1941" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1128.32" y="1951.5" ></text>
</g>
<g >
<title>palloc0 (3,086,174,761 samples, 0.52%)</title><rect x="1119.3" y="2053" width="6.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="1122.34" y="2063.5" ></text>
</g>
<g >
<title>kthread (231,827,476 samples, 0.04%)</title><rect x="11.8" y="2021" width="0.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="14.80" y="2031.5" ></text>
</g>
<g >
<title>ExecInitModifyTable (57,217,101 samples, 0.01%)</title><rect x="409.5" y="2037" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="412.51" y="2047.5" ></text>
</g>
<g >
<title>PortalCleanup (222,633,594 samples, 0.04%)</title><rect x="450.9" y="2037" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="453.85" y="2047.5" ></text>
</g>
<g >
<title>core_yylex (172,206,231 samples, 0.03%)</title><rect x="780.0" y="2037" width="0.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="783.04" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="405" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="415.5" ></text>
</g>
<g >
<title>find_busiest_group (83,019,739 samples, 0.01%)</title><rect x="1180.7" y="1781" width="0.2" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="1183.73" y="1791.5" ></text>
</g>
<g >
<title>__blk_mq_issue_directly (382,596,707 samples, 0.06%)</title><rect x="1040.2" y="1765" width="0.7" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="1043.19" y="1775.5" ></text>
</g>
<g >
<title>schedule (53,627,794 samples, 0.01%)</title><rect x="288.5" y="1973" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="291.49" y="1983.5" ></text>
</g>
<g >
<title>update_curr (241,712,388 samples, 0.04%)</title><rect x="28.7" y="1813" width="0.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="31.70" y="1823.5" ></text>
</g>
<g >
<title>__update_load_avg_se (84,361,186 samples, 0.01%)</title><rect x="655.5" y="1877" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="658.47" y="1887.5" ></text>
</g>
<g >
<title>TimestampDifference (85,216,273 samples, 0.01%)</title><rect x="335.4" y="2053" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="338.37" y="2063.5" ></text>
</g>
<g >
<title>enqueue_entity (251,516,485 samples, 0.04%)</title><rect x="536.0" y="1541" width="0.5" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="538.96" y="1551.5" ></text>
</g>
<g >
<title>perf_event_groups_first (132,346,817 samples, 0.02%)</title><rect x="1009.1" y="1813" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="1012.09" y="1823.5" ></text>
</g>
<g >
<title>namestrcmp (295,216,231 samples, 0.05%)</title><rect x="1115.3" y="2053" width="0.6" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="1118.35" y="2063.5" ></text>
</g>
<g >
<title>scheduler_tick (55,100,025 samples, 0.01%)</title><rect x="554.8" y="1541" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="557.76" y="1551.5" ></text>
</g>
<g >
<title>list_member_oid (87,206,207 samples, 0.01%)</title><rect x="1107.9" y="2053" width="0.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="1110.88" y="2063.5" ></text>
</g>
<g >
<title>sock_recvmsg (7,864,259,311 samples, 1.32%)</title><rect x="899.8" y="1941" width="15.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="902.85" y="1951.5" ></text>
</g>
<g >
<title>relation_openrv_extended (555,846,651 samples, 0.09%)</title><rect x="1139.8" y="2053" width="1.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="1142.79" y="2063.5" ></text>
</g>
<g >
<title>__schedule (84,044,081 samples, 0.01%)</title><rect x="673.7" y="1829" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="676.69" y="1839.5" ></text>
</g>
<g >
<title>strlcpy (62,599,479 samples, 0.01%)</title><rect x="189.9" y="2037" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="192.91" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1797" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1807.5" ></text>
</g>
<g >
<title>pick_next_task_fair (736,141,760 samples, 0.12%)</title><rect x="33.0" y="1845" width="1.5" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="36.00" y="1855.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (80,227,309 samples, 0.01%)</title><rect x="527.7" y="1733" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="530.65" y="1743.5" ></text>
</g>
<g >
<title>__rdgsbase_inactive (59,050,027 samples, 0.01%)</title><rect x="371.7" y="2037" width="0.1" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="374.71" y="2047.5" ></text>
</g>
<g >
<title>futex_q_lock (138,385,949 samples, 0.02%)</title><rect x="558.7" y="1717" width="0.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="561.67" y="1727.5" ></text>
</g>
<g >
<title>ep_autoremove_wake_function (1,437,491,852 samples, 0.24%)</title><rect x="1102.6" y="1813" width="2.9" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="1105.63" y="1823.5" ></text>
</g>
<g >
<title>balance_dirty_pages_ratelimited (99,656,606 samples, 0.02%)</title><rect x="945.2" y="1909" width="0.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="948.24" y="1919.5" ></text>
</g>
<g >
<title>migrate_task_rq_fair (169,554,744 samples, 0.03%)</title><rect x="139.8" y="1733" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="142.75" y="1743.5" ></text>
</g>
<g >
<title>BufferSync (76,971,331 samples, 0.01%)</title><rect x="389.9" y="2037" width="0.2" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="392.92" y="2047.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (82,797,006 samples, 0.01%)</title><rect x="534.1" y="1813" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="537.11" y="1823.5" ></text>
</g>
<g >
<title>ret_from_fork_asm (56,517,171 samples, 0.01%)</title><rect x="11.2" y="2053" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="14.19" y="2063.5" ></text>
</g>
<g >
<title>sysvec_irq_work (2,212,885,277 samples, 0.37%)</title><rect x="534.5" y="1861" width="4.4" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="537.50" y="1871.5" ></text>
</g>
<g >
<title>transformInsertRow (56,459,076 samples, 0.01%)</title><rect x="1168.8" y="2053" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1171.76" y="2063.5" ></text>
</g>
<g >
<title>_raw_read_lock_irqsave (85,340,368 samples, 0.01%)</title><rect x="538.2" y="1669" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="541.21" y="1679.5" ></text>
</g>
<g >
<title>__schedule (87,905,175 samples, 0.01%)</title><rect x="420.7" y="1941" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="423.70" y="1951.5" ></text>
</g>
<g >
<title>submit_bio_wait (56,448,929 samples, 0.01%)</title><rect x="1043.3" y="1957" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="1046.34" y="1967.5" ></text>
</g>
<g >
<title>relation_open (406,777,281 samples, 0.07%)</title><rect x="1139.0" y="2053" width="0.8" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1141.99" y="2063.5" ></text>
</g>
<g >
<title>group_sched_out (431,204,337 samples, 0.07%)</title><rect x="556.0" y="1605" width="0.9" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="559.04" y="1615.5" ></text>
</g>
<g >
<title>refill_stock (59,912,521 samples, 0.01%)</title><rect x="178.3" y="1749" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="181.33" y="1759.5" ></text>
</g>
<g >
<title>update_load_avg (231,271,637 samples, 0.04%)</title><rect x="655.2" y="1893" width="0.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="658.18" y="1903.5" ></text>
</g>
<g >
<title>shmem_get_folio_gfp (53,727,425 samples, 0.01%)</title><rect x="486.9" y="1861" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="489.88" y="1871.5" ></text>
</g>
<g >
<title>pick_next_task (113,712,148 samples, 0.02%)</title><rect x="1143.8" y="1957" width="0.2" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="1146.75" y="1967.5" ></text>
</g>
<g >
<title>pq_recvbuf (166,490,393 samples, 0.03%)</title><rect x="640.1" y="2021" width="0.4" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="643.12" y="2031.5" ></text>
</g>
<g >
<title>do_syscall_64 (5,963,963,577 samples, 1.00%)</title><rect x="1143.3" y="2021" width="11.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1146.31" y="2031.5" ></text>
</g>
<g >
<title>update_cfs_group (58,691,606 samples, 0.01%)</title><rect x="352.4" y="1893" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="355.37" y="1903.5" ></text>
</g>
<g >
<title>sysvec_call_function_single (2,568,149,472 samples, 0.43%)</title><rect x="1175.9" y="1909" width="5.1" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="1178.94" y="1919.5" ></text>
</g>
<g >
<title>index_open (143,996,291 samples, 0.02%)</title><rect x="1097.3" y="2053" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1100.32" y="2063.5" ></text>
</g>
<g >
<title>cpu_startup_entry (853,548,337 samples, 0.14%)</title><rect x="1188.3" y="1957" width="1.7" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="1191.31" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (9,560,493,646 samples, 1.60%)</title><rect x="560.9" y="1221" width="18.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="563.95" y="1231.5" ></text>
</g>
<g >
<title>unix_stream_read_actor (1,528,538,016 samples, 0.26%)</title><rect x="912.4" y="1893" width="3.0" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="915.35" y="1903.5" ></text>
</g>
<g >
<title>ctx_sched_out (55,496,476 samples, 0.01%)</title><rect x="359.8" y="1893" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="362.77" y="1903.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (117,548,419 samples, 0.02%)</title><rect x="1036.9" y="2053" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1039.86" y="2063.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (629,546,640 samples, 0.11%)</title><rect x="555.8" y="1653" width="1.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="558.76" y="1663.5" ></text>
</g>
<g >
<title>try_grab_folio_fast (112,759,606 samples, 0.02%)</title><rect x="559.9" y="1621" width="0.2" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="562.89" y="1631.5" ></text>
</g>
<g >
<title>kfree_skbmem (767,553,022 samples, 0.13%)</title><rect x="902.7" y="1877" width="1.5" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="905.73" y="1887.5" ></text>
</g>
<g >
<title>__handle_mm_fault (108,135,222 samples, 0.02%)</title><rect x="486.8" y="1957" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="489.77" y="1967.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (83,039,457 samples, 0.01%)</title><rect x="1149.3" y="1845" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1152.34" y="1855.5" ></text>
</g>
<g >
<title>[libc.so.6] (107,521,913 samples, 0.02%)</title><rect x="161.7" y="2021" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="164.71" y="2031.5" ></text>
</g>
<g >
<title>ExecReadyInterpretedExpr (519,140,631 samples, 0.09%)</title><rect x="415.2" y="2037" width="1.0" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="418.20" y="2047.5" ></text>
</g>
<g >
<title>ResourceOwnerReleaseAll (82,604,858 samples, 0.01%)</title><rect x="322.0" y="2053" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="324.96" y="2063.5" ></text>
</g>
<g >
<title>__handle_irq_event_percpu (60,230,603 samples, 0.01%)</title><rect x="1185.5" y="1893" width="0.1" height="15.0" fill="rgb(236,147,35)" rx="2" ry="2" />
<text x="1188.50" y="1903.5" ></text>
</g>
<g >
<title>filemap_map_pages (2,062,543,095 samples, 0.35%)</title><rect x="1088.4" y="1909" width="4.1" height="15.0" fill="rgb(229,112,27)" rx="2" ry="2" />
<text x="1091.41" y="1919.5" ></text>
</g>
<g >
<title>bpf_map_poll (58,189,692 samples, 0.01%)</title><rect x="24.4" y="1877" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="27.44" y="1887.5" ></text>
</g>
<g >
<title>add_other_rels_to_query (83,215,220 samples, 0.01%)</title><rect x="752.7" y="2037" width="0.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="755.71" y="2047.5" ></text>
</g>
<g >
<title>group_sched_out (56,500,502 samples, 0.01%)</title><rect x="302.6" y="1765" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="305.62" y="1775.5" ></text>
</g>
<g >
<title>next_signal (171,767,221 samples, 0.03%)</title><rect x="995.2" y="1909" width="0.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="998.20" y="1919.5" ></text>
</g>
<g >
<title>ext4_bio_write_folio (367,849,575 samples, 0.06%)</title><rect x="1042.1" y="1813" width="0.8" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="1045.12" y="1823.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (81,363,468 samples, 0.01%)</title><rect x="1163.1" y="2037" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1166.12" y="2047.5" ></text>
</g>
<g >
<title>__rb_insert_augmented (89,655,201 samples, 0.01%)</title><rect x="355.4" y="1685" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="358.44" y="1695.5" ></text>
</g>
<g >
<title>tick_sched_handle (230,982,007 samples, 0.04%)</title><rect x="352.0" y="1941" width="0.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="355.03" y="1951.5" ></text>
</g>
<g >
<title>check_preempt_wakeup_fair (199,833,505 samples, 0.03%)</title><rect x="1153.9" y="1877" width="0.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1156.95" y="1887.5" ></text>
</g>
<g >
<title>__calc_delta.constprop.0 (110,429,709 samples, 0.02%)</title><rect x="707.6" y="1749" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="710.58" y="1759.5" ></text>
</g>
<g >
<title>memcg_account_kmem (114,544,245 samples, 0.02%)</title><rect x="126.5" y="1781" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="129.54" y="1791.5" ></text>
</g>
</g>
</svg>
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment