v8.svg
image/svg+xml
Filename: v8.svg
Type: image/svg+xml
Part: 1
<?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="806" onload="init(evt)" viewBox="0 0 1200 806" 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="806.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="789" > </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="789" > </text>
<g id="frames">
<g >
<title>entry_SYSCALL_64 (598,153 samples, 0.27%)</title><rect x="12.4" y="309" width="3.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="15.43" y="319.5" ></text>
</g>
<g >
<title>OpenTransientFile (598,153 samples, 0.27%)</title><rect x="12.4" y="389" width="3.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="15.43" y="399.5" ></text>
</g>
<g >
<title>update_curr (333,085 samples, 0.15%)</title><rect x="621.9" y="437" width="1.7" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="624.85" y="447.5" ></text>
</g>
<g >
<title>delayed_work_timer_fn (361,271 samples, 0.16%)</title><rect x="673.5" y="325" width="1.9" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="676.48" y="335.5" ></text>
</g>
<g >
<title>acct_account_cputime (336,453 samples, 0.15%)</title><rect x="641.8" y="293" width="1.8" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="644.77" y="303.5" ></text>
</g>
<g >
<title>LogicalDecodingProcessRecord (282,362 samples, 0.13%)</title><rect x="1171.1" y="341" width="1.5" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1174.06" y="351.5" ></text>
</g>
<g >
<title>psi_group_change (10,820,198 samples, 4.85%)</title><rect x="1036.0" y="453" width="57.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="1038.96" y="463.5" >psi_gr..</text>
</g>
<g >
<title>rseq_update_cpu_node_id (513,303 samples, 0.23%)</title><rect x="308.1" y="565" width="2.7" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="311.05" y="575.5" ></text>
</g>
<g >
<title>open64 (598,153 samples, 0.27%)</title><rect x="12.4" y="325" width="3.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="15.43" y="335.5" ></text>
</g>
<g >
<title>schedule (135,312,364 samples, 60.62%)</title><rect x="405.0" y="501" width="715.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="407.96" y="511.5" >schedule</text>
</g>
<g >
<title>put_prev_task_fair (3,146,495 samples, 1.41%)</title><rect x="735.0" y="453" width="16.6" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="737.98" y="463.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (361,271 samples, 0.16%)</title><rect x="673.5" y="245" width="1.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="676.48" y="255.5" ></text>
</g>
<g >
<title>do_syscall_64 (459,525 samples, 0.21%)</title><rect x="10.0" y="325" width="2.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="13.00" y="335.5" ></text>
</g>
<g >
<title>DecodingContextFindStartpoint (282,362 samples, 0.13%)</title><rect x="1171.1" y="357" width="1.5" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="1174.06" y="367.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (431,049 samples, 0.19%)</title><rect x="90.3" y="581" width="2.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="93.32" y="591.5" ></text>
</g>
<g >
<title>ExecutePlan (1,057,678 samples, 0.47%)</title><rect x="10.0" y="565" width="5.6" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="13.00" y="575.5" ></text>
</g>
<g >
<title>do_vmi_munmap (542,369 samples, 0.24%)</title><rect x="1180.3" y="341" width="2.9" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="1183.34" y="351.5" ></text>
</g>
<g >
<title>fsnotify_handle_inode_event.isra.0 (459,525 samples, 0.21%)</title><rect x="10.0" y="181" width="2.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="13.00" y="191.5" ></text>
</g>
<g >
<title>x64_sys_call (388,584 samples, 0.17%)</title><rect x="1172.6" y="245" width="2.0" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1175.56" y="255.5" ></text>
</g>
<g >
<title>sched_clock (2,871,739 samples, 1.29%)</title><rect x="1078.0" y="421" width="15.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="1080.98" y="431.5" ></text>
</g>
<g >
<title>dequeue_task_fair (709,183 samples, 0.32%)</title><rect x="632.0" y="469" width="3.7" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="634.97" y="479.5" ></text>
</g>
<g >
<title>pick_next_task_fair (248,119 samples, 0.11%)</title><rect x="751.6" y="469" width="1.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="754.61" y="479.5" ></text>
</g>
<g >
<title>__update_blocked_fair (266,440 samples, 0.12%)</title><rect x="672.1" y="341" width="1.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="675.08" y="351.5" ></text>
</g>
<g >
<title>arch_scale_freq_tick (353,168 samples, 0.16%)</title><rect x="645.2" y="325" width="1.9" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="648.20" y="335.5" ></text>
</g>
<g >
<title>perf_event_task_tick (78,005 samples, 0.03%)</title><rect x="404.6" y="325" width="0.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="407.55" y="335.5" ></text>
</g>
<g >
<title>account_system_time (336,453 samples, 0.15%)</title><rect x="641.8" y="309" width="1.8" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="644.77" y="319.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (2,249,766 samples, 1.01%)</title><rect x="591.0" y="405" width="11.9" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="593.97" y="415.5" ></text>
</g>
<g >
<title>record_times (680,173 samples, 0.30%)</title><rect x="1093.2" y="453" width="3.6" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="1096.16" y="463.5" ></text>
</g>
<g >
<title>ext4_dx_readdir (388,584 samples, 0.17%)</title><rect x="1172.6" y="181" width="2.0" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="1175.56" y="191.5" ></text>
</g>
<g >
<title>pgstat_detach_shmem (542,369 samples, 0.24%)</title><rect x="1180.3" y="501" width="2.9" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="1183.34" y="511.5" ></text>
</g>
<g >
<title>task_mm_cid_work (551,529 samples, 0.25%)</title><rect x="315.3" y="549" width="2.9" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="318.27" y="559.5" ></text>
</g>
<g >
<title>SnapBuildWaitSnapshot (282,362 samples, 0.13%)</title><rect x="1171.1" y="277" width="1.5" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="1174.06" y="287.5" ></text>
</g>
<g >
<title>perf_event_task_tick (1,407,595 samples, 0.63%)</title><rect x="652.0" y="309" width="7.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="654.97" y="319.5" ></text>
</g>
<g >
<title>BasicOpenFilePerm (598,153 samples, 0.27%)</title><rect x="12.4" y="357" width="3.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="15.43" y="367.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (326,749 samples, 0.15%)</title><rect x="690.5" y="437" width="1.7" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="693.51" y="447.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (408,838 samples, 0.18%)</title><rect x="88.2" y="581" width="2.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="91.16" y="591.5" ></text>
</g>
<g >
<title>tick_sched_handle (431,049 samples, 0.19%)</title><rect x="90.3" y="549" width="2.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="93.32" y="559.5" ></text>
</g>
<g >
<title>newidle_balance (7,796,840 samples, 3.49%)</title><rect x="692.2" y="437" width="41.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="695.24" y="447.5" >new..</text>
</g>
<g >
<title>path_openat (459,525 samples, 0.21%)</title><rect x="10.0" y="245" width="2.4" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="13.00" y="255.5" ></text>
</g>
<g >
<title>__cxa_finalize (535,765 samples, 0.24%)</title><rect x="1177.5" y="469" width="2.8" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1180.51" y="479.5" ></text>
</g>
<g >
<title>update_process_times (407,746 samples, 0.18%)</title><rect x="352.4" y="389" width="2.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="355.43" y="399.5" ></text>
</g>
<g >
<title>enqueue_task (20,483 samples, 0.01%)</title><rect x="286.7" y="293" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="289.74" y="303.5" ></text>
</g>
<g >
<title>dequeue_task (1,096,100 samples, 0.49%)</title><rect x="1114.5" y="485" width="5.8" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="1117.51" y="495.5" ></text>
</g>
<g >
<title>update_curr (12,920,443 samples, 5.79%)</title><rect x="514.1" y="421" width="68.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="517.06" y="431.5" >update_..</text>
</g>
<g >
<title>__x64_sys_openat (459,525 samples, 0.21%)</title><rect x="10.0" y="293" width="2.4" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="13.00" y="303.5" ></text>
</g>
<g >
<title>__rcu_read_lock (155,315 samples, 0.07%)</title><rect x="671.3" y="357" width="0.8" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="674.25" y="367.5" ></text>
</g>
<g >
<title>x64_sys_call (542,369 samples, 0.24%)</title><rect x="1180.3" y="389" width="2.9" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1183.34" y="399.5" ></text>
</g>
<g >
<title>do_user_addr_fault (535,765 samples, 0.24%)</title><rect x="1177.5" y="357" width="2.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1180.51" y="367.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (9,528,677 samples, 4.27%)</title><rect x="354.6" y="501" width="50.4" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="357.59" y="511.5" >hrtim..</text>
</g>
<g >
<title>task_work_add (210,213 samples, 0.09%)</title><rect x="667.3" y="309" width="1.1" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="670.30" y="319.5" ></text>
</g>
<g >
<title>lapic_next_event (471,923 samples, 0.21%)</title><rect x="668.4" y="357" width="2.5" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="671.42" y="367.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (431,049 samples, 0.19%)</title><rect x="90.3" y="597" width="2.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="93.32" y="607.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (496,265 samples, 0.22%)</title><rect x="728.5" y="389" width="2.7" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="731.55" y="399.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (251,862 samples, 0.11%)</title><rect x="181.8" y="453" width="1.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="184.79" y="463.5" ></text>
</g>
<g >
<title>__update_load_avg_se (324,635 samples, 0.15%)</title><rect x="490.8" y="421" width="1.7" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="493.81" y="431.5" ></text>
</g>
<g >
<title>update_process_times (408,838 samples, 0.18%)</title><rect x="88.2" y="517" width="2.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="91.16" y="527.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (415,629 samples, 0.19%)</title><rect x="1166.9" y="613" width="2.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1169.90" y="623.5" ></text>
</g>
<g >
<title>_copy_from_user (300,180 samples, 0.13%)</title><rect x="338.0" y="549" width="1.6" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="341.02" y="559.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (407,746 samples, 0.18%)</title><rect x="352.4" y="453" width="2.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="355.43" y="463.5" ></text>
</g>
<g >
<title>__run_timers (20,483 samples, 0.01%)</title><rect x="286.7" y="421" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="289.74" y="431.5" ></text>
</g>
<g >
<title>__x64_sys_getdents64 (388,584 samples, 0.17%)</title><rect x="1172.6" y="229" width="2.0" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="1175.56" y="239.5" ></text>
</g>
<g >
<title>run_rebalance_domains (421,755 samples, 0.19%)</title><rect x="671.3" y="373" width="2.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="674.25" y="383.5" ></text>
</g>
<g >
<title>check_cfs_rq_runtime (352,965 samples, 0.16%)</title><rect x="737.3" y="437" width="1.8" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="740.25" y="447.5" ></text>
</g>
<g >
<title>amd_pmu_addr_offset (2,067,533 samples, 0.93%)</title><rect x="780.9" y="373" width="10.9" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="783.90" y="383.5" ></text>
</g>
<g >
<title>iterate_dir (388,584 samples, 0.17%)</title><rect x="1172.6" y="213" width="2.0" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="1175.56" y="223.5" ></text>
</g>
<g >
<title>rb_insert_color (101,639 samples, 0.05%)</title><rect x="366.5" y="453" width="0.5" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="369.49" y="463.5" ></text>
</g>
<g >
<title>default_wake_function (459,525 samples, 0.21%)</title><rect x="10.0" y="85" width="2.4" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="13.00" y="95.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (64,982 samples, 0.03%)</title><rect x="670.9" y="245" width="0.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="673.91" y="255.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (845,538 samples, 0.38%)</title><rect x="400.1" y="485" width="4.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="403.08" y="495.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (11,516,069 samples, 5.16%)</title><rect x="243.9" y="565" width="60.9" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="246.91" y="575.5" >__rseq..</text>
</g>
<g >
<title>check_cpu_stall (431,049 samples, 0.19%)</title><rect x="90.3" y="485" width="2.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="93.32" y="495.5" ></text>
</g>
<g >
<title>fsnotify_insert_event (459,525 samples, 0.21%)</title><rect x="10.0" y="149" width="2.4" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="13.00" y="159.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (459,525 samples, 0.21%)</title><rect x="10.0" y="341" width="2.4" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="13.00" y="351.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (888,955 samples, 0.40%)</title><rect x="218.8" y="581" width="4.7" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="221.83" y="591.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (7,504,986 samples, 3.36%)</title><rect x="635.7" y="469" width="39.7" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="638.72" y="479.5" >fin..</text>
</g>
<g >
<title>fscrypt_fname_free_buffer (388,584 samples, 0.17%)</title><rect x="1172.6" y="149" width="2.0" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1175.56" y="159.5" ></text>
</g>
<g >
<title>rcu_core_si (64,982 samples, 0.03%)</title><rect x="670.9" y="373" width="0.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="673.91" y="383.5" ></text>
</g>
<g >
<title>SnapBuildFindSnapshot (282,362 samples, 0.13%)</title><rect x="1171.1" y="293" width="1.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1174.06" y="303.5" ></text>
</g>
<g >
<title>__vm_munmap (542,369 samples, 0.24%)</title><rect x="1180.3" y="357" width="2.9" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="1183.34" y="367.5" ></text>
</g>
<g >
<title>ReadDirExtended (388,584 samples, 0.17%)</title><rect x="1172.6" y="325" width="2.0" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1175.56" y="335.5" ></text>
</g>
<g >
<title>native_read_msr (407,746 samples, 0.18%)</title><rect x="352.4" y="277" width="2.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="355.43" y="287.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (188,834 samples, 0.08%)</title><rect x="489.8" y="421" width="1.0" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="492.81" y="431.5" ></text>
</g>
<g >
<title>XidWaitInStandby (282,362 samples, 0.13%)</title><rect x="1171.1" y="261" width="1.5" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="1174.06" y="271.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (361,271 samples, 0.16%)</title><rect x="673.5" y="229" width="1.9" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="676.48" y="239.5" ></text>
</g>
<g >
<title>__run_timers (361,271 samples, 0.16%)</title><rect x="673.5" y="357" width="1.9" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="676.48" y="367.5" ></text>
</g>
<g >
<title>pick_next_task_fair (9,469,030 samples, 4.24%)</title><rect x="683.4" y="453" width="50.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="686.40" y="463.5" >pick_..</text>
</g>
<g >
<title>rcu_sched_clock_irq (431,049 samples, 0.19%)</title><rect x="90.3" y="517" width="2.3" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="93.32" y="527.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (34,297,469 samples, 15.37%)</title><rect x="843.6" y="373" width="181.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="846.56" y="383.5" >x86_pmu_disable_all</text>
</g>
<g >
<title>update_process_times (681,920 samples, 0.31%)</title><rect x="181.8" y="501" width="3.6" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="184.79" y="511.5" ></text>
</g>
<g >
<title>__x64_sys_munmap (542,369 samples, 0.24%)</title><rect x="1180.3" y="373" width="2.9" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1183.34" y="383.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (407,746 samples, 0.18%)</title><rect x="352.4" y="437" width="2.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="355.43" y="447.5" ></text>
</g>
<g >
<title>account_system_time (311,739 samples, 0.14%)</title><rect x="643.6" y="325" width="1.6" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="646.55" y="335.5" ></text>
</g>
<g >
<title>task_tick_fair (1,493,279 samples, 0.67%)</title><rect x="659.4" y="309" width="7.9" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="662.41" y="319.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (535,765 samples, 0.24%)</title><rect x="1177.5" y="437" width="2.8" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1180.51" y="447.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (2,836,625 samples, 1.27%)</title><rect x="383.8" y="453" width="15.0" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="386.82" y="463.5" ></text>
</g>
<g >
<title>standby_decode (282,362 samples, 0.13%)</title><rect x="1171.1" y="325" width="1.5" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1174.06" y="335.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (166,711 samples, 0.07%)</title><rect x="1098.7" y="469" width="0.9" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1101.69" y="479.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (535,765 samples, 0.24%)</title><rect x="1177.5" y="389" width="2.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1180.51" y="399.5" ></text>
</g>
<g >
<title>__schedule (449,797 samples, 0.20%)</title><rect x="350.1" y="501" width="2.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="353.06" y="511.5" ></text>
</g>
<g >
<title>__wake_up_common (459,525 samples, 0.21%)</title><rect x="10.0" y="117" width="2.4" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="13.00" y="127.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (459,525 samples, 0.21%)</title><rect x="10.0" y="53" width="2.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="13.00" y="63.5" ></text>
</g>
<g >
<title>sched_clock_cpu (2,871,739 samples, 1.29%)</title><rect x="1078.0" y="437" width="15.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1080.98" y="447.5" ></text>
</g>
<g >
<title>do_sys_openat2 (459,525 samples, 0.21%)</title><rect x="10.0" y="277" width="2.4" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text x="13.00" y="287.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,136,648 samples, 0.51%)</title><rect x="181.8" y="613" width="6.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="184.79" y="623.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (294,334 samples, 0.13%)</title><rect x="1113.0" y="421" width="1.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1115.96" y="431.5" ></text>
</g>
<g >
<title>ReorderBufferCleanupSerializedTXNs (388,584 samples, 0.17%)</title><rect x="1172.6" y="341" width="2.0" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1175.56" y="351.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (431,049 samples, 0.19%)</title><rect x="90.3" y="613" width="2.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="93.32" y="623.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (6,359,627 samples, 2.85%)</title><rect x="641.8" y="437" width="33.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="644.77" y="447.5" >sy..</text>
</g>
<g >
<title>native_read_msr (996,880 samples, 0.45%)</title><rect x="654.1" y="229" width="5.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="657.14" y="239.5" ></text>
</g>
<g >
<title>irqentry_exit (454,728 samples, 0.20%)</title><rect x="185.4" y="581" width="2.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="188.40" y="591.5" ></text>
</g>
<g >
<title>ExecProcNode (1,057,678 samples, 0.47%)</title><rect x="10.0" y="549" width="5.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="13.00" y="559.5" ></text>
</g>
<g >
<title>_raw_spin_lock (705,998 samples, 0.32%)</title><rect x="761.9" y="437" width="3.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="764.86" y="447.5" ></text>
</g>
<g >
<title>AllocSetCheck (548,626 samples, 0.25%)</title><rect x="1174.6" y="501" width="2.9" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="1177.61" y="511.5" ></text>
</g>
<g >
<title>XLogReadDetermineTimeline (1,460,742 samples, 0.65%)</title><rect x="92.6" y="661" width="7.7" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="95.60" y="671.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (415,629 samples, 0.19%)</title><rect x="1166.9" y="629" width="2.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1169.90" y="639.5" ></text>
</g>
<g >
<title>pgstat_shutdown_hook (542,369 samples, 0.24%)</title><rect x="1180.3" y="517" width="2.9" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="1183.34" y="527.5" ></text>
</g>
<g >
<title>rseq_ip_fixup (6,846,548 samples, 3.07%)</title><rect x="252.9" y="549" width="36.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="255.93" y="559.5" >rse..</text>
</g>
<g >
<title>__rcu_read_lock (431,049 samples, 0.19%)</title><rect x="688.2" y="437" width="2.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="691.23" y="447.5" ></text>
</g>
<g >
<title>native_read_msr (1,375,496 samples, 0.62%)</title><rect x="791.8" y="373" width="7.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="794.83" y="383.5" ></text>
</g>
<g >
<title>perf_ctx_disable (249,238 samples, 0.11%)</title><rect x="765.6" y="437" width="1.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="768.59" y="447.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (542,369 samples, 0.24%)</title><rect x="1180.3" y="421" width="2.9" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="1183.34" y="431.5" ></text>
</g>
<g >
<title>BackendStartup (1,057,678 samples, 0.47%)</title><rect x="10.0" y="693" width="5.6" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="13.00" y="703.5" ></text>
</g>
<g >
<title>__get_user_8 (6,215,119 samples, 2.78%)</title><rect x="254.0" y="533" width="32.8" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="256.99" y="543.5" >__..</text>
</g>
<g >
<title>task_work_run (914,909 samples, 0.41%)</title><rect x="313.4" y="565" width="4.8" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="316.35" y="575.5" ></text>
</g>
<g >
<title>reweight_entity (1,375,886 samples, 0.62%)</title><rect x="506.8" y="405" width="7.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="509.79" y="415.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (78,005 samples, 0.03%)</title><rect x="404.6" y="453" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="407.55" y="463.5" ></text>
</g>
<g >
<title>open64 (459,525 samples, 0.21%)</title><rect x="10.0" y="357" width="2.4" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="13.00" y="367.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (652,115 samples, 0.29%)</title><rect x="559.6" y="405" width="3.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="562.59" y="415.5" ></text>
</g>
<g >
<title>RecoveryInProgress (9,742,053 samples, 4.36%)</title><rect x="41.1" y="661" width="51.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="44.10" y="671.5" >Recov..</text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (5,511,619 samples, 2.47%)</title><rect x="641.8" y="421" width="29.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="644.77" y="431.5" >__..</text>
</g>
<g >
<title>call_timer_fn (20,483 samples, 0.01%)</title><rect x="286.7" y="405" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="289.74" y="415.5" ></text>
</g>
<g >
<title>sched_clock (294,334 samples, 0.13%)</title><rect x="1113.0" y="437" width="1.5" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="1115.96" y="447.5" ></text>
</g>
<g >
<title>wake_up_process (20,483 samples, 0.01%)</title><rect x="286.7" y="341" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="289.74" y="351.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (407,746 samples, 0.18%)</title><rect x="352.4" y="469" width="2.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="355.43" y="479.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,239,323 samples, 0.56%)</title><rect x="187.8" y="613" width="6.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="190.80" y="623.5" ></text>
</g>
<g >
<title>try_to_wake_up (64,982 samples, 0.03%)</title><rect x="670.9" y="261" width="0.4" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="673.91" y="271.5" ></text>
</g>
<g >
<title>create_logical_replication_slot (670,946 samples, 0.30%)</title><rect x="1171.1" y="373" width="3.5" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="1174.06" y="383.5" ></text>
</g>
<g >
<title>tick_sched_handle (407,746 samples, 0.18%)</title><rect x="352.4" y="405" width="2.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="355.43" y="415.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (535,765 samples, 0.24%)</title><rect x="1177.5" y="517" width="2.8" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1180.51" y="527.5" ></text>
</g>
<g >
<title>BackendMain (2,297,706 samples, 1.03%)</title><rect x="1171.1" y="597" width="12.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="1174.06" y="607.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (670,946 samples, 0.30%)</title><rect x="1171.1" y="517" width="3.5" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="1174.06" y="527.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (408,838 samples, 0.18%)</title><rect x="88.2" y="629" width="2.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="91.16" y="639.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (407,746 samples, 0.18%)</title><rect x="352.4" y="309" width="2.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="355.43" y="319.5" ></text>
</g>
<g >
<title>do_syscall_64 (388,584 samples, 0.17%)</title><rect x="1172.6" y="261" width="2.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1175.56" y="271.5" ></text>
</g>
<g >
<title>try_to_wake_up (20,483 samples, 0.01%)</title><rect x="286.7" y="325" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="289.74" y="335.5" ></text>
</g>
<g >
<title>dsm_detach (542,369 samples, 0.24%)</title><rect x="1180.3" y="469" width="2.9" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="1183.34" y="479.5" ></text>
</g>
<g >
<title>tick_sched_handle (408,838 samples, 0.18%)</title><rect x="88.2" y="533" width="2.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="91.16" y="543.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (5,511,619 samples, 2.47%)</title><rect x="641.8" y="405" width="29.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="644.77" y="415.5" >hr..</text>
</g>
<g >
<title>tick_sched_handle (681,920 samples, 0.31%)</title><rect x="181.8" y="517" width="3.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="184.79" y="527.5" ></text>
</g>
<g >
<title>open_last_lookups (459,525 samples, 0.21%)</title><rect x="10.0" y="229" width="2.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="13.00" y="239.5" ></text>
</g>
<g >
<title>x64_sys_call (376,201 samples, 0.17%)</title><rect x="1144.3" y="597" width="2.0" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1147.34" y="607.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (195,929 samples, 0.09%)</title><rect x="1092.1" y="389" width="1.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1095.13" y="399.5" ></text>
</g>
<g >
<title>restore_fpregs_from_fpstate (175,088 samples, 0.08%)</title><rect x="312.4" y="549" width="1.0" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="315.43" y="559.5" ></text>
</g>
<g >
<title>proc_exit_prepare (542,369 samples, 0.24%)</title><rect x="1180.3" y="549" width="2.9" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" />
<text x="1183.34" y="559.5" ></text>
</g>
<g >
<title>retbleed_untrain_ret (946,464 samples, 0.42%)</title><rect x="1146.3" y="613" width="5.0" height="15.0" fill="rgb(210,25,5)" rx="2" ry="2" />
<text x="1149.33" y="623.5" ></text>
</g>
<g >
<title>scheduler_tick (681,920 samples, 0.31%)</title><rect x="181.8" y="485" width="3.6" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="184.79" y="495.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (848,008 samples, 0.38%)</title><rect x="670.9" y="405" width="4.5" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="673.91" y="415.5" ></text>
</g>
<g >
<title>swake_up_one_online (64,982 samples, 0.03%)</title><rect x="670.9" y="293" width="0.4" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="673.91" y="303.5" ></text>
</g>
<g >
<title>PostgresMain (1,057,678 samples, 0.47%)</title><rect x="10.0" y="645" width="5.6" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="13.00" y="655.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (38,625 samples, 0.02%)</title><rect x="286.6" y="517" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="289.64" y="527.5" ></text>
</g>
<g >
<title>rcu_report_qs_rdp (64,982 samples, 0.03%)</title><rect x="670.9" y="341" width="0.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="673.91" y="351.5" ></text>
</g>
<g >
<title>do_filp_open (598,153 samples, 0.27%)</title><rect x="12.4" y="229" width="3.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="15.43" y="239.5" ></text>
</g>
<g >
<title>ttwu_do_activate (20,483 samples, 0.01%)</title><rect x="286.7" y="309" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="289.74" y="319.5" ></text>
</g>
<g >
<title>wake_up_process (361,271 samples, 0.16%)</title><rect x="673.5" y="277" width="1.9" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="676.48" y="287.5" ></text>
</g>
<g >
<title>nanosleep@plt (371,473 samples, 0.17%)</title><rect x="1169.1" y="645" width="2.0" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1172.10" y="655.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (408,838 samples, 0.18%)</title><rect x="88.2" y="597" width="2.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="91.16" y="607.5" ></text>
</g>
<g >
<title>[libstdc++.so.6.0.33] (535,765 samples, 0.24%)</title><rect x="1177.5" y="485" width="2.8" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1180.51" y="495.5" ></text>
</g>
<g >
<title>load_balance (496,265 samples, 0.22%)</title><rect x="728.5" y="421" width="2.7" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="731.55" y="431.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (2,945,408 samples, 1.32%)</title><rect x="1151.3" y="613" width="15.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1154.33" y="623.5" ></text>
</g>
<g >
<title>RecoveryInProgress (2,783,978 samples, 1.25%)</title><rect x="75.6" y="645" width="14.7" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="78.60" y="655.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (46,149,964 samples, 20.68%)</title><rect x="780.9" y="389" width="244.0" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="783.90" y="399.5" >amd_pmu_disable_all</text>
</g>
<g >
<title>__hrtimer_init (1,027,271 samples, 0.46%)</title><rect x="344.6" y="517" width="5.5" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="347.63" y="527.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (239,815 samples, 0.11%)</title><rect x="398.8" y="469" width="1.3" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="401.81" y="479.5" ></text>
</g>
<g >
<title>__cond_resched (454,728 samples, 0.20%)</title><rect x="185.4" y="549" width="2.4" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="188.40" y="559.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (2,675,810 samples, 1.20%)</title><rect x="1078.0" y="389" width="14.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="1080.98" y="399.5" ></text>
</g>
<g >
<title>x64_sys_call (156,271,687 samples, 70.01%)</title><rect x="318.2" y="581" width="826.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="321.19" y="591.5" >x64_sys_call</text>
</g>
<g >
<title>pg_usleep (202,538,257 samples, 90.74%)</title><rect x="100.3" y="661" width="1070.8" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="103.32" y="671.5" >pg_usleep</text>
</g>
<g >
<title>x86_pmu_disable_all (996,880 samples, 0.45%)</title><rect x="654.1" y="245" width="5.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="657.14" y="255.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (78,005 samples, 0.03%)</title><rect x="404.6" y="309" width="0.4" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="407.55" y="319.5" ></text>
</g>
<g >
<title>psi_task_switch (13,298,096 samples, 5.96%)</title><rect x="1026.5" y="469" width="70.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1029.46" y="479.5" >psi_tas..</text>
</g>
<g >
<title>update_load_avg (430,058 samples, 0.19%)</title><rect x="183.1" y="453" width="2.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="186.12" y="463.5" ></text>
</g>
<g >
<title>update_process_times (5,039,696 samples, 2.26%)</title><rect x="641.8" y="341" width="26.6" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="644.77" y="351.5" >u..</text>
</g>
<g >
<title>psi_flags_change (20,483 samples, 0.01%)</title><rect x="286.7" y="277" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="289.74" y="287.5" ></text>
</g>
<g >
<title>clock_nanosleep (195,213,846 samples, 87.46%)</title><rect x="134.9" y="629" width="1032.0" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="137.88" y="639.5" >clock_nanosleep</text>
</g>
<g >
<title>get_timespec64 (3,319,727 samples, 1.49%)</title><rect x="1120.3" y="549" width="17.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1123.31" y="559.5" ></text>
</g>
<g >
<title>do_syscall_64 (177,080,547 samples, 79.34%)</title><rect x="208.2" y="597" width="936.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="211.18" y="607.5" >do_syscall_64</text>
</g>
<g >
<title>zap_pmd_range.isra.0 (1,284,389 samples, 0.58%)</title><rect x="1183.2" y="517" width="6.8" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="1186.21" y="527.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (1,407,595 samples, 0.63%)</title><rect x="652.0" y="293" width="7.4" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="654.97" y="303.5" ></text>
</g>
<g >
<title>rseq_ip_fixup (259,853 samples, 0.12%)</title><rect x="306.7" y="565" width="1.4" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="309.68" y="575.5" ></text>
</g>
<g >
<title>run_posix_cpu_timers (408,838 samples, 0.18%)</title><rect x="88.2" y="501" width="2.1" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="91.16" y="511.5" ></text>
</g>
<g >
<title>kick_pool (361,271 samples, 0.16%)</title><rect x="673.5" y="293" width="1.9" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="676.48" y="303.5" ></text>
</g>
<g >
<title>blkcg_maybe_throttle_current (357,142 samples, 0.16%)</title><rect x="304.8" y="565" width="1.9" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="307.79" y="575.5" ></text>
</g>
<g >
<title>kick_pool (20,483 samples, 0.01%)</title><rect x="286.7" y="357" width="0.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="289.74" y="367.5" ></text>
</g>
<g >
<title>put_prev_task_fair (365,056 samples, 0.16%)</title><rect x="1096.8" y="469" width="1.9" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1099.76" y="479.5" ></text>
</g>
<g >
<title>_copy_from_user (1,242,239 samples, 0.56%)</title><rect x="1123.6" y="533" width="6.6" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1126.64" y="543.5" ></text>
</g>
<g >
<title>rseq_get_rseq_cs (183,914 samples, 0.08%)</title><rect x="252.0" y="549" width="0.9" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="254.96" y="559.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (78,005 samples, 0.03%)</title><rect x="404.6" y="469" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="407.55" y="479.5" ></text>
</g>
<g >
<title>update_load_avg (4,491,971 samples, 2.01%)</title><rect x="582.4" y="421" width="23.7" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="585.37" y="431.5" >u..</text>
</g>
<g >
<title>ServerLoop (2,297,706 samples, 1.03%)</title><rect x="1171.1" y="645" width="12.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1174.06" y="655.5" ></text>
</g>
<g >
<title>pick_next_task (14,417,592 samples, 6.46%)</title><rect x="675.4" y="469" width="76.2" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="678.39" y="479.5" >pick_nex..</text>
</g>
<g >
<title>native_send_call_func_single_ipi (64,982 samples, 0.03%)</title><rect x="670.9" y="213" width="0.4" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="673.91" y="223.5" ></text>
</g>
<g >
<title>exit (535,765 samples, 0.24%)</title><rect x="1177.5" y="549" width="2.8" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="1180.51" y="559.5" ></text>
</g>
<g >
<title>prepare_task_switch (51,740,333 samples, 23.18%)</title><rect x="752.9" y="469" width="273.6" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="755.93" y="479.5" >prepare_task_switch</text>
</g>
<g >
<title>rcu_core (64,982 samples, 0.03%)</title><rect x="670.9" y="357" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="673.91" y="367.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (294,334 samples, 0.13%)</title><rect x="1113.0" y="405" width="1.5" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="1115.96" y="415.5" ></text>
</g>
<g >
<title>update_curr_se (726,669 samples, 0.33%)</title><rect x="569.6" y="405" width="3.8" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="572.60" y="415.5" ></text>
</g>
<g >
<title>get_nohz_timer_target (162,274 samples, 0.07%)</title><rect x="373.0" y="469" width="0.9" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="376.02" y="479.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (407,746 samples, 0.18%)</title><rect x="352.4" y="293" width="2.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="355.43" y="303.5" ></text>
</g>
<g >
<title>unmap_page_range (1,284,389 samples, 0.58%)</title><rect x="1183.2" y="533" width="6.8" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1186.21" y="543.5" ></text>
</g>
<g >
<title>__x64_sys_clock_nanosleep (152,582,791 samples, 68.36%)</title><rect x="332.6" y="565" width="806.7" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="335.61" y="575.5" >__x64_sys_clock_nanosleep</text>
</g>
<g >
<title>postmaster_child_launch (1,057,678 samples, 0.47%)</title><rect x="10.0" y="677" width="5.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="13.00" y="687.5" ></text>
</g>
<g >
<title>PostgresMain (2,297,706 samples, 1.03%)</title><rect x="1171.1" y="581" width="12.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1174.06" y="591.5" ></text>
</g>
<g >
<title>filemap_map_pages (535,765 samples, 0.24%)</title><rect x="1177.5" y="261" width="2.8" height="15.0" fill="rgb(229,112,27)" rx="2" ry="2" />
<text x="1180.51" y="271.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (5,039,696 samples, 2.26%)</title><rect x="641.8" y="373" width="26.6" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="644.77" y="383.5" >t..</text>
</g>
<g >
<title>irq_exit_rcu (848,008 samples, 0.38%)</title><rect x="670.9" y="421" width="4.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="673.91" y="431.5" ></text>
</g>
<g >
<title>__wake_up (459,525 samples, 0.21%)</title><rect x="10.0" y="133" width="2.4" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="13.00" y="143.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (408,838 samples, 0.18%)</title><rect x="88.2" y="565" width="2.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="91.16" y="575.5" ></text>
</g>
<g >
<title>handle_softirqs (848,008 samples, 0.38%)</title><rect x="670.9" y="389" width="4.5" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="673.91" y="399.5" ></text>
</g>
<g >
<title>_start (2,297,706 samples, 1.03%)</title><rect x="1171.1" y="725" width="12.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1174.06" y="735.5" ></text>
</g>
<g >
<title>__smp_call_single_queue (64,982 samples, 0.03%)</title><rect x="670.9" y="229" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="673.91" y="239.5" ></text>
</g>
<g >
<title>fsync_fname_ext (598,153 samples, 0.27%)</title><rect x="12.4" y="405" width="3.2" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="15.43" y="415.5" ></text>
</g>
<g >
<title>XLogDecodeNextRecord (218,565,551 samples, 97.92%)</title><rect x="15.6" y="709" width="1155.5" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="18.59" y="719.5" >XLogDecodeNextRecord</text>
</g>
<g >
<title>ServerLoop (1,057,678 samples, 0.47%)</title><rect x="10.0" y="709" width="5.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="13.00" y="719.5" ></text>
</g>
<g >
<title>x64_sys_call (598,153 samples, 0.27%)</title><rect x="12.4" y="277" width="3.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="15.43" y="287.5" ></text>
</g>
<g >
<title>next_uptodate_folio (535,765 samples, 0.24%)</title><rect x="1177.5" y="245" width="2.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1180.51" y="255.5" ></text>
</g>
<g >
<title>dequeue_task (37,898,384 samples, 16.98%)</title><rect x="431.6" y="469" width="200.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="434.61" y="479.5" >dequeue_task</text>
</g>
<g >
<title>ExecutePlan (670,946 samples, 0.30%)</title><rect x="1171.1" y="501" width="3.5" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="1174.06" y="511.5" ></text>
</g>
<g >
<title>PostmasterMain (2,297,706 samples, 1.03%)</title><rect x="1171.1" y="661" width="12.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1174.06" y="671.5" ></text>
</g>
<g >
<title>__mmput (1,284,389 samples, 0.58%)</title><rect x="1183.2" y="597" width="6.8" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="1186.21" y="607.5" ></text>
</g>
<g >
<title>native_write_msr (8,409,466 samples, 3.77%)</title><rect x="799.1" y="373" width="44.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="802.10" y="383.5" >nati..</text>
</g>
<g >
<title>BackendMain (1,057,678 samples, 0.47%)</title><rect x="10.0" y="661" width="5.6" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="13.00" y="671.5" ></text>
</g>
<g >
<title>__msecs_to_jiffies (585,283 samples, 0.26%)</title><rect x="685.1" y="437" width="3.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="688.14" y="447.5" ></text>
</g>
<g >
<title>cpuacct_charge (1,241,294 samples, 0.56%)</title><rect x="563.0" y="405" width="6.6" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="566.04" y="415.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (681,920 samples, 0.31%)</title><rect x="181.8" y="565" width="3.6" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="184.79" y="575.5" ></text>
</g>
<g >
<title>delayed_work_timer_fn (20,483 samples, 0.01%)</title><rect x="286.7" y="389" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="289.74" y="399.5" ></text>
</g>
<g >
<title>[libc.so.6] (2,297,706 samples, 1.03%)</title><rect x="1171.1" y="693" width="12.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1174.06" y="703.5" ></text>
</g>
<g >
<title>dsa_detach (542,369 samples, 0.24%)</title><rect x="1180.3" y="485" width="2.9" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="1183.34" y="495.5" ></text>
</g>
<g >
<title>BasicOpenFilePerm (459,525 samples, 0.21%)</title><rect x="10.0" y="389" width="2.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.00" y="399.5" ></text>
</g>
<g >
<title>zap_pte_range (1,284,389 samples, 0.58%)</title><rect x="1183.2" y="501" width="6.8" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="1186.21" y="511.5" ></text>
</g>
<g >
<title>x86_pmu_disable (407,746 samples, 0.18%)</title><rect x="352.4" y="325" width="2.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="355.43" y="335.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (249,238 samples, 0.11%)</title><rect x="760.5" y="437" width="1.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="763.54" y="447.5" ></text>
</g>
<g >
<title>handle_mm_fault (535,765 samples, 0.24%)</title><rect x="1177.5" y="341" width="2.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1180.51" y="351.5" ></text>
</g>
<g >
<title>avg_vruntime (2,697,485 samples, 1.21%)</title><rect x="492.5" y="421" width="14.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="495.53" y="431.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (845,538 samples, 0.38%)</title><rect x="400.1" y="469" width="4.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="403.08" y="479.5" ></text>
</g>
<g >
<title>native_read_msr (251,862 samples, 0.11%)</title><rect x="181.8" y="389" width="1.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="184.79" y="399.5" ></text>
</g>
<g >
<title>exec_simple_query (1,057,678 samples, 0.47%)</title><rect x="10.0" y="629" width="5.6" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="13.00" y="639.5" ></text>
</g>
<g >
<title>update_min_vruntime (812,361 samples, 0.36%)</title><rect x="625.2" y="437" width="4.3" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="628.16" y="447.5" ></text>
</g>
<g >
<title>readdir64 (388,584 samples, 0.17%)</title><rect x="1172.6" y="309" width="2.0" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1175.56" y="319.5" ></text>
</g>
<g >
<title>put_prev_entity (287,668 samples, 0.13%)</title><rect x="733.5" y="453" width="1.5" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="736.46" y="463.5" ></text>
</g>
<g >
<title>exit_mm (1,284,389 samples, 0.58%)</title><rect x="1183.2" y="629" width="6.8" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="1186.21" y="639.5" ></text>
</g>
<g >
<title>update_load_avg (291,838 samples, 0.13%)</title><rect x="623.6" y="437" width="1.6" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="626.62" y="447.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (78,005 samples, 0.03%)</title><rect x="404.6" y="389" width="0.4" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="407.55" y="399.5" ></text>
</g>
<g >
<title>scheduler_tick (78,005 samples, 0.03%)</title><rect x="404.6" y="341" width="0.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="407.55" y="351.5" ></text>
</g>
<g >
<title>tick_program_event (471,923 samples, 0.21%)</title><rect x="668.4" y="389" width="2.5" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="671.42" y="399.5" ></text>
</g>
<g >
<title>open (459,525 samples, 0.21%)</title><rect x="10.0" y="373" width="2.4" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="13.00" y="383.5" ></text>
</g>
<g >
<title>MemoryContextCheck (548,626 samples, 0.25%)</title><rect x="1174.6" y="517" width="2.9" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1177.61" y="527.5" ></text>
</g>
<g >
<title>update_cfs_group (1,375,886 samples, 0.62%)</title><rect x="506.8" y="421" width="7.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="509.79" y="431.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (431,049 samples, 0.19%)</title><rect x="90.3" y="629" width="2.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="93.32" y="639.5" ></text>
</g>
<g >
<title>rseq_get_rseq_cs (431,596 samples, 0.19%)</title><rect x="286.8" y="533" width="2.3" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="289.84" y="543.5" ></text>
</g>
<g >
<title>x86_pmu_disable (251,862 samples, 0.11%)</title><rect x="181.8" y="437" width="1.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="184.79" y="447.5" ></text>
</g>
<g >
<title>pollwake (459,525 samples, 0.21%)</title><rect x="10.0" y="101" width="2.4" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" />
<text x="13.00" y="111.5" ></text>
</g>
<g >
<title>__schedule (131,601,843 samples, 58.96%)</title><rect x="418.8" y="485" width="695.7" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="421.79" y="495.5" >__schedule</text>
</g>
<g >
<title>[libc.so.6] (535,765 samples, 0.24%)</title><rect x="1177.5" y="533" width="2.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1180.51" y="543.5" ></text>
</g>
<g >
<title>newidle_balance (779,454 samples, 0.35%)</title><rect x="679.3" y="453" width="4.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="682.28" y="463.5" ></text>
</g>
<g >
<title>x86_pmu_disable (996,880 samples, 0.45%)</title><rect x="654.1" y="277" width="5.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="657.14" y="287.5" ></text>
</g>
<g >
<title>x64_sys_call (459,525 samples, 0.21%)</title><rect x="10.0" y="309" width="2.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="13.00" y="319.5" ></text>
</g>
<g >
<title>all (223,205,324 samples, 100%)</title><rect x="10.0" y="757" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="767.5" ></text>
</g>
<g >
<title>common_nsleep (147,674,689 samples, 66.16%)</title><rect x="339.6" y="549" width="780.7" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="342.61" y="559.5" >common_nsleep</text>
</g>
<g >
<title>BackendStartup (2,297,706 samples, 1.03%)</title><rect x="1171.1" y="629" width="12.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="1174.06" y="639.5" ></text>
</g>
<g >
<title>run_timer_softirq (20,483 samples, 0.01%)</title><rect x="286.7" y="437" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="289.74" y="447.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturn (1,057,678 samples, 0.47%)</title><rect x="10.0" y="485" width="5.6" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="13.00" y="495.5" ></text>
</g>
<g >
<title>open (598,153 samples, 0.27%)</title><rect x="12.4" y="341" width="3.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="15.43" y="351.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (78,005 samples, 0.03%)</title><rect x="404.6" y="437" width="0.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="407.55" y="447.5" ></text>
</g>
<g >
<title>finish_xact_command (548,626 samples, 0.25%)</title><rect x="1174.6" y="533" width="2.9" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1177.61" y="543.5" ></text>
</g>
<g >
<title>update_process_times (431,049 samples, 0.19%)</title><rect x="90.3" y="533" width="2.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="93.32" y="543.5" ></text>
</g>
<g >
<title>update_curr (1,053,928 samples, 0.47%)</title><rect x="660.3" y="293" width="5.6" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="663.29" y="303.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (415,629 samples, 0.19%)</title><rect x="1166.9" y="645" width="2.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1169.90" y="655.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (1,235,038 samples, 0.55%)</title><rect x="366.5" y="469" width="6.5" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="369.49" y="479.5" ></text>
</g>
<g >
<title>__put_user_8 (1,138,326 samples, 0.51%)</title><rect x="245.9" y="549" width="6.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="248.94" y="559.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (1,057,678 samples, 0.47%)</title><rect x="10.0" y="581" width="5.6" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="13.00" y="591.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (6,359,627 samples, 2.85%)</title><rect x="641.8" y="453" width="33.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="644.77" y="463.5" >as..</text>
</g>
<g >
<title>__x64_sys_clock_nanosleep (321,957 samples, 0.14%)</title><rect x="215.4" y="581" width="1.7" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="218.45" y="591.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (147,674,689 samples, 66.16%)</title><rect x="339.6" y="533" width="780.7" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="342.61" y="543.5" >hrtimer_nanosleep</text>
</g>
<g >
<title>ext4_readdir (388,584 samples, 0.17%)</title><rect x="1172.6" y="197" width="2.0" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="1175.56" y="207.5" ></text>
</g>
<g >
<title>__nanosleep (199,562,721 samples, 89.41%)</title><rect x="111.9" y="645" width="1055.0" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text x="114.89" y="655.5" >__nanosleep</text>
</g>
<g >
<title>syscall_exit_to_user_mode (16,130,827 samples, 7.23%)</title><rect x="232.9" y="581" width="85.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="235.91" y="591.5" >syscall_ex..</text>
</g>
<g >
<title>__munmap (542,369 samples, 0.24%)</title><rect x="1180.3" y="437" width="2.9" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1183.34" y="447.5" ></text>
</g>
<g >
<title>shmem_exit (542,369 samples, 0.24%)</title><rect x="1180.3" y="533" width="2.9" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="1183.34" y="543.5" ></text>
</g>
<g >
<title>do_sys_openat2 (598,153 samples, 0.27%)</title><rect x="12.4" y="245" width="3.2" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text x="15.43" y="255.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (251,862 samples, 0.11%)</title><rect x="181.8" y="405" width="1.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="184.79" y="415.5" ></text>
</g>
<g >
<title>schedule_debug.isra.0 (1,200,155 samples, 0.54%)</title><rect x="1104.6" y="469" width="6.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1107.57" y="479.5" ></text>
</g>
<g >
<title>ExecProject (1,057,678 samples, 0.47%)</title><rect x="10.0" y="517" width="5.6" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="13.00" y="527.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (180,072,805 samples, 80.68%)</title><rect x="194.4" y="613" width="951.9" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="197.35" y="623.5" >entry_SYSCALL_64</text>
</g>
<g >
<title>psi_flags_change (404,689 samples, 0.18%)</title><rect x="1033.8" y="453" width="2.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1036.82" y="463.5" ></text>
</g>
<g >
<title>update_process_times (78,005 samples, 0.03%)</title><rect x="404.6" y="357" width="0.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="407.55" y="367.5" ></text>
</g>
<g >
<title>scheduler_tick (407,746 samples, 0.18%)</title><rect x="352.4" y="373" width="2.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="355.43" y="383.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (2,871,739 samples, 1.29%)</title><rect x="1078.0" y="405" width="15.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1080.98" y="415.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (1,990,232 samples, 0.89%)</title><rect x="388.3" y="437" width="10.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="391.29" y="447.5" ></text>
</g>
<g >
<title>avg_vruntime (280,784 samples, 0.13%)</title><rect x="457.9" y="437" width="1.5" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="460.89" y="447.5" ></text>
</g>
<g >
<title>SaveSlotToPath (1,057,678 samples, 0.47%)</title><rect x="10.0" y="421" width="5.6" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="13.00" y="431.5" ></text>
</g>
<g >
<title>irq_exit_rcu (20,483 samples, 0.01%)</title><rect x="286.7" y="485" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="289.74" y="495.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (415,629 samples, 0.19%)</title><rect x="1166.9" y="597" width="2.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1169.90" y="607.5" ></text>
</g>
<g >
<title>update_rq_clock (680,731 samples, 0.30%)</title><rect x="1110.9" y="469" width="3.6" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="1113.91" y="479.5" ></text>
</g>
<g >
<title>common_nsleep (960,926 samples, 0.43%)</title><rect x="1139.3" y="565" width="5.0" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1142.26" y="575.5" ></text>
</g>
<g >
<title>update_load_avg (272,640 samples, 0.12%)</title><rect x="665.9" y="293" width="1.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="668.86" y="303.5" ></text>
</g>
<g >
<title>__x64_sys_openat (598,153 samples, 0.27%)</title><rect x="12.4" y="261" width="3.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="15.43" y="271.5" ></text>
</g>
<g >
<title>pg_create_logical_replication_slot (670,946 samples, 0.30%)</title><rect x="1171.1" y="389" width="3.5" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1174.06" y="399.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (454,728 samples, 0.20%)</title><rect x="185.4" y="565" width="2.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="188.40" y="575.5" ></text>
</g>
<g >
<title>perf_event_task_tick (407,746 samples, 0.18%)</title><rect x="352.4" y="357" width="2.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="355.43" y="367.5" ></text>
</g>
<g >
<title>ReadPageInternal (218,565,551 samples, 97.92%)</title><rect x="15.6" y="693" width="1155.5" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="18.59" y="703.5" >ReadPageInternal</text>
</g>
<g >
<title>__libc_start_main (2,297,706 samples, 1.03%)</title><rect x="1171.1" y="709" width="12.1" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="1174.06" y="719.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,284,389 samples, 0.58%)</title><rect x="1183.2" y="709" width="6.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1186.21" y="719.5" ></text>
</g>
<g >
<title>unmap_single_vma (1,284,389 samples, 0.58%)</title><rect x="1183.2" y="549" width="6.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1186.21" y="559.5" ></text>
</g>
<g >
<title>put_prev_entity (2,363,472 samples, 1.06%)</title><rect x="739.1" y="437" width="12.5" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="742.12" y="447.5" ></text>
</g>
<g >
<title>send_to_group (459,525 samples, 0.21%)</title><rect x="10.0" y="197" width="2.4" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="13.00" y="207.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,284,389 samples, 0.58%)</title><rect x="1183.2" y="693" width="6.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.21" y="703.5" ></text>
</g>
<g >
<title>update_blocked_averages (432,335 samples, 0.19%)</title><rect x="731.2" y="421" width="2.3" height="15.0" fill="rgb(240,163,38)" rx="2" ry="2" />
<text x="734.17" y="431.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (431,049 samples, 0.19%)</title><rect x="90.3" y="565" width="2.3" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="93.32" y="575.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,136,648 samples, 0.51%)</title><rect x="181.8" y="597" width="6.0" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="184.79" y="607.5" ></text>
</g>
<g >
<title>getdents64 (388,584 samples, 0.17%)</title><rect x="1172.6" y="293" width="2.0" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1175.56" y="303.5" ></text>
</g>
<g >
<title>__update_load_avg_se (614,748 samples, 0.28%)</title><rect x="602.9" y="405" width="3.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="605.86" y="415.5" ></text>
</g>
<g >
<title>OpenTransientFilePerm (598,153 samples, 0.27%)</title><rect x="12.4" y="373" width="3.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="15.43" y="383.5" ></text>
</g>
<g >
<title>do_nanosleep (145,698,584 samples, 65.28%)</title><rect x="350.1" y="517" width="770.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="353.06" y="527.5" >do_nanosleep</text>
</g>
<g >
<title>update_min_vruntime (773,973 samples, 0.35%)</title><rect x="606.1" y="421" width="4.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="609.11" y="431.5" ></text>
</g>
<g >
<title>exec_simple_query (1,219,572 samples, 0.55%)</title><rect x="1171.1" y="565" width="6.4" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="1174.06" y="575.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (50,682,001 samples, 22.71%)</title><rect x="758.5" y="453" width="268.0" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="761.52" y="463.5" >__perf_event_task_sched_out</text>
</g>
<g >
<title>exit_mmap (1,284,389 samples, 0.58%)</title><rect x="1183.2" y="581" width="6.8" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="1186.21" y="591.5" ></text>
</g>
<g >
<title>ExecResult (670,946 samples, 0.30%)</title><rect x="1171.1" y="469" width="3.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1174.06" y="479.5" ></text>
</g>
<g >
<title>FreeDecodingContext (388,584 samples, 0.17%)</title><rect x="1172.6" y="357" width="2.0" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1175.56" y="367.5" ></text>
</g>
<g >
<title>switch_fpu_return (1,774,949 samples, 0.80%)</title><rect x="223.5" y="581" width="9.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="226.53" y="591.5" ></text>
</g>
<g >
<title>mmput (1,284,389 samples, 0.58%)</title><rect x="1183.2" y="613" width="6.8" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="1186.21" y="623.5" ></text>
</g>
<g >
<title>do_exit (1,284,389 samples, 0.58%)</title><rect x="1183.2" y="645" width="6.8" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1186.21" y="655.5" ></text>
</g>
<g >
<title>__calc_delta.constprop.0 (1,405,012 samples, 0.63%)</title><rect x="482.4" y="421" width="7.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="485.39" y="431.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (459,525 samples, 0.21%)</title><rect x="10.0" y="37" width="2.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="13.00" y="47.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturnSwitchContext (670,946 samples, 0.30%)</title><rect x="1171.1" y="437" width="3.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1174.06" y="447.5" ></text>
</g>
<g >
<title>native_read_msr (33,058,880 samples, 14.81%)</title><rect x="850.1" y="357" width="174.8" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="853.11" y="367.5" >native_read_msr</text>
</g>
<g >
<title>__calc_delta.constprop.0 (590,964 samples, 0.26%)</title><rect x="556.5" y="405" width="3.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="559.46" y="415.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (407,746 samples, 0.18%)</title><rect x="352.4" y="421" width="2.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="355.43" y="431.5" ></text>
</g>
<g >
<title>[unknown] (219,623,229 samples, 98.40%)</title><rect x="10.0" y="725" width="1161.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="735.5" >[unknown]</text>
</g>
<g >
<title>run_timer_softirq (361,271 samples, 0.16%)</title><rect x="673.5" y="373" width="1.9" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="676.48" y="383.5" ></text>
</g>
<g >
<title>rcu_sched_clock_irq (419,704 samples, 0.19%)</title><rect x="647.1" y="325" width="2.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="650.07" y="335.5" ></text>
</g>
<g >
<title>native_write_msr (471,923 samples, 0.21%)</title><rect x="668.4" y="341" width="2.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="671.42" y="351.5" ></text>
</g>
<g >
<title>perf_ctx_disable (48,066,134 samples, 21.53%)</title><rect x="770.8" y="421" width="254.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="773.77" y="431.5" >perf_ctx_disable</text>
</g>
<g >
<title>__hrtimer_start_range_ns (8,517,329 samples, 3.82%)</title><rect x="355.1" y="485" width="45.0" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="358.05" y="495.5" >__hr..</text>
</g>
<g >
<title>ExecEvalExprNoReturn (670,946 samples, 0.30%)</title><rect x="1171.1" y="421" width="3.5" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="1174.06" y="431.5" ></text>
</g>
<g >
<title>SnapBuildProcessRunningXacts (282,362 samples, 0.13%)</title><rect x="1171.1" y="309" width="1.5" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="1174.06" y="319.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (535,765 samples, 0.24%)</title><rect x="1177.5" y="453" width="2.8" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1180.51" y="463.5" ></text>
</g>
<g >
<title>tick_sched_handle (78,005 samples, 0.03%)</title><rect x="404.6" y="373" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="407.55" y="383.5" ></text>
</g>
<g >
<title>try_to_wake_up (361,271 samples, 0.16%)</title><rect x="673.5" y="261" width="1.9" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="676.48" y="271.5" ></text>
</g>
<g >
<title>OpenTransientFilePerm (459,525 samples, 0.21%)</title><rect x="10.0" y="405" width="2.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="13.00" y="415.5" ></text>
</g>
<g >
<title>retbleed_untrain_ret (183,914 samples, 0.08%)</title><rect x="1136.9" y="533" width="1.0" height="15.0" fill="rgb(210,25,5)" rx="2" ry="2" />
<text x="1139.89" y="543.5" ></text>
</g>
<g >
<title>perf_event_task_tick (251,862 samples, 0.11%)</title><rect x="181.8" y="469" width="1.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="184.79" y="479.5" ></text>
</g>
<g >
<title>do_syscall_64 (598,153 samples, 0.27%)</title><rect x="12.4" y="293" width="3.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="15.43" y="303.5" ></text>
</g>
<g >
<title>update_blocked_averages (266,440 samples, 0.12%)</title><rect x="672.1" y="357" width="1.4" height="15.0" fill="rgb(240,163,38)" rx="2" ry="2" />
<text x="675.08" y="367.5" ></text>
</g>
<g >
<title>PortalRun (670,946 samples, 0.30%)</title><rect x="1171.1" y="549" width="3.5" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="1174.06" y="559.5" ></text>
</g>
<g >
<title>do_filp_open (459,525 samples, 0.21%)</title><rect x="10.0" y="261" width="2.4" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="13.00" y="271.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (535,765 samples, 0.24%)</title><rect x="1177.5" y="501" width="2.8" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1180.51" y="511.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (681,920 samples, 0.31%)</title><rect x="181.8" y="581" width="3.6" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="184.79" y="591.5" ></text>
</g>
<g >
<title>swake_up_one (64,982 samples, 0.03%)</title><rect x="670.9" y="277" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="673.91" y="287.5" ></text>
</g>
<g >
<title>ExecProcNode (670,946 samples, 0.30%)</title><rect x="1171.1" y="485" width="3.5" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1174.06" y="495.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (681,920 samples, 0.31%)</title><rect x="181.8" y="549" width="3.6" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="184.79" y="559.5" ></text>
</g>
<g >
<title>native_write_msr (64,982 samples, 0.03%)</title><rect x="670.9" y="197" width="0.4" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="673.91" y="207.5" ></text>
</g>
<g >
<title>PortalRunSelect (1,057,678 samples, 0.47%)</title><rect x="10.0" y="597" width="5.6" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="13.00" y="607.5" ></text>
</g>
<g >
<title>ReplicationSlotSave (1,057,678 samples, 0.47%)</title><rect x="10.0" y="437" width="5.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="13.00" y="447.5" ></text>
</g>
<g >
<title>hrtimer_active (166,711 samples, 0.07%)</title><rect x="659.4" y="293" width="0.9" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="662.41" y="303.5" ></text>
</g>
<g >
<title>rcu_note_context_switch (945,723 samples, 0.42%)</title><rect x="1099.6" y="469" width="5.0" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="1102.57" y="479.5" ></text>
</g>
<g >
<title>ext4_htree_fill_tree (388,584 samples, 0.17%)</title><rect x="1172.6" y="165" width="2.0" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="1175.56" y="175.5" ></text>
</g>
<g >
<title>ExecInterpExpr (670,946 samples, 0.30%)</title><rect x="1171.1" y="405" width="3.5" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text x="1174.06" y="415.5" ></text>
</g>
<g >
<title>__queue_work.part.0 (20,483 samples, 0.01%)</title><rect x="286.7" y="373" width="0.1" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="289.74" y="383.5" ></text>
</g>
<g >
<title>handle_pte_fault (535,765 samples, 0.24%)</title><rect x="1177.5" y="309" width="2.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1180.51" y="319.5" ></text>
</g>
<g >
<title>pg_create_logical_replication_slot (1,057,678 samples, 0.47%)</title><rect x="10.0" y="453" width="5.6" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="13.00" y="463.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (2,675,810 samples, 1.20%)</title><rect x="1078.0" y="373" width="14.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1080.98" y="383.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (388,584 samples, 0.17%)</title><rect x="1172.6" y="277" width="2.0" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="1175.56" y="287.5" ></text>
</g>
<g >
<title>GetXLogReplayRecPtr (2,782,193 samples, 1.25%)</title><rect x="26.4" y="661" width="14.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="29.39" y="671.5" ></text>
</g>
<g >
<title>ExecResult (1,057,678 samples, 0.47%)</title><rect x="10.0" y="533" width="5.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="13.00" y="543.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (5,039,696 samples, 2.26%)</title><rect x="641.8" y="389" width="26.6" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="644.77" y="399.5" >_..</text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (38,625 samples, 0.02%)</title><rect x="286.6" y="501" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="289.64" y="511.5" ></text>
</g>
<g >
<title>main (2,297,706 samples, 1.03%)</title><rect x="1171.1" y="677" width="12.1" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="1174.06" y="687.5" ></text>
</g>
<g >
<title>PortalRun (1,057,678 samples, 0.47%)</title><rect x="10.0" y="613" width="5.6" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="13.00" y="623.5" ></text>
</g>
<g >
<title>switch_fpu_return (489,352 samples, 0.22%)</title><rect x="310.8" y="565" width="2.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="313.77" y="575.5" ></text>
</g>
<g >
<title>PortalRunSelect (670,946 samples, 0.30%)</title><rect x="1171.1" y="533" width="3.5" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="1174.06" y="543.5" ></text>
</g>
<g >
<title>update_cfs_group (2,203,425 samples, 0.99%)</title><rect x="610.2" y="437" width="11.7" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="613.21" y="447.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (407,746 samples, 0.18%)</title><rect x="352.4" y="485" width="2.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="355.43" y="495.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (1,284,389 samples, 0.58%)</title><rect x="1183.2" y="725" width="6.8" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="1186.21" y="735.5" ></text>
</g>
<g >
<title>inotify_handle_inode_event (459,525 samples, 0.21%)</title><rect x="10.0" y="165" width="2.4" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="13.00" y="175.5" ></text>
</g>
<g >
<title>__handle_mm_fault (535,765 samples, 0.24%)</title><rect x="1177.5" y="325" width="2.8" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1180.51" y="335.5" ></text>
</g>
<g >
<title>do_syscall_64 (542,369 samples, 0.24%)</title><rect x="1180.3" y="405" width="2.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1183.34" y="415.5" ></text>
</g>
<g >
<title>perf_pmu_nop_void (298,389 samples, 0.13%)</title><rect x="1024.9" y="421" width="1.6" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" />
<text x="1027.88" y="431.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (78,005 samples, 0.03%)</title><rect x="404.6" y="421" width="0.4" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="407.55" y="431.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (535,765 samples, 0.24%)</title><rect x="1177.5" y="405" width="2.8" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1180.51" y="415.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (288,229 samples, 0.13%)</title><rect x="779.4" y="405" width="1.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="782.38" y="415.5" ></text>
</g>
<g >
<title>ExecProject (670,946 samples, 0.30%)</title><rect x="1171.1" y="453" width="3.5" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="1174.06" y="463.5" ></text>
</g>
<g >
<title>x86_pmu_disable (46,149,964 samples, 20.68%)</title><rect x="780.9" y="405" width="244.0" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="783.90" y="415.5" >x86_pmu_disable</text>
</g>
<g >
<title>timerqueue_add (1,133,399 samples, 0.51%)</title><rect x="367.0" y="453" width="6.0" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="370.03" y="463.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (49,095,045 samples, 22.00%)</title><rect x="766.9" y="437" width="259.6" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="769.91" y="447.5" >perf_event_context_sched_out</text>
</g>
<g >
<title>rcu_report_qs_rnp (64,982 samples, 0.03%)</title><rect x="670.9" y="325" width="0.4" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="673.91" y="335.5" ></text>
</g>
<g >
<title>sched_clock_cpu (294,334 samples, 0.13%)</title><rect x="1113.0" y="453" width="1.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1115.96" y="463.5" ></text>
</g>
<g >
<title>clockevents_program_event (471,923 samples, 0.21%)</title><rect x="668.4" y="373" width="2.5" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="671.42" y="383.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (415,629 samples, 0.19%)</title><rect x="1166.9" y="581" width="2.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1169.90" y="591.5" ></text>
</g>
<g >
<title>call_timer_fn (361,271 samples, 0.16%)</title><rect x="673.5" y="341" width="1.9" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="676.48" y="351.5" ></text>
</g>
<g >
<title>hrtick_update (475,820 samples, 0.21%)</title><rect x="629.5" y="453" width="2.5" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="632.45" y="463.5" ></text>
</g>
<g >
<title>postgres (223,205,324 samples, 100.00%)</title><rect x="10.0" y="741" width="1180.0" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="13.00" y="751.5" >postgres</text>
</g>
<g >
<title>tick_nohz_highres_handler (408,838 samples, 0.18%)</title><rect x="88.2" y="549" width="2.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="91.16" y="559.5" ></text>
</g>
<g >
<title>read_local_xlog_page_guts (218,565,551 samples, 97.92%)</title><rect x="15.6" y="677" width="1155.5" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="18.59" y="687.5" >read_local_xlog_page_guts</text>
</g>
<g >
<title>mas_walk (542,369 samples, 0.24%)</title><rect x="1180.3" y="309" width="2.9" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1183.34" y="319.5" ></text>
</g>
<g >
<title>do_read_fault (535,765 samples, 0.24%)</title><rect x="1177.5" y="277" width="2.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1180.51" y="287.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturnSwitchContext (1,057,678 samples, 0.47%)</title><rect x="10.0" y="501" width="5.6" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="13.00" y="511.5" ></text>
</g>
<g >
<title>do_group_exit (1,284,389 samples, 0.58%)</title><rect x="1183.2" y="661" width="6.8" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="1186.21" y="671.5" ></text>
</g>
<g >
<title>get_hash_value (282,362 samples, 0.13%)</title><rect x="1171.1" y="245" width="1.5" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="1174.06" y="255.5" ></text>
</g>
<g >
<title>__x86_indirect_thunk_array (434,391 samples, 0.19%)</title><rect x="429.3" y="469" width="2.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="432.32" y="479.5" ></text>
</g>
<g >
<title>record_times (757,338 samples, 0.34%)</title><rect x="1074.0" y="437" width="4.0" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="1076.98" y="447.5" ></text>
</g>
<g >
<title>fsnotify (459,525 samples, 0.21%)</title><rect x="10.0" y="213" width="2.4" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="13.00" y="223.5" ></text>
</g>
<g >
<title>blkcg_maybe_throttle_current (318,251 samples, 0.14%)</title><rect x="217.1" y="581" width="1.7" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="220.15" y="591.5" ></text>
</g>
<g >
<title>update_rt_rq_load_avg (432,335 samples, 0.19%)</title><rect x="731.2" y="405" width="2.3" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="734.17" y="415.5" ></text>
</g>
<g >
<title>unmap_vmas (1,284,389 samples, 0.58%)</title><rect x="1183.2" y="565" width="6.8" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="1186.21" y="575.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (78,005 samples, 0.03%)</title><rect x="404.6" y="405" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="407.55" y="415.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (407,746 samples, 0.18%)</title><rect x="352.4" y="341" width="2.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="355.43" y="351.5" ></text>
</g>
<g >
<title>dequeue_entity (28,530,293 samples, 12.78%)</title><rect x="459.4" y="437" width="150.8" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="462.38" y="447.5" >dequeue_entity</text>
</g>
<g >
<title>dequeue_task_fair (36,749,768 samples, 16.46%)</title><rect x="435.2" y="453" width="194.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="438.17" y="463.5" >dequeue_task_fair</text>
</g>
<g >
<title>mas_find (542,369 samples, 0.24%)</title><rect x="1180.3" y="325" width="2.9" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="1183.34" y="335.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (20,483 samples, 0.01%)</title><rect x="286.7" y="469" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="289.74" y="479.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (535,765 samples, 0.24%)</title><rect x="1177.5" y="421" width="2.8" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1180.51" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,284,389 samples, 0.58%)</title><rect x="1183.2" y="677" width="6.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.21" y="687.5" ></text>
</g>
<g >
<title>proc_exit (1,078,134 samples, 0.48%)</title><rect x="1177.5" y="565" width="5.7" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1180.51" y="575.5" ></text>
</g>
<g >
<title>postmaster_child_launch (2,297,706 samples, 1.03%)</title><rect x="1171.1" y="613" width="12.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1174.06" y="623.5" ></text>
</g>
<g >
<title>scheduler_tick (3,618,632 samples, 1.62%)</title><rect x="649.3" y="325" width="19.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="652.29" y="335.5" ></text>
</g>
<g >
<title>do_fault (535,765 samples, 0.24%)</title><rect x="1177.5" y="293" width="2.8" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="1180.51" y="303.5" ></text>
</g>
<g >
<title>handle_softirqs (20,483 samples, 0.01%)</title><rect x="286.7" y="453" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="289.74" y="463.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (294,334 samples, 0.13%)</title><rect x="1113.0" y="389" width="1.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1115.96" y="399.5" ></text>
</g>
<g >
<title>update_min_vruntime (1,688,675 samples, 0.76%)</title><rect x="573.4" y="405" width="9.0" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="576.44" y="415.5" ></text>
</g>
<g >
<title>task_tick_fair (430,058 samples, 0.19%)</title><rect x="183.1" y="469" width="2.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="186.12" y="479.5" ></text>
</g>
<g >
<title>rseq_update_cpu_node_id (2,963,049 samples, 1.33%)</title><rect x="289.1" y="549" width="15.7" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="292.13" y="559.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (431,049 samples, 0.19%)</title><rect x="90.3" y="645" width="2.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="93.32" y="655.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (407,746 samples, 0.18%)</title><rect x="352.4" y="501" width="2.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="355.43" y="511.5" ></text>
</g>
<g >
<title>rep_movs_alternative (1,263,117 samples, 0.57%)</title><rect x="1130.2" y="533" width="6.7" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1133.21" y="543.5" ></text>
</g>
<g >
<title>account_process_tick (336,453 samples, 0.15%)</title><rect x="641.8" y="325" width="1.8" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="644.77" y="335.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (430,058 samples, 0.19%)</title><rect x="183.1" y="437" width="2.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="186.12" y="447.5" ></text>
</g>
<g >
<title>ExecInterpExpr (1,057,678 samples, 0.47%)</title><rect x="10.0" y="469" width="5.6" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text x="13.00" y="479.5" ></text>
</g>
<g >
<title>rcu_pending (431,049 samples, 0.19%)</title><rect x="90.3" y="501" width="2.3" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="93.32" y="511.5" ></text>
</g>
<g >
<title>__queue_work.part.0 (361,271 samples, 0.16%)</title><rect x="673.5" y="309" width="1.9" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="676.48" y="319.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (251,862 samples, 0.11%)</title><rect x="181.8" y="421" width="1.3" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="184.79" y="431.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (681,920 samples, 0.31%)</title><rect x="181.8" y="533" width="3.6" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="184.79" y="543.5" ></text>
</g>
<g >
<title>dsm_impl_posix (542,369 samples, 0.24%)</title><rect x="1180.3" y="453" width="2.9" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1183.34" y="463.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (996,880 samples, 0.45%)</title><rect x="654.1" y="261" width="5.3" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="657.14" y="271.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (78,005 samples, 0.03%)</title><rect x="404.6" y="485" width="0.4" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="407.55" y="495.5" ></text>
</g>
<g >
<title>try_to_wake_up (459,525 samples, 0.21%)</title><rect x="10.0" y="69" width="2.4" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="13.00" y="79.5" ></text>
</g>
<g >
<title>rcu_pending (419,704 samples, 0.19%)</title><rect x="647.1" y="309" width="2.2" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="650.07" y="319.5" ></text>
</g>
<g >
<title>tick_sched_handle (5,039,696 samples, 2.26%)</title><rect x="641.8" y="357" width="26.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="644.77" y="367.5" >t..</text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (408,838 samples, 0.18%)</title><rect x="88.2" y="613" width="2.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="91.16" y="623.5" ></text>
</g>
<g >
<title>rcu_gp_kthread_wake (64,982 samples, 0.03%)</title><rect x="670.9" y="309" width="0.4" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="673.91" y="319.5" ></text>
</g>
<g >
<title>finish_xact_command (548,626 samples, 0.25%)</title><rect x="1174.6" y="549" width="2.9" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1177.61" y="559.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (264,839 samples, 0.12%)</title><rect x="1137.9" y="549" width="1.4" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1140.86" y="559.5" ></text>
</g>
<g >
<title>ktime_get (4,716,171 samples, 2.11%)</title><rect x="373.9" y="469" width="24.9" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="376.88" y="479.5" >k..</text>
</g>
<g >
<title>find_busiest_group (496,265 samples, 0.22%)</title><rect x="728.5" y="405" width="2.7" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="731.55" y="415.5" ></text>
</g>
<g >
<title>exc_page_fault (535,765 samples, 0.24%)</title><rect x="1177.5" y="373" width="2.8" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1180.51" y="383.5" ></text>
</g>
</g>
</svg>