head.svg
image/svg+xml
Filename: head.svg
Type: image/svg+xml
Part: 0
<?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="1238" onload="init(evt)" viewBox="0 0 1200 1238" 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="1238.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="1221" > </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="1221" > </text>
<g id="frames">
<g >
<title>tick_sched_handle (570,983 samples, 0.02%)</title><rect x="132.7" y="981" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="135.66" y="991.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (891,440 samples, 0.03%)</title><rect x="516.0" y="485" width="0.4" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="519.04" y="495.5" ></text>
</g>
<g >
<title>sched_clock_cpu (418,966 samples, 0.01%)</title><rect x="81.5" y="853" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="84.55" y="863.5" ></text>
</g>
<g >
<title>x86_pmu_disable (570,983 samples, 0.02%)</title><rect x="132.7" y="901" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="135.66" y="911.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (543,862 samples, 0.02%)</title><rect x="500.8" y="485" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="503.77" y="495.5" ></text>
</g>
<g >
<title>x86_pmu_disable (281,182 samples, 0.01%)</title><rect x="265.9" y="421" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="268.95" y="431.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (5,442,319 samples, 0.17%)</title><rect x="1162.2" y="405" width="2.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1165.19" y="415.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (383,344 samples, 0.01%)</title><rect x="282.4" y="405" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="285.37" y="415.5" ></text>
</g>
<g >
<title>write (281,122 samples, 0.01%)</title><rect x="1187.5" y="677" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="1190.47" y="687.5" ></text>
</g>
<g >
<title>handle_softirqs (1,868,037 samples, 0.06%)</title><rect x="699.8" y="405" width="0.7" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="702.85" y="415.5" ></text>
</g>
<g >
<title>LockAcquire (446,217,055 samples, 13.94%)</title><rect x="148.2" y="677" width="164.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="151.18" y="687.5" >LockAcquire</text>
</g>
<g >
<title>newidle_balance (50,519,113 samples, 1.58%)</title><rect x="845.2" y="453" width="18.6" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="848.20" y="463.5" ></text>
</g>
<g >
<title>dequeue_entity (190,687,509 samples, 5.96%)</title><rect x="607.7" y="453" width="70.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="610.72" y="463.5" >dequeue..</text>
</g>
<g >
<title>common_nsleep (1,577,686 samples, 0.05%)</title><rect x="130.7" y="997" width="0.6" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="133.69" y="1007.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (389,224 samples, 0.01%)</title><rect x="10.2" y="469" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="13.19" y="479.5" ></text>
</g>
<g >
<title>update_load_avg (7,973,314 samples, 0.25%)</title><rect x="48.4" y="853" width="2.9" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="51.39" y="863.5" ></text>
</g>
<g >
<title>perf_event_task_tick (271,346 samples, 0.01%)</title><rect x="200.5" y="469" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="203.50" y="479.5" ></text>
</g>
<g >
<title>tick_sched_handle (367,033 samples, 0.01%)</title><rect x="263.8" y="501" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="266.82" y="511.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (1,320,356 samples, 0.04%)</title><rect x="237.8" y="565" width="0.5" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="240.77" y="575.5" ></text>
</g>
<g >
<title>rseq_get_rseq_cs (3,646,982 samples, 0.11%)</title><rect x="516.4" y="549" width="1.3" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="519.37" y="559.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (355,401 samples, 0.01%)</title><rect x="1178.3" y="437" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="1181.27" y="447.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (687,263 samples, 0.02%)</title><rect x="326.3" y="581" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="329.25" y="591.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (322,335 samples, 0.01%)</title><rect x="552.1" y="501" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="555.10" y="511.5" ></text>
</g>
<g >
<title>tlb_batch_pages_flush (520,184 samples, 0.02%)</title><rect x="1189.7" y="901" width="0.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="1192.68" y="911.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (314,516 samples, 0.01%)</title><rect x="405.2" y="389" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="408.18" y="399.5" ></text>
</g>
<g >
<title>tick_sched_handle (988,011 samples, 0.03%)</title><rect x="188.4" y="533" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="191.39" y="543.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (507,212 samples, 0.02%)</title><rect x="1187.9" y="933" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1190.86" y="943.5" ></text>
</g>
<g >
<title>pfree (4,543,690 samples, 0.14%)</title><rect x="340.0" y="645" width="1.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="343.01" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,143,854 samples, 0.07%)</title><rect x="1189.1" y="1109" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.08" y="1119.5" ></text>
</g>
<g >
<title>x86_pmu_disable (988,011 samples, 0.03%)</title><rect x="188.4" y="453" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="191.39" y="463.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (429,625 samples, 0.01%)</title><rect x="263.8" y="565" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="266.80" y="575.5" ></text>
</g>
<g >
<title>rseq_get_rseq_cs (1,362,563 samples, 0.04%)</title><rect x="28.5" y="965" width="0.5" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="31.53" y="975.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (582,691 samples, 0.02%)</title><rect x="256.7" y="533" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="259.74" y="543.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (313,485 samples, 0.01%)</title><rect x="350.3" y="565" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="353.32" y="575.5" ></text>
</g>
<g >
<title>x86_pmu_disable (643,776 samples, 0.02%)</title><rect x="129.4" y="741" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="132.39" y="751.5" ></text>
</g>
<g >
<title>sched_clock (6,952,778 samples, 0.22%)</title><rect x="1161.7" y="453" width="2.6" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="1164.72" y="463.5" ></text>
</g>
<g >
<title>perf_event_task_tick (389,998 samples, 0.01%)</title><rect x="433.6" y="533" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="436.63" y="543.5" ></text>
</g>
<g >
<title>amd_brs_disable_all (533,494 samples, 0.02%)</title><rect x="726.9" y="277" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="729.90" y="287.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (276,874 samples, 0.01%)</title><rect x="395.4" y="373" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="398.36" y="383.5" ></text>
</g>
<g >
<title>ExecShutdownNode_walker (387,424 samples, 0.01%)</title><rect x="1187.6" y="917" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="1190.57" y="927.5" ></text>
</g>
<g >
<title>SnapBuildProcessRunningXacts (2,853,297,806 samples, 89.16%)</title><rect x="135.3" y="741" width="1052.2" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="138.35" y="751.5" >SnapBuildProcessRunningXacts</text>
</g>
<g >
<title>tick_sched_handle (431,267 samples, 0.01%)</title><rect x="1187.1" y="549" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1190.11" y="559.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (282,162 samples, 0.01%)</title><rect x="84.1" y="869" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="87.11" y="879.5" ></text>
</g>
<g >
<title>call_timer_fn (370,670 samples, 0.01%)</title><rect x="76.0" y="773" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="78.97" y="783.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (547,418 samples, 0.02%)</title><rect x="258.3" y="533" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="261.32" y="543.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (601,158 samples, 0.02%)</title><rect x="646.7" y="405" width="0.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="649.73" y="415.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (530,586 samples, 0.02%)</title><rect x="1188.0" y="869" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1191.05" y="879.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (297,830 samples, 0.01%)</title><rect x="708.3" y="277" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="711.28" y="287.5" ></text>
</g>
<g >
<title>[libc.so.6] (1,727,824 samples, 0.05%)</title><rect x="256.3" y="613" width="0.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="259.31" y="623.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,434,557 samples, 0.08%)</title><rect x="257.0" y="597" width="0.8" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="259.95" y="607.5" ></text>
</g>
<g >
<title>_start (2,855,391,574 samples, 89.23%)</title><rect x="135.3" y="1157" width="1052.9" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="138.35" y="1167.5" >_start</text>
</g>
<g >
<title>ResourceOwnerRememberLock (21,954,957 samples, 0.69%)</title><rect x="191.6" y="629" width="8.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="194.56" y="639.5" ></text>
</g>
<g >
<title>exit_mm (2,143,854 samples, 0.07%)</title><rect x="1189.1" y="1061" width="0.8" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="1192.08" y="1071.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,776,991 samples, 0.06%)</title><rect x="591.1" y="485" width="0.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="594.12" y="495.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (530,586 samples, 0.02%)</title><rect x="1188.0" y="853" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1191.05" y="863.5" ></text>
</g>
<g >
<title>alloc_inode (281,122 samples, 0.01%)</title><rect x="10.1" y="581" width="0.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="13.09" y="591.5" ></text>
</g>
<g >
<title>rcu_note_context_switch (1,070,570 samples, 0.03%)</title><rect x="126.9" y="901" width="0.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="129.89" y="911.5" ></text>
</g>
<g >
<title>lapic_next_event (3,102,297 samples, 0.10%)</title><rect x="74.3" y="789" width="1.1" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="77.29" y="799.5" ></text>
</g>
<g >
<title>virtnet_poll (293,538 samples, 0.01%)</title><rect x="33.0" y="821" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="35.97" y="831.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (409,109 samples, 0.01%)</title><rect x="372.5" y="421" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="375.52" y="431.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (1,150,696 samples, 0.04%)</title><rect x="413.6" y="469" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="416.61" y="479.5" ></text>
</g>
<g >
<title>sched_clock (4,159,615 samples, 0.13%)</title><rect x="125.1" y="853" width="1.5" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="128.11" y="863.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (357,437 samples, 0.01%)</title><rect x="814.1" y="261" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="817.13" y="271.5" ></text>
</g>
<g >
<title>tick_program_event (391,377 samples, 0.01%)</title><rect x="451.7" y="581" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="454.70" y="591.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (314,516 samples, 0.01%)</title><rect x="405.2" y="405" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="408.18" y="415.5" ></text>
</g>
<g >
<title>native_read_msr (372,982 samples, 0.01%)</title><rect x="258.4" y="373" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="261.38" y="383.5" ></text>
</g>
<g >
<title>run_timer_softirq (718,732 samples, 0.02%)</title><rect x="836.0" y="389" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="838.97" y="399.5" ></text>
</g>
<g >
<title>virtnet_rq_get_buf (350,433 samples, 0.01%)</title><rect x="336.7" y="501" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="339.66" y="511.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (1,538,173 samples, 0.05%)</title><rect x="1151.0" y="405" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1153.95" y="415.5" ></text>
</g>
<g >
<title>mt_free_rcu (477,130 samples, 0.01%)</title><rect x="833.6" y="341" width="0.1" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="836.55" y="351.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (274,802 samples, 0.01%)</title><rect x="47.1" y="821" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="50.12" y="831.5" ></text>
</g>
<g >
<title>update_min_vruntime (737,568 samples, 0.02%)</title><rect x="51.3" y="853" width="0.3" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="54.33" y="863.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (582,691 samples, 0.02%)</title><rect x="256.7" y="581" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="259.74" y="591.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (305,145 samples, 0.01%)</title><rect x="524.8" y="549" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="527.82" y="559.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (27,817,702 samples, 0.87%)</title><rect x="554.7" y="485" width="10.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="557.75" y="495.5" ></text>
</g>
<g >
<title>asm_common_interrupt (293,538 samples, 0.01%)</title><rect x="33.0" y="933" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="35.97" y="943.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (1,353,664 samples, 0.04%)</title><rect x="46.7" y="837" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="49.73" y="847.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (570,983 samples, 0.02%)</title><rect x="132.7" y="997" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="135.66" y="1007.5" ></text>
</g>
<g >
<title>sched_clock_cpu (357,437 samples, 0.01%)</title><rect x="814.1" y="293" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="817.13" y="303.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (277,993 samples, 0.01%)</title><rect x="199.5" y="549" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="202.46" y="559.5" ></text>
</g>
<g >
<title>mem_cgroup_handle_over_high (3,001,643 samples, 0.09%)</title><rect x="487.1" y="597" width="1.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="490.13" y="607.5" ></text>
</g>
<g >
<title>try_to_wake_up (358,417 samples, 0.01%)</title><rect x="836.0" y="277" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="838.97" y="287.5" ></text>
</g>
<g >
<title>native_write_msr (288,917 samples, 0.01%)</title><rect x="500.8" y="357" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="503.77" y="367.5" ></text>
</g>
<g >
<title>tcp_rcv_established (914,334 samples, 0.03%)</title><rect x="699.8" y="165" width="0.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="702.85" y="175.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (364,057 samples, 0.01%)</title><rect x="550.3" y="453" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="553.31" y="463.5" ></text>
</g>
<g >
<title>native_read_msr (488,457 samples, 0.02%)</title><rect x="257.4" y="389" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="260.37" y="399.5" ></text>
</g>
<g >
<title>planstate_tree_walker_impl (387,424 samples, 0.01%)</title><rect x="1187.6" y="901" width="0.1" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="1190.57" y="911.5" ></text>
</g>
<g >
<title>rseq_update_cpu_node_id (2,392,941 samples, 0.07%)</title><rect x="29.0" y="981" width="0.9" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="32.03" y="991.5" ></text>
</g>
<g >
<title>update_load_avg (772,155 samples, 0.02%)</title><rect x="835.2" y="341" width="0.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="838.17" y="351.5" ></text>
</g>
<g >
<title>calc_global_load_tick (382,804 samples, 0.01%)</title><rect x="716.9" y="325" width="0.1" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="719.85" y="335.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (409,109 samples, 0.01%)</title><rect x="372.5" y="469" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="375.52" y="479.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (479,150 samples, 0.01%)</title><rect x="580.4" y="277" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="583.41" y="287.5" ></text>
</g>
<g >
<title>native_read_msr (444,458 samples, 0.01%)</title><rect x="399.1" y="405" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="402.11" y="415.5" ></text>
</g>
<g >
<title>x86_pmu_disable (543,862 samples, 0.02%)</title><rect x="500.8" y="389" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="503.77" y="399.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (444,458 samples, 0.01%)</title><rect x="399.1" y="437" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="402.11" y="447.5" ></text>
</g>
<g >
<title>__smp_call_single_queue (1,271,022 samples, 0.04%)</title><rect x="814.8" y="245" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="817.76" y="255.5" ></text>
</g>
<g >
<title>SlruRecentlyUsed (6,145,118 samples, 0.19%)</title><rect x="396.7" y="629" width="2.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="399.75" y="639.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (530,586 samples, 0.02%)</title><rect x="1188.0" y="933" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="1191.05" y="943.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (431,267 samples, 0.01%)</title><rect x="1187.1" y="581" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1190.11" y="591.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (281,182 samples, 0.01%)</title><rect x="265.9" y="533" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="268.95" y="543.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (386,240 samples, 0.01%)</title><rect x="410.3" y="581" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="413.29" y="591.5" ></text>
</g>
<g >
<title>idle_cpu (330,451 samples, 0.01%)</title><rect x="814.6" y="277" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="817.63" y="287.5" ></text>
</g>
<g >
<title>x86_pmu_disable (579,434 samples, 0.02%)</title><rect x="806.5" y="309" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="809.54" y="319.5" ></text>
</g>
<g >
<title>__nanosleep (5,953,881 samples, 0.19%)</title><rect x="133.2" y="1157" width="2.1" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text x="136.15" y="1167.5" ></text>
</g>
<g >
<title>update_process_times (306,815 samples, 0.01%)</title><rect x="398.9" y="501" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="401.90" y="511.5" ></text>
</g>
<g >
<title>get_hash_entry (14,750,828 samples, 0.46%)</title><rect x="258.5" y="613" width="5.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="261.52" y="623.5" ></text>
</g>
<g >
<title>tick_sched_handle (614,452 samples, 0.02%)</title><rect x="287.8" y="517" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="290.76" y="527.5" ></text>
</g>
<g >
<title>finish_xact_command (387,424 samples, 0.01%)</title><rect x="1187.7" y="981" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1190.72" y="991.5" ></text>
</g>
<g >
<title>tcp_v4_send_reset (429,711 samples, 0.01%)</title><rect x="700.2" y="181" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="703.19" y="191.5" ></text>
</g>
<g >
<title>x86_pmu_disable (574,792,038 samples, 17.96%)</title><rect x="888.7" y="421" width="212.0" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="891.75" y="431.5" >x86_pmu_disable</text>
</g>
<g >
<title>virtqueue_get_buf_ctx (350,433 samples, 0.01%)</title><rect x="336.7" y="485" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="339.66" y="495.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (977,205 samples, 0.03%)</title><rect x="370.4" y="597" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="373.44" y="607.5" ></text>
</g>
<g >
<title>napi_complete_done (645,265 samples, 0.02%)</title><rect x="833.3" y="341" width="0.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="836.32" y="351.5" ></text>
</g>
<g >
<title>dequeue_task_fair (37,734,197 samples, 1.18%)</title><rect x="38.3" y="885" width="13.9" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="41.26" y="895.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (389,138 samples, 0.01%)</title><rect x="1172.3" y="453" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="1175.32" y="463.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (1,109,378 samples, 0.03%)</title><rect x="183.0" y="629" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="185.96" y="639.5" ></text>
</g>
<g >
<title>pollwake (305,520 samples, 0.01%)</title><rect x="54.1" y="485" width="0.1" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" />
<text x="57.08" y="495.5" ></text>
</g>
<g >
<title>update_process_times (652,288 samples, 0.02%)</title><rect x="1185.9" y="549" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1188.85" y="559.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (276,867 samples, 0.01%)</title><rect x="25.4" y="949" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="28.39" y="959.5" ></text>
</g>
<g >
<title>tcp_data_ready (305,520 samples, 0.01%)</title><rect x="54.1" y="549" width="0.1" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="57.08" y="559.5" ></text>
</g>
<g >
<title>LogicalDecodingProcessRecord (2,853,578,928 samples, 89.17%)</title><rect x="135.3" y="773" width="1052.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="138.35" y="783.5" >LogicalDecodingProcessRecord</text>
</g>
<g >
<title>hash_initial_lookup (4,248,504 samples, 0.13%)</title><rect x="311.2" y="629" width="1.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="314.15" y="639.5" ></text>
</g>
<g >
<title>scheduler_tick (543,862 samples, 0.02%)</title><rect x="500.8" y="437" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="503.77" y="447.5" ></text>
</g>
<g >
<title>update_rq_clock (14,918,233 samples, 0.47%)</title><rect x="1159.3" y="485" width="5.5" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="1162.27" y="495.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (3,946,059 samples, 0.12%)</title><rect x="576.0" y="485" width="1.4" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="578.98" y="495.5" ></text>
</g>
<g >
<title>native_read_msr (355,453 samples, 0.01%)</title><rect x="199.7" y="405" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="202.66" y="415.5" ></text>
</g>
<g >
<title>dequeue_task (276,108,747 samples, 8.63%)</title><rect x="591.8" y="485" width="101.8" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="594.77" y="495.5" >dequeue_task</text>
</g>
<g >
<title>cpuacct_charge (1,617,205 samples, 0.05%)</title><rect x="47.2" y="837" width="0.6" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="50.23" y="847.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (431,267 samples, 0.01%)</title><rect x="1187.1" y="597" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1190.11" y="607.5" ></text>
</g>
<g >
<title>perf_event_task_tick (588,264 samples, 0.02%)</title><rect x="580.4" y="341" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="583.37" y="351.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (305,340 samples, 0.01%)</title><rect x="129.3" y="869" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="132.28" y="879.5" ></text>
</g>
<g >
<title>update_curr (5,757,699 samples, 0.18%)</title><rect x="809.6" y="309" width="2.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="812.59" y="319.5" ></text>
</g>
<g >
<title>tick_sched_handle (409,109 samples, 0.01%)</title><rect x="372.5" y="533" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="375.52" y="543.5" ></text>
</g>
<g >
<title>native_read_msr (1,320,356 samples, 0.04%)</title><rect x="237.8" y="405" width="0.5" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="240.77" y="415.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (979,051 samples, 0.03%)</title><rect x="433.3" y="581" width="0.3" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="436.26" y="591.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (1,169,969 samples, 0.04%)</title><rect x="426.1" y="645" width="0.4" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="429.09" y="655.5" ></text>
</g>
<g >
<title>timerqueue_add (14,787,508 samples, 0.46%)</title><rect x="559.6" y="469" width="5.4" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="562.55" y="479.5" ></text>
</g>
<g >
<title>x86_pmu_disable (305,145 samples, 0.01%)</title><rect x="524.8" y="389" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="527.82" y="399.5" ></text>
</g>
<g >
<title>set_next_entity (369,412 samples, 0.01%)</title><rect x="863.8" y="453" width="0.2" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="866.82" y="463.5" ></text>
</g>
<g >
<title>LockTagHashCode (30,611,114 samples, 0.96%)</title><rect x="207.6" y="645" width="11.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="210.58" y="655.5" ></text>
</g>
<g >
<title>psi_group_change (101,811,949 samples, 3.18%)</title><rect x="1114.0" y="469" width="37.5" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="1116.98" y="479.5" >psi..</text>
</g>
<g >
<title>ServerLoop (2,855,391,574 samples, 89.23%)</title><rect x="135.3" y="1077" width="1052.9" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="138.35" y="1087.5" >ServerLoop</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (570,983 samples, 0.02%)</title><rect x="132.7" y="1077" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="135.66" y="1087.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1,320,356 samples, 0.04%)</title><rect x="237.8" y="581" width="0.5" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="240.77" y="591.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetLock (3,444,352 samples, 0.11%)</title><rect x="341.7" y="661" width="1.3" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="344.68" y="671.5" ></text>
</g>
<g >
<title>timerqueue_add (935,258 samples, 0.03%)</title><rect x="54.6" y="789" width="0.3" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="57.60" y="799.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (422,222 samples, 0.01%)</title><rect x="1165.0" y="389" width="0.1" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="1167.98" y="399.5" ></text>
</g>
<g >
<title>pick_next_task_idle (1,108,849 samples, 0.03%)</title><rect x="869.8" y="485" width="0.4" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="872.77" y="495.5" ></text>
</g>
<g >
<title>x86_pmu_disable (335,715 samples, 0.01%)</title><rect x="266.6" y="469" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="269.62" y="479.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (538,296 samples, 0.02%)</title><rect x="266.6" y="645" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="269.62" y="655.5" ></text>
</g>
<g >
<title>tick_sched_handle (643,776 samples, 0.02%)</title><rect x="129.4" y="821" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="132.39" y="831.5" ></text>
</g>
<g >
<title>scheduler_tick (668,268 samples, 0.02%)</title><rect x="580.4" y="357" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="583.37" y="367.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (333,528 samples, 0.01%)</title><rect x="833.3" y="229" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="836.32" y="239.5" ></text>
</g>
<g >
<title>pick_next_task_idle (842,315 samples, 0.03%)</title><rect x="864.0" y="469" width="0.3" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="866.96" y="479.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (431,267 samples, 0.01%)</title><rect x="1187.1" y="613" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1190.11" y="623.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (445,480 samples, 0.01%)</title><rect x="202.6" y="597" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="205.64" y="607.5" ></text>
</g>
<g >
<title>lapic_next_event (487,178 samples, 0.02%)</title><rect x="832.9" y="389" width="0.2" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="835.93" y="399.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (383,344 samples, 0.01%)</title><rect x="282.4" y="453" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="285.37" y="463.5" ></text>
</g>
<g >
<title>account_process_tick (507,303 samples, 0.02%)</title><rect x="55.4" y="773" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="58.41" y="783.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (652,288 samples, 0.02%)</title><rect x="1185.9" y="613" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1188.85" y="623.5" ></text>
</g>
<g >
<title>sched_clock (357,437 samples, 0.01%)</title><rect x="814.1" y="277" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="817.13" y="287.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (1,485,556 samples, 0.05%)</title><rect x="818.1" y="245" width="0.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="821.13" y="255.5" ></text>
</g>
<g >
<title>x86_pmu_disable (619,919 samples, 0.02%)</title><rect x="326.3" y="453" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="329.28" y="463.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (585,589 samples, 0.02%)</title><rect x="81.3" y="821" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="84.33" y="831.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (530,586 samples, 0.02%)</title><rect x="1188.0" y="885" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1191.05" y="895.5" ></text>
</g>
<g >
<title>clockevents_program_event (391,377 samples, 0.01%)</title><rect x="451.7" y="565" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="454.70" y="575.5" ></text>
</g>
<g >
<title>switch_fpu_return (8,428,377 samples, 0.26%)</title><rect x="526.3" y="581" width="3.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="529.31" y="591.5" ></text>
</g>
<g >
<title>clockevents_program_event (3,609,478 samples, 0.11%)</title><rect x="74.1" y="805" width="1.3" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="77.10" y="815.5" ></text>
</g>
<g >
<title>xa_load (281,122 samples, 0.01%)</title><rect x="10.1" y="501" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="13.09" y="511.5" ></text>
</g>
<g >
<title>native_write_msr (311,344 samples, 0.01%)</title><rect x="326.3" y="421" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="329.28" y="431.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (6,008,309 samples, 0.19%)</title><rect x="337.8" y="645" width="2.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="340.79" y="655.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,059,780 samples, 0.03%)</title><rect x="287.8" y="597" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="290.76" y="607.5" ></text>
</g>
<g >
<title>run_posix_cpu_timers (477,737 samples, 0.01%)</title><rect x="256.7" y="469" width="0.2" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="259.74" y="479.5" ></text>
</g>
<g >
<title>nohz_balancer_kick (4,145,629 samples, 0.13%)</title><rect x="814.5" y="309" width="1.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="817.52" y="319.5" ></text>
</g>
<g >
<title>perf_exclude_event (3,202,740 samples, 0.10%)</title><rect x="1104.0" y="469" width="1.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1107.02" y="479.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1,268,601 samples, 0.04%)</title><rect x="1164.8" y="453" width="0.4" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1167.77" y="463.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (4,414,867 samples, 0.14%)</title><rect x="1188.2" y="1157" width="1.7" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="1191.24" y="1167.5" ></text>
</g>
<g >
<title>TransactionIdPrecedes (749,072 samples, 0.02%)</title><rect x="433.0" y="661" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="435.99" y="671.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (327,058 samples, 0.01%)</title><rect x="345.9" y="629" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="348.90" y="639.5" ></text>
</g>
<g >
<title>common_nsleep (265,329,670 samples, 8.29%)</title><rect x="32.5" y="981" width="97.9" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="35.52" y="991.5" >common_nsleep</text>
</g>
<g >
<title>__rseq_handle_notify_resume (68,643,912 samples, 2.15%)</title><rect x="496.4" y="581" width="25.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="499.35" y="591.5" >_..</text>
</g>
<g >
<title>dequeue_task (1,329,667 samples, 0.04%)</title><rect x="1165.2" y="501" width="0.5" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="1168.24" y="511.5" ></text>
</g>
<g >
<title>update_curr (75,617,731 samples, 2.36%)</title><rect x="628.9" y="437" width="27.8" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="631.86" y="447.5" >u..</text>
</g>
<g >
<title>perf_event_task_tick (372,982 samples, 0.01%)</title><rect x="258.4" y="453" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="261.38" y="463.5" ></text>
</g>
<g >
<title>record_times (2,609,568 samples, 0.08%)</title><rect x="1136.9" y="453" width="1.0" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="1139.90" y="463.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (355,453 samples, 0.01%)</title><rect x="199.7" y="581" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="202.66" y="591.5" ></text>
</g>
<g >
<title>[libc.so.6] (3,389,480 samples, 0.11%)</title><rect x="325.0" y="629" width="1.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="328.00" y="639.5" ></text>
</g>
<g >
<title>vfs_fsync_range (389,224 samples, 0.01%)</title><rect x="10.2" y="709" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="13.19" y="719.5" ></text>
</g>
<g >
<title>irq_exit_rcu (293,538 samples, 0.01%)</title><rect x="33.0" y="901" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="35.97" y="911.5" ></text>
</g>
<g >
<title>update_process_times (322,335 samples, 0.01%)</title><rect x="552.1" y="405" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="555.10" y="415.5" ></text>
</g>
<g >
<title>planstate_walk_subplans (387,424 samples, 0.01%)</title><rect x="1187.6" y="885" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1190.57" y="895.5" ></text>
</g>
<g >
<title>switch_fpu_return (5,032,809 samples, 0.16%)</title><rect x="488.2" y="597" width="1.9" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="491.24" y="607.5" ></text>
</g>
<g >
<title>prepare_task_switch (650,119 samples, 0.02%)</title><rect x="1166.0" y="501" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1169.03" y="511.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (31,899,017 samples, 1.00%)</title><rect x="1139.2" y="405" width="11.8" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="1142.19" y="415.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (409,109 samples, 0.01%)</title><rect x="372.5" y="565" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="375.52" y="575.5" ></text>
</g>
<g >
<title>tick_sched_handle (364,057 samples, 0.01%)</title><rect x="550.3" y="437" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="553.31" y="447.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (891,440 samples, 0.03%)</title><rect x="516.0" y="517" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="519.04" y="527.5" ></text>
</g>
<g >
<title>x86_pmu_disable (285,824 samples, 0.01%)</title><rect x="22.6" y="869" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="25.57" y="879.5" ></text>
</g>
<g >
<title>BackendMain (2,855,391,574 samples, 89.23%)</title><rect x="135.3" y="1029" width="1052.9" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="138.35" y="1039.5" >BackendMain</text>
</g>
<g >
<title>neigh_hh_output (429,711 samples, 0.01%)</title><rect x="700.2" y="69" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="703.19" y="79.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (271,346 samples, 0.01%)</title><rect x="200.5" y="565" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="203.50" y="575.5" ></text>
</g>
<g >
<title>tcp_clean_rtx_queue.constprop.0 (333,528 samples, 0.01%)</title><rect x="833.3" y="133" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="836.32" y="143.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (547,418 samples, 0.02%)</title><rect x="258.3" y="565" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="261.32" y="575.5" ></text>
</g>
<g >
<title>__calc_delta.constprop.0 (6,539,722 samples, 0.20%)</title><rect x="619.6" y="437" width="2.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="622.61" y="447.5" ></text>
</g>
<g >
<title>get_nohz_timer_target (282,890 samples, 0.01%)</title><rect x="35.5" y="901" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="38.46" y="911.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (16,570,369 samples, 0.52%)</title><rect x="569.9" y="469" width="6.1" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="572.87" y="479.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (389,196 samples, 0.01%)</title><rect x="205.6" y="597" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="208.59" y="607.5" ></text>
</g>
<g >
<title>avg_vruntime (379,070 samples, 0.01%)</title><rect x="809.2" y="293" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="812.25" y="303.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (1,612,235 samples, 0.05%)</title><rect x="329.3" y="645" width="0.6" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="332.35" y="655.5" ></text>
</g>
<g >
<title>x86_pmu_disable (444,458 samples, 0.01%)</title><rect x="399.1" y="453" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="402.11" y="463.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (328,572 samples, 0.01%)</title><rect x="129.2" y="837" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="132.16" y="847.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (4,159,615 samples, 0.13%)</title><rect x="125.1" y="805" width="1.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="128.11" y="815.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (333,528 samples, 0.01%)</title><rect x="833.3" y="213" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="836.32" y="223.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (872,348 samples, 0.03%)</title><rect x="433.3" y="453" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="436.30" y="463.5" ></text>
</g>
<g >
<title>dequeue_task_fair (263,228,269 samples, 8.23%)</title><rect x="595.8" y="469" width="97.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="598.80" y="479.5" >dequeue_tas..</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (364,057 samples, 0.01%)</title><rect x="550.3" y="533" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="553.31" y="543.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (276,149 samples, 0.01%)</title><rect x="834.9" y="341" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="837.94" y="351.5" ></text>
</g>
<g >
<title>virtnet_receive.constprop.0 (350,433 samples, 0.01%)</title><rect x="336.7" y="517" width="0.1" height="15.0" fill="rgb(223,82,19)" rx="2" ry="2" />
<text x="339.66" y="527.5" ></text>
</g>
<g >
<title>nohz_balance_exit_idle (1,990,368 samples, 0.06%)</title><rect x="815.2" y="293" width="0.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="818.23" y="303.5" ></text>
</g>
<g >
<title>tcp_data_queue (305,520 samples, 0.01%)</title><rect x="54.1" y="565" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="57.08" y="575.5" ></text>
</g>
<g >
<title>x86_pmu_disable (588,264 samples, 0.02%)</title><rect x="580.4" y="309" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="583.37" y="319.5" ></text>
</g>
<g >
<title>update_cfs_group (483,745 samples, 0.02%)</title><rect x="862.1" y="373" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="865.09" y="383.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (305,145 samples, 0.01%)</title><rect x="524.8" y="485" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="527.82" y="495.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (600,661 samples, 0.02%)</title><rect x="517.5" y="533" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="520.50" y="543.5" ></text>
</g>
<g >
<title>native_read_msr (539,120 samples, 0.02%)</title><rect x="304.5" y="389" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="307.49" y="399.5" ></text>
</g>
<g >
<title>kmem_cache_free (477,130 samples, 0.01%)</title><rect x="833.6" y="325" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="836.55" y="335.5" ></text>
</g>
<g >
<title>perf_event_task_tick (241,844,050 samples, 7.56%)</title><rect x="717.6" y="325" width="89.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="720.57" y="335.5" >perf_event..</text>
</g>
<g >
<title>SimpleLruGetBankLock (5,077,171 samples, 0.16%)</title><rect x="370.8" y="645" width="1.9" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="373.80" y="655.5" ></text>
</g>
<g >
<title>pgstat_assert_is_up (13,529,293 samples, 0.42%)</title><rect x="405.3" y="597" width="5.0" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="408.30" y="607.5" ></text>
</g>
<g >
<title>tick_sched_handle (306,815 samples, 0.01%)</title><rect x="398.9" y="517" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="401.90" y="527.5" ></text>
</g>
<g >
<title>tick_sched_do_timer (281,913 samples, 0.01%)</title><rect x="55.3" y="789" width="0.1" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="58.30" y="799.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1,613,746 samples, 0.05%)</title><rect x="188.3" y="581" width="0.6" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="191.26" y="591.5" ></text>
</g>
<g >
<title>update_min_vruntime (558,718 samples, 0.02%)</title><rect x="809.4" y="293" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="812.39" y="303.5" ></text>
</g>
<g >
<title>native_write_msr (550,314 samples, 0.02%)</title><rect x="1164.8" y="293" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1167.77" y="303.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (63,818,771 samples, 1.99%)</title><rect x="52.6" y="901" width="23.5" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="55.58" y="911.5" >f..</text>
</g>
<g >
<title>TransactionIdPrecedes (5,096,764 samples, 0.16%)</title><rect x="411.7" y="661" width="1.9" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="414.73" y="671.5" ></text>
</g>
<g >
<title>__rcu_read_lock (1,167,693 samples, 0.04%)</title><rect x="844.3" y="453" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="847.29" y="463.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (348,857 samples, 0.01%)</title><rect x="531.4" y="517" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="534.40" y="527.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (348,091 samples, 0.01%)</title><rect x="543.8" y="485" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="546.78" y="495.5" ></text>
</g>
<g >
<title>rcu_pending (408,074 samples, 0.01%)</title><rect x="580.1" y="341" width="0.1" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="583.09" y="351.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (418,966 samples, 0.01%)</title><rect x="81.5" y="805" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="84.55" y="815.5" ></text>
</g>
<g >
<title>ip_list_rcv (1,868,037 samples, 0.06%)</title><rect x="699.8" y="293" width="0.7" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="702.85" y="303.5" ></text>
</g>
<g >
<title>perf_pmu_nop_void (292,829 samples, 0.01%)</title><rect x="806.4" y="309" width="0.1" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" />
<text x="809.43" y="319.5" ></text>
</g>
<g >
<title>native_write_msr (391,377 samples, 0.01%)</title><rect x="451.7" y="533" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="454.70" y="543.5" ></text>
</g>
<g >
<title>ktime_get (1,182,789 samples, 0.04%)</title><rect x="832.5" y="389" width="0.4" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="835.50" y="399.5" ></text>
</g>
<g >
<title>PostgresMain (2,855,391,574 samples, 89.23%)</title><rect x="135.3" y="1013" width="1052.9" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="138.35" y="1023.5" >PostgresMain</text>
</g>
<g >
<title>perf_event_task_tick (305,145 samples, 0.01%)</title><rect x="524.8" y="421" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="527.82" y="431.5" ></text>
</g>
<g >
<title>pick_next_task (17,194,215 samples, 0.54%)</title><rect x="76.1" y="901" width="6.3" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="79.11" y="911.5" ></text>
</g>
<g >
<title>update_process_times (538,296 samples, 0.02%)</title><rect x="266.6" y="533" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="269.62" y="543.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (507,212 samples, 0.02%)</title><rect x="1187.9" y="821" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1190.86" y="831.5" ></text>
</g>
<g >
<title>update_curr_se (1,077,421 samples, 0.03%)</title><rect x="47.8" y="837" width="0.4" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="50.82" y="847.5" ></text>
</g>
<g >
<title>MemoryContextCheck (387,424 samples, 0.01%)</title><rect x="1187.7" y="949" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1190.72" y="959.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (6,096,304 samples, 0.19%)</title><rect x="577.5" y="501" width="2.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="580.53" y="511.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (839,247 samples, 0.03%)</title><rect x="823.4" y="341" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="826.41" y="351.5" ></text>
</g>
<g >
<title>blkcg_maybe_throttle_current (4,089,114 samples, 0.13%)</title><rect x="521.8" y="581" width="1.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="524.75" y="591.5" ></text>
</g>
<g >
<title>scheduler_tick (619,919 samples, 0.02%)</title><rect x="326.3" y="501" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="329.28" y="511.5" ></text>
</g>
<g >
<title>find_busiest_group (2,543,074 samples, 0.08%)</title><rect x="862.4" y="421" width="0.9" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="865.37" y="431.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (936,437 samples, 0.03%)</title><rect x="328.5" y="613" width="0.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="331.54" y="623.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,434,557 samples, 0.08%)</title><rect x="257.0" y="613" width="0.8" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="259.95" y="623.5" ></text>
</g>
<g >
<title>ReadPageInternal (333,080,169 samples, 10.41%)</title><rect x="10.3" y="1125" width="122.9" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="13.33" y="1135.5" >ReadPageInternal</text>
</g>
<g >
<title>switch_fpu_return (326,575 samples, 0.01%)</title><rect x="30.4" y="997" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="33.45" y="1007.5" ></text>
</g>
<g >
<title>update_process_times (543,862 samples, 0.02%)</title><rect x="500.8" y="453" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="503.77" y="463.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (538,296 samples, 0.02%)</title><rect x="266.6" y="597" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="269.62" y="607.5" ></text>
</g>
<g >
<title>ktime_get (2,606,157 samples, 0.08%)</title><rect x="581.5" y="501" width="0.9" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="584.45" y="511.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_or_u32 (1,973,302 samples, 0.06%)</title><rect x="395.6" y="613" width="0.7" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="398.61" y="623.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (570,983 samples, 0.02%)</title><rect x="132.7" y="1029" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="135.66" y="1039.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (452,803 samples, 0.01%)</title><rect x="433.6" y="597" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="436.63" y="607.5" ></text>
</g>
<g >
<title>update_curr (1,460,937 samples, 0.05%)</title><rect x="690.7" y="453" width="0.6" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="693.73" y="463.5" ></text>
</g>
<g >
<title>hash_search (57,851,929 samples, 1.81%)</title><rect x="266.8" y="645" width="21.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="269.82" y="655.5" >h..</text>
</g>
<g >
<title>__hrtimer_next_event_base (1,286,747 samples, 0.04%)</title><rect x="820.8" y="389" width="0.5" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="823.78" y="399.5" ></text>
</g>
<g >
<title>wipe_mem (6,030,963 samples, 0.19%)</title><rect x="334.4" y="629" width="2.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="337.44" y="639.5" ></text>
</g>
<g >
<title>ExecProcNode (670,346 samples, 0.02%)</title><rect x="10.1" y="981" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="13.09" y="991.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturn (670,346 samples, 0.02%)</title><rect x="10.1" y="917" width="0.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="13.09" y="927.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (316,517 samples, 0.01%)</title><rect x="345.3" y="581" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="348.33" y="591.5" ></text>
</g>
<g >
<title>update_cfs_group (851,839 samples, 0.03%)</title><rect x="73.2" y="741" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="76.21" y="751.5" ></text>
</g>
<g >
<title>SnapBuildFindSnapshot (2,853,022,490 samples, 89.15%)</title><rect x="135.3" y="725" width="1052.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="138.35" y="735.5" >SnapBuildFindSnapshot</text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (1,268,601 samples, 0.04%)</title><rect x="1164.8" y="469" width="0.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1167.77" y="479.5" ></text>
</g>
<g >
<title>__napi_poll (861,084 samples, 0.03%)</title><rect x="53.9" y="789" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="56.87" y="799.5" ></text>
</g>
<g >
<title>memset (6,030,963 samples, 0.19%)</title><rect x="334.4" y="613" width="2.3" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="337.44" y="623.5" ></text>
</g>
<g >
<title>reweight_entity (785,213 samples, 0.02%)</title><rect x="43.7" y="837" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="46.74" y="847.5" ></text>
</g>
<g >
<title>native_write_msr (389,138 samples, 0.01%)</title><rect x="1172.3" y="325" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1175.32" y="335.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (547,418 samples, 0.02%)</title><rect x="258.3" y="597" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="261.32" y="607.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (313,485 samples, 0.01%)</title><rect x="350.3" y="421" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="353.32" y="431.5" ></text>
</g>
<g >
<title>native_write_msr (293,940 samples, 0.01%)</title><rect x="132.7" y="869" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="135.66" y="879.5" ></text>
</g>
<g >
<title>psi_task_switch (119,346,827 samples, 3.73%)</title><rect x="1108.2" y="485" width="44.0" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1111.16" y="495.5" >psi_..</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (322,335 samples, 0.01%)</title><rect x="552.1" y="517" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="555.10" y="527.5" ></text>
</g>
<g >
<title>[libc.so.6] (2,855,391,574 samples, 89.23%)</title><rect x="135.3" y="1125" width="1052.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="138.35" y="1135.5" >[libc.so.6]</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (483,599 samples, 0.02%)</title><rect x="328.9" y="645" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="331.88" y="655.5" ></text>
</g>
<g >
<title>CleanUpLock (24,094,513 samples, 0.75%)</title><rect x="318.5" y="661" width="8.9" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="321.54" y="671.5" ></text>
</g>
<g >
<title>update_cfs_group (3,159,342 samples, 0.10%)</title><rect x="816.1" y="325" width="1.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="819.05" y="335.5" ></text>
</g>
<g >
<title>x86_pmu_disable (31,997,172 samples, 1.00%)</title><rect x="59.7" y="709" width="11.8" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="62.74" y="719.5" ></text>
</g>
<g >
<title>rseq_ip_fixup (5,010,031 samples, 0.16%)</title><rect x="27.2" y="981" width="1.8" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="30.18" y="991.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (315,624,261 samples, 9.86%)</title><rect x="704.0" y="389" width="116.4" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="707.01" y="399.5" >tick_nohz_high..</text>
</g>
<g >
<title>PortalRun (2,853,966,352 samples, 89.18%)</title><rect x="135.3" y="981" width="1052.4" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="138.35" y="991.5" >PortalRun</text>
</g>
<g >
<title>ip_finish_output (429,711 samples, 0.01%)</title><rect x="700.2" y="117" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="703.19" y="127.5" ></text>
</g>
<g >
<title>RecoveryInProgress (9,765,293 samples, 0.31%)</title><rect x="11.8" y="1093" width="3.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="14.83" y="1103.5" ></text>
</g>
<g >
<title>rcu_note_context_switch (567,883 samples, 0.02%)</title><rect x="130.0" y="917" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="132.96" y="927.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (364,057 samples, 0.01%)</title><rect x="550.3" y="469" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="553.31" y="479.5" ></text>
</g>
<g >
<title>dequeue_task_fair (5,465,779 samples, 0.17%)</title><rect x="693.6" y="485" width="2.0" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="696.59" y="495.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (409,109 samples, 0.01%)</title><rect x="372.5" y="549" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="375.52" y="559.5" ></text>
</g>
<g >
<title>update_sg_lb_stats (1,139,974 samples, 0.04%)</title><rect x="862.9" y="389" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="865.88" y="399.5" ></text>
</g>
<g >
<title>__msecs_to_jiffies (1,683,689 samples, 0.05%)</title><rect x="843.7" y="453" width="0.6" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="846.67" y="463.5" ></text>
</g>
<g >
<title>__update_load_avg_se (390,535 samples, 0.01%)</title><rect x="472.2" y="453" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="475.17" y="463.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (14,494,873 samples, 0.45%)</title><rect x="25.8" y="1013" width="5.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="28.77" y="1023.5" ></text>
</g>
<g >
<title>update_rq_clock (4,557,962 samples, 0.14%)</title><rect x="817.2" y="325" width="1.7" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="820.22" y="335.5" ></text>
</g>
<g >
<title>get_timespec64 (13,371,311 samples, 0.42%)</title><rect x="1168.0" y="565" width="4.9" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1171.01" y="575.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (348,091 samples, 0.01%)</title><rect x="543.8" y="565" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="546.78" y="575.5" ></text>
</g>
<g >
<title>ip_output (429,711 samples, 0.01%)</title><rect x="700.2" y="133" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="703.19" y="143.5" ></text>
</g>
<g >
<title>account_system_index_time (276,867 samples, 0.01%)</title><rect x="25.4" y="853" width="0.1" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="28.39" y="863.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (316,517 samples, 0.01%)</title><rect x="345.3" y="613" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="348.33" y="623.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (355,453 samples, 0.01%)</title><rect x="199.7" y="597" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="202.66" y="607.5" ></text>
</g>
<g >
<title>ext4_file_write_iter (281,122 samples, 0.01%)</title><rect x="1187.5" y="565" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="1190.47" y="575.5" ></text>
</g>
<g >
<title>trigger_load_balance (4,519,207 samples, 0.14%)</title><rect x="814.4" y="325" width="1.7" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="817.39" y="335.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (305,382 samples, 0.01%)</title><rect x="818.8" y="293" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="821.78" y="303.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (543,862 samples, 0.02%)</title><rect x="500.8" y="373" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="503.77" y="383.5" ></text>
</g>
<g >
<title>LWLockAcquire (8,172,349 samples, 0.26%)</title><rect x="199.8" y="645" width="3.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="202.79" y="655.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (275,316 samples, 0.01%)</title><rect x="1187.4" y="709" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="1190.37" y="719.5" ></text>
</g>
<g >
<title>x86_pmu_disable (292,733 samples, 0.01%)</title><rect x="118.8" y="853" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="121.81" y="863.5" ></text>
</g>
<g >
<title>sched_clock_cpu (349,531 samples, 0.01%)</title><rect x="835.0" y="341" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="838.04" y="351.5" ></text>
</g>
<g >
<title>receive_mergeable (293,538 samples, 0.01%)</title><rect x="33.0" y="773" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="35.97" y="783.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (90,094,603 samples, 2.82%)</title><rect x="85.4" y="821" width="33.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="88.36" y="831.5" >am..</text>
</g>
<g >
<title>XLogReadDetermineTimeline (2,023,481 samples, 0.06%)</title><rect x="15.4" y="1093" width="0.8" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="18.43" y="1103.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (355,453 samples, 0.01%)</title><rect x="199.7" y="549" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="202.66" y="559.5" ></text>
</g>
<g >
<title>perf_event_task_tick (1,150,696 samples, 0.04%)</title><rect x="413.6" y="517" width="0.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="416.61" y="527.5" ></text>
</g>
<g >
<title>tcp_orphan_count_sum (370,670 samples, 0.01%)</title><rect x="76.0" y="757" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="78.97" y="767.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (285,824 samples, 0.01%)</title><rect x="22.6" y="837" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="25.57" y="847.5" ></text>
</g>
<g >
<title>LWLockAcquire (4,432,919 samples, 0.14%)</title><rect x="327.4" y="661" width="1.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="330.43" y="671.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (304,138 samples, 0.01%)</title><rect x="53.9" y="709" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="56.87" y="719.5" ></text>
</g>
<g >
<title>unmap_page_range (1,587,760 samples, 0.05%)</title><rect x="1189.3" y="965" width="0.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1192.28" y="975.5" ></text>
</g>
<g >
<title>common_interrupt (293,538 samples, 0.01%)</title><rect x="33.0" y="917" width="0.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="35.97" y="927.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (1,634,388 samples, 0.05%)</title><rect x="580.0" y="405" width="0.6" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="583.01" y="415.5" ></text>
</g>
<g >
<title>tick_sched_handle (276,867 samples, 0.01%)</title><rect x="25.4" y="901" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="28.39" y="911.5" ></text>
</g>
<g >
<title>__x64_sys_clock_nanosleep (268,300,990 samples, 8.38%)</title><rect x="31.8" y="997" width="98.9" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="34.76" y="1007.5" >__x64_sys_c..</text>
</g>
<g >
<title>tick_sched_handle (619,919 samples, 0.02%)</title><rect x="326.3" y="533" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="329.28" y="543.5" ></text>
</g>
<g >
<title>rseq_ip_fixup (1,959,282 samples, 0.06%)</title><rect x="524.2" y="581" width="0.7" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="527.21" y="591.5" ></text>
</g>
<g >
<title>psi_flags_change (1,122,284 samples, 0.04%)</title><rect x="1113.6" y="469" width="0.4" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1116.56" y="479.5" ></text>
</g>
<g >
<title>update_process_times (305,145 samples, 0.01%)</title><rect x="524.8" y="453" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="527.82" y="463.5" ></text>
</g>
<g >
<title>_raw_spin_lock (2,916,630 samples, 0.09%)</title><rect x="879.8" y="453" width="1.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="882.82" y="463.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (327,058 samples, 0.01%)</title><rect x="345.9" y="597" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="348.90" y="607.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (389,196 samples, 0.01%)</title><rect x="205.6" y="549" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="208.59" y="559.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (715,457 samples, 0.02%)</title><rect x="399.0" y="597" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="402.01" y="607.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (337,037 samples, 0.01%)</title><rect x="257.7" y="565" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="260.73" y="575.5" ></text>
</g>
<g >
<title>tick_sched_handle (322,335 samples, 0.01%)</title><rect x="552.1" y="421" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="555.10" y="431.5" ></text>
</g>
<g >
<title>restore_fpregs_from_fpstate (355,744 samples, 0.01%)</title><rect x="529.3" y="565" width="0.1" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="532.29" y="575.5" ></text>
</g>
<g >
<title>native_write_msr (21,941,921 samples, 0.69%)</title><rect x="824.0" y="357" width="8.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="827.05" y="367.5" ></text>
</g>
<g >
<title>native_write_msr (77,593,521 samples, 2.42%)</title><rect x="727.3" y="261" width="28.6" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="730.28" y="271.5" >na..</text>
</g>
<g >
<title>net_rx_action (1,868,037 samples, 0.06%)</title><rect x="699.8" y="389" width="0.7" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="702.85" y="399.5" ></text>
</g>
<g >
<title>sched_clock (418,966 samples, 0.01%)</title><rect x="81.5" y="837" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="84.55" y="847.5" ></text>
</g>
<g >
<title>handle_softirqs (1,827,767 samples, 0.06%)</title><rect x="75.4" y="821" width="0.7" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="78.44" y="831.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (539,120 samples, 0.02%)</title><rect x="304.5" y="453" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="307.49" y="463.5" ></text>
</g>
<g >
<title>BackendStartup (670,346 samples, 0.02%)</title><rect x="10.1" y="1125" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="13.09" y="1135.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (1,870,988 samples, 0.06%)</title><rect x="818.0" y="261" width="0.7" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="820.99" y="271.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (355,453 samples, 0.01%)</title><rect x="199.7" y="565" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="202.66" y="575.5" ></text>
</g>
<g >
<title>LWLockAcquire (24,446,644 samples, 0.76%)</title><rect x="387.3" y="629" width="9.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="390.33" y="639.5" ></text>
</g>
<g >
<title>native_read_msr (1,411,629 samples, 0.04%)</title><rect x="471.7" y="405" width="0.5" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="474.65" y="415.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (364,057 samples, 0.01%)</title><rect x="550.3" y="485" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="553.31" y="495.5" ></text>
</g>
<g >
<title>ReplicationSlotSave (670,346 samples, 0.02%)</title><rect x="10.1" y="869" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="13.09" y="879.5" ></text>
</g>
<g >
<title>x86_pmu_disable (215,671,818 samples, 6.74%)</title><rect x="726.9" y="293" width="79.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="729.90" y="303.5" >x86_pmu_d..</text>
</g>
<g >
<title>OpenTransientFilePerm (281,122 samples, 0.01%)</title><rect x="10.1" y="837" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="13.09" y="847.5" ></text>
</g>
<g >
<title>update_min_vruntime (458,811 samples, 0.01%)</title><rect x="48.2" y="837" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="51.22" y="847.5" ></text>
</g>
<g >
<title>irq_exit_rcu (1,361,848 samples, 0.04%)</title><rect x="53.9" y="853" width="0.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="56.87" y="863.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (93,635,376 samples, 2.93%)</title><rect x="84.4" y="869" width="34.5" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="87.39" y="879.5" >pe..</text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (349,531 samples, 0.01%)</title><rect x="835.0" y="277" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="838.04" y="287.5" ></text>
</g>
<g >
<title>pg_fsync (389,224 samples, 0.01%)</title><rect x="10.2" y="837" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="13.19" y="847.5" ></text>
</g>
<g >
<title>x86_pmu_disable (348,091 samples, 0.01%)</title><rect x="543.8" y="389" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="546.78" y="399.5" ></text>
</g>
<g >
<title>tick_sched_handle (550,314 samples, 0.02%)</title><rect x="1164.8" y="405" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1167.77" y="415.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (920,842 samples, 0.03%)</title><rect x="551.8" y="517" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="554.76" y="527.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (409,109 samples, 0.01%)</title><rect x="372.5" y="613" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="375.52" y="623.5" ></text>
</g>
<g >
<title>__hrtimer_init (546,200 samples, 0.02%)</title><rect x="32.7" y="949" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="35.71" y="959.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (391,377 samples, 0.01%)</title><rect x="451.7" y="645" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="454.70" y="655.5" ></text>
</g>
<g >
<title>hash_search (2,720,035 samples, 0.08%)</title><rect x="336.8" y="645" width="1.0" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="339.79" y="655.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,320,356 samples, 0.04%)</title><rect x="237.8" y="629" width="0.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="240.77" y="639.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (355,453 samples, 0.01%)</title><rect x="199.7" y="421" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="202.66" y="431.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (539,120 samples, 0.02%)</title><rect x="304.5" y="421" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="307.49" y="431.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (507,212 samples, 0.02%)</title><rect x="1187.9" y="837" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1190.86" y="847.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (10,450,264 samples, 0.33%)</title><rect x="33.3" y="933" width="3.8" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="36.28" y="943.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (1,255,269 samples, 0.04%)</title><rect x="1103.6" y="469" width="0.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1106.55" y="479.5" ></text>
</g>
<g >
<title>native_read_msr (285,824 samples, 0.01%)</title><rect x="22.6" y="821" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="25.57" y="831.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (399,197 samples, 0.01%)</title><rect x="395.5" y="581" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="398.47" y="591.5" ></text>
</g>
<g >
<title>clockevents_program_event (530,802 samples, 0.02%)</title><rect x="472.3" y="549" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="475.32" y="559.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (3,874,945 samples, 0.12%)</title><rect x="340.3" y="629" width="1.4" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="343.25" y="639.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (306,815 samples, 0.01%)</title><rect x="398.9" y="597" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="401.90" y="607.5" ></text>
</g>
<g >
<title>native_read_msr (355,401 samples, 0.01%)</title><rect x="1178.3" y="373" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1181.27" y="383.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (1,361,848 samples, 0.04%)</title><rect x="53.9" y="837" width="0.5" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="56.87" y="847.5" ></text>
</g>
<g >
<title>perf_event_task_tick (619,919 samples, 0.02%)</title><rect x="326.3" y="485" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="329.28" y="495.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (14,579,068 samples, 0.46%)</title><rect x="570.6" y="453" width="5.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="573.60" y="463.5" ></text>
</g>
<g >
<title>update_cfs_group (34,429,677 samples, 1.08%)</title><rect x="678.0" y="453" width="12.7" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="681.04" y="463.5" ></text>
</g>
<g >
<title>__nanosleep (2,012,342,971 samples, 62.88%)</title><rect x="443.8" y="661" width="742.1" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text x="446.82" y="671.5" >__nanosleep</text>
</g>
<g >
<title>__hrtimer_run_queues (1,010,565 samples, 0.03%)</title><rect x="395.1" y="517" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="398.09" y="527.5" ></text>
</g>
<g >
<title>PostmasterMain (2,855,391,574 samples, 89.23%)</title><rect x="135.3" y="1093" width="1052.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="138.35" y="1103.5" >PostmasterMain</text>
</g>
<g >
<title>__hrtimer_run_queues (550,314 samples, 0.02%)</title><rect x="1164.8" y="437" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1167.77" y="447.5" ></text>
</g>
<g >
<title>sched_clock_cpu (2,739,583 samples, 0.09%)</title><rect x="817.9" y="309" width="1.0" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="820.89" y="319.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (50,768,851 samples, 1.59%)</title><rect x="55.1" y="805" width="18.7" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="58.07" y="815.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (570,983 samples, 0.02%)</title><rect x="132.7" y="917" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="135.66" y="927.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (389,196 samples, 0.01%)</title><rect x="205.6" y="581" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="208.59" y="591.5" ></text>
</g>
<g >
<title>__x86_indirect_thunk_array (704,034 samples, 0.02%)</title><rect x="1174.6" y="581" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="1177.59" y="591.5" ></text>
</g>
<g >
<title>native_read_msr (3,589,141 samples, 0.11%)</title><rect x="890.5" y="389" width="1.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="893.47" y="399.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (874,497 samples, 0.03%)</title><rect x="717.3" y="325" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="720.25" y="335.5" ></text>
</g>
<g >
<title>update_process_times (277,993 samples, 0.01%)</title><rect x="199.5" y="501" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.46" y="511.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (364,057 samples, 0.01%)</title><rect x="550.3" y="373" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="553.31" y="383.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (110,019,030 samples, 3.44%)</title><rect x="490.1" y="597" width="40.6" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="493.09" y="607.5" >sys..</text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (368,089,746 samples, 11.50%)</title><rect x="700.5" y="453" width="135.8" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="703.54" y="463.5" >sysvec_apic_timer..</text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (322,335 samples, 0.01%)</title><rect x="552.1" y="485" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="555.10" y="495.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (289,306 samples, 0.01%)</title><rect x="74.0" y="821" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="77.00" y="831.5" ></text>
</g>
<g >
<title>sched_clock_cpu (4,159,615 samples, 0.13%)</title><rect x="125.1" y="869" width="1.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="128.11" y="879.5" ></text>
</g>
<g >
<title>ext4_alloc_inode (281,122 samples, 0.01%)</title><rect x="10.1" y="565" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="13.09" y="575.5" ></text>
</g>
<g >
<title>update_process_times (383,344 samples, 0.01%)</title><rect x="282.4" y="501" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="285.37" y="511.5" ></text>
</g>
<g >
<title>LockCheckConflicts (5,015,792 samples, 0.16%)</title><rect x="205.7" y="645" width="1.9" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="208.73" y="655.5" ></text>
</g>
<g >
<title>tick_sched_handle (645,917 samples, 0.02%)</title><rect x="147.9" y="565" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="150.94" y="575.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (297,901 samples, 0.01%)</title><rect x="806.3" y="277" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="809.32" y="287.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (545,305 samples, 0.02%)</title><rect x="199.5" y="565" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="202.46" y="575.5" ></text>
</g>
<g >
<title>__get_user_8 (35,182,270 samples, 1.10%)</title><rect x="503.4" y="549" width="13.0" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="506.40" y="559.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (1,320,356 samples, 0.04%)</title><rect x="237.8" y="597" width="0.5" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="240.77" y="607.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (612,839 samples, 0.02%)</title><rect x="647.0" y="421" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="649.95" y="431.5" ></text>
</g>
<g >
<title>do_nanosleep (264,037,214 samples, 8.25%)</title><rect x="32.9" y="949" width="97.4" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="35.91" y="959.5" >do_nanosleep</text>
</g>
<g >
<title>native_read_msr (277,043 samples, 0.01%)</title><rect x="132.8" y="853" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="135.77" y="863.5" ></text>
</g>
<g >
<title>native_read_msr (383,344 samples, 0.01%)</title><rect x="282.4" y="389" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="285.37" y="399.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (543,862 samples, 0.02%)</title><rect x="500.8" y="565" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="503.77" y="575.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (1,320,356 samples, 0.04%)</title><rect x="237.8" y="421" width="0.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="240.77" y="431.5" ></text>
</g>
<g >
<title>perf_ctx_disable (591,532,046 samples, 18.48%)</title><rect x="882.6" y="437" width="218.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="885.57" y="447.5" >perf_ctx_disable</text>
</g>
<g >
<title>hrtimer_interrupt (305,145 samples, 0.01%)</title><rect x="524.8" y="517" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="527.82" y="527.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (645,917 samples, 0.02%)</title><rect x="147.9" y="645" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="150.94" y="655.5" ></text>
</g>
<g >
<title>do_syscall_64 (389,224 samples, 0.01%)</title><rect x="10.2" y="757" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="13.19" y="767.5" ></text>
</g>
<g >
<title>tick_sched_handle (530,586 samples, 0.02%)</title><rect x="1188.0" y="821" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1191.05" y="831.5" ></text>
</g>
<g >
<title>native_read_msr (305,145 samples, 0.01%)</title><rect x="524.8" y="341" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="527.82" y="351.5" ></text>
</g>
<g >
<title>blkcg_maybe_throttle_current (719,599 samples, 0.02%)</title><rect x="24.8" y="1013" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="27.85" y="1023.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,010,565 samples, 0.03%)</title><rect x="395.1" y="565" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="398.09" y="575.5" ></text>
</g>
<g >
<title>native_write_msr (272,342 samples, 0.01%)</title><rect x="287.8" y="405" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="290.76" y="415.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (368,089,746 samples, 11.50%)</title><rect x="700.5" y="469" width="135.8" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="703.54" y="479.5" >asm_sysvec_apic_t..</text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (600,661 samples, 0.02%)</title><rect x="517.5" y="517" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="520.50" y="527.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (476,450 samples, 0.01%)</title><rect x="25.1" y="1013" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="28.11" y="1023.5" ></text>
</g>
<g >
<title>pg_fsync_no_writethrough (389,224 samples, 0.01%)</title><rect x="10.2" y="821" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="13.19" y="831.5" ></text>
</g>
<g >
<title>update_process_times (389,138 samples, 0.01%)</title><rect x="1172.3" y="421" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1175.32" y="431.5" ></text>
</g>
<g >
<title>perf_event_task_tick (314,516 samples, 0.01%)</title><rect x="405.2" y="453" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="408.18" y="463.5" ></text>
</g>
<g >
<title>update_process_times (614,452 samples, 0.02%)</title><rect x="287.8" y="501" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="290.76" y="511.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (530,586 samples, 0.02%)</title><rect x="1188.0" y="725" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1191.05" y="735.5" ></text>
</g>
<g >
<title>get_hash_entry (12,132,025 samples, 0.38%)</title><rect x="306.7" y="629" width="4.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="309.68" y="639.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (2,154,610 samples, 0.07%)</title><rect x="818.0" y="277" width="0.8" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="820.99" y="287.5" ></text>
</g>
<g >
<title>net_rx_action (293,538 samples, 0.01%)</title><rect x="33.0" y="853" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="35.97" y="863.5" ></text>
</g>
<g >
<title>napi_complete_done (861,084 samples, 0.03%)</title><rect x="53.9" y="757" width="0.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="56.87" y="767.5" ></text>
</g>
<g >
<title>tick_sched_handle (652,288 samples, 0.02%)</title><rect x="1185.9" y="565" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1188.85" y="575.5" ></text>
</g>
<g >
<title>TransactionIdIsCurrentTransactionId (15,452,272 samples, 0.48%)</title><rect x="427.3" y="661" width="5.7" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="430.29" y="671.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (539,120 samples, 0.02%)</title><rect x="304.5" y="597" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="307.49" y="607.5" ></text>
</g>
<g >
<title>asm_common_interrupt (1,802,194 samples, 0.06%)</title><rect x="53.7" y="885" width="0.7" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="56.71" y="895.5" ></text>
</g>
<g >
<title>update_process_times (327,058 samples, 0.01%)</title><rect x="345.9" y="533" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="348.90" y="543.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (11,691,551 samples, 0.37%)</title><rect x="391.3" y="597" width="4.3" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="394.30" y="607.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (15,173,070 samples, 0.47%)</title><rect x="390.0" y="613" width="5.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="393.02" y="623.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (444,458 samples, 0.01%)</title><rect x="399.1" y="421" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="402.11" y="431.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (1,411,629 samples, 0.04%)</title><rect x="471.7" y="421" width="0.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="474.65" y="431.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (1,082,323 samples, 0.03%)</title><rect x="282.5" y="613" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="285.51" y="623.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (539,120 samples, 0.02%)</title><rect x="304.5" y="613" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="307.49" y="623.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (1,150,696 samples, 0.04%)</title><rect x="413.6" y="629" width="0.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="416.61" y="639.5" ></text>
</g>
<g >
<title>perf_exclude_event (347,863 samples, 0.01%)</title><rect x="84.0" y="869" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="86.99" y="879.5" ></text>
</g>
<g >
<title>timerqueue_add (557,093 samples, 0.02%)</title><rect x="73.8" y="805" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="76.79" y="815.5" ></text>
</g>
<g >
<title>x86_pmu_disable (891,440 samples, 0.03%)</title><rect x="516.0" y="357" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="519.04" y="367.5" ></text>
</g>
<g >
<title>update_process_times (311,580,771 samples, 9.74%)</title><rect x="705.5" y="357" width="114.9" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="708.50" y="367.5" >update_process..</text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (429,625 samples, 0.01%)</title><rect x="263.8" y="581" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="266.80" y="591.5" ></text>
</g>
<g >
<title>ExecInterpExpr (670,346 samples, 0.02%)</title><rect x="10.1" y="901" width="0.2" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text x="13.09" y="911.5" ></text>
</g>
<g >
<title>cpuacct_charge (1,570,081 samples, 0.05%)</title><rect x="810.7" y="293" width="0.6" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="813.75" y="303.5" ></text>
</g>
<g >
<title>run_posix_cpu_timers (3,275,120 samples, 0.10%)</title><rect x="713.7" y="341" width="1.3" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="716.75" y="351.5" ></text>
</g>
<g >
<title>clock_nanosleep (1,990,585,561 samples, 62.20%)</title><rect x="451.8" y="645" width="734.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="454.84" y="655.5" >clock_nanosleep</text>
</g>
<g >
<title>tick_sched_handle (386,240 samples, 0.01%)</title><rect x="410.3" y="549" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="413.29" y="559.5" ></text>
</g>
<g >
<title>retbleed_untrain_ret (1,491,311 samples, 0.05%)</title><rect x="131.4" y="1045" width="0.5" height="15.0" fill="rgb(210,25,5)" rx="2" ry="2" />
<text x="134.36" y="1055.5" ></text>
</g>
<g >
<title>[libc.so.6] (2,849,293 samples, 0.09%)</title><rect x="349.0" y="645" width="1.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="352.01" y="655.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (8,254,741 samples, 0.26%)</title><rect x="26.9" y="997" width="3.0" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="29.87" y="1007.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (389,138 samples, 0.01%)</title><rect x="1172.3" y="485" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1175.32" y="495.5" ></text>
</g>
<g >
<title>_copy_from_user (6,610,455 samples, 0.21%)</title><rect x="1169.0" y="549" width="2.4" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1171.96" y="559.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (271,346 samples, 0.01%)</title><rect x="200.5" y="421" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="203.50" y="431.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (1,081,840 samples, 0.03%)</title><rect x="823.3" y="357" width="0.4" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="826.32" y="367.5" ></text>
</g>
<g >
<title>update_load_avg (316,741 samples, 0.01%)</title><rect x="75.7" y="757" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="78.65" y="767.5" ></text>
</g>
<g >
<title>unlink_anon_vmas (556,094 samples, 0.02%)</title><rect x="1189.1" y="981" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1192.08" y="991.5" ></text>
</g>
<g >
<title>write_console (281,122 samples, 0.01%)</title><rect x="1187.5" y="693" width="0.1" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="1190.47" y="703.5" ></text>
</g>
<g >
<title>napi_complete_done (1,868,037 samples, 0.06%)</title><rect x="699.8" y="341" width="0.7" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="702.85" y="351.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (530,586 samples, 0.02%)</title><rect x="1188.0" y="917" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1191.05" y="927.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (37,968,005 samples, 1.19%)</title><rect x="57.5" y="725" width="14.0" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="60.54" y="735.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (853,609 samples, 0.03%)</title><rect x="287.8" y="565" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="290.76" y="575.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (305,145 samples, 0.01%)</title><rect x="524.8" y="501" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="527.82" y="511.5" ></text>
</g>
<g >
<title>new_inode (281,122 samples, 0.01%)</title><rect x="10.1" y="597" width="0.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="13.09" y="607.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (1,705,966 samples, 0.05%)</title><rect x="205.0" y="597" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="207.96" y="607.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (276,867 samples, 0.01%)</title><rect x="25.4" y="933" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="28.39" y="943.5" ></text>
</g>
<g >
<title>nf_hook_slow (523,992 samples, 0.02%)</title><rect x="700.3" y="245" width="0.2" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="703.34" y="255.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (305,145 samples, 0.01%)</title><rect x="524.8" y="405" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="527.82" y="415.5" ></text>
</g>
<g >
<title>open64 (281,122 samples, 0.01%)</title><rect x="10.1" y="789" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="13.09" y="799.5" ></text>
</g>
<g >
<title>x86_pmu_disable (90,094,603 samples, 2.82%)</title><rect x="85.4" y="837" width="33.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="88.36" y="847.5" >x8..</text>
</g>
<g >
<title>x86_pmu_disable_all (342,110 samples, 0.01%)</title><rect x="287.9" y="405" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="290.86" y="415.5" ></text>
</g>
<g >
<title>update_min_vruntime (323,098 samples, 0.01%)</title><rect x="814.3" y="309" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="817.27" y="319.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (452,803 samples, 0.01%)</title><rect x="433.6" y="629" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="436.63" y="639.5" ></text>
</g>
<g >
<title>native_read_msr (313,485 samples, 0.01%)</title><rect x="350.3" y="405" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="353.32" y="415.5" ></text>
</g>
<g >
<title>ip_queue_xmit (528,716 samples, 0.02%)</title><rect x="699.8" y="101" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="702.85" y="111.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (643,776 samples, 0.02%)</title><rect x="129.4" y="885" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="132.39" y="895.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (2,953,331 samples, 0.09%)</title><rect x="369.7" y="613" width="1.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="372.71" y="623.5" ></text>
</g>
<g >
<title>update_process_times (1,320,356 samples, 0.04%)</title><rect x="237.8" y="517" width="0.5" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="240.77" y="527.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (715,457 samples, 0.02%)</title><rect x="399.0" y="629" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="402.01" y="639.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (1,812,672 samples, 0.06%)</title><rect x="257.0" y="549" width="0.6" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="259.95" y="559.5" ></text>
</g>
<g >
<title>kick_ilb (1,904,664 samples, 0.06%)</title><rect x="814.5" y="293" width="0.7" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="817.52" y="303.5" ></text>
</g>
<g >
<title>tick_sched_handle (327,058 samples, 0.01%)</title><rect x="345.9" y="549" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="348.90" y="559.5" ></text>
</g>
<g >
<title>ext4_sync_file (389,224 samples, 0.01%)</title><rect x="10.2" y="693" width="0.1" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="13.19" y="703.5" ></text>
</g>
<g >
<title>rcu_sched_clock_irq (5,938,015 samples, 0.19%)</title><rect x="711.6" y="341" width="2.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="714.56" y="351.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (474,450 samples, 0.01%)</title><rect x="410.3" y="629" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="413.29" y="639.5" ></text>
</g>
<g >
<title>update_blocked_averages (5,843,555 samples, 0.18%)</title><rect x="833.8" y="373" width="2.2" height="15.0" fill="rgb(240,163,38)" rx="2" ry="2" />
<text x="836.82" y="383.5" ></text>
</g>
<g >
<title>update_process_times (444,458 samples, 0.01%)</title><rect x="399.1" y="517" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="402.11" y="527.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (355,453 samples, 0.01%)</title><rect x="199.7" y="613" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="202.66" y="623.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (872,348 samples, 0.03%)</title><rect x="433.3" y="469" width="0.3" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="436.30" y="479.5" ></text>
</g>
<g >
<title>update_process_times (336,361 samples, 0.01%)</title><rect x="484.5" y="469" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="487.49" y="479.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode_prepare (629,768 samples, 0.02%)</title><rect x="31.1" y="1013" width="0.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="34.11" y="1023.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (1,150,696 samples, 0.04%)</title><rect x="413.6" y="501" width="0.4" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="416.61" y="511.5" ></text>
</g>
<g >
<title>perf_event_task_tick (313,485 samples, 0.01%)</title><rect x="350.3" y="485" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="353.32" y="495.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (904,364 samples, 0.03%)</title><rect x="1185.9" y="645" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1188.85" y="655.5" ></text>
</g>
<g >
<title>scheduler_tick (389,196 samples, 0.01%)</title><rect x="205.6" y="517" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="208.59" y="527.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (336,361 samples, 0.01%)</title><rect x="484.5" y="517" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="487.49" y="527.5" ></text>
</g>
<g >
<title>update_process_times (1,634,388 samples, 0.05%)</title><rect x="580.0" y="373" width="0.6" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="583.01" y="383.5" ></text>
</g>
<g >
<title>x86_pmu_disable (313,485 samples, 0.01%)</title><rect x="350.3" y="453" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="353.32" y="463.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (308,575 samples, 0.01%)</title><rect x="326.4" y="421" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="329.39" y="431.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (389,998 samples, 0.01%)</title><rect x="433.6" y="517" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="436.63" y="527.5" ></text>
</g>
<g >
<title>schedule_debug.isra.0 (9,647,826 samples, 0.30%)</title><rect x="1155.7" y="485" width="3.6" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1158.72" y="495.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (1,868,037 samples, 0.06%)</title><rect x="699.8" y="421" width="0.7" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="702.85" y="431.5" ></text>
</g>
<g >
<title>account_system_time (10,491,201 samples, 0.33%)</title><rect x="706.6" y="325" width="3.9" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="709.62" y="335.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (271,346 samples, 0.01%)</title><rect x="200.5" y="549" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="203.50" y="559.5" ></text>
</g>
<g >
<title>sched_clock_cpu (478,695 samples, 0.01%)</title><rect x="1155.5" y="485" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1158.54" y="495.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (575,311 samples, 0.02%)</title><rect x="1178.3" y="533" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1181.27" y="543.5" ></text>
</g>
<g >
<title>__slab_free (477,130 samples, 0.01%)</title><rect x="833.6" y="309" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="836.55" y="319.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (306,815 samples, 0.01%)</title><rect x="398.9" y="533" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="401.90" y="543.5" ></text>
</g>
<g >
<title>update_rt_rq_load_avg (809,209 samples, 0.03%)</title><rect x="863.4" y="421" width="0.3" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="866.45" y="431.5" ></text>
</g>
<g >
<title>MemoryChunkGetValue (13,268,521 samples, 0.41%)</title><rect x="183.4" y="629" width="4.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="186.36" y="639.5" ></text>
</g>
<g >
<title>errfinish (281,122 samples, 0.01%)</title><rect x="1187.5" y="741" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1190.47" y="751.5" ></text>
</g>
<g >
<title>hash_bytes (1,514,082 samples, 0.05%)</title><rect x="337.2" y="629" width="0.6" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="340.23" y="639.5" ></text>
</g>
<g >
<title>x86_pmu_disable (383,344 samples, 0.01%)</title><rect x="282.4" y="437" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="285.37" y="447.5" ></text>
</g>
<g >
<title>native_read_msr (336,361 samples, 0.01%)</title><rect x="484.5" y="357" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="487.49" y="367.5" ></text>
</g>
<g >
<title>native_read_msr (19,745,925 samples, 0.62%)</title><rect x="64.3" y="661" width="7.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="67.26" y="671.5" ></text>
</g>
<g >
<title>task_tick_mm_cid (3,751,599 samples, 0.12%)</title><rect x="818.9" y="341" width="1.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="821.90" y="351.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (418,966 samples, 0.01%)</title><rect x="81.5" y="821" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="84.55" y="831.5" ></text>
</g>
<g >
<title>net_rx_action (350,433 samples, 0.01%)</title><rect x="336.7" y="565" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="339.66" y="575.5" ></text>
</g>
<g >
<title>TransactionIdFollowsOrEquals (3,437,773 samples, 0.11%)</title><rect x="410.5" y="661" width="1.2" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="413.46" y="671.5" ></text>
</g>
<g >
<title>native_read_msr (896,540 samples, 0.03%)</title><rect x="188.4" y="405" width="0.4" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="191.42" y="415.5" ></text>
</g>
<g >
<title>create_logical_replication_slot (2,853,578,928 samples, 89.17%)</title><rect x="135.3" y="805" width="1052.3" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="138.35" y="815.5" >create_logical_replication_slot</text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (336,361 samples, 0.01%)</title><rect x="484.5" y="549" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="487.49" y="559.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (349,531 samples, 0.01%)</title><rect x="835.0" y="309" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="838.04" y="319.5" ></text>
</g>
<g >
<title>update_process_times (530,586 samples, 0.02%)</title><rect x="1188.0" y="805" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1191.05" y="815.5" ></text>
</g>
<g >
<title>account_process_tick (478,461 samples, 0.01%)</title><rect x="704.6" y="357" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="707.59" y="367.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (1,010,565 samples, 0.03%)</title><rect x="395.1" y="549" width="0.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="398.09" y="559.5" ></text>
</g>
<g >
<title>native_write_msr (12,251,247 samples, 0.38%)</title><rect x="59.7" y="677" width="4.6" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="62.74" y="687.5" ></text>
</g>
<g >
<title>hash_bytes (24,591,226 samples, 0.77%)</title><rect x="273.8" y="629" width="9.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="276.84" y="639.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (5,016,262 samples, 0.16%)</title><rect x="702.2" y="389" width="1.8" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="705.16" y="399.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (350,433 samples, 0.01%)</title><rect x="336.7" y="597" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="339.66" y="607.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (385,099 samples, 0.01%)</title><rect x="36.9" y="917" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="39.91" y="927.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (394,235 samples, 0.01%)</title><rect x="321.3" y="613" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="324.28" y="623.5" ></text>
</g>
<g >
<title>prepare_task_switch (99,939,913 samples, 3.12%)</title><rect x="82.4" y="901" width="36.9" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="85.45" y="911.5" >pre..</text>
</g>
<g >
<title>put_prev_entity (4,603,249 samples, 0.14%)</title><rect x="867.9" y="453" width="1.7" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="870.91" y="463.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (357,437 samples, 0.01%)</title><rect x="814.1" y="229" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="817.13" y="239.5" ></text>
</g>
<g >
<title>x86_pmu_disable (306,815 samples, 0.01%)</title><rect x="398.9" y="437" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="401.90" y="447.5" ></text>
</g>
<g >
<title>perf_pmu_nop_void (621,415 samples, 0.02%)</title><rect x="118.6" y="853" width="0.2" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" />
<text x="121.58" y="863.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (1,347,112 samples, 0.04%)</title><rect x="188.3" y="565" width="0.5" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="191.26" y="575.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (1,911,064,874 samples, 59.72%)</title><rect x="473.8" y="629" width="704.7" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="476.80" y="639.5" >entry_SYSCALL_64</text>
</g>
<g >
<title>LWLockReleaseInternal (6,248,615 samples, 0.20%)</title><rect x="368.5" y="629" width="2.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="371.49" y="639.5" ></text>
</g>
<g >
<title>lookup_open.isra.0 (281,122 samples, 0.01%)</title><rect x="10.1" y="645" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="13.09" y="655.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (570,983 samples, 0.02%)</title><rect x="132.7" y="885" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="135.66" y="895.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (355,453 samples, 0.01%)</title><rect x="199.7" y="629" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="202.66" y="639.5" ></text>
</g>
<g >
<title>scheduler_tick (348,857 samples, 0.01%)</title><rect x="531.4" y="453" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="534.40" y="463.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (856,748 samples, 0.03%)</title><rect x="427.0" y="597" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="429.97" y="607.5" ></text>
</g>
<g >
<title>perf_event_task_tick (38,513,986 samples, 1.20%)</title><rect x="57.3" y="741" width="14.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="60.34" y="751.5" ></text>
</g>
<g >
<title>update_min_vruntime (675,929 samples, 0.02%)</title><rect x="811.5" y="293" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="814.47" y="303.5" ></text>
</g>
<g >
<title>perf_swevent_event (4,705,309 samples, 0.15%)</title><rect x="1105.2" y="469" width="1.7" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="1108.20" y="479.5" ></text>
</g>
<g >
<title>tick_sched_handle (543,862 samples, 0.02%)</title><rect x="500.8" y="469" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="503.77" y="479.5" ></text>
</g>
<g >
<title>RecoveryInProgress (3,965,703 samples, 0.12%)</title><rect x="14.0" y="1077" width="1.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="16.96" y="1087.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (277,993 samples, 0.01%)</title><rect x="199.5" y="421" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="202.46" y="431.5" ></text>
</g>
<g >
<title>__update_load_avg_se (11,704,563 samples, 0.37%)</title><rect x="670.4" y="421" width="4.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="673.41" y="431.5" ></text>
</g>
<g >
<title>perf_event_task_tick (729,975 samples, 0.02%)</title><rect x="135.0" y="981" width="0.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="137.99" y="991.5" ></text>
</g>
<g >
<title>avg_vruntime (605,186 samples, 0.02%)</title><rect x="43.5" y="853" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="46.51" y="863.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (277,993 samples, 0.01%)</title><rect x="199.5" y="453" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="202.46" y="463.5" ></text>
</g>
<g >
<title>perf_event_task_tick (322,335 samples, 0.01%)</title><rect x="552.1" y="373" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="555.10" y="383.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (1,150,696 samples, 0.04%)</title><rect x="413.6" y="581" width="0.4" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="416.61" y="591.5" ></text>
</g>
<g >
<title>__hrtimer_start_range_ns (8,266,367 samples, 0.26%)</title><rect x="33.6" y="917" width="3.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="36.64" y="927.5" ></text>
</g>
<g >
<title>RecoveryInProgress (10,860,104 samples, 0.34%)</title><rect x="229.6" y="629" width="4.0" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="232.64" y="639.5" ></text>
</g>
<g >
<title>perf_event_task_tick (614,452 samples, 0.02%)</title><rect x="287.8" y="469" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="290.76" y="479.5" ></text>
</g>
<g >
<title>nanosleep@plt (767,426 samples, 0.02%)</title><rect x="132.9" y="1077" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="135.87" y="1087.5" ></text>
</g>
<g >
<title>asm_common_interrupt (350,433 samples, 0.01%)</title><rect x="336.7" y="645" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="339.66" y="655.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (2,875,937 samples, 0.09%)</title><rect x="471.3" y="549" width="1.0" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="474.26" y="559.5" ></text>
</g>
<g >
<title>acct_account_cputime (1,528,210 samples, 0.05%)</title><rect x="709.8" y="309" width="0.6" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="712.79" y="319.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (313,485 samples, 0.01%)</title><rect x="350.3" y="549" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="353.32" y="559.5" ></text>
</g>
<g >
<title>perf_event_task_tick (652,288 samples, 0.02%)</title><rect x="1185.9" y="517" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="1188.85" y="527.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (372,982 samples, 0.01%)</title><rect x="258.4" y="389" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="261.38" y="399.5" ></text>
</g>
<g >
<title>put_prev_task_fair (945,994 samples, 0.03%)</title><rect x="82.1" y="885" width="0.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="85.10" y="895.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (645,265 samples, 0.02%)</title><rect x="833.3" y="325" width="0.3" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" />
<text x="836.32" y="335.5" ></text>
</g>
<g >
<title>tick_sched_handle (314,418,571 samples, 9.83%)</title><rect x="704.5" y="373" width="115.9" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="707.45" y="383.5" >tick_sched_han..</text>
</g>
<g >
<title>tick_nohz_highres_handler (386,240 samples, 0.01%)</title><rect x="410.3" y="565" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="413.29" y="575.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (582,691 samples, 0.02%)</title><rect x="256.7" y="517" width="0.3" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="259.74" y="527.5" ></text>
</g>
<g >
<title>__hrtimer_init (8,623,797 samples, 0.27%)</title><rect x="547.1" y="533" width="3.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="550.13" y="543.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (2,029,992 samples, 0.06%)</title><rect x="580.0" y="453" width="0.8" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="583.01" y="463.5" ></text>
</g>
<g >
<title>native_read_msr (281,182 samples, 0.01%)</title><rect x="265.9" y="373" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="268.95" y="383.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (355,401 samples, 0.01%)</title><rect x="1178.3" y="389" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1181.27" y="399.5" ></text>
</g>
<g >
<title>scheduler_tick (316,517 samples, 0.01%)</title><rect x="345.3" y="533" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="348.33" y="543.5" ></text>
</g>
<g >
<title>check_cpu_stall (969,314 samples, 0.03%)</title><rect x="712.1" y="325" width="0.4" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="715.12" y="335.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (281,182 samples, 0.01%)</title><rect x="265.9" y="581" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="268.95" y="591.5" ></text>
</g>
<g >
<title>psi_group_change (17,048,001 samples, 0.53%)</title><rect x="120.4" y="885" width="6.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="123.36" y="895.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (355,453 samples, 0.01%)</title><rect x="199.7" y="469" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="202.66" y="479.5" ></text>
</g>
<g >
<title>_raw_spin_lock (1,552,175 samples, 0.05%)</title><rect x="717.7" y="309" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="720.66" y="319.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (483,599 samples, 0.02%)</title><rect x="328.9" y="613" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="331.88" y="623.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (643,776 samples, 0.02%)</title><rect x="129.4" y="757" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="132.39" y="767.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (389,138 samples, 0.01%)</title><rect x="1172.3" y="501" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1175.32" y="511.5" ></text>
</g>
<g >
<title>scheduler_tick (452,803 samples, 0.01%)</title><rect x="433.6" y="549" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="436.63" y="559.5" ></text>
</g>
<g >
<title>__ext4_new_inode (281,122 samples, 0.01%)</title><rect x="10.1" y="613" width="0.1" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="13.09" y="623.5" ></text>
</g>
<g >
<title>update_process_times (348,857 samples, 0.01%)</title><rect x="531.4" y="469" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="534.40" y="479.5" ></text>
</g>
<g >
<title>__schedule (389,224 samples, 0.01%)</title><rect x="10.2" y="565" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="13.19" y="575.5" ></text>
</g>
<g >
<title>virtnet_poll (350,433 samples, 0.01%)</title><rect x="336.7" y="533" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="339.66" y="543.5" ></text>
</g>
<g >
<title>amd_pmu_enable_all (360,088 samples, 0.01%)</title><rect x="699.7" y="421" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="702.72" y="431.5" ></text>
</g>
<g >
<title>find_busiest_group (585,589 samples, 0.02%)</title><rect x="81.3" y="837" width="0.2" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="84.33" y="847.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (381,476,252 samples, 11.92%)</title><rect x="695.6" y="485" width="140.7" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="698.60" y="495.5" >finish_task_switc..</text>
</g>
<g >
<title>pgstat_count_slru_page_hit (29,867,258 samples, 0.93%)</title><rect x="399.3" y="629" width="11.0" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="402.28" y="639.5" ></text>
</g>
<g >
<title>vfs_write (281,122 samples, 0.01%)</title><rect x="1187.5" y="581" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1190.47" y="591.5" ></text>
</g>
<g >
<title>ip_local_deliver (565,786 samples, 0.02%)</title><rect x="833.3" y="245" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="836.32" y="255.5" ></text>
</g>
<g >
<title>ip_sublist_rcv_finish (1,344,045 samples, 0.04%)</title><rect x="699.8" y="261" width="0.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="702.85" y="271.5" ></text>
</g>
<g >
<title>profile_tick (583,301 samples, 0.02%)</title><rect x="705.0" y="357" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="707.99" y="367.5" ></text>
</g>
<g >
<title>scheduler_tick (285,824 samples, 0.01%)</title><rect x="22.6" y="917" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="25.57" y="927.5" ></text>
</g>
<g >
<title>x86_pmu_disable (409,109 samples, 0.01%)</title><rect x="372.5" y="453" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="375.52" y="463.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (1,047,547 samples, 0.03%)</title><rect x="413.6" y="453" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="416.65" y="463.5" ></text>
</g>
<g >
<title>perf_event_task_tick (281,182 samples, 0.01%)</title><rect x="265.9" y="453" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="268.95" y="463.5" ></text>
</g>
<g >
<title>update_load_avg (2,052,053 samples, 0.06%)</title><rect x="691.3" y="453" width="0.7" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="694.27" y="463.5" ></text>
</g>
<g >
<title>__rcu_read_lock (522,358 samples, 0.02%)</title><rect x="878.8" y="453" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="881.77" y="463.5" ></text>
</g>
<g >
<title>scheduler_tick (643,776 samples, 0.02%)</title><rect x="129.4" y="789" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="132.39" y="799.5" ></text>
</g>
<g >
<title>_raw_spin_lock (338,667 samples, 0.01%)</title><rect x="471.3" y="485" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="474.34" y="495.5" ></text>
</g>
<g >
<title>standby_decode (2,853,578,928 samples, 89.17%)</title><rect x="135.3" y="757" width="1052.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="138.35" y="767.5" >standby_decode</text>
</g>
<g >
<title>__dev_queue_xmit (429,711 samples, 0.01%)</title><rect x="700.2" y="53" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="703.19" y="63.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (281,182 samples, 0.01%)</title><rect x="265.9" y="389" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="268.95" y="399.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (891,440 samples, 0.03%)</title><rect x="516.0" y="341" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="519.04" y="351.5" ></text>
</g>
<g >
<title>io_schedule (389,224 samples, 0.01%)</title><rect x="10.2" y="597" width="0.1" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="13.19" y="607.5" ></text>
</g>
<g >
<title>x86_pmu_disable (614,452 samples, 0.02%)</title><rect x="287.8" y="437" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="290.76" y="447.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (547,418 samples, 0.02%)</title><rect x="258.3" y="581" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="261.32" y="591.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (2,543,074 samples, 0.08%)</title><rect x="862.4" y="405" width="0.9" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="865.37" y="415.5" ></text>
</g>
<g >
<title>lapic_next_event (391,377 samples, 0.01%)</title><rect x="451.7" y="549" width="0.1" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="454.70" y="559.5" ></text>
</g>
<g >
<title>scheduler_tick (306,815 samples, 0.01%)</title><rect x="398.9" y="485" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="401.90" y="495.5" ></text>
</g>
<g >
<title>sched_clock_cpu (10,394,223 samples, 0.32%)</title><rect x="1160.9" y="469" width="3.9" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1163.94" y="479.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (8,699,907 samples, 0.27%)</title><rect x="422.6" y="645" width="3.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="425.65" y="655.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (810,400 samples, 0.03%)</title><rect x="1176.7" y="613" width="0.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="1179.67" y="623.5" ></text>
</g>
<g >
<title>tick_sched_handle (538,296 samples, 0.02%)</title><rect x="266.6" y="549" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="269.62" y="559.5" ></text>
</g>
<g >
<title>tcp_data_queue (385,618 samples, 0.01%)</title><rect x="700.0" y="149" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="703.04" y="159.5" ></text>
</g>
<g >
<title>postmaster_child_launch (2,855,391,574 samples, 89.23%)</title><rect x="135.3" y="1045" width="1052.9" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="138.35" y="1055.5" >postmaster_child_launch</text>
</g>
<g >
<title>tick_sched_handle (389,138 samples, 0.01%)</title><rect x="1172.3" y="437" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1175.32" y="447.5" ></text>
</g>
<g >
<title>ip_sublist_rcv_finish (556,946 samples, 0.02%)</title><rect x="54.0" y="677" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="56.99" y="687.5" ></text>
</g>
<g >
<title>path_openat (281,122 samples, 0.01%)</title><rect x="10.1" y="677" width="0.1" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="13.09" y="687.5" ></text>
</g>
<g >
<title>exit (1,037,798 samples, 0.03%)</title><rect x="1187.9" y="981" width="0.3" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="1190.86" y="991.5" ></text>
</g>
<g >
<title>arch_scale_freq_tick (987,605 samples, 0.03%)</title><rect x="710.6" y="341" width="0.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="713.61" y="351.5" ></text>
</g>
<g >
<title>tick_sched_handle (729,975 samples, 0.02%)</title><rect x="135.0" y="1029" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="137.99" y="1039.5" ></text>
</g>
<g >
<title>GrantLockLocal (27,475,462 samples, 0.86%)</title><rect x="189.7" y="645" width="10.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="192.66" y="655.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (5,971,476 samples, 0.19%)</title><rect x="1162.1" y="437" width="2.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1165.08" y="447.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (550,314 samples, 0.02%)</title><rect x="1164.8" y="421" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="1167.77" y="431.5" ></text>
</g>
<g >
<title>update_process_times (1,150,696 samples, 0.04%)</title><rect x="413.6" y="549" width="0.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="416.61" y="559.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (979,051 samples, 0.03%)</title><rect x="433.3" y="661" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="436.26" y="671.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (348,091 samples, 0.01%)</title><rect x="543.8" y="501" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="546.78" y="511.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (570,983 samples, 0.02%)</title><rect x="132.7" y="1013" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="135.66" y="1023.5" ></text>
</g>
<g >
<title>prepare_task_switch (389,224 samples, 0.01%)</title><rect x="10.2" y="549" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="13.19" y="559.5" ></text>
</g>
<g >
<title>call_timer_fn (358,417 samples, 0.01%)</title><rect x="836.0" y="357" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="838.97" y="367.5" ></text>
</g>
<g >
<title>x86_pmu_disable (530,586 samples, 0.02%)</title><rect x="1188.0" y="741" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1191.05" y="751.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1,150,696 samples, 0.04%)</title><rect x="413.6" y="613" width="0.4" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="416.61" y="623.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (483,599 samples, 0.02%)</title><rect x="328.9" y="597" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="331.88" y="607.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (280,550 samples, 0.01%)</title><rect x="403.2" y="613" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="406.17" y="623.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (643,776 samples, 0.02%)</title><rect x="129.4" y="853" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="132.39" y="863.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (979,051 samples, 0.03%)</title><rect x="433.3" y="645" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="436.26" y="655.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (1,634,388 samples, 0.05%)</title><rect x="580.0" y="421" width="0.6" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="583.01" y="431.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (314,516 samples, 0.01%)</title><rect x="405.2" y="517" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="408.18" y="527.5" ></text>
</g>
<g >
<title>native_read_msr (314,516 samples, 0.01%)</title><rect x="405.2" y="373" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="408.18" y="383.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (1,495,446 samples, 0.05%)</title><rect x="128.6" y="821" width="0.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="131.60" y="831.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (313,485 samples, 0.01%)</title><rect x="350.3" y="629" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="353.32" y="639.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (614,452 samples, 0.02%)</title><rect x="287.8" y="421" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="290.76" y="431.5" ></text>
</g>
<g >
<title>RemoveLocalLock (29,946,942 samples, 0.94%)</title><rect x="330.6" y="661" width="11.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="333.64" y="671.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (781,228 samples, 0.02%)</title><rect x="330.4" y="613" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="333.35" y="623.5" ></text>
</g>
<g >
<title>native_read_msr (135,904,249 samples, 4.25%)</title><rect x="756.2" y="245" width="50.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="759.21" y="255.5" >nativ..</text>
</g>
<g >
<title>tick_nohz_highres_handler (367,033 samples, 0.01%)</title><rect x="263.8" y="517" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="266.82" y="527.5" ></text>
</g>
<g >
<title>anon_vma_interval_tree_remove (556,094 samples, 0.02%)</title><rect x="1189.1" y="965" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="1192.08" y="975.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (321,200 samples, 0.01%)</title><rect x="54.4" y="837" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="57.38" y="847.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (643,776 samples, 0.02%)</title><rect x="129.4" y="869" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="132.39" y="879.5" ></text>
</g>
<g >
<title>irq_exit_rcu (8,195,119 samples, 0.26%)</title><rect x="833.2" y="437" width="3.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="836.24" y="447.5" ></text>
</g>
<g >
<title>x64_sys_call (1,749,001,674 samples, 54.65%)</title><rect x="531.7" y="597" width="645.0" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="534.74" y="607.5" >x64_sys_call</text>
</g>
<g >
<title>__rcu_read_unlock (2,331,334 samples, 0.07%)</title><rect x="879.0" y="453" width="0.8" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="881.96" y="463.5" ></text>
</g>
<g >
<title>tick_sched_handle (389,196 samples, 0.01%)</title><rect x="205.6" y="533" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="208.59" y="543.5" ></text>
</g>
<g >
<title>postgres (3,200,098,376 samples, 100.00%)</title><rect x="10.0" y="1173" width="1180.0" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="13.00" y="1183.5" >postgres</text>
</g>
<g >
<title>hrtimer_interrupt (715,457 samples, 0.02%)</title><rect x="399.0" y="581" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="402.01" y="591.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (729,975 samples, 0.02%)</title><rect x="135.0" y="1045" width="0.3" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="137.99" y="1055.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (324,800,321 samples, 10.15%)</title><rect x="700.7" y="405" width="119.8" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="703.74" y="415.5" >__hrtimer_run_..</text>
</g>
<g >
<title>perf_event_task_tick (444,458 samples, 0.01%)</title><rect x="399.1" y="485" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="402.11" y="495.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (372,982 samples, 0.01%)</title><rect x="258.4" y="517" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="261.38" y="527.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (58,938,505 samples, 1.84%)</title><rect x="54.4" y="885" width="21.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="57.38" y="895.5" >a..</text>
</g>
<g >
<title>tick_nohz_highres_handler (431,267 samples, 0.01%)</title><rect x="1187.1" y="565" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="1190.11" y="575.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode_prepare (2,429,635 samples, 0.08%)</title><rect x="530.7" y="597" width="0.9" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="533.66" y="607.5" ></text>
</g>
<g >
<title>unmap_vmas (1,587,760 samples, 0.05%)</title><rect x="1189.3" y="997" width="0.6" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="1192.28" y="1007.5" ></text>
</g>
<g >
<title>scheduler_tick (444,458 samples, 0.01%)</title><rect x="399.1" y="501" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="402.11" y="511.5" ></text>
</g>
<g >
<title>ktime_get_update_offsets_now (395,604 samples, 0.01%)</title><rect x="580.6" y="421" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="583.62" y="431.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (643,776 samples, 0.02%)</title><rect x="129.4" y="901" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="132.39" y="911.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (6,298,408 samples, 0.20%)</title><rect x="644.6" y="421" width="2.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="647.63" y="431.5" ></text>
</g>
<g >
<title>sched_clock (1,986,445 samples, 0.06%)</title><rect x="128.5" y="869" width="0.8" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="131.54" y="879.5" ></text>
</g>
<g >
<title>psi_flags_change (552,205 samples, 0.02%)</title><rect x="1107.0" y="485" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1110.03" y="495.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (391,377 samples, 0.01%)</title><rect x="451.7" y="629" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="454.70" y="639.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (550,314 samples, 0.02%)</title><rect x="1164.8" y="309" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1167.77" y="319.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (645,917 samples, 0.02%)</title><rect x="147.9" y="613" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="150.94" y="623.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (383,344 samples, 0.01%)</title><rect x="282.4" y="581" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="285.37" y="591.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,059,780 samples, 0.03%)</title><rect x="287.8" y="613" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="290.76" y="623.5" ></text>
</g>
<g >
<title>tick_sched_handle (355,453 samples, 0.01%)</title><rect x="199.7" y="533" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="202.66" y="543.5" ></text>
</g>
<g >
<title>sched_clock_tick (647,859 samples, 0.02%)</title><rect x="715.0" y="341" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="717.95" y="351.5" ></text>
</g>
<g >
<title>virtnet_poll (645,265 samples, 0.02%)</title><rect x="833.3" y="357" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="836.32" y="367.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (602,544,409 samples, 18.83%)</title><rect x="881.2" y="453" width="222.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="884.18" y="463.5" >perf_event_context_sched_out</text>
</g>
<g >
<title>nohz_balance_exit_idle (327,058 samples, 0.01%)</title><rect x="345.9" y="485" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="348.90" y="495.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (575,311 samples, 0.02%)</title><rect x="1178.3" y="565" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1181.27" y="575.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (614,452 samples, 0.02%)</title><rect x="287.8" y="533" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="290.76" y="543.5" ></text>
</g>
<g >
<title>schedule_debug.isra.0 (279,680 samples, 0.01%)</title><rect x="130.2" y="917" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="133.17" y="927.5" ></text>
</g>
<g >
<title>__update_load_avg_se (1,596,999 samples, 0.05%)</title><rect x="622.4" y="437" width="0.6" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="625.43" y="447.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (8,195,119 samples, 0.26%)</title><rect x="833.2" y="421" width="3.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="836.24" y="431.5" ></text>
</g>
<g >
<title>sched_clock_cpu (358,210 samples, 0.01%)</title><rect x="127.3" y="901" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="130.28" y="911.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (336,361 samples, 0.01%)</title><rect x="484.5" y="501" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="487.49" y="511.5" ></text>
</g>
<g >
<title>__rb_erase_color (556,094 samples, 0.02%)</title><rect x="1189.1" y="949" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="1192.08" y="959.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (2,097,520 samples, 0.07%)</title><rect x="257.0" y="581" width="0.7" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="259.95" y="591.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (588,264 samples, 0.02%)</title><rect x="580.4" y="293" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="583.37" y="303.5" ></text>
</g>
<g >
<title>__put_user_8 (9,296,150 samples, 0.29%)</title><rect x="497.3" y="565" width="3.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="500.34" y="575.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (322,335 samples, 0.01%)</title><rect x="552.1" y="357" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="555.10" y="367.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (538,296 samples, 0.02%)</title><rect x="266.6" y="565" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="269.62" y="575.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (364,057 samples, 0.01%)</title><rect x="550.3" y="341" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="553.31" y="351.5" ></text>
</g>
<g >
<title>irq_work_run_list (281,119 samples, 0.01%)</title><rect x="56.4" y="757" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="59.39" y="767.5" ></text>
</g>
<g >
<title>mnt_put_write_access_file (281,122 samples, 0.01%)</title><rect x="1187.5" y="533" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1190.47" y="543.5" ></text>
</g>
<g >
<title>[libstdc++.so.6.0.33] (507,212 samples, 0.02%)</title><rect x="1187.9" y="917" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1190.86" y="927.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (1,010,565 samples, 0.03%)</title><rect x="395.1" y="501" width="0.4" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="398.09" y="511.5" ></text>
</g>
<g >
<title>scheduler_tick (1,746,124 samples, 0.05%)</title><rect x="257.0" y="485" width="0.6" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="259.98" y="495.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (280,550 samples, 0.01%)</title><rect x="403.2" y="597" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="406.17" y="607.5" ></text>
</g>
<g >
<title>x86_pmu_disable (386,240 samples, 0.01%)</title><rect x="410.3" y="469" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="413.29" y="479.5" ></text>
</g>
<g >
<title>tick_sched_handle (452,803 samples, 0.01%)</title><rect x="433.6" y="581" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="436.63" y="591.5" ></text>
</g>
<g >
<title>[libc.so.6] (507,212 samples, 0.02%)</title><rect x="1187.9" y="885" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1190.86" y="895.5" ></text>
</g>
<g >
<title>common_interrupt (350,433 samples, 0.01%)</title><rect x="336.7" y="629" width="0.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="339.66" y="639.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (316,517 samples, 0.01%)</title><rect x="345.3" y="661" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="348.33" y="671.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (1,344,045 samples, 0.04%)</title><rect x="699.8" y="213" width="0.5" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="702.85" y="223.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (1,827,767 samples, 0.06%)</title><rect x="75.4" y="837" width="0.7" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="78.44" y="847.5" ></text>
</g>
<g >
<title>task_mm_cid_work (1,108,783 samples, 0.03%)</title><rect x="30.7" y="981" width="0.4" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="33.70" y="991.5" ></text>
</g>
<g >
<title>hash_bytes (3,331,667 samples, 0.10%)</title><rect x="216.5" y="629" width="1.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="219.49" y="639.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (891,440 samples, 0.03%)</title><rect x="516.0" y="373" width="0.4" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="519.04" y="383.5" ></text>
</g>
<g >
<title>rseq_ip_fixup (42,584,180 samples, 1.33%)</title><rect x="502.0" y="565" width="15.7" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="505.01" y="575.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (556,946 samples, 0.02%)</title><rect x="54.0" y="629" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="56.99" y="639.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (394,235 samples, 0.01%)</title><rect x="321.3" y="597" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="324.28" y="607.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (614,452 samples, 0.02%)</title><rect x="287.8" y="453" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="290.76" y="463.5" ></text>
</g>
<g >
<title>perf_ctx_disable (389,224 samples, 0.01%)</title><rect x="10.2" y="501" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="13.19" y="511.5" ></text>
</g>
<g >
<title>blkcg_maybe_throttle_current (1,452,945 samples, 0.05%)</title><rect x="29.9" y="997" width="0.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="32.91" y="1007.5" ></text>
</g>
<g >
<title>timerqueue_add (2,532,567 samples, 0.08%)</title><rect x="34.5" y="885" width="1.0" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="37.52" y="895.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (861,084 samples, 0.03%)</title><rect x="53.9" y="725" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="56.87" y="735.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (364,057 samples, 0.01%)</title><rect x="550.3" y="517" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="553.31" y="527.5" ></text>
</g>
<g >
<title>x86_pmu_disable (4,975,195 samples, 0.16%)</title><rect x="1101.5" y="437" width="1.9" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1104.52" y="447.5" ></text>
</g>
<g >
<title>update_curr_se (376,453 samples, 0.01%)</title><rect x="811.3" y="293" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="814.33" y="303.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (409,109 samples, 0.01%)</title><rect x="372.5" y="597" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="375.52" y="607.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (339,932 samples, 0.01%)</title><rect x="55.2" y="757" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="58.18" y="767.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (276,867 samples, 0.01%)</title><rect x="25.4" y="997" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="28.39" y="1007.5" ></text>
</g>
<g >
<title>scheduler_tick (988,011 samples, 0.03%)</title><rect x="188.4" y="501" width="0.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="191.39" y="511.5" ></text>
</g>
<g >
<title>ip_push_pending_frames (429,711 samples, 0.01%)</title><rect x="700.2" y="149" width="0.1" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="703.19" y="159.5" ></text>
</g>
<g >
<title>wake_up_process (358,417 samples, 0.01%)</title><rect x="836.0" y="293" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="838.97" y="303.5" ></text>
</g>
<g >
<title>memcg_list_lru_alloc (281,122 samples, 0.01%)</title><rect x="10.1" y="517" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="13.09" y="527.5" ></text>
</g>
<g >
<title>irq_exit_rcu (350,433 samples, 0.01%)</title><rect x="336.7" y="613" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="339.66" y="623.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (687,263 samples, 0.02%)</title><rect x="326.3" y="565" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="329.25" y="575.5" ></text>
</g>
<g >
<title>perf_exclude_event (939,871 samples, 0.03%)</title><rect x="877.6" y="453" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="880.58" y="463.5" ></text>
</g>
<g >
<title>native_read_msr (277,993 samples, 0.01%)</title><rect x="199.5" y="389" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="202.46" y="399.5" ></text>
</g>
<g >
<title>do_syscall_64 (281,122 samples, 0.01%)</title><rect x="1187.5" y="645" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1190.47" y="655.5" ></text>
</g>
<g >
<title>perf_event_task_tick (348,091 samples, 0.01%)</title><rect x="543.8" y="421" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="546.78" y="431.5" ></text>
</g>
<g >
<title>ExecutePlan (670,346 samples, 0.02%)</title><rect x="10.1" y="997" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="13.09" y="1007.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (418,966 samples, 0.01%)</title><rect x="81.5" y="789" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="84.55" y="799.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (281,122 samples, 0.01%)</title><rect x="10.1" y="773" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="13.09" y="783.5" ></text>
</g>
<g >
<title>get_timespec64 (918,321 samples, 0.03%)</title><rect x="130.4" y="981" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="133.36" y="991.5" ></text>
</g>
<g >
<title>acct_account_cputime (996,270 samples, 0.03%)</title><rect x="55.9" y="709" width="0.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="58.92" y="719.5" ></text>
</g>
<g >
<title>ext4_create (281,122 samples, 0.01%)</title><rect x="10.1" y="629" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="13.09" y="639.5" ></text>
</g>
<g >
<title>[libc.so.6] (1,114,534 samples, 0.03%)</title><rect x="339.5" y="629" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="342.49" y="639.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (1,584,708 samples, 0.05%)</title><rect x="888.2" y="421" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="891.16" y="431.5" ></text>
</g>
<g >
<title>psi_flags_change (282,586 samples, 0.01%)</title><rect x="120.3" y="885" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="123.25" y="895.5" ></text>
</g>
<g >
<title>hrtimer_active (691,120 samples, 0.02%)</title><rect x="717.0" y="325" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="720.00" y="335.5" ></text>
</g>
<g >
<title>scheduler_tick (348,091 samples, 0.01%)</title><rect x="543.8" y="437" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="546.78" y="447.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (530,586 samples, 0.02%)</title><rect x="1188.0" y="837" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="1191.05" y="847.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (314,516 samples, 0.01%)</title><rect x="405.2" y="597" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="408.18" y="607.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (348,857 samples, 0.01%)</title><rect x="531.4" y="549" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="534.40" y="559.5" ></text>
</g>
<g >
<title>tick_sched_handle (336,361 samples, 0.01%)</title><rect x="484.5" y="485" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="487.49" y="495.5" ></text>
</g>
<g >
<title>perf_ctx_enable (360,088 samples, 0.01%)</title><rect x="699.7" y="453" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="702.72" y="463.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (276,867 samples, 0.01%)</title><rect x="25.4" y="981" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="28.39" y="991.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (570,983 samples, 0.02%)</title><rect x="132.7" y="1061" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="135.66" y="1071.5" ></text>
</g>
<g >
<title>SnapBuildPurgeOlderTxn (275,316 samples, 0.01%)</title><rect x="1187.4" y="725" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="1190.37" y="735.5" ></text>
</g>
<g >
<title>lapic_next_event (530,802 samples, 0.02%)</title><rect x="472.3" y="533" width="0.2" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="475.32" y="543.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (856,748 samples, 0.03%)</title><rect x="427.0" y="629" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="429.97" y="639.5" ></text>
</g>
<g >
<title>retbleed_untrain_ret (5,145,536 samples, 0.16%)</title><rect x="1178.5" y="629" width="1.9" height="15.0" fill="rgb(210,25,5)" rx="2" ry="2" />
<text x="1181.48" y="639.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (543,862 samples, 0.02%)</title><rect x="500.8" y="501" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="503.77" y="511.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (1,320,356 samples, 0.04%)</title><rect x="237.8" y="437" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="240.77" y="447.5" ></text>
</g>
<g >
<title>_raw_spin_lock (460,469 samples, 0.01%)</title><rect x="84.2" y="869" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="87.22" y="879.5" ></text>
</g>
<g >
<title>task_work_run (3,363,738 samples, 0.11%)</title><rect x="529.4" y="581" width="1.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="532.42" y="591.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (643,776 samples, 0.02%)</title><rect x="129.4" y="709" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="132.39" y="719.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (359,101 samples, 0.01%)</title><rect x="188.3" y="549" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="191.26" y="559.5" ></text>
</g>
<g >
<title>x86_pmu_disable (1,411,629 samples, 0.04%)</title><rect x="471.7" y="453" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="474.65" y="463.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (913,799 samples, 0.03%)</title><rect x="814.9" y="229" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="817.89" y="239.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (349,888 samples, 0.01%)</title><rect x="823.7" y="357" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="826.71" y="367.5" ></text>
</g>
<g >
<title>asm_common_interrupt (1,868,037 samples, 0.06%)</title><rect x="699.8" y="469" width="0.7" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="702.85" y="479.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (281,182 samples, 0.01%)</title><rect x="265.9" y="437" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="268.95" y="447.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,150,696 samples, 0.04%)</title><rect x="413.6" y="661" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="416.61" y="671.5" ></text>
</g>
<g >
<title>unmap_single_vma (1,587,760 samples, 0.05%)</title><rect x="1189.3" y="981" width="0.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1192.28" y="991.5" ></text>
</g>
<g >
<title>ip_list_rcv (556,946 samples, 0.02%)</title><rect x="54.0" y="709" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="56.99" y="719.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (570,983 samples, 0.02%)</title><rect x="132.7" y="1045" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="135.66" y="1055.5" ></text>
</g>
<g >
<title>tick_sched_handle (2,875,937 samples, 0.09%)</title><rect x="471.3" y="533" width="1.0" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="474.26" y="543.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (389,224 samples, 0.01%)</title><rect x="10.2" y="517" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="13.19" y="527.5" ></text>
</g>
<g >
<title>check_cfs_rq_runtime (3,539,500 samples, 0.11%)</title><rect x="866.6" y="453" width="1.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="869.61" y="463.5" ></text>
</g>
<g >
<title>native_read_msr (872,348 samples, 0.03%)</title><rect x="433.3" y="437" width="0.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="436.30" y="447.5" ></text>
</g>
<g >
<title>tcp_rcv_established (333,528 samples, 0.01%)</title><rect x="833.3" y="165" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="836.32" y="175.5" ></text>
</g>
<g >
<title>free_pgtables (556,094 samples, 0.02%)</title><rect x="1189.1" y="997" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1192.08" y="1007.5" ></text>
</g>
<g >
<title>update_process_times (271,346 samples, 0.01%)</title><rect x="200.5" y="501" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="203.50" y="511.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (539,120 samples, 0.02%)</title><rect x="304.5" y="533" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="307.49" y="543.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (81,988,712 samples, 2.56%)</title><rect x="552.3" y="517" width="30.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="555.25" y="527.5" >hr..</text>
</g>
<g >
<title>enqueue_task (358,417 samples, 0.01%)</title><rect x="836.0" y="245" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="838.97" y="255.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,150,696 samples, 0.04%)</title><rect x="413.6" y="645" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="416.61" y="655.5" ></text>
</g>
<g >
<title>___perf_sw_event (3,928,353 samples, 0.12%)</title><rect x="82.7" y="885" width="1.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="85.66" y="895.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (364,057 samples, 0.01%)</title><rect x="550.3" y="501" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="553.31" y="511.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (988,011 samples, 0.03%)</title><rect x="188.4" y="469" width="0.4" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="191.39" y="479.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (409,109 samples, 0.01%)</title><rect x="372.5" y="581" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="375.52" y="591.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (483,599 samples, 0.02%)</title><rect x="328.9" y="629" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="331.88" y="639.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (1,026,166 samples, 0.03%)</title><rect x="812.4" y="293" width="0.4" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="815.40" y="303.5" ></text>
</g>
<g >
<title>XLogDecodeNextRecord (333,080,169 samples, 10.41%)</title><rect x="10.3" y="1141" width="122.9" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="13.33" y="1151.5" >XLogDecodeNextR..</text>
</g>
<g >
<title>pick_next_task_fair (60,257,677 samples, 1.88%)</title><rect x="841.7" y="469" width="22.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="844.74" y="479.5" >p..</text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (539,120 samples, 0.02%)</title><rect x="304.5" y="581" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="307.49" y="591.5" ></text>
</g>
<g >
<title>__alloc_pages (293,538 samples, 0.01%)</title><rect x="33.0" y="725" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="35.97" y="735.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (1,613,746 samples, 0.05%)</title><rect x="188.3" y="597" width="0.6" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="191.26" y="607.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (94,378,007 samples, 2.95%)</title><rect x="84.1" y="885" width="34.8" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="87.11" y="895.5" >__..</text>
</g>
<g >
<title>__napi_poll (350,433 samples, 0.01%)</title><rect x="336.7" y="549" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="339.66" y="559.5" ></text>
</g>
<g >
<title>expand_table (5,381,689 samples, 0.17%)</title><rect x="304.7" y="629" width="2.0" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="307.69" y="639.5" ></text>
</g>
<g >
<title>x86_pmu_disable (389,224 samples, 0.01%)</title><rect x="10.2" y="485" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="13.19" y="495.5" ></text>
</g>
<g >
<title>tick_sched_handle (348,857 samples, 0.01%)</title><rect x="531.4" y="485" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="534.40" y="495.5" ></text>
</g>
<g >
<title>ip_local_deliver (556,946 samples, 0.02%)</title><rect x="54.0" y="661" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="56.99" y="671.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (1,824,018 samples, 0.06%)</title><rect x="128.6" y="853" width="0.7" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="131.60" y="863.5" ></text>
</g>
<g >
<title>task_work_run (1,475,709 samples, 0.05%)</title><rect x="30.6" y="997" width="0.5" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="33.57" y="1007.5" ></text>
</g>
<g >
<title>schedule_debug.isra.0 (2,566,538 samples, 0.08%)</title><rect x="127.4" y="901" width="1.0" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="130.41" y="911.5" ></text>
</g>
<g >
<title>sched_clock (2,438,676 samples, 0.08%)</title><rect x="674.7" y="405" width="0.9" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="677.72" y="415.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (305,145 samples, 0.01%)</title><rect x="524.8" y="357" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="527.82" y="367.5" ></text>
</g>
<g >
<title>do_group_exit (2,143,854 samples, 0.07%)</title><rect x="1189.1" y="1093" width="0.8" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="1192.08" y="1103.5" ></text>
</g>
<g >
<title>amd_pmu_addr_offset (1,653,806 samples, 0.05%)</title><rect x="85.4" y="805" width="0.6" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="88.36" y="815.5" ></text>
</g>
<g >
<title>ExecutePlan (2,853,966,352 samples, 89.18%)</title><rect x="135.3" y="933" width="1052.4" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="138.35" y="943.5" >ExecutePlan</text>
</g>
<g >
<title>tick_nohz_highres_handler (276,867 samples, 0.01%)</title><rect x="25.4" y="917" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="28.39" y="927.5" ></text>
</g>
<g >
<title>_raw_spin_lock (1,530,814 samples, 0.05%)</title><rect x="590.6" y="485" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="593.55" y="495.5" ></text>
</g>
<g >
<title>lru_gen_del_folio.constprop.0 (520,184 samples, 0.02%)</title><rect x="1189.7" y="853" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1192.68" y="863.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (543,862 samples, 0.02%)</title><rect x="500.8" y="533" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="503.77" y="543.5" ></text>
</g>
<g >
<title>AllocSetCheck (387,424 samples, 0.01%)</title><rect x="1187.7" y="933" width="0.2" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="1190.72" y="943.5" ></text>
</g>
<g >
<title>PortalRunSelect (2,853,966,352 samples, 89.18%)</title><rect x="135.3" y="965" width="1052.4" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="138.35" y="975.5" >PortalRunSelect</text>
</g>
<g >
<title>__msecs_to_jiffies (627,975 samples, 0.02%)</title><rect x="77.3" y="869" width="0.2" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="80.30" y="879.5" ></text>
</g>
<g >
<title>tick_sched_handle (348,091 samples, 0.01%)</title><rect x="543.8" y="469" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="546.78" y="479.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (75,017,242 samples, 2.34%)</title><rect x="238.8" y="629" width="27.7" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="241.80" y="639.5" >h..</text>
</g>
<g >
<title>native_write_msr (913,799 samples, 0.03%)</title><rect x="814.9" y="213" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="817.89" y="223.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (348,091 samples, 0.01%)</title><rect x="543.8" y="373" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="546.78" y="383.5" ></text>
</g>
<g >
<title>virtqueue_get_buf_ctx_split (350,433 samples, 0.01%)</title><rect x="336.7" y="469" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="339.66" y="479.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (389,138 samples, 0.01%)</title><rect x="1172.3" y="517" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1175.32" y="527.5" ></text>
</g>
<g >
<title>ExecResult (670,346 samples, 0.02%)</title><rect x="10.1" y="965" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="13.09" y="975.5" ></text>
</g>
<g >
<title>rcu_pending (693,109 samples, 0.02%)</title><rect x="56.8" y="741" width="0.2" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="59.77" y="751.5" ></text>
</g>
<g >
<title>update_process_times (872,348 samples, 0.03%)</title><rect x="433.3" y="549" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="436.30" y="559.5" ></text>
</g>
<g >
<title>perf_event_task_tick (872,348 samples, 0.03%)</title><rect x="433.3" y="517" width="0.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="436.30" y="527.5" ></text>
</g>
<g >
<title>ip_list_rcv (645,265 samples, 0.02%)</title><rect x="833.3" y="293" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="836.32" y="303.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (452,803 samples, 0.01%)</title><rect x="433.6" y="645" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="436.63" y="655.5" ></text>
</g>
<g >
<title>sched_clock_cpu (2,291,785 samples, 0.07%)</title><rect x="128.5" y="885" width="0.9" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="131.54" y="895.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (645,917 samples, 0.02%)</title><rect x="147.9" y="581" width="0.3" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="150.94" y="591.5" ></text>
</g>
<g >
<title>rcu_core_si (477,130 samples, 0.01%)</title><rect x="833.6" y="389" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="836.55" y="399.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (285,824 samples, 0.01%)</title><rect x="22.6" y="981" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="25.57" y="991.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (891,440 samples, 0.03%)</title><rect x="516.0" y="453" width="0.4" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="519.04" y="463.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (538,296 samples, 0.02%)</title><rect x="266.6" y="629" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="269.62" y="639.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (1,150,696 samples, 0.04%)</title><rect x="413.6" y="597" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="416.61" y="607.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (729,975 samples, 0.02%)</title><rect x="135.0" y="933" width="0.3" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="137.99" y="943.5" ></text>
</g>
<g >
<title>get_hash_value (20,077,638 samples, 0.63%)</title><rect x="209.1" y="629" width="7.4" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="212.09" y="639.5" ></text>
</g>
<g >
<title>[unknown] (333,986,583 samples, 10.44%)</title><rect x="10.0" y="1157" width="123.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="1167.5" >[unknown]</text>
</g>
<g >
<title>SnapBuildWaitSnapshot (2,852,756,417 samples, 89.15%)</title><rect x="135.3" y="709" width="1052.0" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="138.35" y="719.5" >SnapBuildWaitSnapshot</text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (1,648,172 samples, 0.05%)</title><rect x="471.6" y="469" width="0.6" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="474.57" y="479.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (861,084 samples, 0.03%)</title><rect x="53.9" y="741" width="0.3" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" />
<text x="56.87" y="751.5" ></text>
</g>
<g >
<title>update_cfs_group (785,213 samples, 0.02%)</title><rect x="43.7" y="853" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="46.74" y="863.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (313,485 samples, 0.01%)</title><rect x="350.3" y="597" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="353.32" y="607.5" ></text>
</g>
<g >
<title>sched_clock_cpu (36,827,074 samples, 1.15%)</title><rect x="1137.9" y="453" width="13.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1140.94" y="463.5" ></text>
</g>
<g >
<title>perf_event_task_tick (355,401 samples, 0.01%)</title><rect x="1178.3" y="453" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="1181.27" y="463.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (4,076,784 samples, 0.13%)</title><rect x="485.6" y="597" width="1.5" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="488.63" y="607.5" ></text>
</g>
<g >
<title>finish_xact_command (387,424 samples, 0.01%)</title><rect x="1187.7" y="965" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1190.72" y="975.5" ></text>
</g>
<g >
<title>tick_sched_handle (575,311 samples, 0.02%)</title><rect x="1178.3" y="501" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1181.27" y="511.5" ></text>
</g>
<g >
<title>__update_load_avg_se (2,652,605 samples, 0.08%)</title><rect x="50.3" y="837" width="0.9" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="53.26" y="847.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (418,279 samples, 0.01%)</title><rect x="72.4" y="709" width="0.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="75.44" y="719.5" ></text>
</g>
<g >
<title>put_prev_entity (568,255 samples, 0.02%)</title><rect x="81.9" y="885" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="84.89" y="895.5" ></text>
</g>
<g >
<title>EmitErrorReport (281,122 samples, 0.01%)</title><rect x="1187.5" y="725" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="1190.47" y="735.5" ></text>
</g>
<g >
<title>check_cpu_stall (2,139,226 samples, 0.07%)</title><rect x="712.8" y="309" width="0.8" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="715.80" y="319.5" ></text>
</g>
<g >
<title>x86_pmu_disable (314,516 samples, 0.01%)</title><rect x="405.2" y="421" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="408.18" y="431.5" ></text>
</g>
<g >
<title>__calc_delta.constprop.0 (1,842,817 samples, 0.06%)</title><rect x="42.7" y="853" width="0.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="45.74" y="863.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (2,379,013 samples, 0.07%)</title><rect x="674.7" y="389" width="0.9" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="677.75" y="399.5" ></text>
</g>
<g >
<title>ksys_write (281,122 samples, 0.01%)</title><rect x="1187.5" y="597" width="0.1" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="1190.47" y="607.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (1,812,672 samples, 0.06%)</title><rect x="257.0" y="533" width="0.6" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="259.95" y="543.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (239,183,367 samples, 7.47%)</title><rect x="718.2" y="309" width="88.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="721.23" y="319.5" >perf_adjus..</text>
</g>
<g >
<title>get_slru_entry (19,019,118 samples, 0.59%)</title><rect x="403.3" y="613" width="7.0" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="406.28" y="623.5" ></text>
</g>
<g >
<title>tick_sched_handle (271,346 samples, 0.01%)</title><rect x="200.5" y="517" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="203.50" y="527.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (383,344 samples, 0.01%)</title><rect x="282.4" y="533" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="285.37" y="543.5" ></text>
</g>
<g >
<title>ktime_get (336,014 samples, 0.01%)</title><rect x="54.9" y="805" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="57.95" y="815.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (33,437,190 samples, 1.04%)</title><rect x="1139.2" y="421" width="12.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1142.19" y="431.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (652,288 samples, 0.02%)</title><rect x="1185.9" y="629" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1188.85" y="639.5" ></text>
</g>
<g >
<title>update_process_times (313,485 samples, 0.01%)</title><rect x="350.3" y="517" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="353.32" y="527.5" ></text>
</g>
<g >
<title>ExecProcNode (2,853,578,928 samples, 89.17%)</title><rect x="135.3" y="917" width="1052.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="138.35" y="927.5" >ExecProcNode</text>
</g>
<g >
<title>update_blocked_averages (905,403 samples, 0.03%)</title><rect x="75.4" y="789" width="0.4" height="15.0" fill="rgb(240,163,38)" rx="2" ry="2" />
<text x="78.44" y="799.5" ></text>
</g>
<g >
<title>update_cfs_group (6,661,143 samples, 0.21%)</title><rect x="626.4" y="437" width="2.5" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="629.40" y="447.5" ></text>
</g>
<g >
<title>ip_send_unicast_reply (429,711 samples, 0.01%)</title><rect x="700.2" y="165" width="0.1" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" />
<text x="703.19" y="175.5" ></text>
</g>
<g >
<title>GrantLock (2,184,470 samples, 0.07%)</title><rect x="188.9" y="645" width="0.8" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="191.85" y="655.5" ></text>
</g>
<g >
<title>open (281,122 samples, 0.01%)</title><rect x="10.1" y="805" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="13.09" y="815.5" ></text>
</g>
<g >
<title>tick_sched_handle (1,010,565 samples, 0.03%)</title><rect x="395.1" y="485" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="398.09" y="495.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,688,491 samples, 0.05%)</title><rect x="350.4" y="645" width="0.7" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="353.43" y="655.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (285,824 samples, 0.01%)</title><rect x="22.6" y="885" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="25.57" y="895.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (781,228 samples, 0.02%)</title><rect x="330.4" y="629" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="333.35" y="639.5" ></text>
</g>
<g >
<title>perf_event_task_tick (1,223,908 samples, 0.04%)</title><rect x="257.1" y="469" width="0.5" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="260.10" y="479.5" ></text>
</g>
<g >
<title>BackendStartup (2,855,391,574 samples, 89.23%)</title><rect x="135.3" y="1061" width="1052.9" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="138.35" y="1071.5" >BackendStartup</text>
</g>
<g >
<title>__cgroup_account_cputime_field (1,035,556 samples, 0.03%)</title><rect x="708.0" y="293" width="0.4" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="711.01" y="303.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (2,453,594 samples, 0.08%)</title><rect x="203.1" y="629" width="0.9" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="206.07" y="639.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (1,320,356 samples, 0.04%)</title><rect x="237.8" y="549" width="0.5" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="240.77" y="559.5" ></text>
</g>
<g >
<title>dlist_push_tail (1,102,737 samples, 0.03%)</title><rect x="238.4" y="629" width="0.4" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="241.40" y="639.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (8,949,975 samples, 0.28%)</title><rect x="347.8" y="661" width="3.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="350.76" y="671.5" ></text>
</g>
<g >
<title>run_rebalance_domains (905,403 samples, 0.03%)</title><rect x="75.4" y="805" width="0.4" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="78.44" y="815.5" ></text>
</g>
<g >
<title>has_seq_scans (585,042 samples, 0.02%)</title><rect x="350.2" y="645" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="353.22" y="655.5" ></text>
</g>
<g >
<title>update_process_times (891,440 samples, 0.03%)</title><rect x="516.0" y="421" width="0.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="519.04" y="431.5" ></text>
</g>
<g >
<title>perf_event_task_tick (550,314 samples, 0.02%)</title><rect x="1164.8" y="357" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="1167.77" y="367.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (348,857 samples, 0.01%)</title><rect x="531.4" y="501" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="534.40" y="511.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (306,815 samples, 0.01%)</title><rect x="398.9" y="581" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="401.90" y="591.5" ></text>
</g>
<g >
<title>x86_pmu_disable (372,982 samples, 0.01%)</title><rect x="258.4" y="421" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="261.38" y="431.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (431,267 samples, 0.01%)</title><rect x="1187.1" y="645" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1190.11" y="655.5" ></text>
</g>
<g >
<title>ip_sublist_rcv_finish (565,786 samples, 0.02%)</title><rect x="833.3" y="261" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="836.32" y="271.5" ></text>
</g>
<g >
<title>update_process_times (314,516 samples, 0.01%)</title><rect x="405.2" y="485" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="408.18" y="495.5" ></text>
</g>
<g >
<title>handle_edge_irq (440,346 samples, 0.01%)</title><rect x="53.7" y="837" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="56.71" y="847.5" ></text>
</g>
<g >
<title>ktime_get (3,693,867 samples, 0.12%)</title><rect x="822.5" y="373" width="1.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="825.48" y="383.5" ></text>
</g>
<g >
<title>tick_sched_do_timer (657,277 samples, 0.02%)</title><rect x="704.2" y="373" width="0.3" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="707.21" y="383.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (285,824 samples, 0.01%)</title><rect x="22.6" y="997" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="25.57" y="1007.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (652,288 samples, 0.02%)</title><rect x="1185.9" y="501" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="1188.85" y="511.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (265,054,921 samples, 8.28%)</title><rect x="32.6" y="965" width="97.8" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="35.62" y="975.5" >hrtimer_nan..</text>
</g>
<g >
<title>handle_softirqs (293,538 samples, 0.01%)</title><rect x="33.0" y="869" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="35.97" y="879.5" ></text>
</g>
<g >
<title>scheduler_tick (305,145 samples, 0.01%)</title><rect x="524.8" y="437" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="527.82" y="447.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (671,847 samples, 0.02%)</title><rect x="699.6" y="469" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="702.60" y="479.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (389,224 samples, 0.01%)</title><rect x="10.2" y="533" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="13.19" y="543.5" ></text>
</g>
<g >
<title>scheduler_tick (364,057 samples, 0.01%)</title><rect x="550.3" y="405" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="553.31" y="415.5" ></text>
</g>
<g >
<title>scheduler_tick (271,346 samples, 0.01%)</title><rect x="200.5" y="485" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="203.50" y="495.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (474,450 samples, 0.01%)</title><rect x="410.3" y="597" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="413.29" y="607.5" ></text>
</g>
<g >
<title>irq_work_tick (620,185 samples, 0.02%)</title><rect x="704.8" y="357" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="707.76" y="367.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturnSwitchContext (670,346 samples, 0.02%)</title><rect x="10.1" y="933" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="13.09" y="943.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (344,420 samples, 0.01%)</title><rect x="257.0" y="469" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="259.98" y="479.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (305,520 samples, 0.01%)</title><rect x="54.1" y="597" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="57.08" y="607.5" ></text>
</g>
<g >
<title>cpuacct_account_field (348,656 samples, 0.01%)</title><rect x="710.4" y="309" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="713.36" y="319.5" ></text>
</g>
<g >
<title>x86_pmu_disable (1,150,696 samples, 0.04%)</title><rect x="413.6" y="485" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="416.61" y="495.5" ></text>
</g>
<g >
<title>scheduler_tick (372,982 samples, 0.01%)</title><rect x="258.4" y="469" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="261.38" y="479.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (1,104,628 samples, 0.03%)</title><rect x="589.7" y="485" width="0.4" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="592.68" y="495.5" ></text>
</g>
<g >
<title>scheduler_tick (409,109 samples, 0.01%)</title><rect x="372.5" y="501" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="375.52" y="511.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (313,485 samples, 0.01%)</title><rect x="350.3" y="437" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="353.32" y="447.5" ></text>
</g>
<g >
<title>__update_blocked_fair (905,403 samples, 0.03%)</title><rect x="75.4" y="773" width="0.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="78.44" y="783.5" ></text>
</g>
<g >
<title>scheduler_tick (386,240 samples, 0.01%)</title><rect x="410.3" y="517" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="413.29" y="527.5" ></text>
</g>
<g >
<title>update_process_times (600,661 samples, 0.02%)</title><rect x="517.5" y="421" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="520.50" y="431.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (313,485 samples, 0.01%)</title><rect x="350.3" y="613" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="353.32" y="623.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (4,159,615 samples, 0.13%)</title><rect x="125.1" y="821" width="1.5" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="128.11" y="831.5" ></text>
</g>
<g >
<title>SubTransGetTopmostTransaction (170,793,628 samples, 5.34%)</title><rect x="351.1" y="677" width="62.9" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="354.06" y="687.5" >SubTra..</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (965,173 samples, 0.03%)</title><rect x="135.0" y="1125" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="137.99" y="1135.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,332,378 samples, 0.10%)</title><rect x="472.6" y="629" width="1.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="475.57" y="639.5" ></text>
</g>
<g >
<title>sched_clock_cpu (2,438,676 samples, 0.08%)</title><rect x="674.7" y="421" width="0.9" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="677.72" y="431.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (327,058 samples, 0.01%)</title><rect x="345.9" y="581" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="348.90" y="591.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2,029,992 samples, 0.06%)</title><rect x="580.0" y="437" width="0.8" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="583.01" y="447.5" ></text>
</g>
<g >
<title>tick_sched_handle (444,458 samples, 0.01%)</title><rect x="399.1" y="533" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="402.11" y="543.5" ></text>
</g>
<g >
<title>account_system_index_time (1,718,112 samples, 0.05%)</title><rect x="55.7" y="725" width="0.6" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="58.65" y="735.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (431,267 samples, 0.01%)</title><rect x="1187.1" y="629" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1190.11" y="639.5" ></text>
</g>
<g >
<title>__remove_hrtimer (1,212,415 samples, 0.04%)</title><rect x="701.7" y="389" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="704.71" y="399.5" ></text>
</g>
<g >
<title>hrtick_update (1,433,967 samples, 0.04%)</title><rect x="692.9" y="469" width="0.5" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="695.87" y="479.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (355,401 samples, 0.01%)</title><rect x="1178.3" y="405" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1181.27" y="415.5" ></text>
</g>
<g >
<title>lapic_next_event (296,065 samples, 0.01%)</title><rect x="1165.1" y="405" width="0.1" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="1168.13" y="415.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,891,319,697 samples, 59.10%)</title><rect x="479.3" y="613" width="697.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="482.26" y="623.5" >do_syscall_64</text>
</g>
<g >
<title>sched_clock (349,531 samples, 0.01%)</title><rect x="835.0" y="325" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="838.04" y="335.5" ></text>
</g>
<g >
<title>x86_pmu_disable (918,087 samples, 0.03%)</title><rect x="257.2" y="437" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="260.22" y="447.5" ></text>
</g>
<g >
<title>common_interrupt (1,868,037 samples, 0.06%)</title><rect x="699.8" y="453" width="0.7" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="702.85" y="463.5" ></text>
</g>
<g >
<title>do_filp_open (281,122 samples, 0.01%)</title><rect x="10.1" y="693" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="13.09" y="703.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (545,305 samples, 0.02%)</title><rect x="199.5" y="581" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="202.46" y="591.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (383,344 samples, 0.01%)</title><rect x="282.4" y="613" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="285.37" y="623.5" ></text>
</g>
<g >
<title>update_cfs_group (937,788 samples, 0.03%)</title><rect x="809.2" y="309" width="0.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="812.25" y="319.5" ></text>
</g>
<g >
<title>PortalRunSelect (670,346 samples, 0.02%)</title><rect x="10.1" y="1029" width="0.2" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="13.09" y="1039.5" ></text>
</g>
<g >
<title>do_nanosleep (1,672,833,358 samples, 52.27%)</title><rect x="550.4" y="533" width="616.9" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="553.44" y="543.5" >do_nanosleep</text>
</g>
<g >
<title>sched_clock (34,862,213 samples, 1.09%)</title><rect x="1138.7" y="437" width="12.8" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="1141.66" y="447.5" ></text>
</g>
<g >
<title>kick_pool (358,417 samples, 0.01%)</title><rect x="836.0" y="309" width="0.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="838.97" y="319.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (520,184 samples, 0.02%)</title><rect x="1189.7" y="821" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1192.68" y="831.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1,010,565 samples, 0.03%)</title><rect x="395.1" y="533" width="0.4" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="398.09" y="543.5" ></text>
</g>
<g >
<title>SetupLockInTable (89,418,187 samples, 2.79%)</title><rect x="233.6" y="645" width="33.0" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="236.65" y="655.5" >Se..</text>
</g>
<g >
<title>kvm_clock_get_cycles (1,367,255 samples, 0.04%)</title><rect x="36.0" y="885" width="0.5" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="39.02" y="895.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (389,138 samples, 0.01%)</title><rect x="1172.3" y="373" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="1175.32" y="383.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (477,130 samples, 0.01%)</title><rect x="833.6" y="293" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="836.55" y="303.5" ></text>
</g>
<g >
<title>default_wake_function (305,520 samples, 0.01%)</title><rect x="54.1" y="469" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="57.08" y="479.5" ></text>
</g>
<g >
<title>native_write_msr (633,674 samples, 0.02%)</title><rect x="516.0" y="325" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="519.04" y="335.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (645,265 samples, 0.02%)</title><rect x="833.3" y="309" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="836.32" y="319.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (609,697,283 samples, 19.05%)</title><rect x="878.5" y="469" width="224.9" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="881.54" y="479.5" >__perf_event_task_sched_out</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (545,305 samples, 0.02%)</title><rect x="199.5" y="613" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="202.46" y="623.5" ></text>
</g>
<g >
<title>sync_regs (507,212 samples, 0.02%)</title><rect x="1187.9" y="805" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1190.86" y="815.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (670,346 samples, 0.02%)</title><rect x="10.1" y="1013" width="0.2" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="13.09" y="1023.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,613,746 samples, 0.05%)</title><rect x="188.3" y="629" width="0.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="191.26" y="639.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (1,037,798 samples, 0.03%)</title><rect x="1187.9" y="949" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1190.86" y="959.5" ></text>
</g>
<g >
<title>update_curr (316,517 samples, 0.01%)</title><rect x="345.3" y="501" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="348.33" y="511.5" ></text>
</g>
<g >
<title>update_load_avg (390,535 samples, 0.01%)</title><rect x="472.2" y="469" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="475.17" y="479.5" ></text>
</g>
<g >
<title>update_process_times (1,812,672 samples, 0.06%)</title><rect x="257.0" y="501" width="0.6" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="259.95" y="511.5" ></text>
</g>
<g >
<title>update_min_vruntime (6,547,302 samples, 0.20%)</title><rect x="675.6" y="437" width="2.4" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="678.62" y="447.5" ></text>
</g>
<g >
<title>do_nanosleep (274,749 samples, 0.01%)</title><rect x="32.5" y="965" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="35.52" y="975.5" ></text>
</g>
<g >
<title>pg_usleep (317,247,742 samples, 9.91%)</title><rect x="16.2" y="1093" width="117.0" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="19.17" y="1103.5" >pg_usleep</text>
</g>
<g >
<title>update_process_times (276,867 samples, 0.01%)</title><rect x="25.4" y="885" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="28.39" y="895.5" ></text>
</g>
<g >
<title>avg_vruntime (1,019,737 samples, 0.03%)</title><rect x="607.3" y="453" width="0.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="610.35" y="463.5" ></text>
</g>
<g >
<title>LWLockRelease (4,278,627 samples, 0.13%)</title><rect x="329.1" y="661" width="1.5" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="332.06" y="671.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (6,096,304 samples, 0.19%)</title><rect x="577.5" y="485" width="2.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="580.53" y="495.5" ></text>
</g>
<g >
<title>tick_sched_handle (383,344 samples, 0.01%)</title><rect x="282.4" y="517" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="285.37" y="527.5" ></text>
</g>
<g >
<title>clockevents_program_event (718,287 samples, 0.02%)</title><rect x="1165.0" y="421" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="1167.98" y="431.5" ></text>
</g>
<g >
<title>scheduler_tick (575,311 samples, 0.02%)</title><rect x="1178.3" y="469" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1181.27" y="479.5" ></text>
</g>
<g >
<title>dequeue_task_fair (817,561 samples, 0.03%)</title><rect x="52.3" y="901" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="55.28" y="911.5" ></text>
</g>
<g >
<title>_find_next_bit (276,432 samples, 0.01%)</title><rect x="75.9" y="773" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="78.87" y="783.5" ></text>
</g>
<g >
<title>clock_nanosleep (5,953,881 samples, 0.19%)</title><rect x="133.2" y="1141" width="2.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="136.15" y="1151.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (935,258 samples, 0.03%)</title><rect x="54.6" y="805" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="57.60" y="815.5" ></text>
</g>
<g >
<title>LWLockAcquire (9,015,780 samples, 0.28%)</title><rect x="422.5" y="661" width="3.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="425.53" y="671.5" ></text>
</g>
<g >
<title>update_process_times (539,120 samples, 0.02%)</title><rect x="304.5" y="501" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="307.49" y="511.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (20,143,874 samples, 0.63%)</title><rect x="218.9" y="645" width="7.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="221.87" y="655.5" ></text>
</g>
<g >
<title>put_prev_task_fair (11,250,884 samples, 0.35%)</title><rect x="865.6" y="469" width="4.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="868.57" y="479.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (1,899,560 samples, 0.06%)</title><rect x="329.9" y="645" width="0.7" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="332.94" y="655.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (474,450 samples, 0.01%)</title><rect x="410.3" y="613" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="413.29" y="623.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (556,946 samples, 0.02%)</title><rect x="54.0" y="693" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="56.99" y="703.5" ></text>
</g>
<g >
<title>__schedule (1,570,747,124 samples, 49.08%)</title><rect x="585.6" y="501" width="579.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="588.58" y="511.5" >__schedule</text>
</g>
<g >
<title>scheduler_tick (281,182 samples, 0.01%)</title><rect x="265.9" y="469" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="268.95" y="479.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (4,106,631 samples, 0.13%)</title><rect x="33.9" y="901" width="1.6" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="36.94" y="911.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (551,084 samples, 0.02%)</title><rect x="823.8" y="373" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="826.84" y="383.5" ></text>
</g>
<g >
<title>perf_event_task_tick (276,874 samples, 0.01%)</title><rect x="395.4" y="437" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="398.36" y="447.5" ></text>
</g>
<g >
<title>update_load_avg (49,974,839 samples, 1.56%)</title><rect x="657.2" y="437" width="18.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="660.20" y="447.5" ></text>
</g>
<g >
<title>scheduler_tick (538,296 samples, 0.02%)</title><rect x="266.6" y="517" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="269.62" y="527.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (314,516 samples, 0.01%)</title><rect x="405.2" y="581" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="408.18" y="591.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (335,715 samples, 0.01%)</title><rect x="266.6" y="453" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="269.62" y="463.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (329,081 samples, 0.01%)</title><rect x="36.7" y="917" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="39.69" y="927.5" ></text>
</g>
<g >
<title>__update_blocked_fair (512,841 samples, 0.02%)</title><rect x="81.7" y="837" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="84.70" y="847.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (335,715 samples, 0.01%)</title><rect x="266.6" y="485" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="269.62" y="495.5" ></text>
</g>
<g >
<title>__rcu_read_lock (716,742 samples, 0.02%)</title><rect x="77.5" y="869" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="80.53" y="879.5" ></text>
</g>
<g >
<title>__x64_sys_clock_nanosleep (1,804,453 samples, 0.06%)</title><rect x="24.2" y="1013" width="0.6" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="27.18" y="1023.5" ></text>
</g>
<g >
<title>get_page_from_freelist (293,538 samples, 0.01%)</title><rect x="33.0" y="709" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="35.97" y="719.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (281,182 samples, 0.01%)</title><rect x="265.9" y="565" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="268.95" y="575.5" ></text>
</g>
<g >
<title>perf_event_task_tick (336,361 samples, 0.01%)</title><rect x="484.5" y="437" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="487.49" y="447.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (588,264 samples, 0.02%)</title><rect x="580.4" y="325" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="583.37" y="335.5" ></text>
</g>
<g >
<title>perf_ctx_disable (91,908,416 samples, 2.87%)</title><rect x="84.7" y="853" width="33.9" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="87.69" y="863.5" >pe..</text>
</g>
<g >
<title>net_rx_action (645,265 samples, 0.02%)</title><rect x="833.3" y="389" width="0.3" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="836.32" y="399.5" ></text>
</g>
<g >
<title>native_write_msr (530,586 samples, 0.02%)</title><rect x="1188.0" y="709" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1191.05" y="719.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (285,824 samples, 0.01%)</title><rect x="22.6" y="965" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="25.57" y="975.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (2,379,013 samples, 0.07%)</title><rect x="674.7" y="373" width="0.9" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="677.75" y="383.5" ></text>
</g>
<g >
<title>perf_ctx_disable (765,823 samples, 0.02%)</title><rect x="880.9" y="453" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="883.89" y="463.5" ></text>
</g>
<g >
<title>dequeue_entity (1,560,371 samples, 0.05%)</title><rect x="595.2" y="469" width="0.6" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="598.23" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,143,854 samples, 0.07%)</title><rect x="1189.1" y="1125" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.08" y="1135.5" ></text>
</g>
<g >
<title>perf_event_task_tick (355,453 samples, 0.01%)</title><rect x="199.7" y="485" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="202.66" y="495.5" ></text>
</g>
<g >
<title>perf_event_task_tick (364,057 samples, 0.01%)</title><rect x="550.3" y="389" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="553.31" y="399.5" ></text>
</g>
<g >
<title>nanosleep@plt (2,946,573 samples, 0.09%)</title><rect x="1186.2" y="661" width="1.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1189.18" y="671.5" ></text>
</g>
<g >
<title>tick_sched_handle (285,824 samples, 0.01%)</title><rect x="22.6" y="949" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="25.57" y="959.5" ></text>
</g>
<g >
<title>perf_event_task_tick (431,267 samples, 0.01%)</title><rect x="1187.1" y="501" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="1190.11" y="511.5" ></text>
</g>
<g >
<title>postmaster_child_launch (670,346 samples, 0.02%)</title><rect x="10.1" y="1109" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="13.09" y="1119.5" ></text>
</g>
<g >
<title>rb_next (464,888 samples, 0.01%)</title><rect x="702.0" y="373" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="704.99" y="383.5" ></text>
</g>
<g >
<title>native_read_msr (271,346 samples, 0.01%)</title><rect x="200.5" y="389" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="203.50" y="399.5" ></text>
</g>
<g >
<title>perf_event_task_tick (643,776 samples, 0.02%)</title><rect x="129.4" y="773" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="132.39" y="783.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (2,091,600 samples, 0.07%)</title><rect x="346.9" y="629" width="0.8" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="349.91" y="639.5" ></text>
</g>
<g >
<title>tcp_ack (333,528 samples, 0.01%)</title><rect x="833.3" y="149" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="836.32" y="159.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (348,091 samples, 0.01%)</title><rect x="543.8" y="405" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="546.78" y="415.5" ></text>
</g>
<g >
<title>schedule (389,224 samples, 0.01%)</title><rect x="10.2" y="581" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="13.19" y="591.5" ></text>
</g>
<g >
<title>rcu_sched_clock_irq (408,074 samples, 0.01%)</title><rect x="580.1" y="357" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="583.09" y="367.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (279,591 samples, 0.01%)</title><rect x="817.9" y="277" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="820.89" y="287.5" ></text>
</g>
<g >
<title>x86_pmu_disable (1,320,356 samples, 0.04%)</title><rect x="237.8" y="453" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="240.77" y="463.5" ></text>
</g>
<g >
<title>perf_swevent_event (643,900 samples, 0.02%)</title><rect x="119.1" y="885" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="122.06" y="895.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (872,348 samples, 0.03%)</title><rect x="433.3" y="501" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="436.30" y="511.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (431,267 samples, 0.01%)</title><rect x="1187.1" y="485" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="1190.11" y="495.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (715,457 samples, 0.02%)</title><rect x="399.0" y="613" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="402.01" y="623.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (600,661 samples, 0.02%)</title><rect x="517.5" y="485" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="520.50" y="495.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (322,335 samples, 0.01%)</title><rect x="552.1" y="469" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="555.10" y="479.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (914,334 samples, 0.03%)</title><rect x="699.8" y="181" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="702.85" y="191.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (896,540 samples, 0.03%)</title><rect x="188.4" y="421" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="191.42" y="431.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (715,457 samples, 0.02%)</title><rect x="399.0" y="565" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="402.01" y="575.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (336,361 samples, 0.01%)</title><rect x="484.5" y="581" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="487.49" y="591.5" ></text>
</g>
<g >
<title>__mmput (2,143,854 samples, 0.07%)</title><rect x="1189.1" y="1029" width="0.8" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="1192.08" y="1039.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (429,625 samples, 0.01%)</title><rect x="263.8" y="549" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="266.80" y="559.5" ></text>
</g>
<g >
<title>enqueue_task_fair (358,417 samples, 0.01%)</title><rect x="836.0" y="229" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="838.97" y="239.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (2,773,589 samples, 0.09%)</title><rect x="204.6" y="613" width="1.0" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="207.56" y="623.5" ></text>
</g>
<g >
<title>irq_work_run_list (272,532 samples, 0.01%)</title><rect x="711.4" y="325" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="714.36" y="335.5" ></text>
</g>
<g >
<title>scheduler_tick (327,058 samples, 0.01%)</title><rect x="345.9" y="517" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="348.90" y="527.5" ></text>
</g>
<g >
<title>rcu_core (477,130 samples, 0.01%)</title><rect x="833.6" y="373" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="836.55" y="383.5" ></text>
</g>
<g >
<title>scheduler_tick (1,320,356 samples, 0.04%)</title><rect x="237.8" y="501" width="0.5" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="240.77" y="511.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (389,224 samples, 0.01%)</title><rect x="10.2" y="773" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="13.19" y="783.5" ></text>
</g>
<g >
<title>___perf_sw_event (17,067,208 samples, 0.53%)</title><rect x="872.2" y="469" width="6.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="875.24" y="479.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (965,173 samples, 0.03%)</title><rect x="135.0" y="1109" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="137.99" y="1119.5" ></text>
</g>
<g >
<title>tick_program_event (530,802 samples, 0.02%)</title><rect x="472.3" y="565" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="475.32" y="575.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (53,841,516 samples, 1.68%)</title><rect x="98.7" y="805" width="19.9" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="101.72" y="815.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (19,745,925 samples, 0.62%)</title><rect x="64.3" y="677" width="7.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="67.26" y="687.5" ></text>
</g>
<g >
<title>native_read_msr (308,575 samples, 0.01%)</title><rect x="326.4" y="405" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="329.39" y="415.5" ></text>
</g>
<g >
<title>x86_pmu_disable (550,314 samples, 0.02%)</title><rect x="1164.8" y="325" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1167.77" y="335.5" ></text>
</g>
<g >
<title>__nanosleep (311,441,079 samples, 9.73%)</title><rect x="17.8" y="1077" width="114.9" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text x="20.82" y="1087.5" >__nanosleep</text>
</g>
<g >
<title>rcu_do_batch (477,130 samples, 0.01%)</title><rect x="833.6" y="357" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="836.55" y="367.5" ></text>
</g>
<g >
<title>native_read_msr (342,110 samples, 0.01%)</title><rect x="287.9" y="389" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="290.86" y="399.5" ></text>
</g>
<g >
<title>hash_initial_lookup (287,981 samples, 0.01%)</title><rect x="339.9" y="629" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="342.90" y="639.5" ></text>
</g>
<g >
<title>smp_call_function_single_async (1,271,022 samples, 0.04%)</title><rect x="814.8" y="277" width="0.4" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="817.76" y="287.5" ></text>
</g>
<g >
<title>ExecProject (670,346 samples, 0.02%)</title><rect x="10.1" y="949" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="13.09" y="959.5" ></text>
</g>
<g >
<title>perf_swevent_event (1,654,281 samples, 0.05%)</title><rect x="877.9" y="453" width="0.6" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="880.93" y="463.5" ></text>
</g>
<g >
<title>MemoryChunkGetBlock (502,796 samples, 0.02%)</title><rect x="334.3" y="629" width="0.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="337.25" y="639.5" ></text>
</g>
<g >
<title>__x86_indirect_thunk_array (1,265,927 samples, 0.04%)</title><rect x="590.1" y="485" width="0.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="593.09" y="495.5" ></text>
</g>
<g >
<title>perf_event_task_tick (543,862 samples, 0.02%)</title><rect x="500.8" y="421" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="503.77" y="431.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (575,311 samples, 0.02%)</title><rect x="1178.3" y="597" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1181.27" y="607.5" ></text>
</g>
<g >
<title>amd_brs_disable_all (3,367,451 samples, 0.11%)</title><rect x="888.7" y="405" width="1.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="891.75" y="415.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (979,051 samples, 0.03%)</title><rect x="433.3" y="629" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="436.26" y="639.5" ></text>
</g>
<g >
<title>scheduler_tick (530,586 samples, 0.02%)</title><rect x="1188.0" y="789" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1191.05" y="799.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (4,367,569 samples, 0.14%)</title><rect x="204.0" y="629" width="1.6" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="206.98" y="639.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (539,120 samples, 0.02%)</title><rect x="304.5" y="405" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="307.49" y="415.5" ></text>
</g>
<g >
<title>mem_cgroup_handle_over_high (2,161,906 samples, 0.07%)</title><rect x="523.4" y="581" width="0.8" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="526.42" y="591.5" ></text>
</g>
<g >
<title>file_write_and_wait_range (389,224 samples, 0.01%)</title><rect x="10.2" y="677" width="0.1" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" />
<text x="13.19" y="687.5" ></text>
</g>
<g >
<title>scheduler_tick (539,120 samples, 0.02%)</title><rect x="304.5" y="485" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="307.49" y="495.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (670,330 samples, 0.02%)</title><rect x="1138.9" y="421" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="1141.94" y="431.5" ></text>
</g>
<g >
<title>update_process_times (364,057 samples, 0.01%)</title><rect x="550.3" y="421" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="553.31" y="431.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (336,361 samples, 0.01%)</title><rect x="484.5" y="389" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="487.49" y="399.5" ></text>
</g>
<g >
<title>irq_work_tick (647,719 samples, 0.02%)</title><rect x="711.2" y="341" width="0.3" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="714.22" y="351.5" ></text>
</g>
<g >
<title>ServerLoop (670,346 samples, 0.02%)</title><rect x="10.1" y="1141" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="13.09" y="1151.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (214,840,423 samples, 6.71%)</title><rect x="727.1" y="277" width="79.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="730.10" y="287.5" >amd_pmu_d..</text>
</g>
<g >
<title>update_process_times (575,311 samples, 0.02%)</title><rect x="1178.3" y="485" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1181.27" y="495.5" ></text>
</g>
<g >
<title>ktime_get_update_offsets_now (2,358,657 samples, 0.07%)</title><rect x="821.3" y="405" width="0.8" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="824.26" y="415.5" ></text>
</g>
<g >
<title>tlb_flush_mmu (520,184 samples, 0.02%)</title><rect x="1189.7" y="917" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="1192.68" y="927.5" ></text>
</g>
<g >
<title>std::basic_ostream<wchar_t, std::char_traits<wchar_t> >::flush (507,212 samples, 0.02%)</title><rect x="1187.9" y="869" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1190.86" y="879.5" ></text>
</g>
<g >
<title>scheduler_tick (2,645,002 samples, 0.08%)</title><rect x="471.3" y="501" width="1.0" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="474.34" y="511.5" ></text>
</g>
<g >
<title>put_prev_task_fair (2,446,905 samples, 0.08%)</title><rect x="1152.2" y="485" width="0.9" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1155.16" y="495.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (316,517 samples, 0.01%)</title><rect x="345.3" y="597" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="348.33" y="607.5" ></text>
</g>
<g >
<title>virtnet_poll (861,084 samples, 0.03%)</title><rect x="53.9" y="773" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="56.87" y="783.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (417,991 samples, 0.01%)</title><rect x="523.3" y="581" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="526.26" y="591.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (364,057 samples, 0.01%)</title><rect x="550.3" y="325" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="553.31" y="335.5" ></text>
</g>
<g >
<title>clockevents_program_event (394,235 samples, 0.01%)</title><rect x="321.3" y="549" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="324.28" y="559.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (687,263 samples, 0.02%)</title><rect x="326.3" y="613" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="329.25" y="623.5" ></text>
</g>
<g >
<title>__x64_sys_openat (281,122 samples, 0.01%)</title><rect x="10.1" y="725" width="0.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="13.09" y="735.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (348,091 samples, 0.01%)</title><rect x="543.8" y="533" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="546.78" y="543.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (2,659,865 samples, 0.08%)</title><rect x="579.8" y="501" width="1.0" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="582.78" y="511.5" ></text>
</g>
<g >
<title>psi_group_change (2,509,249 samples, 0.08%)</title><rect x="1107.2" y="485" width="1.0" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="1110.23" y="495.5" ></text>
</g>
<g >
<title>account_system_time (2,005,594 samples, 0.06%)</title><rect x="55.7" y="741" width="0.7" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="58.65" y="751.5" ></text>
</g>
<g >
<title>_copy_from_user (758,019 samples, 0.02%)</title><rect x="130.4" y="965" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="133.36" y="975.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (2,853,966,352 samples, 89.18%)</title><rect x="135.3" y="949" width="1052.4" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="138.35" y="959.5" >standard_ExecutorRun</text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (600,661 samples, 0.02%)</title><rect x="517.5" y="501" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="520.50" y="511.5" ></text>
</g>
<g >
<title>run_timer_softirq (922,364 samples, 0.03%)</title><rect x="75.8" y="805" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="78.77" y="815.5" ></text>
</g>
<g >
<title>dequeue_entity (353,298 samples, 0.01%)</title><rect x="38.1" y="885" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="41.13" y="895.5" ></text>
</g>
<g >
<title>trigger_load_balance (327,058 samples, 0.01%)</title><rect x="345.9" y="501" width="0.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="348.90" y="511.5" ></text>
</g>
<g >
<title>x86_pmu_disable (389,138 samples, 0.01%)</title><rect x="1172.3" y="357" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1175.32" y="367.5" ></text>
</g>
<g >
<title>ktime_get (422,222 samples, 0.01%)</title><rect x="1165.0" y="405" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="1167.98" y="415.5" ></text>
</g>
<g >
<title>hash_search (6,255,400 samples, 0.20%)</title><rect x="345.5" y="661" width="2.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="348.45" y="671.5" ></text>
</g>
<g >
<title>__remove_hrtimer (293,538 samples, 0.01%)</title><rect x="54.5" y="805" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="57.49" y="815.5" ></text>
</g>
<g >
<title>irq_exit_rcu (1,827,767 samples, 0.06%)</title><rect x="75.4" y="853" width="0.7" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="78.44" y="863.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1,812,672 samples, 0.06%)</title><rect x="257.0" y="565" width="0.6" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="259.95" y="575.5" ></text>
</g>
<g >
<title>check_cpu_stall (408,074 samples, 0.01%)</title><rect x="580.1" y="325" width="0.1" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="583.09" y="335.5" ></text>
</g>
<g >
<title>rep_movs_alternative (2,886,642 samples, 0.09%)</title><rect x="1171.4" y="549" width="1.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1174.40" y="559.5" ></text>
</g>
<g >
<title>sched_clock (821,867 samples, 0.03%)</title><rect x="817.6" y="309" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="820.58" y="319.5" ></text>
</g>
<g >
<title>native_read_msr (276,874 samples, 0.01%)</title><rect x="395.4" y="357" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="398.36" y="367.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (306,815 samples, 0.01%)</title><rect x="398.9" y="421" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="401.90" y="431.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (582,691 samples, 0.02%)</title><rect x="256.7" y="549" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="259.74" y="559.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (539,120 samples, 0.02%)</title><rect x="304.5" y="549" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="307.49" y="559.5" ></text>
</g>
<g >
<title>load_balance (852,690 samples, 0.03%)</title><rect x="81.2" y="853" width="0.3" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="84.23" y="863.5" ></text>
</g>
<g >
<title>check_cpu_stall (507,364 samples, 0.02%)</title><rect x="56.8" y="725" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="59.84" y="735.5" ></text>
</g>
<g >
<title>acct_account_cputime (3,810,894 samples, 0.12%)</title><rect x="708.4" y="293" width="1.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="711.39" y="303.5" ></text>
</g>
<g >
<title>native_write_msr (394,235 samples, 0.01%)</title><rect x="321.3" y="517" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="324.28" y="527.5" ></text>
</g>
<g >
<title>x86_pmu_disable (277,993 samples, 0.01%)</title><rect x="199.5" y="437" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="202.46" y="447.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (918,087 samples, 0.03%)</title><rect x="257.2" y="421" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="260.22" y="431.5" ></text>
</g>
<g >
<title>ktime_get (339,932 samples, 0.01%)</title><rect x="55.2" y="789" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="58.18" y="799.5" ></text>
</g>
<g >
<title>native_read_msr (558,666 samples, 0.02%)</title><rect x="86.0" y="805" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="88.97" y="815.5" ></text>
</g>
<g >
<title>update_min_vruntime (3,301,401 samples, 0.10%)</title><rect x="655.5" y="421" width="1.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="658.52" y="431.5" ></text>
</g>
<g >
<title>scheduler_tick (652,288 samples, 0.02%)</title><rect x="1185.9" y="533" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1188.85" y="543.5" ></text>
</g>
<g >
<title>x86_pmu_disable (539,120 samples, 0.02%)</title><rect x="304.5" y="437" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="307.49" y="447.5" ></text>
</g>
<g >
<title>native_read_msr (479,150 samples, 0.01%)</title><rect x="580.4" y="261" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="583.41" y="271.5" ></text>
</g>
<g >
<title>[[nf_conntrack]] (523,992 samples, 0.02%)</title><rect x="700.3" y="213" width="0.2" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="703.34" y="223.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (1,111,852 samples, 0.03%)</title><rect x="622.0" y="437" width="0.4" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="625.02" y="447.5" ></text>
</g>
<g >
<title>tcp_rcv_established (305,520 samples, 0.01%)</title><rect x="54.1" y="581" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="57.08" y="591.5" ></text>
</g>
<g >
<title>scheduler_tick (1,150,696 samples, 0.04%)</title><rect x="413.6" y="533" width="0.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="416.61" y="543.5" ></text>
</g>
<g >
<title>rb_erase (497,416 samples, 0.02%)</title><rect x="701.8" y="373" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="704.80" y="383.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (687,263 samples, 0.02%)</title><rect x="326.3" y="629" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="329.25" y="639.5" ></text>
</g>
<g >
<title>task_tick_fair (3,365,164 samples, 0.11%)</title><rect x="71.5" y="741" width="1.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="74.54" y="751.5" ></text>
</g>
<g >
<title>delayed_work_timer_fn (358,417 samples, 0.01%)</title><rect x="836.0" y="341" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="838.97" y="351.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,613,746 samples, 0.05%)</title><rect x="188.3" y="613" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="191.26" y="623.5" ></text>
</g>
<g >
<title>expand_table (1,820,526 samples, 0.06%)</title><rect x="257.8" y="613" width="0.7" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="260.85" y="623.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (333,528 samples, 0.01%)</title><rect x="833.3" y="197" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="836.32" y="207.5" ></text>
</g>
<g >
<title>zap_pmd_range.isra.0 (1,587,760 samples, 0.05%)</title><rect x="1189.3" y="949" width="0.6" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="1192.28" y="959.5" ></text>
</g>
<g >
<title>native_write_msr (386,240 samples, 0.01%)</title><rect x="410.3" y="437" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="413.29" y="447.5" ></text>
</g>
<g >
<title>update_load_avg (6,540,736 samples, 0.20%)</title><rect x="811.9" y="309" width="2.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="814.85" y="319.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (7,267,284 samples, 0.23%)</title><rect x="200.1" y="629" width="2.7" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="203.12" y="639.5" ></text>
</g>
<g >
<title>scheduler_tick (550,314 samples, 0.02%)</title><rect x="1164.8" y="373" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1167.77" y="383.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (389,138 samples, 0.01%)</title><rect x="1172.3" y="469" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1175.32" y="479.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (374,124 samples, 0.01%)</title><rect x="135.1" y="917" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="138.12" y="927.5" ></text>
</g>
<g >
<title>arch_scale_freq_tick (524,059 samples, 0.02%)</title><rect x="716.7" y="325" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="719.66" y="335.5" ></text>
</g>
<g >
<title>enqueue_task (529,966 samples, 0.02%)</title><rect x="862.1" y="405" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="865.08" y="415.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (394,235 samples, 0.01%)</title><rect x="321.3" y="629" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="324.28" y="639.5" ></text>
</g>
<g >
<title>schedule (1,585,934,148 samples, 49.56%)</title><rect x="582.5" y="517" width="584.8" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="585.49" y="527.5" >schedule</text>
</g>
<g >
<title>update_dl_rq_load_avg (486,323 samples, 0.02%)</title><rect x="835.6" y="357" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="838.63" y="367.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (277,993 samples, 0.01%)</title><rect x="199.5" y="533" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="202.46" y="543.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (276,867 samples, 0.01%)</title><rect x="25.4" y="965" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="28.39" y="975.5" ></text>
</g>
<g >
<title>x86_pmu_disable (336,361 samples, 0.01%)</title><rect x="484.5" y="405" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="487.49" y="415.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (13,868,159 samples, 0.43%)</title><rect x="665.3" y="421" width="5.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="668.30" y="431.5" ></text>
</g>
<g >
<title>cpuacct_charge (13,781,640 samples, 0.43%)</title><rect x="647.2" y="421" width="5.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="650.18" y="431.5" ></text>
</g>
<g >
<title>__calc_delta.constprop.0 (887,658 samples, 0.03%)</title><rect x="810.4" y="293" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="813.42" y="303.5" ></text>
</g>
<g >
<title>run_rebalance_domains (6,083,861 samples, 0.19%)</title><rect x="833.7" y="389" width="2.3" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="836.73" y="399.5" ></text>
</g>
<g >
<title>tag_hash (3,105,844 samples, 0.10%)</title><rect x="217.7" y="629" width="1.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="220.72" y="639.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (891,440 samples, 0.03%)</title><rect x="516.0" y="469" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="519.04" y="479.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (1,287,103 samples, 0.04%)</title><rect x="844.7" y="453" width="0.5" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="847.72" y="463.5" ></text>
</g>
<g >
<title>update_curr_se (374,419 samples, 0.01%)</title><rect x="811.7" y="309" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="814.72" y="319.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (389,138 samples, 0.01%)</title><rect x="1172.3" y="533" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1175.32" y="543.5" ></text>
</g>
<g >
<title>__calc_delta.constprop.0 (3,398,590 samples, 0.11%)</title><rect x="643.4" y="421" width="1.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="646.38" y="431.5" ></text>
</g>
<g >
<title>all (3,200,098,376 samples, 100%)</title><rect x="10.0" y="1189" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="1199.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,010,565 samples, 0.03%)</title><rect x="395.1" y="581" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="398.09" y="591.5" ></text>
</g>
<g >
<title>native_read_msr (409,109 samples, 0.01%)</title><rect x="372.5" y="405" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="375.52" y="415.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (389,224 samples, 0.01%)</title><rect x="10.2" y="453" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="13.19" y="463.5" ></text>
</g>
<g >
<title>update_cfs_group (358,417 samples, 0.01%)</title><rect x="836.0" y="213" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="838.97" y="223.5" ></text>
</g>
<g >
<title>retbleed_untrain_ret (300,183 samples, 0.01%)</title><rect x="869.6" y="453" width="0.1" height="15.0" fill="rgb(210,25,5)" rx="2" ry="2" />
<text x="872.61" y="463.5" ></text>
</g>
<g >
<title>open_last_lookups (281,122 samples, 0.01%)</title><rect x="10.1" y="661" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="13.09" y="671.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (336,361 samples, 0.01%)</title><rect x="484.5" y="565" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="487.49" y="575.5" ></text>
</g>
<g >
<title>rcu_note_context_switch (6,092,635 samples, 0.19%)</title><rect x="1153.3" y="485" width="2.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="1156.29" y="495.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_lru (281,122 samples, 0.01%)</title><rect x="10.1" y="549" width="0.1" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="13.09" y="559.5" ></text>
</g>
<g >
<title>ip_local_out (528,716 samples, 0.02%)</title><rect x="699.8" y="69" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="702.85" y="79.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (452,803 samples, 0.01%)</title><rect x="433.6" y="613" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="436.63" y="623.5" ></text>
</g>
<g >
<title>free_pages_and_swap_cache (520,184 samples, 0.02%)</title><rect x="1189.7" y="885" width="0.2" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1192.68" y="895.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (271,346 samples, 0.01%)</title><rect x="200.5" y="597" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="203.50" y="607.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (311,759 samples, 0.01%)</title><rect x="699.6" y="453" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="702.60" y="463.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (614,452 samples, 0.02%)</title><rect x="287.8" y="549" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="290.76" y="559.5" ></text>
</g>
<g >
<title>exit_mmap (2,143,854 samples, 0.07%)</title><rect x="1189.1" y="1013" width="0.8" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="1192.08" y="1023.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (977,205 samples, 0.03%)</title><rect x="370.4" y="581" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="373.44" y="591.5" ></text>
</g>
<g >
<title>__x64_sys_clock_nanosleep (5,479,914 samples, 0.17%)</title><rect x="482.6" y="597" width="2.0" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="485.60" y="607.5" ></text>
</g>
<g >
<title>update_blocked_averages (512,841 samples, 0.02%)</title><rect x="81.7" y="853" width="0.2" height="15.0" fill="rgb(240,163,38)" rx="2" ry="2" />
<text x="84.70" y="863.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (545,305 samples, 0.02%)</title><rect x="199.5" y="597" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="202.46" y="607.5" ></text>
</g>
<g >
<title>hrtick_update (273,592 samples, 0.01%)</title><rect x="52.2" y="885" width="0.1" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="55.17" y="895.5" ></text>
</g>
<g >
<title>scheduler_tick (461,198 samples, 0.01%)</title><rect x="705.3" y="357" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="708.33" y="367.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (314,516 samples, 0.01%)</title><rect x="405.2" y="437" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="408.18" y="447.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (333,528 samples, 0.01%)</title><rect x="833.3" y="181" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="836.32" y="191.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (4,480,391 samples, 0.14%)</title><rect x="1172.9" y="565" width="1.7" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1175.94" y="575.5" ></text>
</g>
<g >
<title>perf_event_task_tick (891,440 samples, 0.03%)</title><rect x="516.0" y="389" width="0.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="519.04" y="399.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (285,824 samples, 0.01%)</title><rect x="22.6" y="1029" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="25.57" y="1039.5" ></text>
</g>
<g >
<title>x86_pmu_disable (364,057 samples, 0.01%)</title><rect x="550.3" y="357" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="553.31" y="367.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (386,240 samples, 0.01%)</title><rect x="410.3" y="485" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="413.29" y="495.5" ></text>
</g>
<g >
<title>account_system_time (329,832 samples, 0.01%)</title><rect x="710.5" y="341" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="713.49" y="351.5" ></text>
</g>
<g >
<title>native_read_msr (389,224 samples, 0.01%)</title><rect x="10.2" y="437" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="13.19" y="447.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (2,379,013 samples, 0.07%)</title><rect x="674.7" y="357" width="0.9" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="677.75" y="367.5" ></text>
</g>
<g >
<title>ExecResult (2,853,578,928 samples, 89.17%)</title><rect x="135.3" y="901" width="1052.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="138.35" y="911.5" >ExecResult</text>
</g>
<g >
<title>hrtimer_interrupt (359,537,550 samples, 11.24%)</title><rect x="700.5" y="421" width="132.6" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="703.54" y="431.5" >hrtimer_interrupt</text>
</g>
<g >
<title>task_work_run (504,279 samples, 0.02%)</title><rect x="531.6" y="597" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="534.56" y="607.5" ></text>
</g>
<g >
<title>do_syscall_64 (291,514,231 samples, 9.11%)</title><rect x="23.8" y="1029" width="107.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="26.78" y="1039.5" >do_syscall_64</text>
</g>
<g >
<title>amd_pmu_disable_all (643,776 samples, 0.02%)</title><rect x="129.4" y="725" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="132.39" y="735.5" ></text>
</g>
<g >
<title>cpumask_weight (366,926 samples, 0.01%)</title><rect x="30.6" y="981" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="33.57" y="991.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (1,897,569 samples, 0.06%)</title><rect x="49.6" y="837" width="0.7" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="52.56" y="847.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (520,184 samples, 0.02%)</title><rect x="1189.7" y="837" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="1192.68" y="847.5" ></text>
</g>
<g >
<title>update_process_times (431,267 samples, 0.01%)</title><rect x="1187.1" y="533" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1190.11" y="543.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (387,424 samples, 0.01%)</title><rect x="1187.7" y="917" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1190.72" y="927.5" ></text>
</g>
<g >
<title>delayed_work_timer_fn (360,315 samples, 0.01%)</title><rect x="836.1" y="357" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="839.10" y="367.5" ></text>
</g>
<g >
<title>ktime_get (507,181 samples, 0.02%)</title><rect x="74.1" y="789" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="77.10" y="799.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (383,344 samples, 0.01%)</title><rect x="282.4" y="549" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="285.37" y="559.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (1,513,304 samples, 0.05%)</title><rect x="367.9" y="629" width="0.6" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="370.93" y="639.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (539,120 samples, 0.02%)</title><rect x="304.5" y="565" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="307.49" y="575.5" ></text>
</g>
<g >
<title>__update_load_avg_se (3,675,049 samples, 0.11%)</title><rect x="812.8" y="293" width="1.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="815.78" y="303.5" ></text>
</g>
<g >
<title>dequeue_task (608,889 samples, 0.02%)</title><rect x="129.6" y="917" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="132.63" y="927.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,320,356 samples, 0.04%)</title><rect x="237.8" y="613" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="240.77" y="623.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (1,868,037 samples, 0.06%)</title><rect x="699.8" y="309" width="0.7" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="702.85" y="319.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (619,919 samples, 0.02%)</title><rect x="326.3" y="437" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="329.28" y="447.5" ></text>
</g>
<g >
<title>record_times (1,007,385 samples, 0.03%)</title><rect x="124.7" y="869" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="127.74" y="879.5" ></text>
</g>
<g >
<title>update_cfs_group (1,557,871 samples, 0.05%)</title><rect x="51.6" y="869" width="0.6" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="54.60" y="879.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (429,625 samples, 0.01%)</title><rect x="263.8" y="533" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="266.80" y="543.5" ></text>
</g>
<g >
<title>native_write_msr (530,802 samples, 0.02%)</title><rect x="472.3" y="517" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="475.32" y="527.5" ></text>
</g>
<g >
<title>scheduler_tick (313,485 samples, 0.01%)</title><rect x="350.3" y="501" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="353.32" y="511.5" ></text>
</g>
<g >
<title>pg_usleep (2,043,393,904 samples, 63.85%)</title><rect x="433.8" y="677" width="753.5" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="436.79" y="687.5" >pg_usleep</text>
</g>
<g >
<title>x86_pmu_disable_all (306,815 samples, 0.01%)</title><rect x="398.9" y="405" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="401.90" y="415.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (276,874 samples, 0.01%)</title><rect x="395.4" y="421" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="398.36" y="431.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (372,982 samples, 0.01%)</title><rect x="258.4" y="405" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="261.38" y="415.5" ></text>
</g>
<g >
<title>expand_table (447,549 samples, 0.01%)</title><rect x="326.5" y="629" width="0.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="329.50" y="639.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (3,802,433 samples, 0.12%)</title><rect x="471.2" y="613" width="1.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="474.17" y="623.5" ></text>
</g>
<g >
<title>task_tick_fair (20,358,382 samples, 0.64%)</title><rect x="806.9" y="325" width="7.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="809.88" y="335.5" ></text>
</g>
<g >
<title>sched_clock (782,286 samples, 0.02%)</title><rect x="1160.7" y="469" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="1163.65" y="479.5" ></text>
</g>
<g >
<title>__napi_alloc_skb (293,538 samples, 0.01%)</title><rect x="33.0" y="741" width="0.1" height="15.0" fill="rgb(224,87,21)" rx="2" ry="2" />
<text x="35.97" y="751.5" ></text>
</g>
<g >
<title>cpuacct_charge (700,755 samples, 0.02%)</title><rect x="626.1" y="437" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="629.14" y="447.5" ></text>
</g>
<g >
<title>hrtimer_active (3,753,402 samples, 0.12%)</title><rect x="807.9" y="309" width="1.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="810.86" y="319.5" ></text>
</g>
<g >
<title>blkcg_maybe_throttle_current (2,497,154 samples, 0.08%)</title><rect x="484.7" y="597" width="0.9" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="487.71" y="607.5" ></text>
</g>
<g >
<title>scheduler_tick (367,033 samples, 0.01%)</title><rect x="263.8" y="469" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="266.82" y="479.5" ></text>
</g>
<g >
<title>ktime_get (2,621,425 samples, 0.08%)</title><rect x="35.6" y="901" width="0.9" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="38.56" y="911.5" ></text>
</g>
<g >
<title>generic_exec_single (1,271,022 samples, 0.04%)</title><rect x="814.8" y="261" width="0.4" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="817.76" y="271.5" ></text>
</g>
<g >
<title>exec_simple_query (2,854,353,776 samples, 89.20%)</title><rect x="135.3" y="997" width="1052.6" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="138.35" y="1007.5" >exec_simple_query</text>
</g>
<g >
<title>native_write_msr (360,088 samples, 0.01%)</title><rect x="699.7" y="405" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="702.72" y="415.5" ></text>
</g>
<g >
<title>perf_event_task_tick (539,120 samples, 0.02%)</title><rect x="304.5" y="469" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="307.49" y="479.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (979,051 samples, 0.03%)</title><rect x="433.3" y="597" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="436.26" y="607.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (277,043 samples, 0.01%)</title><rect x="132.8" y="869" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="135.77" y="879.5" ></text>
</g>
<g >
<title>__ip_local_out (528,716 samples, 0.02%)</title><rect x="699.8" y="53" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="702.85" y="63.5" ></text>
</g>
<g >
<title>folio_wait_bit_common (389,224 samples, 0.01%)</title><rect x="10.2" y="613" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="13.19" y="623.5" ></text>
</g>
<g >
<title>tick_sched_handle (49,861,289 samples, 1.56%)</title><rect x="55.4" y="789" width="18.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="58.41" y="799.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (8,213,853 samples, 0.26%)</title><rect x="422.8" y="629" width="3.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="425.83" y="639.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (409,109 samples, 0.01%)</title><rect x="372.5" y="629" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="375.52" y="639.5" ></text>
</g>
<g >
<title>schedule_debug.isra.0 (1,099,382 samples, 0.03%)</title><rect x="1166.8" y="501" width="0.4" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1169.77" y="511.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (306,815 samples, 0.01%)</title><rect x="398.9" y="565" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="401.90" y="575.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (281,122 samples, 0.01%)</title><rect x="1187.5" y="661" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="1190.47" y="671.5" ></text>
</g>
<g >
<title>__napi_poll (1,868,037 samples, 0.06%)</title><rect x="699.8" y="373" width="0.7" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="702.85" y="383.5" ></text>
</g>
<g >
<title>pg_create_logical_replication_slot (670,346 samples, 0.02%)</title><rect x="10.1" y="885" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="13.09" y="895.5" ></text>
</g>
<g >
<title>mem_cgroup_handle_over_high (561,399 samples, 0.02%)</title><rect x="25.3" y="1013" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="28.29" y="1023.5" ></text>
</g>
<g >
<title>zap_pte_range (1,034,499 samples, 0.03%)</title><rect x="1189.5" y="933" width="0.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="1192.49" y="943.5" ></text>
</g>
<g >
<title>__hrtimer_start_range_ns (65,782,836 samples, 2.06%)</title><rect x="553.2" y="501" width="24.3" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="556.21" y="511.5" >_..</text>
</g>
<g >
<title>irq_work_run_list (296,253 samples, 0.01%)</title><rect x="711.1" y="341" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="714.11" y="351.5" ></text>
</g>
<g >
<title>record_times (1,746,118 samples, 0.05%)</title><rect x="1151.5" y="469" width="0.7" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="1154.52" y="479.5" ></text>
</g>
<g >
<title>xas_start (281,122 samples, 0.01%)</title><rect x="10.1" y="485" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="13.09" y="495.5" ></text>
</g>
<g >
<title>do_syscall_64 (826,237 samples, 0.03%)</title><rect x="22.7" y="1045" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="25.68" y="1055.5" ></text>
</g>
<g >
<title>update_rq_clock (292,829 samples, 0.01%)</title><rect x="1167.2" y="501" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="1170.17" y="511.5" ></text>
</g>
<g >
<title>tick_sched_handle (1,150,696 samples, 0.04%)</title><rect x="413.6" y="565" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="416.61" y="575.5" ></text>
</g>
<g >
<title>PostgresMain (670,346 samples, 0.02%)</title><rect x="10.1" y="1077" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="13.09" y="1087.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (327,058 samples, 0.01%)</title><rect x="345.9" y="645" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="348.90" y="655.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (3,128,525 samples, 0.10%)</title><rect x="471.2" y="565" width="1.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="474.17" y="575.5" ></text>
</g>
<g >
<title>__run_timers (718,732 samples, 0.02%)</title><rect x="836.0" y="373" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="838.97" y="383.5" ></text>
</g>
<g >
<title>native_read_msr (364,057 samples, 0.01%)</title><rect x="550.3" y="309" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="553.31" y="319.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (314,516 samples, 0.01%)</title><rect x="405.2" y="533" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="408.18" y="543.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (281,182 samples, 0.01%)</title><rect x="265.9" y="549" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="268.95" y="559.5" ></text>
</g>
<g >
<title>AllocSetFree (9,016,808 samples, 0.28%)</title><rect x="333.3" y="645" width="3.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="336.33" y="655.5" ></text>
</g>
<g >
<title>x64_sys_call (271,013,722 samples, 8.47%)</title><rect x="31.3" y="1013" width="100.0" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="34.34" y="1023.5" >x64_sys_call</text>
</g>
<g >
<title>__irq_exit_rcu (293,538 samples, 0.01%)</title><rect x="33.0" y="885" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="35.97" y="895.5" ></text>
</g>
<g >
<title>tick_sched_handle (582,691 samples, 0.02%)</title><rect x="256.7" y="501" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="259.74" y="511.5" ></text>
</g>
<g >
<title>tag_hash (14,223,442 samples, 0.44%)</title><rect x="282.9" y="629" width="5.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="285.91" y="639.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (1,868,037 samples, 0.06%)</title><rect x="699.8" y="277" width="0.7" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="702.85" y="287.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (582,691 samples, 0.02%)</title><rect x="256.7" y="565" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="259.74" y="575.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (543,862 samples, 0.02%)</title><rect x="500.8" y="517" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="503.77" y="527.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (31,556,592 samples, 0.99%)</title><rect x="1139.3" y="389" width="11.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1142.32" y="399.5" ></text>
</g>
<g >
<title>switch_fpu_return (734,614 samples, 0.02%)</title><rect x="25.5" y="1013" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="28.49" y="1023.5" ></text>
</g>
<g >
<title>native_write_msr (34,040,615 samples, 1.06%)</title><rect x="86.2" y="805" width="12.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="89.17" y="815.5" ></text>
</g>
<g >
<title>pg_create_logical_replication_slot (2,853,578,928 samples, 89.17%)</title><rect x="135.3" y="821" width="1052.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="138.35" y="831.5" >pg_create_logical_replication_slot</text>
</g>
<g >
<title>ExecInterpExpr (2,853,578,928 samples, 89.17%)</title><rect x="135.3" y="837" width="1052.3" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text x="138.35" y="847.5" >ExecInterpExpr</text>
</g>
<g >
<title>amd_pmu_disable_all (357,567 samples, 0.01%)</title><rect x="1186.0" y="469" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1188.96" y="479.5" ></text>
</g>
<g >
<title>perf_event_task_tick (1,915,800 samples, 0.06%)</title><rect x="471.5" y="485" width="0.7" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="474.47" y="495.5" ></text>
</g>
<g >
<title>AllocSetAlloc (34,063,140 samples, 1.06%)</title><rect x="176.3" y="645" width="12.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="179.29" y="655.5" ></text>
</g>
<g >
<title>clock_nanosleep (308,297,037 samples, 9.63%)</title><rect x="19.0" y="1061" width="113.7" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="21.98" y="1071.5" >clock_nanosleep</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (305,145 samples, 0.01%)</title><rect x="524.8" y="565" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="527.82" y="575.5" ></text>
</g>
<g >
<title>rseq_get_rseq_cs (2,830,635 samples, 0.09%)</title><rect x="501.0" y="565" width="1.0" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="503.97" y="575.5" ></text>
</g>
<g >
<title>native_write_msr (429,630 samples, 0.01%)</title><rect x="257.2" y="405" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="260.22" y="415.5" ></text>
</g>
<g >
<title>PortalRun (670,346 samples, 0.02%)</title><rect x="10.1" y="1045" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="13.09" y="1055.5" ></text>
</g>
<g >
<title>update_curr (1,326,461 samples, 0.04%)</title><rect x="71.8" y="725" width="0.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="74.84" y="735.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (912,836 samples, 0.03%)</title><rect x="217.4" y="613" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="220.39" y="623.5" ></text>
</g>
<g >
<title>scheduler_tick (389,138 samples, 0.01%)</title><rect x="1172.3" y="405" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1175.32" y="415.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (336,361 samples, 0.01%)</title><rect x="484.5" y="421" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="487.49" y="431.5" ></text>
</g>
<g >
<title>XactLockTableWait (2,852,756,417 samples, 89.15%)</title><rect x="135.3" y="693" width="1052.0" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="138.35" y="703.5" >XactLockTableWait</text>
</g>
<g >
<title>__napi_poll (293,538 samples, 0.01%)</title><rect x="33.0" y="837" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="35.97" y="847.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (530,586 samples, 0.02%)</title><rect x="1188.0" y="901" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1191.05" y="911.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (14,844,460 samples, 0.46%)</title><rect x="1180.4" y="629" width="5.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1183.38" y="639.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (645,917 samples, 0.02%)</title><rect x="147.9" y="661" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="150.94" y="671.5" ></text>
</g>
<g >
<title>task_mm_cid_work (3,123,399 samples, 0.10%)</title><rect x="529.5" y="565" width="1.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="532.51" y="575.5" ></text>
</g>
<g >
<title>ktime_get (24,105,853 samples, 0.75%)</title><rect x="567.1" y="485" width="8.9" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="570.09" y="495.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (619,919 samples, 0.02%)</title><rect x="326.3" y="549" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="329.28" y="559.5" ></text>
</g>
<g >
<title>__run_timers (922,364 samples, 0.03%)</title><rect x="75.8" y="789" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="78.77" y="799.5" ></text>
</g>
<g >
<title>update_process_times (582,691 samples, 0.02%)</title><rect x="256.7" y="485" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="259.74" y="495.5" ></text>
</g>
<g >
<title>update_min_vruntime (340,766 samples, 0.01%)</title><rect x="72.7" y="725" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="75.65" y="735.5" ></text>
</g>
<g >
<title>scheduler_tick (276,874 samples, 0.01%)</title><rect x="395.4" y="453" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="398.36" y="463.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (543,862 samples, 0.02%)</title><rect x="500.8" y="405" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="503.77" y="415.5" ></text>
</g>
<g >
<title>dequeue_task (38,655,027 samples, 1.21%)</title><rect x="38.0" y="901" width="14.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="41.02" y="911.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (729,975 samples, 0.02%)</title><rect x="135.0" y="1061" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="137.99" y="1071.5" ></text>
</g>
<g >
<title>LWLockRelease (3,893,866 samples, 0.12%)</title><rect x="425.9" y="661" width="1.4" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="428.85" y="671.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (550,314 samples, 0.02%)</title><rect x="1164.8" y="341" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="1167.77" y="351.5" ></text>
</g>
<g >
<title>calc_bucket (362,529 samples, 0.01%)</title><rect x="327.2" y="613" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="330.20" y="623.5" ></text>
</g>
<g >
<title>perf_event_task_tick (389,138 samples, 0.01%)</title><rect x="1172.3" y="389" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="1175.32" y="399.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (988,011 samples, 0.03%)</title><rect x="188.4" y="437" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="191.39" y="447.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (391,377 samples, 0.01%)</title><rect x="451.7" y="597" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="454.70" y="607.5" ></text>
</g>
<g >
<title>update_process_times (348,091 samples, 0.01%)</title><rect x="543.8" y="453" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="546.78" y="463.5" ></text>
</g>
<g >
<title>account_process_tick (388,847 samples, 0.01%)</title><rect x="517.5" y="405" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="520.50" y="415.5" ></text>
</g>
<g >
<title>ExecProject (2,853,578,928 samples, 89.17%)</title><rect x="135.3" y="885" width="1052.3" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="138.35" y="895.5" >ExecProject</text>
</g>
<g >
<title>update_curr_se (8,841,811 samples, 0.28%)</title><rect x="652.3" y="421" width="3.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="655.26" y="431.5" ></text>
</g>
<g >
<title>prepare_task_switch (642,307,413 samples, 20.07%)</title><rect x="870.2" y="485" width="236.8" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="873.18" y="495.5" >prepare_task_switch</text>
</g>
<g >
<title>hash_initial_lookup (6,789,741 samples, 0.21%)</title><rect x="264.0" y="613" width="2.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="266.96" y="623.5" ></text>
</g>
<g >
<title>virtnet_poll (1,868,037 samples, 0.06%)</title><rect x="699.8" y="357" width="0.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="702.85" y="367.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (348,857 samples, 0.01%)</title><rect x="531.4" y="533" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="534.40" y="543.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (729,975 samples, 0.02%)</title><rect x="135.0" y="1093" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="137.99" y="1103.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (349,531 samples, 0.01%)</title><rect x="835.0" y="293" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="838.04" y="303.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (389,196 samples, 0.01%)</title><rect x="205.6" y="629" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="208.59" y="639.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (528,716 samples, 0.02%)</title><rect x="699.8" y="117" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="702.85" y="127.5" ></text>
</g>
<g >
<title>perf_event_task_tick (335,715 samples, 0.01%)</title><rect x="266.6" y="501" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="269.62" y="511.5" ></text>
</g>
<g >
<title>update_process_times (49,353,986 samples, 1.54%)</title><rect x="55.6" y="773" width="18.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="58.59" y="783.5" ></text>
</g>
<g >
<title>update_process_times (285,824 samples, 0.01%)</title><rect x="22.6" y="933" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="25.57" y="943.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (1,344,045 samples, 0.04%)</title><rect x="699.8" y="197" width="0.5" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="702.85" y="207.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (305,145 samples, 0.01%)</title><rect x="524.8" y="533" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="527.82" y="543.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (856,748 samples, 0.03%)</title><rect x="427.0" y="613" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="429.97" y="623.5" ></text>
</g>
<g >
<title>update_rq_clock (295,785 samples, 0.01%)</title><rect x="820.3" y="341" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="823.28" y="351.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (386,240 samples, 0.01%)</title><rect x="410.3" y="453" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="413.29" y="463.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (379,918,313 samples, 11.87%)</title><rect x="960.6" y="389" width="140.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="963.60" y="399.5" >x86_pmu_disable_all</text>
</g>
<g >
<title>load_balance (3,829,666 samples, 0.12%)</title><rect x="861.9" y="437" width="1.4" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="864.89" y="447.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (643,776 samples, 0.02%)</title><rect x="129.4" y="917" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="132.39" y="927.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (381,833 samples, 0.01%)</title><rect x="822.0" y="373" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="824.98" y="383.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (348,857 samples, 0.01%)</title><rect x="531.4" y="581" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="534.40" y="591.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (3,659,327 samples, 0.11%)</title><rect x="471.2" y="597" width="1.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="474.17" y="607.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,143,854 samples, 0.07%)</title><rect x="1189.1" y="1141" width="0.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1192.08" y="1151.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (5,442,319 samples, 0.17%)</title><rect x="1162.2" y="421" width="2.0" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="1165.19" y="431.5" ></text>
</g>
<g >
<title>native_write_msr (3,102,297 samples, 0.10%)</title><rect x="74.3" y="773" width="1.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="77.29" y="783.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (617,254 samples, 0.02%)</title><rect x="1153.1" y="485" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1156.07" y="495.5" ></text>
</g>
<g >
<title>native_read_msr (1,047,547 samples, 0.03%)</title><rect x="413.6" y="437" width="0.4" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="416.65" y="447.5" ></text>
</g>
<g >
<title>memset (423,860 samples, 0.01%)</title><rect x="266.5" y="629" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="269.46" y="639.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (600,661 samples, 0.02%)</title><rect x="517.5" y="453" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="520.50" y="463.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (285,824 samples, 0.01%)</title><rect x="22.6" y="1045" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="25.57" y="1055.5" ></text>
</g>
<g >
<title>perf_event_task_tick (386,240 samples, 0.01%)</title><rect x="410.3" y="501" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="413.29" y="511.5" ></text>
</g>
<g >
<title>__rcu_read_lock (536,954 samples, 0.02%)</title><rect x="1103.4" y="469" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1106.36" y="479.5" ></text>
</g>
<g >
<title>exec_simple_query (670,346 samples, 0.02%)</title><rect x="10.1" y="1061" width="0.2" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="13.09" y="1071.5" ></text>
</g>
<g >
<title>__x64_sys_fsync (389,224 samples, 0.01%)</title><rect x="10.2" y="725" width="0.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="13.19" y="735.5" ></text>
</g>
<g >
<title>__ip_finish_output (429,711 samples, 0.01%)</title><rect x="700.2" y="101" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="703.19" y="111.5" ></text>
</g>
<g >
<title>do_exit (2,143,854 samples, 0.07%)</title><rect x="1189.1" y="1077" width="0.8" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1192.08" y="1087.5" ></text>
</g>
<g >
<title>LockRelease (103,975,700 samples, 3.25%)</title><rect x="312.7" y="677" width="38.4" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="315.72" y="687.5" >Loc..</text>
</g>
<g >
<title>nohz_balancer_kick (1,176,849 samples, 0.04%)</title><rect x="72.8" y="725" width="0.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="75.78" y="735.5" ></text>
</g>
<g >
<title>LWLockRelease (8,953,236 samples, 0.28%)</title><rect x="367.5" y="645" width="3.3" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="370.50" y="655.5" ></text>
</g>
<g >
<title>tick_sched_handle (277,993 samples, 0.01%)</title><rect x="199.5" y="517" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="202.46" y="527.5" ></text>
</g>
<g >
<title>__napi_poll (645,265 samples, 0.02%)</title><rect x="833.3" y="373" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="836.32" y="383.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (357,567 samples, 0.01%)</title><rect x="1186.0" y="453" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1188.96" y="463.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (729,975 samples, 0.02%)</title><rect x="135.0" y="965" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="137.99" y="975.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (528,716 samples, 0.02%)</title><rect x="699.8" y="149" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="702.85" y="159.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (281,182 samples, 0.01%)</title><rect x="265.9" y="597" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="268.95" y="607.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (271,346 samples, 0.01%)</title><rect x="200.5" y="453" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="203.50" y="463.5" ></text>
</g>
<g >
<title>tick_sched_handle (305,145 samples, 0.01%)</title><rect x="524.8" y="469" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="527.82" y="479.5" ></text>
</g>
<g >
<title>__filemap_fdatawait_range (389,224 samples, 0.01%)</title><rect x="10.2" y="661" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="13.19" y="671.5" ></text>
</g>
<g >
<title>perf_event_task_tick (409,109 samples, 0.01%)</title><rect x="372.5" y="485" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="375.52" y="495.5" ></text>
</g>
<g >
<title>native_read_msr (376,494,453 samples, 11.77%)</title><rect x="961.9" y="373" width="138.8" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="964.87" y="383.5" >native_read_msr</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (904,364 samples, 0.03%)</title><rect x="1185.9" y="661" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1188.85" y="671.5" ></text>
</g>
<g >
<title>psi_task_switch (19,992,480 samples, 0.62%)</title><rect x="119.4" y="901" width="7.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="122.44" y="911.5" ></text>
</g>
<g >
<title>rseq_update_cpu_node_id (3,695,868 samples, 0.12%)</title><rect x="524.9" y="581" width="1.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="527.94" y="591.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (383,344 samples, 0.01%)</title><rect x="282.4" y="565" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="285.37" y="575.5" ></text>
</g>
<g >
<title>__libc_start_main (2,855,391,574 samples, 89.23%)</title><rect x="135.3" y="1141" width="1052.9" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="138.35" y="1151.5" >__libc_start_main</text>
</g>
<g >
<title>native_read_msr (53,381,965 samples, 1.67%)</title><rect x="98.9" y="789" width="19.7" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="101.89" y="799.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (58,938,505 samples, 1.84%)</title><rect x="54.4" y="869" width="21.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="57.38" y="879.5" >s..</text>
</g>
<g >
<title>__dev_xmit_skb (429,711 samples, 0.01%)</title><rect x="700.2" y="37" width="0.1" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="703.19" y="47.5" ></text>
</g>
<g >
<title>call_function_single_prep_ipi (357,223 samples, 0.01%)</title><rect x="814.8" y="229" width="0.1" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="817.76" y="239.5" ></text>
</g>
<g >
<title>x86_pmu_disable (355,453 samples, 0.01%)</title><rect x="199.7" y="453" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="202.66" y="463.5" ></text>
</g>
<g >
<title>[libc.so.6] (1,037,798 samples, 0.03%)</title><rect x="1187.9" y="965" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1190.86" y="975.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (381,833 samples, 0.01%)</title><rect x="822.0" y="389" width="0.1" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="824.98" y="399.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (3,659,327 samples, 0.11%)</title><rect x="471.2" y="581" width="1.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="474.17" y="591.5" ></text>
</g>
<g >
<title>dequeue_entity (29,433,672 samples, 0.92%)</title><rect x="40.7" y="869" width="10.9" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="43.75" y="879.5" ></text>
</g>
<g >
<title>x64_sys_call (4,104,748 samples, 0.13%)</title><rect x="1177.0" y="613" width="1.5" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1179.97" y="623.5" ></text>
</g>
<g >
<title>update_curr_se (1,237,188 samples, 0.04%)</title><rect x="656.7" y="437" width="0.5" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="659.74" y="447.5" ></text>
</g>
<g >
<title>hrtimer_active (552,129 samples, 0.02%)</title><rect x="33.1" y="933" width="0.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="36.08" y="943.5" ></text>
</g>
<g >
<title>psi_flags_change (370,072 samples, 0.01%)</title><rect x="119.3" y="901" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="122.30" y="911.5" ></text>
</g>
<g >
<title>x64_sys_call (281,122 samples, 0.01%)</title><rect x="10.1" y="741" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="13.09" y="751.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (394,235 samples, 0.01%)</title><rect x="321.3" y="581" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="324.28" y="591.5" ></text>
</g>
<g >
<title>perf_event_task_tick (988,011 samples, 0.03%)</title><rect x="188.4" y="485" width="0.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="191.39" y="495.5" ></text>
</g>
<g >
<title>update_load_avg (369,412 samples, 0.01%)</title><rect x="863.8" y="437" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="866.82" y="447.5" ></text>
</g>
<g >
<title>fsync (389,224 samples, 0.01%)</title><rect x="10.2" y="789" width="0.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="13.19" y="799.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (348,091 samples, 0.01%)</title><rect x="543.8" y="549" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="546.78" y="559.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (853,609 samples, 0.03%)</title><rect x="287.8" y="581" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="290.76" y="591.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (1,142,453 samples, 0.04%)</title><rect x="36.1" y="869" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="39.11" y="879.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (409,109 samples, 0.01%)</title><rect x="372.5" y="437" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="375.52" y="447.5" ></text>
</g>
<g >
<title>BackendMain (670,346 samples, 0.02%)</title><rect x="10.1" y="1093" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="13.09" y="1103.5" ></text>
</g>
<g >
<title>update_process_times (643,776 samples, 0.02%)</title><rect x="129.4" y="805" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="132.39" y="815.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (389,196 samples, 0.01%)</title><rect x="205.6" y="565" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="208.59" y="575.5" ></text>
</g>
<g >
<title>avg_vruntime (8,466,880 samples, 0.26%)</title><rect x="623.0" y="437" width="3.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="626.02" y="447.5" ></text>
</g>
<g >
<title>TransactionIdIsInProgress (53,126,999 samples, 1.66%)</title><rect x="414.0" y="677" width="19.6" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="417.04" y="687.5" ></text>
</g>
<g >
<title>[[nf_conntrack]] (523,992 samples, 0.02%)</title><rect x="700.3" y="197" width="0.2" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="703.34" y="207.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (488,457 samples, 0.02%)</title><rect x="257.4" y="405" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="260.37" y="415.5" ></text>
</g>
<g >
<title>update_cfs_group (410,146 samples, 0.01%)</title><rect x="693.4" y="469" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="696.43" y="479.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (1,495,446 samples, 0.05%)</title><rect x="128.6" y="837" width="0.6" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="131.60" y="847.5" ></text>
</g>
<g >
<title>update_process_times (316,517 samples, 0.01%)</title><rect x="345.3" y="549" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="348.33" y="559.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (322,335 samples, 0.01%)</title><rect x="552.1" y="437" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="555.10" y="447.5" ></text>
</g>
<g >
<title>update_process_times (570,983 samples, 0.02%)</title><rect x="132.7" y="965" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="135.66" y="975.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (16,283,831 samples, 0.51%)</title><rect x="321.4" y="645" width="6.0" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="324.42" y="655.5" ></text>
</g>
<g >
<title>release_pages (520,184 samples, 0.02%)</title><rect x="1189.7" y="869" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1192.68" y="879.5" ></text>
</g>
<g >
<title>rcu_sched_clock_irq (327,285 samples, 0.01%)</title><rect x="705.2" y="357" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="708.21" y="367.5" ></text>
</g>
<g >
<title>common_nsleep (3,720,044 samples, 0.12%)</title><rect x="1174.9" y="581" width="1.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1177.90" y="591.5" ></text>
</g>
<g >
<title>x86_pmu_disable (271,346 samples, 0.01%)</title><rect x="200.5" y="437" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="203.50" y="447.5" ></text>
</g>
<g >
<title>tick_program_event (394,235 samples, 0.01%)</title><rect x="321.3" y="565" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="324.28" y="575.5" ></text>
</g>
<g >
<title>x64_sys_call (281,122 samples, 0.01%)</title><rect x="1187.5" y="629" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1190.47" y="639.5" ></text>
</g>
<g >
<title>x86_pmu_disable (872,348 samples, 0.03%)</title><rect x="433.3" y="485" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="436.30" y="495.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (314,516 samples, 0.01%)</title><rect x="405.2" y="565" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="408.18" y="575.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (582,691 samples, 0.02%)</title><rect x="256.7" y="597" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="259.74" y="607.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (4,159,615 samples, 0.13%)</title><rect x="125.1" y="837" width="1.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="128.11" y="847.5" ></text>
</g>
<g >
<title>__update_load_avg_se (316,741 samples, 0.01%)</title><rect x="75.7" y="741" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="78.65" y="751.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (407,180 samples, 0.01%)</title><rect x="580.8" y="501" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="583.76" y="511.5" ></text>
</g>
<g >
<title>task_tick_fair (316,517 samples, 0.01%)</title><rect x="345.3" y="517" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="348.33" y="527.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (305,145 samples, 0.01%)</title><rect x="524.8" y="373" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="527.82" y="383.5" ></text>
</g>
<g >
<title>put_prev_entity (3,526,348 samples, 0.11%)</title><rect x="864.3" y="469" width="1.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="867.27" y="479.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (729,975 samples, 0.02%)</title><rect x="135.0" y="1077" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="137.99" y="1087.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (306,815 samples, 0.01%)</title><rect x="398.9" y="549" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="401.90" y="559.5" ></text>
</g>
<g >
<title>update_process_times (409,109 samples, 0.01%)</title><rect x="372.5" y="517" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="375.52" y="527.5" ></text>
</g>
<g >
<title>handle_softirqs (350,433 samples, 0.01%)</title><rect x="336.7" y="581" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="339.66" y="591.5" ></text>
</g>
<g >
<title>native_read_msr (374,124 samples, 0.01%)</title><rect x="135.1" y="901" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="138.12" y="911.5" ></text>
</g>
<g >
<title>send_message_to_server_log (281,122 samples, 0.01%)</title><rect x="1187.5" y="709" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="1190.47" y="719.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (391,377 samples, 0.01%)</title><rect x="451.7" y="613" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="454.70" y="623.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (314,516 samples, 0.01%)</title><rect x="405.2" y="549" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="408.18" y="559.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,268,601 samples, 0.04%)</title><rect x="1164.8" y="501" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1167.77" y="511.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (600,661 samples, 0.02%)</title><rect x="517.5" y="469" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="520.50" y="479.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (645,917 samples, 0.02%)</title><rect x="147.9" y="597" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="150.94" y="607.5" ></text>
</g>
<g >
<title>scheduler_tick (729,975 samples, 0.02%)</title><rect x="135.0" y="997" width="0.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="137.99" y="1007.5" ></text>
</g>
<g >
<title>RecoveryInProgress (19,937,907 samples, 0.62%)</title><rect x="226.3" y="645" width="7.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="229.30" y="655.5" ></text>
</g>
<g >
<title>irqentry_exit (337,037 samples, 0.01%)</title><rect x="257.7" y="581" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="260.73" y="591.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (575,311 samples, 0.02%)</title><rect x="1178.3" y="549" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1181.27" y="559.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (389,138 samples, 0.01%)</title><rect x="1172.3" y="341" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1175.32" y="351.5" ></text>
</g>
<g >
<title>pg_fsync_no_writethrough (389,224 samples, 0.01%)</title><rect x="10.2" y="805" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="13.19" y="815.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (619,919 samples, 0.02%)</title><rect x="326.3" y="469" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="329.28" y="479.5" ></text>
</g>
<g >
<title>account_process_tick (276,867 samples, 0.01%)</title><rect x="25.4" y="869" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="28.39" y="879.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (687,263 samples, 0.02%)</title><rect x="326.3" y="597" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="329.25" y="607.5" ></text>
</g>
<g >
<title>update_process_times (452,803 samples, 0.01%)</title><rect x="433.6" y="565" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="436.63" y="575.5" ></text>
</g>
<g >
<title>__update_blocked_fair (3,673,550 samples, 0.11%)</title><rect x="834.1" y="357" width="1.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="837.10" y="367.5" ></text>
</g>
<g >
<title>x86_pmu_disable (355,401 samples, 0.01%)</title><rect x="1178.3" y="421" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1181.27" y="431.5" ></text>
</g>
<g >
<title>irq_exit_rcu (1,868,037 samples, 0.06%)</title><rect x="699.8" y="437" width="0.7" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="702.85" y="447.5" ></text>
</g>
<g >
<title>update_curr (11,826,924 samples, 0.37%)</title><rect x="44.0" y="853" width="4.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="47.03" y="863.5" ></text>
</g>
<g >
<title>amd_pmu_addr_offset (488,009 samples, 0.02%)</title><rect x="727.1" y="261" width="0.2" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="730.10" y="271.5" ></text>
</g>
<g >
<title>__x64_sys_clock_nanosleep (1,733,028,431 samples, 54.16%)</title><rect x="535.6" y="581" width="639.0" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="538.55" y="591.5" >__x64_sys_clock_nanosleep</text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (781,228 samples, 0.02%)</title><rect x="330.4" y="597" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="333.35" y="607.5" ></text>
</g>
<g >
<title>lapic_next_event (394,235 samples, 0.01%)</title><rect x="321.3" y="533" width="0.1" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="324.28" y="543.5" ></text>
</g>
<g >
<title>native_write_msr (296,065 samples, 0.01%)</title><rect x="1165.1" y="389" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1168.13" y="399.5" ></text>
</g>
<g >
<title>tick_program_event (718,287 samples, 0.02%)</title><rect x="1165.0" y="437" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1167.98" y="447.5" ></text>
</g>
<g >
<title>tick_sched_handle (314,516 samples, 0.01%)</title><rect x="405.2" y="501" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="408.18" y="511.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (5,975,382 samples, 0.19%)</title><rect x="200.6" y="613" width="2.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="203.60" y="623.5" ></text>
</g>
<g >
<title>ttwu_do_activate (358,417 samples, 0.01%)</title><rect x="836.0" y="261" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="838.97" y="271.5" ></text>
</g>
<g >
<title>native_read_msr (357,567 samples, 0.01%)</title><rect x="1186.0" y="437" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1188.96" y="447.5" ></text>
</g>
<g >
<title>update_process_times (550,314 samples, 0.02%)</title><rect x="1164.8" y="389" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1167.77" y="399.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (383,344 samples, 0.01%)</title><rect x="282.4" y="421" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="285.37" y="431.5" ></text>
</g>
<g >
<title>perf_pmu_nop_void (2,242,292 samples, 0.07%)</title><rect x="1100.7" y="437" width="0.8" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" />
<text x="1103.70" y="447.5" ></text>
</g>
<g >
<title>scheduler_tick (891,440 samples, 0.03%)</title><rect x="516.0" y="405" width="0.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="519.04" y="415.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (538,296 samples, 0.02%)</title><rect x="266.6" y="581" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="269.62" y="591.5" ></text>
</g>
<g >
<title>x86_pmu_enable (360,088 samples, 0.01%)</title><rect x="699.7" y="437" width="0.1" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="702.72" y="447.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (351,471 samples, 0.01%)</title><rect x="1189.9" y="1157" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1192.87" y="1167.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (322,335 samples, 0.01%)</title><rect x="552.1" y="453" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="555.10" y="463.5" ></text>
</g>
<g >
<title>rseq_update_cpu_node_id (10,698,095 samples, 0.33%)</title><rect x="517.7" y="565" width="4.0" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="520.72" y="575.5" ></text>
</g>
<g >
<title>tick_sched_handle (891,440 samples, 0.03%)</title><rect x="516.0" y="437" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="519.04" y="447.5" ></text>
</g>
<g >
<title>scheduler_tick (469,453 samples, 0.01%)</title><rect x="395.1" y="469" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="398.09" y="479.5" ></text>
</g>
<g >
<title>task_tick_fair (390,535 samples, 0.01%)</title><rect x="472.2" y="485" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="475.17" y="495.5" ></text>
</g>
<g >
<title>__get_user_8 (2,315,740 samples, 0.07%)</title><rect x="27.7" y="965" width="0.8" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="30.67" y="975.5" ></text>
</g>
<g >
<title>SubTransGetParent (124,492,201 samples, 3.89%)</title><rect x="364.6" y="661" width="45.9" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="367.56" y="671.5" >SubT..</text>
</g>
<g >
<title>__put_user_8 (620,456 samples, 0.02%)</title><rect x="26.9" y="981" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="29.87" y="991.5" ></text>
</g>
<g >
<title>nohz_balance_exit_idle (927,019 samples, 0.03%)</title><rect x="72.9" y="709" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="75.87" y="719.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (308,587 samples, 0.01%)</title><rect x="835.5" y="357" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="838.45" y="367.5" ></text>
</g>
<g >
<title>GetXLogReplayRecPtr (2,891,633 samples, 0.09%)</title><rect x="10.8" y="1093" width="1.0" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="13.76" y="1103.5" ></text>
</g>
<g >
<title>native_apic_msr_write (974,111 samples, 0.03%)</title><rect x="832.1" y="373" width="0.4" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="835.14" y="383.5" ></text>
</g>
<g >
<title>calc_global_load_tick (370,388 samples, 0.01%)</title><rect x="711.0" y="341" width="0.1" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="713.97" y="351.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (31,997,172 samples, 1.00%)</title><rect x="59.7" y="693" width="11.8" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="62.74" y="703.5" ></text>
</g>
<g >
<title>tick_program_event (29,797,123 samples, 0.93%)</title><rect x="822.1" y="405" width="11.0" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="825.13" y="415.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (313,485 samples, 0.01%)</title><rect x="350.3" y="581" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="353.32" y="591.5" ></text>
</g>
<g >
<title>scheduler_tick (44,968,880 samples, 1.41%)</title><rect x="57.0" y="757" width="16.6" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="60.02" y="767.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (327,058 samples, 0.01%)</title><rect x="345.9" y="613" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="348.90" y="623.5" ></text>
</g>
<g >
<title>newidle_balance (11,010,744 samples, 0.34%)</title><rect x="77.8" y="869" width="4.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="80.83" y="879.5" ></text>
</g>
<g >
<title>tcp_write_xmit (528,716 samples, 0.02%)</title><rect x="699.8" y="133" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="702.85" y="143.5" ></text>
</g>
<g >
<title>update_process_times (619,919 samples, 0.02%)</title><rect x="326.3" y="517" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="329.28" y="527.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (936,437 samples, 0.03%)</title><rect x="328.5" y="629" width="0.4" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="331.54" y="639.5" ></text>
</g>
<g >
<title>sched_clock (2,434,201 samples, 0.08%)</title><rect x="817.9" y="293" width="0.9" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="820.89" y="303.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (452,803 samples, 0.01%)</title><rect x="433.6" y="661" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="436.63" y="671.5" ></text>
</g>
<g >
<title>update_rq_clock (313,955 samples, 0.01%)</title><rect x="73.7" y="757" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="76.68" y="767.5" ></text>
</g>
<g >
<title>__cxa_finalize (507,212 samples, 0.02%)</title><rect x="1187.9" y="901" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1190.86" y="911.5" ></text>
</g>
<g >
<title>x86_pmu_disable (729,975 samples, 0.02%)</title><rect x="135.0" y="949" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="137.99" y="959.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (339,932 samples, 0.01%)</title><rect x="55.2" y="773" width="0.1" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="58.18" y="783.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (56,789,538 samples, 1.77%)</title><rect x="54.5" y="837" width="20.9" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="57.49" y="847.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (357,437 samples, 0.01%)</title><rect x="814.1" y="245" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="817.13" y="255.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,029,992 samples, 0.06%)</title><rect x="580.0" y="469" width="0.8" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="583.01" y="479.5" ></text>
</g>
<g >
<title>ext4_buffered_write_iter (281,122 samples, 0.01%)</title><rect x="1187.5" y="549" width="0.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="1190.47" y="559.5" ></text>
</g>
<g >
<title>update_process_times (988,011 samples, 0.03%)</title><rect x="188.4" y="517" width="0.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="191.39" y="527.5" ></text>
</g>
<g >
<title>_raw_spin_lock (920,075 samples, 0.03%)</title><rect x="716.3" y="325" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="719.32" y="335.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,224,987 samples, 0.04%)</title><rect x="328.4" y="645" width="0.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="331.43" y="655.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (575,311 samples, 0.02%)</title><rect x="1178.3" y="517" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="1181.27" y="527.5" ></text>
</g>
<g >
<title>amd_pmu_addr_offset (1,304,710 samples, 0.04%)</title><rect x="890.0" y="389" width="0.5" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="892.99" y="399.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (57,110,738 samples, 1.78%)</title><rect x="54.4" y="853" width="21.0" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="57.38" y="863.5" ></text>
</g>
<g >
<title>__hrtimer_start_range_ns (501,494 samples, 0.02%)</title><rect x="551.5" y="517" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="554.47" y="527.5" ></text>
</g>
<g >
<title>nf_hook_slow (528,716 samples, 0.02%)</title><rect x="699.8" y="37" width="0.2" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="702.85" y="47.5" ></text>
</g>
<g >
<title>scheduler_tick (614,452 samples, 0.02%)</title><rect x="287.8" y="485" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="290.76" y="495.5" ></text>
</g>
<g >
<title>sched_clock_tick (346,289 samples, 0.01%)</title><rect x="580.2" y="357" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="583.24" y="367.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (327,058 samples, 0.01%)</title><rect x="345.9" y="565" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="348.90" y="575.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (291,588 samples, 0.01%)</title><rect x="551.7" y="517" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="554.65" y="527.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (1,411,629 samples, 0.04%)</title><rect x="471.7" y="437" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="474.65" y="447.5" ></text>
</g>
<g >
<title>update_process_times (281,182 samples, 0.01%)</title><rect x="265.9" y="485" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="268.95" y="495.5" ></text>
</g>
<g >
<title>retbleed_untrain_ret (1,288,534 samples, 0.04%)</title><rect x="1172.5" y="549" width="0.4" height="15.0" fill="rgb(210,25,5)" rx="2" ry="2" />
<text x="1175.46" y="559.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (336,361 samples, 0.01%)</title><rect x="484.5" y="533" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="487.49" y="543.5" ></text>
</g>
<g >
<title>UnGrantLock (6,457,002 samples, 0.20%)</title><rect x="343.0" y="661" width="2.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="345.95" y="671.5" ></text>
</g>
<g >
<title>__hrtimer_next_event_base (393,349 samples, 0.01%)</title><rect x="700.6" y="405" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="703.59" y="415.5" ></text>
</g>
<g >
<title>schedule (880,355 samples, 0.03%)</title><rect x="1167.7" y="533" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1170.68" y="543.5" ></text>
</g>
<g >
<title>pick_next_task_fair (13,743,427 samples, 0.43%)</title><rect x="76.8" y="885" width="5.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="79.82" y="895.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (281,182 samples, 0.01%)</title><rect x="265.9" y="517" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="268.95" y="527.5" ></text>
</g>
<g >
<title>receive_buf (293,538 samples, 0.01%)</title><rect x="33.0" y="789" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="35.97" y="799.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (52,890,754 samples, 1.65%)</title><rect x="54.5" y="821" width="19.5" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="57.49" y="831.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (1,223,908 samples, 0.04%)</title><rect x="257.1" y="453" width="0.5" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="260.10" y="463.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (645,917 samples, 0.02%)</title><rect x="147.9" y="629" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="150.94" y="639.5" ></text>
</g>
<g >
<title>proc_exit (1,037,798 samples, 0.03%)</title><rect x="1187.9" y="997" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1190.86" y="1007.5" ></text>
</g>
<g >
<title>nf_hook_slow_list (523,992 samples, 0.02%)</title><rect x="700.3" y="261" width="0.2" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="703.34" y="271.5" ></text>
</g>
<g >
<title>newidle_balance (312,850 samples, 0.01%)</title><rect x="76.7" y="885" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="79.71" y="895.5" ></text>
</g>
<g >
<title>__rcu_read_lock (707,782 samples, 0.02%)</title><rect x="861.6" y="437" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="864.63" y="447.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (507,212 samples, 0.02%)</title><rect x="1187.9" y="853" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1190.86" y="863.5" ></text>
</g>
<g >
<title>update_process_times (541,112 samples, 0.02%)</title><rect x="395.3" y="469" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="398.27" y="479.5" ></text>
</g>
<g >
<title>perf_event_task_tick (570,983 samples, 0.02%)</title><rect x="132.7" y="933" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="135.66" y="943.5" ></text>
</g>
<g >
<title>tick_sched_handle (281,182 samples, 0.01%)</title><rect x="265.9" y="501" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="268.95" y="511.5" ></text>
</g>
<g >
<title>__x64_sys_write (281,122 samples, 0.01%)</title><rect x="1187.5" y="613" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="1190.47" y="623.5" ></text>
</g>
<g >
<title>read_local_xlog_page_guts (333,080,169 samples, 10.41%)</title><rect x="10.3" y="1109" width="122.9" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="13.33" y="1119.5" >read_local_xlog..</text>
</g>
<g >
<title>tcp_v4_rcv (556,946 samples, 0.02%)</title><rect x="54.0" y="613" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="56.99" y="623.5" ></text>
</g>
<g >
<title>tick_sched_handle (539,120 samples, 0.02%)</title><rect x="304.5" y="517" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="307.49" y="527.5" ></text>
</g>
<g >
<title>__wake_up_common (305,520 samples, 0.01%)</title><rect x="54.1" y="501" width="0.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="57.08" y="511.5" ></text>
</g>
<g >
<title>__calc_delta.constprop.0 (650,729 samples, 0.02%)</title><rect x="46.5" y="837" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="49.49" y="847.5" ></text>
</g>
<g >
<title>ip_finish_output2 (429,711 samples, 0.01%)</title><rect x="700.2" y="85" width="0.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="703.19" y="95.5" ></text>
</g>
<g >
<title>pick_next_task (797,548 samples, 0.02%)</title><rect x="1165.7" y="501" width="0.3" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="1168.73" y="511.5" ></text>
</g>
<g >
<title>tick_sched_handle (313,485 samples, 0.01%)</title><rect x="350.3" y="533" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="353.32" y="543.5" ></text>
</g>
<g >
<title>get_nohz_timer_target (5,658,900 samples, 0.18%)</title><rect x="565.0" y="485" width="2.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="568.00" y="495.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (136,758,893 samples, 4.27%)</title><rect x="755.9" y="261" width="50.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="758.89" y="271.5" >x86_p..</text>
</g>
<g >
<title>update_process_times (386,240 samples, 0.01%)</title><rect x="410.3" y="533" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="413.29" y="543.5" ></text>
</g>
<g >
<title>scheduler_tick (872,348 samples, 0.03%)</title><rect x="433.3" y="533" width="0.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="436.30" y="543.5" ></text>
</g>
<g >
<title>ktime_get_update_offsets_now (284,848 samples, 0.01%)</title><rect x="257.6" y="565" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="260.62" y="575.5" ></text>
</g>
<g >
<title>update_process_times (355,453 samples, 0.01%)</title><rect x="199.7" y="517" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.66" y="527.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (3,802,433 samples, 0.12%)</title><rect x="471.2" y="629" width="1.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="474.17" y="639.5" ></text>
</g>
<g >
<title>rcu_pending (497,953 samples, 0.02%)</title><rect x="147.9" y="533" width="0.2" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="150.94" y="543.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (643,776 samples, 0.02%)</title><rect x="129.4" y="837" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="132.39" y="847.5" ></text>
</g>
<g >
<title>tick_sched_handle (1,812,672 samples, 0.06%)</title><rect x="257.0" y="517" width="0.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="259.95" y="527.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (528,716 samples, 0.02%)</title><rect x="699.8" y="85" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="702.85" y="95.5" ></text>
</g>
<g >
<title>folio_wait_bit (389,224 samples, 0.01%)</title><rect x="10.2" y="629" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="13.19" y="639.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (283,622 samples, 0.01%)</title><rect x="818.7" y="261" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="821.68" y="271.5" ></text>
</g>
<g >
<title>BasicOpenFilePerm (281,122 samples, 0.01%)</title><rect x="10.1" y="821" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.09" y="831.5" ></text>
</g>
<g >
<title>rb_insert_color (9,650,241 samples, 0.30%)</title><rect x="556.0" y="469" width="3.6" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="558.99" y="479.5" ></text>
</g>
<g >
<title>expand_table (439,759 samples, 0.01%)</title><rect x="350.1" y="645" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="353.06" y="655.5" ></text>
</g>
<g >
<title>scheduler_tick (383,344 samples, 0.01%)</title><rect x="282.4" y="485" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="285.37" y="495.5" ></text>
</g>
<g >
<title>dlist_delete (4,674,490 samples, 0.15%)</title><rect x="319.7" y="645" width="1.7" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="322.70" y="655.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (355,453 samples, 0.01%)</title><rect x="199.7" y="437" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="202.66" y="447.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (313,485 samples, 0.01%)</title><rect x="350.3" y="469" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="353.32" y="479.5" ></text>
</g>
<g >
<title>update_process_times (645,917 samples, 0.02%)</title><rect x="147.9" y="549" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="150.94" y="559.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (988,011 samples, 0.03%)</title><rect x="188.4" y="549" width="0.4" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="191.39" y="559.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (285,824 samples, 0.01%)</title><rect x="22.6" y="853" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="25.57" y="863.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (429,625 samples, 0.01%)</title><rect x="263.8" y="597" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="266.80" y="607.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (758,935 samples, 0.02%)</title><rect x="1161.8" y="437" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="1164.80" y="447.5" ></text>
</g>
<g >
<title>native_write_msr (186,612,423 samples, 5.83%)</title><rect x="891.8" y="389" width="68.8" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="894.79" y="399.5" >native_..</text>
</g>
<g >
<title>__queue_work.part.0 (358,417 samples, 0.01%)</title><rect x="836.0" y="325" width="0.1" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="838.97" y="335.5" ></text>
</g>
<g >
<title>LockAcquireExtended (439,915,821 samples, 13.75%)</title><rect x="150.5" y="661" width="162.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="153.50" y="671.5" >LockAcquireExtended</text>
</g>
<g >
<title>account_process_tick (13,284,732 samples, 0.42%)</title><rect x="705.6" y="341" width="4.9" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="708.59" y="351.5" ></text>
</g>
<g >
<title>net_rx_action (1,118,401 samples, 0.03%)</title><rect x="53.9" y="805" width="0.4" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="56.87" y="815.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (348,091 samples, 0.01%)</title><rect x="543.8" y="357" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="546.78" y="367.5" ></text>
</g>
<g >
<title>handle_softirqs (8,195,119 samples, 0.26%)</title><rect x="833.2" y="405" width="3.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="836.24" y="415.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (652,288 samples, 0.02%)</title><rect x="1185.9" y="581" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="1188.85" y="591.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (1,320,356 samples, 0.04%)</title><rect x="237.8" y="469" width="0.5" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="240.77" y="479.5" ></text>
</g>
<g >
<title>native_read_msr (643,776 samples, 0.02%)</title><rect x="129.4" y="693" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="132.39" y="703.5" ></text>
</g>
<g >
<title>tick_sched_handle (872,348 samples, 0.03%)</title><rect x="433.3" y="565" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="436.30" y="575.5" ></text>
</g>
<g >
<title>folio_wait_writeback (389,224 samples, 0.01%)</title><rect x="10.2" y="645" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="13.19" y="655.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (348,447 samples, 0.01%)</title><rect x="806.7" y="325" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="809.75" y="335.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (575,311 samples, 0.02%)</title><rect x="1178.3" y="581" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1181.27" y="591.5" ></text>
</g>
<g >
<title>scheduler_tick (322,335 samples, 0.01%)</title><rect x="552.1" y="389" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="555.10" y="399.5" ></text>
</g>
<g >
<title>page_to_skb (293,538 samples, 0.01%)</title><rect x="33.0" y="757" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="35.97" y="767.5" ></text>
</g>
<g >
<title>__calc_delta.constprop.0 (440,422 samples, 0.01%)</title><rect x="807.6" y="309" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="810.61" y="319.5" ></text>
</g>
<g >
<title>update_process_times (2,875,937 samples, 0.09%)</title><rect x="471.3" y="517" width="1.0" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="474.26" y="527.5" ></text>
</g>
<g >
<title>update_blocked_averages (1,065,087 samples, 0.03%)</title><rect x="863.4" y="437" width="0.3" height="15.0" fill="rgb(240,163,38)" rx="2" ry="2" />
<text x="866.35" y="447.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (1,692,531,683 samples, 52.89%)</title><rect x="543.9" y="549" width="624.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="546.90" y="559.5" >hrtimer_nanosleep</text>
</g>
<g >
<title>rcu_segcblist_ready_cbs (413,278 samples, 0.01%)</title><rect x="713.6" y="309" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="716.59" y="319.5" ></text>
</g>
<g >
<title>mmput (2,143,854 samples, 0.07%)</title><rect x="1189.1" y="1045" width="0.8" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="1192.08" y="1055.5" ></text>
</g>
<g >
<title>lapic_next_event (21,941,921 samples, 0.69%)</title><rect x="824.0" y="373" width="8.1" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="827.05" y="383.5" ></text>
</g>
<g >
<title>perf_event_task_tick (530,586 samples, 0.02%)</title><rect x="1188.0" y="773" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="1191.05" y="783.5" ></text>
</g>
<g >
<title>handle_softirqs (1,361,848 samples, 0.04%)</title><rect x="53.9" y="821" width="0.5" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="56.87" y="831.5" ></text>
</g>
<g >
<title>tick_program_event (3,609,478 samples, 0.11%)</title><rect x="74.1" y="821" width="1.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="77.10" y="831.5" ></text>
</g>
<g >
<title>perf_event_task_tick (306,815 samples, 0.01%)</title><rect x="398.9" y="469" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="401.90" y="479.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (348,091 samples, 0.01%)</title><rect x="543.8" y="517" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="546.78" y="527.5" ></text>
</g>
<g >
<title>timerqueue_add (305,316 samples, 0.01%)</title><rect x="820.4" y="389" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="823.39" y="399.5" ></text>
</g>
<g >
<title>update_cfs_group (300,980 samples, 0.01%)</title><rect x="263.8" y="453" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="266.85" y="463.5" ></text>
</g>
<g >
<title>__schedule (249,705,731 samples, 7.80%)</title><rect x="37.3" y="917" width="92.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="40.31" y="927.5" >__schedule</text>
</g>
<g >
<title>_find_next_and_bit (503,538 samples, 0.02%)</title><rect x="862.7" y="389" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="865.70" y="399.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (389,196 samples, 0.01%)</title><rect x="205.6" y="613" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="208.59" y="623.5" ></text>
</g>
<g >
<title>rb_insert_color (1,362,114 samples, 0.04%)</title><rect x="34.0" y="885" width="0.5" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="37.02" y="895.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (359,894,627 samples, 11.25%)</title><rect x="700.5" y="437" width="132.7" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="703.54" y="447.5" >__sysvec_apic_ti..</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (271,346 samples, 0.01%)</title><rect x="200.5" y="613" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="203.50" y="623.5" ></text>
</g>
<g >
<title>scheduler_tick (431,267 samples, 0.01%)</title><rect x="1187.1" y="517" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1190.11" y="527.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (1,705,966 samples, 0.05%)</title><rect x="205.0" y="581" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="207.96" y="591.5" ></text>
</g>
<g >
<title>__calc_delta.constprop.0 (831,897 samples, 0.03%)</title><rect x="607.0" y="453" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="610.04" y="463.5" ></text>
</g>
<g >
<title>schedule (252,586,699 samples, 7.89%)</title><rect x="37.1" y="933" width="93.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="40.13" y="943.5" >schedule</text>
</g>
<g >
<title>update_sg_lb_stats (585,589 samples, 0.02%)</title><rect x="81.3" y="805" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="84.33" y="815.5" ></text>
</g>
<g >
<title>x86_pmu_disable (357,567 samples, 0.01%)</title><rect x="1186.0" y="485" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1188.96" y="495.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (538,296 samples, 0.02%)</title><rect x="266.6" y="613" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="269.62" y="623.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (281,182 samples, 0.01%)</title><rect x="265.9" y="405" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="268.95" y="415.5" ></text>
</g>
<g >
<title>enqueue_task_fair (529,966 samples, 0.02%)</title><rect x="862.1" y="389" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="865.08" y="399.5" ></text>
</g>
<g >
<title>account_system_index_time (1,424,515 samples, 0.04%)</title><rect x="706.1" y="325" width="0.5" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="709.09" y="335.5" ></text>
</g>
<g >
<title>acct_account_cputime (287,482 samples, 0.01%)</title><rect x="56.3" y="725" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="59.29" y="735.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (316,517 samples, 0.01%)</title><rect x="345.3" y="645" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="348.33" y="655.5" ></text>
</g>
<g >
<title>scheduler_tick (355,453 samples, 0.01%)</title><rect x="199.7" y="501" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="202.66" y="511.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (383,344 samples, 0.01%)</title><rect x="282.4" y="597" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="285.37" y="607.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (359,030 samples, 0.01%)</title><rect x="1166.3" y="501" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1169.31" y="511.5" ></text>
</g>
<g >
<title>x86_pmu_disable (276,874 samples, 0.01%)</title><rect x="395.4" y="405" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="398.36" y="415.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (348,857 samples, 0.01%)</title><rect x="531.4" y="565" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="534.40" y="575.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (571,424,587 samples, 17.86%)</title><rect x="890.0" y="405" width="210.7" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="892.99" y="415.5" >amd_pmu_disable_all</text>
</g>
<g >
<title>pick_next_task (90,724,006 samples, 2.84%)</title><rect x="836.3" y="485" width="33.4" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="839.27" y="495.5" >pi..</text>
</g>
<g >
<title>ip_local_deliver_finish (1,344,045 samples, 0.04%)</title><rect x="699.8" y="229" width="0.5" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="702.85" y="239.5" ></text>
</g>
<g >
<title>SaveSlotToPath (670,346 samples, 0.02%)</title><rect x="10.1" y="853" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="13.09" y="863.5" ></text>
</g>
<g >
<title>set_task_cpu (305,520 samples, 0.01%)</title><rect x="54.1" y="437" width="0.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="57.08" y="447.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (2,078,064 samples, 0.06%)</title><rect x="426.5" y="645" width="0.8" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="429.52" y="655.5" ></text>
</g>
<g >
<title>update_process_times (367,033 samples, 0.01%)</title><rect x="263.8" y="485" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="266.82" y="495.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (306,815 samples, 0.01%)</title><rect x="398.9" y="613" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="401.90" y="623.5" ></text>
</g>
<g >
<title>timerqueue_add (4,221,568 samples, 0.13%)</title><rect x="702.5" y="373" width="1.5" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="705.45" y="383.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturnSwitchContext (2,853,578,928 samples, 89.17%)</title><rect x="135.3" y="869" width="1052.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="138.35" y="879.5" >ExecEvalExprNoReturnSwitchContext</text>
</g>
<g >
<title>reweight_entity (6,661,143 samples, 0.21%)</title><rect x="626.4" y="421" width="2.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="629.40" y="431.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (1,330,075 samples, 0.04%)</title><rect x="1164.3" y="453" width="0.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1167.28" y="463.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (271,346 samples, 0.01%)</title><rect x="200.5" y="533" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="203.50" y="543.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (2,021,968 samples, 0.06%)</title><rect x="131.9" y="1045" width="0.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="134.91" y="1055.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (271,346 samples, 0.01%)</title><rect x="200.5" y="405" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="203.50" y="415.5" ></text>
</g>
<g >
<title>perf_event_task_tick (1,320,356 samples, 0.04%)</title><rect x="237.8" y="485" width="0.5" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="240.77" y="495.5" ></text>
</g>
<g >
<title>hash_bytes (4,519,442 samples, 0.14%)</title><rect x="346.0" y="645" width="1.7" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="349.02" y="655.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,788,351 samples, 0.06%)</title><rect x="326.7" y="629" width="0.6" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="329.67" y="639.5" ></text>
</g>
<g >
<title>perf_event_task_tick (285,824 samples, 0.01%)</title><rect x="22.6" y="901" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="25.57" y="911.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (645,265 samples, 0.02%)</title><rect x="833.3" y="277" width="0.3" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="836.32" y="287.5" ></text>
</g>
<g >
<title>update_min_vruntime (2,269,224 samples, 0.07%)</title><rect x="692.0" y="453" width="0.9" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="695.03" y="463.5" ></text>
</g>
<g >
<title>scheduler_tick (281,244,647 samples, 8.79%)</title><rect x="715.2" y="341" width="103.7" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="718.19" y="351.5" >scheduler_tick</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (474,450 samples, 0.01%)</title><rect x="410.3" y="645" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="413.29" y="655.5" ></text>
</g>
<g >
<title>scheduler_tick (314,516 samples, 0.01%)</title><rect x="405.2" y="469" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="408.18" y="479.5" ></text>
</g>
<g >
<title>update_rq_clock (2,793,505 samples, 0.09%)</title><rect x="128.4" y="901" width="1.0" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="131.36" y="911.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (979,051 samples, 0.03%)</title><rect x="433.3" y="613" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="436.26" y="623.5" ></text>
</g>
<g >
<title>x64_sys_call (389,224 samples, 0.01%)</title><rect x="10.2" y="741" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="13.19" y="751.5" ></text>
</g>
<g >
<title>try_to_wake_up (305,520 samples, 0.01%)</title><rect x="54.1" y="453" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="57.08" y="463.5" ></text>
</g>
<g >
<title>rcu_pending (3,442,730 samples, 0.11%)</title><rect x="712.5" y="325" width="1.2" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="715.48" y="335.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (276,874 samples, 0.01%)</title><rect x="395.4" y="389" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="398.36" y="399.5" ></text>
</g>
<g >
<title>ip_local_deliver (1,344,045 samples, 0.04%)</title><rect x="699.8" y="245" width="0.5" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="702.85" y="255.5" ></text>
</g>
<g >
<title>DecodingContextFindStartpoint (2,853,578,928 samples, 89.17%)</title><rect x="135.3" y="789" width="1052.3" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="138.35" y="799.5" >DecodingContextFindStartpoint</text>
</g>
<g >
<title>account_system_index_time (8,614,335 samples, 0.27%)</title><rect x="706.6" y="309" width="3.2" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="709.62" y="319.5" ></text>
</g>
<g >
<title>update_load_avg (875,288 samples, 0.03%)</title><rect x="72.3" y="725" width="0.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="75.33" y="735.5" ></text>
</g>
<g >
<title>virtnet_receive.constprop.0 (293,538 samples, 0.01%)</title><rect x="33.0" y="805" width="0.1" height="15.0" fill="rgb(223,82,19)" rx="2" ry="2" />
<text x="35.97" y="815.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (306,815 samples, 0.01%)</title><rect x="398.9" y="453" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="401.90" y="463.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (1,868,037 samples, 0.06%)</title><rect x="699.8" y="325" width="0.7" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" />
<text x="702.85" y="335.5" ></text>
</g>
<g >
<title>GetTopTransactionIdIfAny (12,548,519 samples, 0.39%)</title><rect x="143.6" y="677" width="4.6" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="146.55" y="687.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (372,982 samples, 0.01%)</title><rect x="258.4" y="437" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="261.38" y="447.5" ></text>
</g>
<g >
<title>scheduler_tick (277,993 samples, 0.01%)</title><rect x="199.5" y="485" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="202.46" y="495.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (973,630 samples, 0.03%)</title><rect x="1167.3" y="533" width="0.4" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="1170.32" y="543.5" ></text>
</g>
<g >
<title>get_nohz_timer_target (1,461,935 samples, 0.05%)</title><rect x="580.9" y="501" width="0.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="583.91" y="511.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (547,418 samples, 0.02%)</title><rect x="258.3" y="549" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="261.32" y="559.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (305,520 samples, 0.01%)</title><rect x="54.1" y="517" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="57.08" y="527.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (891,440 samples, 0.03%)</title><rect x="516.0" y="501" width="0.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="519.04" y="511.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (285,824 samples, 0.01%)</title><rect x="22.6" y="1013" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="25.57" y="1023.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (452,803 samples, 0.01%)</title><rect x="433.6" y="677" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="436.63" y="687.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,029,992 samples, 0.06%)</title><rect x="580.0" y="485" width="0.8" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="583.01" y="495.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (336,361 samples, 0.01%)</title><rect x="484.5" y="373" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="487.49" y="383.5" ></text>
</g>
<g >
<title>update_process_times (372,982 samples, 0.01%)</title><rect x="258.4" y="485" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="261.38" y="495.5" ></text>
</g>
<g >
<title>activate_task (529,966 samples, 0.02%)</title><rect x="862.1" y="421" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="865.08" y="431.5" ></text>
</g>
<g >
<title>__common_interrupt (440,346 samples, 0.01%)</title><rect x="53.7" y="853" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="56.71" y="863.5" ></text>
</g>
<g >
<title>clockevents_program_event (27,160,983 samples, 0.85%)</title><rect x="822.5" y="389" width="10.0" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="825.48" y="399.5" ></text>
</g>
<g >
<title>tick_sched_handle (1,320,356 samples, 0.04%)</title><rect x="237.8" y="533" width="0.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="240.77" y="543.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (715,457 samples, 0.02%)</title><rect x="399.0" y="549" width="0.3" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="402.01" y="559.5" ></text>
</g>
<g >
<title>[[nf_conntrack]] (523,992 samples, 0.02%)</title><rect x="700.3" y="229" width="0.2" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="703.34" y="239.5" ></text>
</g>
<g >
<title>perf_event_task_tick (277,993 samples, 0.01%)</title><rect x="199.5" y="469" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="202.46" y="479.5" ></text>
</g>
<g >
<title>tick_sched_handle (316,517 samples, 0.01%)</title><rect x="345.3" y="565" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="348.33" y="575.5" ></text>
</g>
<g >
<title>tick_sched_handle (1,634,388 samples, 0.05%)</title><rect x="580.0" y="389" width="0.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="583.01" y="399.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (444,458 samples, 0.01%)</title><rect x="399.1" y="469" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="402.11" y="479.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (316,517 samples, 0.01%)</title><rect x="345.3" y="629" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="348.33" y="639.5" ></text>
</g>
<g >
<title>native_write_msr (355,851 samples, 0.01%)</title><rect x="135.0" y="917" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="137.99" y="927.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (530,586 samples, 0.02%)</title><rect x="1188.0" y="757" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="1191.05" y="767.5" ></text>
</g>
<g >
<title>[libc.so.6] (17,453,558 samples, 0.55%)</title><rect x="298.3" y="629" width="6.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="301.26" y="639.5" ></text>
</g>
<g >
<title>rcu_note_context_switch (868,201 samples, 0.03%)</title><rect x="1166.4" y="501" width="0.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="1169.45" y="511.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (891,440 samples, 0.03%)</title><rect x="516.0" y="533" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="519.04" y="543.5" ></text>
</g>
<g >
<title>prepare_task_switch (293,166 samples, 0.01%)</title><rect x="129.9" y="917" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="132.85" y="927.5" ></text>
</g>
<g >
<title>__memcg_slab_pre_alloc_hook (281,122 samples, 0.01%)</title><rect x="10.1" y="533" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="13.09" y="543.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (556,946 samples, 0.02%)</title><rect x="54.0" y="645" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="56.99" y="655.5" ></text>
</g>
<g >
<title>scheduler_tick (570,983 samples, 0.02%)</title><rect x="132.7" y="949" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="135.66" y="959.5" ></text>
</g>
<g >
<title>arch_check_zapped_pte (553,261 samples, 0.02%)</title><rect x="1189.3" y="933" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1192.28" y="943.5" ></text>
</g>
<g >
<title>__rcu_read_lock (567,930 samples, 0.02%)</title><rect x="716.1" y="325" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="719.11" y="335.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (277,993 samples, 0.01%)</title><rect x="199.5" y="405" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="202.46" y="415.5" ></text>
</g>
<g >
<title>tick_sched_handle (600,661 samples, 0.02%)</title><rect x="517.5" y="437" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="520.50" y="447.5" ></text>
</g>
<g >
<title>newidle_balance (2,248,904 samples, 0.07%)</title><rect x="840.9" y="469" width="0.8" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="843.91" y="479.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturn (2,853,578,928 samples, 89.17%)</title><rect x="135.3" y="853" width="1052.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="138.35" y="863.5" >ExecEvalExprNoReturn</text>
</g>
<g >
<title>sock_def_readable (305,520 samples, 0.01%)</title><rect x="54.1" y="533" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="57.08" y="543.5" ></text>
</g>
<g >
<title>LWLockRelease (7,943,491 samples, 0.25%)</title><rect x="202.8" y="645" width="2.9" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="205.80" y="655.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,268,601 samples, 0.04%)</title><rect x="1164.8" y="485" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1167.77" y="495.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (293,924,274 samples, 9.18%)</title><rect x="23.0" y="1045" width="108.4" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="25.98" y="1055.5" >entry_SYSCALL..</text>
</g>
<g >
<title>hrtimer_update_next_event (2,043,362 samples, 0.06%)</title><rect x="820.5" y="405" width="0.8" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="823.50" y="415.5" ></text>
</g>
<g >
<title>do_syscall_64 (281,122 samples, 0.01%)</title><rect x="10.1" y="757" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="13.09" y="767.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (543,862 samples, 0.02%)</title><rect x="500.8" y="549" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="503.77" y="559.5" ></text>
</g>
<g >
<title>get_timespec64 (1,071,200 samples, 0.03%)</title><rect x="1176.3" y="581" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1179.27" y="591.5" ></text>
</g>
<g >
<title>put_prev_entity (324,190 samples, 0.01%)</title><rect x="82.3" y="869" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="85.33" y="879.5" ></text>
</g>
<g >
<title>main (2,855,391,574 samples, 89.23%)</title><rect x="135.3" y="1109" width="1052.9" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="138.35" y="1119.5" >main</text>
</g>
<g >
<title>common_interrupt (1,802,194 samples, 0.06%)</title><rect x="53.7" y="869" width="0.7" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="56.71" y="879.5" ></text>
</g>
<g >
<title>common_nsleep (1,692,531,683 samples, 52.89%)</title><rect x="543.9" y="565" width="624.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="546.90" y="575.5" >common_nsleep</text>
</g>
<g >
<title>tick_sched_handle (372,982 samples, 0.01%)</title><rect x="258.4" y="501" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="261.38" y="511.5" ></text>
</g>
<g >
<title>update_rt_rq_load_avg (377,760 samples, 0.01%)</title><rect x="835.8" y="357" width="0.2" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="838.83" y="367.5" ></text>
</g>
<g >
<title>SimpleLruGetBankLock (1,098,645 samples, 0.03%)</title><rect x="396.3" y="629" width="0.4" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="399.34" y="639.5" ></text>
</g>
<g >
<title>scheduler_tick (336,361 samples, 0.01%)</title><rect x="484.5" y="453" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="487.49" y="463.5" ></text>
</g>
<g >
<title>__calc_delta.constprop.0 (312,500 samples, 0.01%)</title><rect x="72.1" y="709" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="75.06" y="719.5" ></text>
</g>
<g >
<title>perf_event_task_tick (383,344 samples, 0.01%)</title><rect x="282.4" y="469" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="285.37" y="479.5" ></text>
</g>
<g >
<title>native_read_msr (306,815 samples, 0.01%)</title><rect x="398.9" y="389" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="401.90" y="399.5" ></text>
</g>
<g >
<title>update_process_times (729,975 samples, 0.02%)</title><rect x="135.0" y="1013" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="137.99" y="1023.5" ></text>
</g>
<g >
<title>SimpleLruReadPage_ReadOnly (102,024,268 samples, 3.19%)</title><rect x="372.7" y="645" width="37.6" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="375.67" y="655.5" >Sim..</text>
</g>
<g >
<title>calc_bucket (1,119,569 samples, 0.03%)</title><rect x="266.1" y="597" width="0.4" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="269.05" y="607.5" ></text>
</g>
<g >
<title>rcu_sched_clock_irq (1,422,467 samples, 0.04%)</title><rect x="56.5" y="757" width="0.5" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="59.50" y="767.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (652,288 samples, 0.02%)</title><rect x="1185.9" y="597" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1188.85" y="607.5" ></text>
</g>
<g >
<title>do_sys_openat2 (281,122 samples, 0.01%)</title><rect x="10.1" y="709" width="0.1" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text x="13.09" y="719.5" ></text>
</g>
<g >
<title>_copy_from_user (2,157,731 samples, 0.07%)</title><rect x="543.0" y="565" width="0.8" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="545.98" y="575.5" ></text>
</g>
<g >
<title>native_read_msr (348,091 samples, 0.01%)</title><rect x="543.8" y="341" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="546.78" y="351.5" ></text>
</g>
<g >
<title>trigger_load_balance (1,176,849 samples, 0.04%)</title><rect x="72.8" y="741" width="0.4" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="75.78" y="751.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (271,346 samples, 0.01%)</title><rect x="200.5" y="581" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="203.50" y="591.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (66,624,126 samples, 2.08%)</title><rect x="288.2" y="645" width="24.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="291.15" y="655.5" >h..</text>
</g>
<g >
<title>account_process_tick (2,005,594 samples, 0.06%)</title><rect x="55.7" y="757" width="0.7" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="58.65" y="767.5" ></text>
</g>
</g>
</svg>