patch-v7.svg
image/svg+xml
Filename: patch-v7.svg
Type: image/svg+xml
Part: 1
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="1014" onload="init(evt)" viewBox="0 0 1200 1014" 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="1014.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="997" > </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="997" > </text>
<g id="frames">
<g >
<title>lstat64 (241,604 samples, 0.01%)</title><rect x="1187.1" y="533" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="1190.14" y="543.5" ></text>
</g>
<g >
<title>update_dl_rq_load_avg (482,327 samples, 0.02%)</title><rect x="644.2" y="549" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="647.22" y="559.5" ></text>
</g>
<g >
<title>cpuacct_charge (581,979 samples, 0.02%)</title><rect x="610.6" y="485" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="613.57" y="495.5" ></text>
</g>
<g >
<title>find_busiest_group (3,035,471 samples, 0.13%)</title><rect x="689.3" y="613" width="1.5" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="692.31" y="623.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (630,459 samples, 0.03%)</title><rect x="623.1" y="597" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="626.07" y="607.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (1,387,084 samples, 0.06%)</title><rect x="271.5" y="485" width="0.7" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="274.52" y="495.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (250,889 samples, 0.01%)</title><rect x="691.4" y="533" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="694.43" y="543.5" ></text>
</g>
<g >
<title>psi_task_change (227,959 samples, 0.01%)</title><rect x="644.9" y="421" width="0.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="647.85" y="431.5" ></text>
</g>
<g >
<title>x64_sys_call (359,428 samples, 0.01%)</title><rect x="10.0" y="517" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="13.00" y="527.5" ></text>
</g>
<g >
<title>native_read_msr (531,390 samples, 0.02%)</title><rect x="478.5" y="453" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="481.46" y="463.5" ></text>
</g>
<g >
<title>exit_mmap (2,230,734 samples, 0.09%)</title><rect x="1188.6" y="789" width="1.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="1191.61" y="799.5" ></text>
</g>
<g >
<title>timerqueue_add (753,498 samples, 0.03%)</title><rect x="267.3" y="677" width="0.4" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="270.29" y="687.5" ></text>
</g>
<g >
<title>scheduler_tick (248,854 samples, 0.01%)</title><rect x="1187.3" y="133" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1190.26" y="143.5" ></text>
</g>
<g >
<title>tick_sched_handle (239,088 samples, 0.01%)</title><rect x="184.7" y="645" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="187.69" y="655.5" ></text>
</g>
<g >
<title>ext4_sync_file (345,508 samples, 0.01%)</title><rect x="10.2" y="469" width="0.1" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="13.18" y="479.5" ></text>
</g>
<g >
<title>unmap_vmas (2,230,734 samples, 0.09%)</title><rect x="1188.6" y="773" width="1.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="1191.61" y="783.5" ></text>
</g>
<g >
<title>_raw_spin_lock (3,011,071 samples, 0.13%)</title><rect x="719.6" y="645" width="1.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="722.56" y="655.5" ></text>
</g>
<g >
<title>clockevents_program_event (421,560 samples, 0.02%)</title><rect x="49.9" y="773" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="52.93" y="783.5" ></text>
</g>
<g >
<title>retbleed_untrain_ret (481,685 samples, 0.02%)</title><rect x="136.9" y="789" width="0.3" height="15.0" fill="rgb(210,25,5)" rx="2" ry="2" />
<text x="139.91" y="799.5" ></text>
</g>
<g >
<title>__get_user_8 (33,164,815 samples, 1.38%)</title><rect x="159.6" y="741" width="16.3" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="162.57" y="751.5" ></text>
</g>
<g >
<title>all (2,396,264,401 samples, 100%)</title><rect x="10.0" y="965" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="975.5" ></text>
</g>
<g >
<title>hrtimer_update_next_event (2,423,008 samples, 0.10%)</title><rect x="623.5" y="597" width="1.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="626.48" y="607.5" ></text>
</g>
<g >
<title>SnapBuildProcessRunningXacts (314,254 samples, 0.01%)</title><rect x="1187.0" y="517" width="0.1" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="1189.99" y="527.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (556,354 samples, 0.02%)</title><rect x="213.7" y="597" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="216.74" y="607.5" ></text>
</g>
<g >
<title>pg_usleep (2,289,178,763 samples, 95.53%)</title><rect x="59.6" y="869" width="1127.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="62.59" y="879.5" >pg_usleep</text>
</g>
<g >
<title>_raw_spin_lock_irq (245,986 samples, 0.01%)</title><rect x="622.9" y="597" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="625.95" y="607.5" ></text>
</g>
<g >
<title>native_read_msr (4,076,403 samples, 0.17%)</title><rect x="736.8" y="581" width="2.0" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="739.76" y="591.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,822,269 samples, 0.08%)</title><rect x="50.4" y="837" width="0.8" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="53.35" y="847.5" ></text>
</g>
<g >
<title>rb_next (650,595 samples, 0.03%)</title><rect x="443.8" y="565" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="446.82" y="575.5" ></text>
</g>
<g >
<title>__remove_hrtimer (232,410 samples, 0.01%)</title><rect x="112.9" y="741" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="115.87" y="751.5" ></text>
</g>
<g >
<title>pg_create_logical_replication_slot (804,712 samples, 0.03%)</title><rect x="1187.0" y="597" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1189.99" y="607.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,012,810 samples, 0.17%)</title><rect x="114.2" y="821" width="2.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="117.21" y="831.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (2,345,935 samples, 0.10%)</title><rect x="718.4" y="645" width="1.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="721.41" y="655.5" ></text>
</g>
<g >
<title>unmap_single_vma (2,230,734 samples, 0.09%)</title><rect x="1188.6" y="757" width="1.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1191.61" y="767.5" ></text>
</g>
<g >
<title>account_system_index_time (752,767 samples, 0.03%)</title><rect x="450.0" y="517" width="0.4" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="452.99" y="527.5" ></text>
</g>
<g >
<title>perf_event_task_tick (357,569 samples, 0.01%)</title><rect x="131.7" y="645" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="134.68" y="655.5" ></text>
</g>
<g >
<title>BackendStartup (2,372,309 samples, 0.10%)</title><rect x="1187.0" y="837" width="1.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="1189.99" y="847.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (2,142,091,218 samples, 89.39%)</title><rect x="116.2" y="821" width="1054.8" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="119.18" y="831.5" >entry_SYSCALL_64</text>
</g>
<g >
<title>standard_ExecutorRun (1,130,609 samples, 0.05%)</title><rect x="1187.0" y="725" width="0.5" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="1189.99" y="735.5" ></text>
</g>
<g >
<title>tick_sched_handle (304,793 samples, 0.01%)</title><rect x="49.8" y="741" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="52.78" y="751.5" ></text>
</g>
<g >
<title>DecodingContextFindStartpoint (314,254 samples, 0.01%)</title><rect x="1187.0" y="565" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="1189.99" y="575.5" ></text>
</g>
<g >
<title>restore_fpregs_from_fpstate (756,649 samples, 0.03%)</title><rect x="193.1" y="757" width="0.4" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="196.10" y="767.5" ></text>
</g>
<g >
<title>perf_swevent_event (1,774,076 samples, 0.07%)</title><rect x="716.3" y="645" width="0.9" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="719.30" y="655.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (15,886,649 samples, 0.66%)</title><rect x="1174.6" y="821" width="7.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1177.57" y="831.5" ></text>
</g>
<g >
<title>call_timer_fn (781,319 samples, 0.03%)</title><rect x="644.6" y="549" width="0.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="647.58" y="559.5" ></text>
</g>
<g >
<title>clockevents_program_event (534,173 samples, 0.02%)</title><rect x="113.9" y="741" width="0.3" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="116.94" y="751.5" ></text>
</g>
<g >
<title>tick_sched_handle (401,251 samples, 0.02%)</title><rect x="59.0" y="757" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="62.03" y="767.5" ></text>
</g>
<g >
<title>rcu_pending (302,462 samples, 0.01%)</title><rect x="1182.4" y="709" width="0.1" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="1185.39" y="719.5" ></text>
</g>
<g >
<title>__smp_call_single_queue (564,454 samples, 0.02%)</title><rect x="616.1" y="437" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="619.11" y="447.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1,163,306 samples, 0.05%)</title><rect x="49.8" y="789" width="0.6" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="52.78" y="799.5" ></text>
</g>
<g >
<title>perf_swevent_event (6,095,190 samples, 0.25%)</title><rect x="1069.7" y="661" width="3.0" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="1072.71" y="671.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (306,030 samples, 0.01%)</title><rect x="1182.9" y="773" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="1185.90" y="783.5" ></text>
</g>
<g >
<title>cfree (248,854 samples, 0.01%)</title><rect x="1187.3" y="533" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="1190.26" y="543.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,709,633 samples, 0.11%)</title><rect x="112.9" y="805" width="1.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="115.87" y="815.5" ></text>
</g>
<g >
<title>task_work_run (235,214 samples, 0.01%)</title><rect x="198.7" y="789" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="201.73" y="799.5" ></text>
</g>
<g >
<title>scheduler_tick (916,389 samples, 0.04%)</title><rect x="1168.3" y="629" width="0.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1171.29" y="639.5" ></text>
</g>
<g >
<title>native_write_msr (298,180 samples, 0.01%)</title><rect x="86.3" y="629" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="89.30" y="639.5" ></text>
</g>
<g >
<title>wake_up_process (781,319 samples, 0.03%)</title><rect x="644.6" y="485" width="0.4" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="647.58" y="495.5" ></text>
</g>
<g >
<title>open64 (359,428 samples, 0.01%)</title><rect x="10.0" y="565" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="13.00" y="575.5" ></text>
</g>
<g >
<title>pick_next_task (345,508 samples, 0.01%)</title><rect x="10.2" y="373" width="0.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="13.18" y="383.5" ></text>
</g>
<g >
<title>update_process_times (1,822,269 samples, 0.08%)</title><rect x="50.4" y="741" width="0.8" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="53.35" y="751.5" ></text>
</g>
<g >
<title>__put_user_8 (7,935,811 samples, 0.33%)</title><rect x="151.7" y="757" width="3.9" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="154.66" y="767.5" ></text>
</g>
<g >
<title>XLogReadDetermineTimeline (16,078,451 samples, 0.67%)</title><rect x="51.3" y="869" width="7.9" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="54.31" y="879.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (347,275 samples, 0.01%)</title><rect x="1149.4" y="693" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1152.40" y="703.5" ></text>
</g>
<g >
<title>PostmasterMain (2,372,309 samples, 0.10%)</title><rect x="1187.0" y="869" width="1.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1189.99" y="879.5" ></text>
</g>
<g >
<title>psi_group_change (99,444,173 samples, 4.15%)</title><rect x="1080.5" y="661" width="49.0" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="1083.52" y="671.5" >psi_..</text>
</g>
<g >
<title>__schedule (1,765,855,464 samples, 73.69%)</title><rect x="277.9" y="693" width="869.6" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="280.89" y="703.5" >__schedule</text>
</g>
<g >
<title>tick_nohz_highres_handler (458,496 samples, 0.02%)</title><rect x="86.2" y="757" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="89.22" y="767.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (2,554,135 samples, 0.11%)</title><rect x="409.8" y="581" width="1.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="412.79" y="591.5" ></text>
</g>
<g >
<title>__run_timers (781,319 samples, 0.03%)</title><rect x="644.6" y="565" width="0.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="647.58" y="575.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (458,496 samples, 0.02%)</title><rect x="86.2" y="789" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="89.22" y="799.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (273,504 samples, 0.01%)</title><rect x="272.5" y="629" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="275.53" y="639.5" ></text>
</g>
<g >
<title>switch_fpu_return (6,178,746 samples, 0.26%)</title><rect x="137.2" y="789" width="3.0" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="140.15" y="799.5" ></text>
</g>
<g >
<title>jbd2_log_wait_commit (345,508 samples, 0.01%)</title><rect x="10.2" y="421" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="13.18" y="431.5" ></text>
</g>
<g >
<title>__tlb_remove_page_size (471,394 samples, 0.02%)</title><rect x="1188.6" y="709" width="0.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="1191.61" y="719.5" ></text>
</g>
<g >
<title>pg_comp_crc32c_sse42 (253,759 samples, 0.01%)</title><rect x="1186.9" y="885" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="1189.86" y="895.5" ></text>
</g>
<g >
<title>scheduler_tick (727,597 samples, 0.03%)</title><rect x="1182.5" y="725" width="0.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1185.54" y="735.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (248,854 samples, 0.01%)</title><rect x="1187.3" y="453" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="1190.26" y="463.5" ></text>
</g>
<g >
<title>check_cfs_rq_runtime (2,669,107 samples, 0.11%)</title><rect x="696.3" y="645" width="1.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="699.25" y="655.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (1,106,977 samples, 0.05%)</title><rect x="1132.5" y="677" width="0.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1135.52" y="687.5" ></text>
</g>
<g >
<title>BasicOpenFilePerm (359,428 samples, 0.01%)</title><rect x="10.0" y="597" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.00" y="607.5" ></text>
</g>
<g >
<title>__default_morecore (248,854 samples, 0.01%)</title><rect x="1187.3" y="501" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="1190.26" y="511.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (573,585 samples, 0.02%)</title><rect x="213.7" y="725" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="216.74" y="735.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (2,138,345 samples, 0.09%)</title><rect x="1151.2" y="725" width="1.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="1154.20" y="735.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (458,496 samples, 0.02%)</title><rect x="86.2" y="773" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="89.22" y="783.5" ></text>
</g>
<g >
<title>do_group_exit (2,818,536 samples, 0.12%)</title><rect x="1188.6" y="869" width="1.4" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="1191.61" y="879.5" ></text>
</g>
<g >
<title>update_process_times (476,282 samples, 0.02%)</title><rect x="175.6" y="613" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="178.58" y="623.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (1,942,822 samples, 0.08%)</title><rect x="462.2" y="517" width="0.9" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="465.18" y="527.5" ></text>
</g>
<g >
<title>update_curr_se (7,503,779 samples, 0.31%)</title><rect x="376.7" y="613" width="3.7" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="379.71" y="623.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (629,724 samples, 0.03%)</title><rect x="59.2" y="677" width="0.3" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="62.23" y="687.5" ></text>
</g>
<g >
<title>native_read_msr (217,959 samples, 0.01%)</title><rect x="21.8" y="629" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="24.85" y="639.5" ></text>
</g>
<g >
<title>timerqueue_add (805,266 samples, 0.03%)</title><rect x="444.5" y="565" width="0.4" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="447.49" y="575.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (14,509,545 samples, 0.61%)</title><rect x="257.7" y="661" width="7.1" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="260.66" y="671.5" ></text>
</g>
<g >
<title>account_process_tick (8,560,592 samples, 0.36%)</title><rect x="449.5" y="533" width="4.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="452.47" y="543.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (400,943 samples, 0.02%)</title><rect x="1168.3" y="549" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1171.32" y="559.5" ></text>
</g>
<g >
<title>nanosleep@plt (7,733,965 samples, 0.32%)</title><rect x="1183.1" y="853" width="3.8" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1186.05" y="863.5" ></text>
</g>
<g >
<title>x64_sys_call (248,854 samples, 0.01%)</title><rect x="1187.3" y="421" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1190.26" y="431.5" ></text>
</g>
<g >
<title>irq_work_tick (1,352,111 samples, 0.06%)</title><rect x="454.7" y="533" width="0.6" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="457.67" y="543.5" ></text>
</g>
<g >
<title>perf_pmu_nop_void (683,070 samples, 0.03%)</title><rect x="602.5" y="501" width="0.4" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" />
<text x="605.52" y="511.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (1,822,269 samples, 0.08%)</title><rect x="50.4" y="789" width="0.8" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="53.35" y="799.5" ></text>
</g>
<g >
<title>native_write_msr (208,855 samples, 0.01%)</title><rect x="213.7" y="549" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="216.74" y="559.5" ></text>
</g>
<g >
<title>cpumask_weight (206,697 samples, 0.01%)</title><rect x="194.0" y="757" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="197.03" y="767.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (306,030 samples, 0.01%)</title><rect x="1182.9" y="757" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1185.90" y="767.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (848,409 samples, 0.04%)</title><rect x="1067.9" y="661" width="0.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1070.86" y="671.5" ></text>
</g>
<g >
<title>_raw_spin_lock (357,361 samples, 0.01%)</title><rect x="461.5" y="517" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="464.47" y="527.5" ></text>
</g>
<g >
<title>pick_next_task_idle (2,904,818 samples, 0.12%)</title><rect x="701.2" y="677" width="1.4" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="704.20" y="687.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (358,059 samples, 0.01%)</title><rect x="1147.5" y="693" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1150.45" y="703.5" ></text>
</g>
<g >
<title>amd_pmu_addr_offset (4,468,518 samples, 0.19%)</title><rect x="734.6" y="581" width="2.2" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="737.56" y="591.5" ></text>
</g>
<g >
<title>__update_load_avg_se (2,255,740 samples, 0.09%)</title><rect x="613.4" y="485" width="1.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="616.39" y="495.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (390,243 samples, 0.02%)</title><rect x="214.9" y="533" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="217.91" y="543.5" ></text>
</g>
<g >
<title>do_filp_open (359,428 samples, 0.01%)</title><rect x="10.0" y="469" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="13.00" y="479.5" ></text>
</g>
<g >
<title>rcu_note_context_switch (911,767 samples, 0.04%)</title><rect x="1149.6" y="693" width="0.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="1152.57" y="703.5" ></text>
</g>
<g >
<title>tick_program_event (222,175 samples, 0.01%)</title><rect x="641.4" y="613" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="644.44" y="623.5" ></text>
</g>
<g >
<title>update_curr (6,395,753 samples, 0.27%)</title><rect x="608.0" y="501" width="3.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="611.04" y="511.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (795,811 samples, 0.03%)</title><rect x="614.5" y="453" width="0.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="617.50" y="463.5" ></text>
</g>
<g >
<title>update_process_times (401,251 samples, 0.02%)</title><rect x="59.0" y="741" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="62.03" y="751.5" ></text>
</g>
<g >
<title>update_blocked_averages (1,321,821 samples, 0.06%)</title><rect x="690.9" y="629" width="0.7" height="15.0" fill="rgb(240,163,38)" rx="2" ry="2" />
<text x="693.91" y="639.5" ></text>
</g>
<g >
<title>___perf_sw_event (742,787 samples, 0.03%)</title><rect x="283.4" y="677" width="0.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="286.43" y="687.5" ></text>
</g>
<g >
<title>handle_softirqs (6,699,410 samples, 0.28%)</title><rect x="641.7" y="597" width="3.3" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="644.67" y="607.5" ></text>
</g>
<g >
<title>finish_xact_command (312,465 samples, 0.01%)</title><rect x="1187.5" y="741" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1190.54" y="751.5" ></text>
</g>
<g >
<title>retbleed_untrain_ret (250,161 samples, 0.01%)</title><rect x="701.1" y="645" width="0.1" height="15.0" fill="rgb(210,25,5)" rx="2" ry="2" />
<text x="704.08" y="655.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (390,243 samples, 0.02%)</title><rect x="214.9" y="709" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="217.91" y="719.5" ></text>
</g>
<g >
<title>do_sys_openat2 (359,428 samples, 0.01%)</title><rect x="10.0" y="485" width="0.2" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text x="13.00" y="495.5" ></text>
</g>
<g >
<title>newidle_balance (63,869,908 samples, 2.67%)</title><rect x="660.1" y="645" width="31.5" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="663.11" y="655.5" >ne..</text>
</g>
<g >
<title>_raw_spin_lock (1,145,160 samples, 0.05%)</title><rect x="285.2" y="677" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="288.17" y="687.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (1,822,269 samples, 0.08%)</title><rect x="50.4" y="773" width="0.8" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="53.35" y="783.5" ></text>
</g>
<g >
<title>schedule (345,508 samples, 0.01%)</title><rect x="10.2" y="405" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="13.18" y="415.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (5,425,236 samples, 0.23%)</title><rect x="1144.1" y="597" width="2.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1147.07" y="607.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (390,243 samples, 0.02%)</title><rect x="214.9" y="661" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="217.91" y="671.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode_prepare (4,662,718 samples, 0.19%)</title><rect x="196.4" y="789" width="2.3" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="199.44" y="799.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (248,854 samples, 0.01%)</title><rect x="1187.3" y="181" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="1190.26" y="191.5" ></text>
</g>
<g >
<title>tick_sched_handle (357,569 samples, 0.01%)</title><rect x="131.7" y="693" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="134.68" y="703.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (239,088 samples, 0.01%)</title><rect x="184.7" y="741" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="187.69" y="751.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (358,890 samples, 0.01%)</title><rect x="452.1" y="469" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="455.06" y="479.5" ></text>
</g>
<g >
<title>lapic_next_event (269,631 samples, 0.01%)</title><rect x="113.9" y="725" width="0.2" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="116.94" y="735.5" ></text>
</g>
<g >
<title>tick_program_event (404,212 samples, 0.02%)</title><rect x="272.3" y="613" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="275.33" y="623.5" ></text>
</g>
<g >
<title>entry_SYSRETQ_unsafe_stack (716,926 samples, 0.03%)</title><rect x="1171.0" y="821" width="0.4" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1174.02" y="831.5" ></text>
</g>
<g >
<title>update_dl_rq_load_avg (240,759 samples, 0.01%)</title><rect x="691.3" y="613" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="694.31" y="623.5" ></text>
</g>
<g >
<title>x86_pmu_disable (1,278,645 samples, 0.05%)</title><rect x="50.5" y="677" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="53.53" y="687.5" ></text>
</g>
<g >
<title>postmaster_child_launch (704,936 samples, 0.03%)</title><rect x="10.0" y="885" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="13.00" y="895.5" ></text>
</g>
<g >
<title>load_balance (3,242,656 samples, 0.14%)</title><rect x="689.3" y="629" width="1.6" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="692.31" y="639.5" ></text>
</g>
<g >
<title>__fput (587,802 samples, 0.02%)</title><rect x="1189.7" y="805" width="0.3" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="1192.71" y="815.5" ></text>
</g>
<g >
<title>account_system_time (6,748,067 samples, 0.28%)</title><rect x="450.4" y="517" width="3.3" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="453.36" y="527.5" ></text>
</g>
<g >
<title>pick_next_task (114,150,033 samples, 4.76%)</title><rect x="645.0" y="677" width="56.2" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="647.99" y="687.5" >pick_..</text>
</g>
<g >
<title>ReorderBufferCleanupSerializedTXNs (241,604 samples, 0.01%)</title><rect x="1187.1" y="549" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1190.14" y="559.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (1,451,807 samples, 0.06%)</title><rect x="113.2" y="629" width="0.7" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="116.23" y="639.5" ></text>
</g>
<g >
<title>x86_pmu_disable (252,514,991 samples, 10.54%)</title><rect x="478.2" y="485" width="124.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="481.17" y="495.5" >x86_pmu_disable</text>
</g>
<g >
<title>task_tick_fair (218,152 samples, 0.01%)</title><rect x="621.7" y="533" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="624.72" y="543.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (373,292 samples, 0.02%)</title><rect x="628.8" y="565" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="631.84" y="575.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (551,320 samples, 0.02%)</title><rect x="131.6" y="725" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="134.59" y="735.5" ></text>
</g>
<g >
<title>__libc_start_main (2,372,309 samples, 0.10%)</title><rect x="1187.0" y="917" width="1.2" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="1189.99" y="927.5" ></text>
</g>
<g >
<title>pg_create_logical_replication_slot (704,936 samples, 0.03%)</title><rect x="10.0" y="661" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="13.00" y="671.5" ></text>
</g>
<g >
<title>update_load_avg (7,222,726 samples, 0.30%)</title><rect x="611.3" y="501" width="3.6" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="614.34" y="511.5" ></text>
</g>
<g >
<title>update_process_times (1,631,804 samples, 0.07%)</title><rect x="113.1" y="709" width="0.8" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="116.14" y="719.5" ></text>
</g>
<g >
<title>update_curr_se (682,821 samples, 0.03%)</title><rect x="610.9" y="485" width="0.3" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="613.85" y="495.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (209,963 samples, 0.01%)</title><rect x="369.3" y="613" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="372.27" y="623.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (390,243 samples, 0.02%)</title><rect x="214.9" y="645" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="217.91" y="655.5" ></text>
</g>
<g >
<title>lapic_next_event (567,384 samples, 0.02%)</title><rect x="641.1" y="581" width="0.3" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="644.07" y="591.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (929,235 samples, 0.04%)</title><rect x="1187.7" y="725" width="0.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1190.70" y="735.5" ></text>
</g>
<g >
<title>scheduler_tick (217,959 samples, 0.01%)</title><rect x="21.8" y="725" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="24.85" y="735.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (1,670,487 samples, 0.07%)</title><rect x="267.7" y="693" width="0.8" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="270.66" y="703.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (217,959 samples, 0.01%)</title><rect x="21.8" y="661" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="24.85" y="671.5" ></text>
</g>
<g >
<title>timerqueue_add (311,246 samples, 0.01%)</title><rect x="113.0" y="725" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="115.99" y="735.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (401,251 samples, 0.02%)</title><rect x="59.0" y="821" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="62.03" y="831.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (674,630 samples, 0.03%)</title><rect x="621.3" y="437" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="624.34" y="447.5" ></text>
</g>
<g >
<title>rb_insert_color (15,314,418 samples, 0.64%)</title><rect x="233.2" y="661" width="7.5" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="236.19" y="671.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (358,059 samples, 0.01%)</title><rect x="1147.5" y="629" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1150.45" y="639.5" ></text>
</g>
<g >
<title>acct_account_cputime (474,554 samples, 0.02%)</title><rect x="453.4" y="501" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="456.45" y="511.5" ></text>
</g>
<g >
<title>native_apic_msr_write (264,542 samples, 0.01%)</title><rect x="114.1" y="725" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="117.08" y="735.5" ></text>
</g>
<g >
<title>x86_pmu_disable (248,854 samples, 0.01%)</title><rect x="1187.3" y="85" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1190.26" y="95.5" ></text>
</g>
<g >
<title>ktime_get (3,477,534 samples, 0.15%)</title><rect x="627.1" y="565" width="1.7" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="630.13" y="575.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (2,089,736 samples, 0.09%)</title><rect x="409.9" y="565" width="1.0" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="412.89" y="575.5" ></text>
</g>
<g >
<title>put_prev_entity (7,136,042 samples, 0.30%)</title><rect x="697.6" y="645" width="3.5" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="700.57" y="655.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (390,243 samples, 0.02%)</title><rect x="214.9" y="677" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="217.91" y="687.5" ></text>
</g>
<g >
<title>__calc_delta.constprop.0 (434,249 samples, 0.02%)</title><rect x="604.6" y="501" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="607.60" y="511.5" ></text>
</g>
<g >
<title>[libstdc++.so.6.0.33] (465,645 samples, 0.02%)</title><rect x="1187.7" y="693" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1190.70" y="703.5" ></text>
</g>
<g >
<title>x86_pmu_disable (401,251 samples, 0.02%)</title><rect x="59.0" y="677" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="62.03" y="687.5" ></text>
</g>
<g >
<title>sched_clock (877,949 samples, 0.04%)</title><rect x="621.2" y="485" width="0.5" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="624.24" y="495.5" ></text>
</g>
<g >
<title>profile_tick (588,413 samples, 0.02%)</title><rect x="445.6" y="565" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="448.62" y="575.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (3,035,471 samples, 0.13%)</title><rect x="689.3" y="597" width="1.5" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="692.31" y="607.5" ></text>
</g>
<g >
<title>sched_clock (250,889 samples, 0.01%)</title><rect x="691.4" y="581" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="694.43" y="591.5" ></text>
</g>
<g >
<title>SaveSlotToPath (704,936 samples, 0.03%)</title><rect x="10.0" y="629" width="0.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="13.00" y="639.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (1,030,059 samples, 0.04%)</title><rect x="1182.4" y="789" width="0.5" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1185.39" y="799.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (916,389 samples, 0.04%)</title><rect x="1168.3" y="693" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1171.29" y="703.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (30,031,626 samples, 1.25%)</title><rect x="1113.8" y="597" width="14.8" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="1116.82" y="607.5" ></text>
</g>
<g >
<title>update_process_times (248,854 samples, 0.01%)</title><rect x="1187.3" y="149" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1190.26" y="159.5" ></text>
</g>
<g >
<title>update_process_times (390,243 samples, 0.02%)</title><rect x="214.9" y="613" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="217.91" y="623.5" ></text>
</g>
<g >
<title>tick_sched_handle (358,059 samples, 0.01%)</title><rect x="1147.5" y="597" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1150.45" y="607.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (239,088 samples, 0.01%)</title><rect x="184.7" y="725" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="187.69" y="735.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (360,817,920 samples, 15.06%)</title><rect x="445.0" y="581" width="177.7" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="448.03" y="591.5" >tick_nohz_highres_handler</text>
</g>
<g >
<title>x86_pmu_disable_all (357,569 samples, 0.01%)</title><rect x="131.7" y="581" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="134.68" y="591.5" ></text>
</g>
<g >
<title>sched_clock_cpu (673,724 samples, 0.03%)</title><rect x="1137.1" y="677" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1140.14" y="687.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (1,445,239 samples, 0.06%)</title><rect x="612.7" y="485" width="0.7" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="615.68" y="495.5" ></text>
</g>
<g >
<title>x64_sys_call (1,969,594,614 samples, 82.19%)</title><rect x="198.8" y="789" width="969.9" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="201.85" y="799.5" >x64_sys_call</text>
</g>
<g >
<title>sched_clock_noinstr (6,747,031 samples, 0.28%)</title><rect x="1143.7" y="629" width="3.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1146.71" y="639.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (239,088 samples, 0.01%)</title><rect x="184.7" y="709" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="187.69" y="719.5" ></text>
</g>
<g >
<title>rcu_sched_clock_irq (5,401,186 samples, 0.23%)</title><rect x="455.8" y="533" width="2.7" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="458.81" y="543.5" ></text>
</g>
<g >
<title>native_read_msr (437,488,814 samples, 18.26%)</title><rect x="848.6" y="565" width="215.4" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="851.58" y="575.5" >native_read_msr</text>
</g>
<g >
<title>[libc.so.6] (929,235 samples, 0.04%)</title><rect x="1187.7" y="741" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1190.70" y="751.5" ></text>
</g>
<g >
<title>native_read_msr (1,174,569 samples, 0.05%)</title><rect x="271.6" y="453" width="0.6" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="274.62" y="463.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (266,143 samples, 0.01%)</title><rect x="1186.7" y="757" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="1189.73" y="767.5" ></text>
</g>
<g >
<title>ExecProcNode (704,936 samples, 0.03%)</title><rect x="10.0" y="757" width="0.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="13.00" y="767.5" ></text>
</g>
<g >
<title>common_nsleep (1,906,510,263 samples, 79.56%)</title><rect x="214.0" y="757" width="938.9" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="217.03" y="767.5" >common_nsleep</text>
</g>
<g >
<title>update_load_avg (57,586,057 samples, 2.40%)</title><rect x="382.7" y="629" width="28.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="385.69" y="639.5" >up..</text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (910,041 samples, 0.04%)</title><rect x="225.8" y="709" width="0.4" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="228.77" y="719.5" ></text>
</g>
<g >
<title>clockevents_program_event (436,953 samples, 0.02%)</title><rect x="50.1" y="757" width="0.3" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="53.14" y="767.5" ></text>
</g>
<g >
<title>PostgresMain (2,372,309 samples, 0.10%)</title><rect x="1187.0" y="789" width="1.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1189.99" y="799.5" ></text>
</g>
<g >
<title>native_write_msr (344,215 samples, 0.01%)</title><rect x="113.2" y="613" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="116.23" y="623.5" ></text>
</g>
<g >
<title>sched_clock (7,923,389 samples, 0.33%)</title><rect x="1143.1" y="645" width="3.9" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="1146.13" y="655.5" ></text>
</g>
<g >
<title>native_write_msr (305,350 samples, 0.01%)</title><rect x="59.2" y="661" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="62.23" y="671.5" ></text>
</g>
<g >
<title>generic_exec_single (564,454 samples, 0.02%)</title><rect x="616.1" y="453" width="0.3" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="619.11" y="463.5" ></text>
</g>
<g >
<title>do_exit (2,818,536 samples, 0.12%)</title><rect x="1188.6" y="853" width="1.4" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1191.61" y="863.5" ></text>
</g>
<g >
<title>tick_sched_handle (458,496 samples, 0.02%)</title><rect x="86.2" y="741" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="89.22" y="751.5" ></text>
</g>
<g >
<title>update_blocked_averages (4,957,096 samples, 0.21%)</title><rect x="642.0" y="565" width="2.5" height="15.0" fill="rgb(240,163,38)" rx="2" ry="2" />
<text x="645.02" y="575.5" ></text>
</g>
<g >
<title>update_process_times (556,354 samples, 0.02%)</title><rect x="213.7" y="645" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="216.74" y="655.5" ></text>
</g>
<g >
<title>ExecInterpExpr (804,712 samples, 0.03%)</title><rect x="1187.0" y="613" width="0.4" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text x="1189.99" y="623.5" ></text>
</g>
<g >
<title>tick_sched_handle (476,282 samples, 0.02%)</title><rect x="175.6" y="629" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="178.58" y="639.5" ></text>
</g>
<g >
<title>perf_event_task_tick (727,597 samples, 0.03%)</title><rect x="1182.5" y="709" width="0.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="1185.54" y="719.5" ></text>
</g>
<g >
<title>__hrtimer_init (555,153 samples, 0.02%)</title><rect x="214.4" y="741" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="217.36" y="751.5" ></text>
</g>
<g >
<title>hrtimer_run_queues (254,345 samples, 0.01%)</title><rect x="447.0" y="549" width="0.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="449.99" y="559.5" ></text>
</g>
<g >
<title>perf_event_task_tick (467,425 samples, 0.02%)</title><rect x="1168.3" y="613" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="1171.29" y="623.5" ></text>
</g>
<g >
<title>native_write_msr (269,631 samples, 0.01%)</title><rect x="113.9" y="709" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="116.94" y="719.5" ></text>
</g>
<g >
<title>__hrtimer_init (8,512,867 samples, 0.36%)</title><rect x="219.6" y="725" width="4.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="222.58" y="735.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (476,282 samples, 0.02%)</title><rect x="175.6" y="677" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="178.58" y="687.5" ></text>
</g>
<g >
<title>psi_task_switch (681,664 samples, 0.03%)</title><rect x="1149.1" y="693" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1152.07" y="703.5" ></text>
</g>
<g >
<title>native_read_msr (1,107,592 samples, 0.05%)</title><rect x="113.4" y="597" width="0.5" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="116.40" y="607.5" ></text>
</g>
<g >
<title>avg_vruntime (2,124,571 samples, 0.09%)</title><rect x="308.2" y="645" width="1.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="311.24" y="655.5" ></text>
</g>
<g >
<title>unmap_page_range (2,230,734 samples, 0.09%)</title><rect x="1188.6" y="741" width="1.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1191.61" y="751.5" ></text>
</g>
<g >
<title>clock_nanosleep (2,225,570,651 samples, 92.88%)</title><rect x="86.4" y="837" width="1096.0" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="89.45" y="847.5" >clock_nanosleep</text>
</g>
<g >
<title>timerqueue_add (231,720 samples, 0.01%)</title><rect x="622.8" y="581" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="625.83" y="591.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,121,006,132 samples, 88.51%)</title><rect x="124.3" y="805" width="1044.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="127.29" y="815.5" >do_syscall_64</text>
</g>
<g >
<title>perf_event_task_tick (667,500 samples, 0.03%)</title><rect x="455.3" y="533" width="0.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="458.34" y="543.5" ></text>
</g>
<g >
<title>schedule_debug.isra.0 (7,586,812 samples, 0.32%)</title><rect x="1137.5" y="677" width="3.7" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1140.47" y="687.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (13,760,658 samples, 0.57%)</title><rect x="258.0" y="645" width="6.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="261.02" y="655.5" ></text>
</g>
<g >
<title>perf_event_task_tick (266,143 samples, 0.01%)</title><rect x="1186.7" y="693" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="1189.73" y="703.5" ></text>
</g>
<g >
<title>tlb_flush_mmu (586,473 samples, 0.02%)</title><rect x="1189.4" y="693" width="0.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="1192.42" y="703.5" ></text>
</g>
<g >
<title>__schedule (345,508 samples, 0.01%)</title><rect x="10.2" y="389" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="13.18" y="399.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (358,059 samples, 0.01%)</title><rect x="1147.5" y="661" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1150.45" y="671.5" ></text>
</g>
<g >
<title>__calc_delta.constprop.0 (913,071 samples, 0.04%)</title><rect x="609.9" y="485" width="0.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="612.95" y="495.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (1,278,645 samples, 0.05%)</title><rect x="50.5" y="645" width="0.7" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="53.53" y="655.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (404,455,050 samples, 16.88%)</title><rect x="442.4" y="629" width="199.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="445.39" y="639.5" >__sysvec_apic_timer_interr..</text>
</g>
<g >
<title>rcu_note_context_switch (8,077,004 samples, 0.34%)</title><rect x="1133.1" y="677" width="3.9" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="1136.06" y="687.5" ></text>
</g>
<g >
<title>__rcu_read_lock (1,494,271 samples, 0.06%)</title><rect x="717.7" y="645" width="0.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="720.67" y="655.5" ></text>
</g>
<g >
<title>update_process_times (916,389 samples, 0.04%)</title><rect x="1168.3" y="645" width="0.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1171.29" y="655.5" ></text>
</g>
<g >
<title>update_curr (211,206 samples, 0.01%)</title><rect x="620.3" y="517" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="623.32" y="527.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,336,089 samples, 0.06%)</title><rect x="1182.4" y="853" width="0.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1185.39" y="863.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (357,569 samples, 0.01%)</title><rect x="131.7" y="629" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="134.68" y="639.5" ></text>
</g>
<g >
<title>exec_simple_query (1,443,074 samples, 0.06%)</title><rect x="1187.0" y="773" width="0.7" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="1189.99" y="783.5" ></text>
</g>
<g >
<title>XLogReaderFree (248,854 samples, 0.01%)</title><rect x="1187.3" y="549" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1190.26" y="559.5" ></text>
</g>
<g >
<title>native_write_msr (212,515 samples, 0.01%)</title><rect x="271.5" y="469" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="274.52" y="479.5" ></text>
</g>
<g >
<title>pick_next_task_fair (77,079,099 samples, 3.22%)</title><rect x="653.6" y="661" width="38.0" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="656.60" y="671.5" >pic..</text>
</g>
<g >
<title>idle_cpu (598,671 samples, 0.02%)</title><rect x="690.5" y="565" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="693.51" y="575.5" ></text>
</g>
<g >
<title>exec_simple_query (704,936 samples, 0.03%)</title><rect x="10.0" y="837" width="0.3" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="13.00" y="847.5" ></text>
</g>
<g >
<title>perf_exclude_event (1,605,436 samples, 0.07%)</title><rect x="715.5" y="645" width="0.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="718.51" y="655.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (347,499 samples, 0.01%)</title><rect x="213.8" y="549" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="216.85" y="559.5" ></text>
</g>
<g >
<title>finish_xact_command (312,465 samples, 0.01%)</title><rect x="1187.5" y="757" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1190.54" y="767.5" ></text>
</g>
<g >
<title>RecoveryInProgress (59,493,381 samples, 2.48%)</title><rect x="22.0" y="869" width="29.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="24.95" y="879.5" >Re..</text>
</g>
<g >
<title>__hrtimer_next_event_base (1,773,598 samples, 0.07%)</title><rect x="623.8" y="581" width="0.9" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="626.79" y="591.5" ></text>
</g>
<g >
<title>free_pages_and_swap_cache (586,473 samples, 0.02%)</title><rect x="1189.4" y="661" width="0.3" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1192.42" y="671.5" ></text>
</g>
<g >
<title>ExecProject (804,712 samples, 0.03%)</title><rect x="1187.0" y="661" width="0.4" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="1189.99" y="671.5" ></text>
</g>
<g >
<title>x64_sys_call (3,571,245 samples, 0.15%)</title><rect x="1169.3" y="805" width="1.7" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1172.26" y="815.5" ></text>
</g>
<g >
<title>__update_blocked_fair (4,261,536 samples, 0.18%)</title><rect x="642.1" y="549" width="2.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="645.09" y="559.5" ></text>
</g>
<g >
<title>__calc_delta.constprop.0 (6,630,956 samples, 0.28%)</title><rect x="326.3" y="629" width="3.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="329.35" y="639.5" ></text>
</g>
<g >
<title>trace_ma_write (248,854 samples, 0.01%)</title><rect x="1187.3" y="277" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="1190.26" y="287.5" ></text>
</g>
<g >
<title>native_write_msr (337,041 samples, 0.01%)</title><rect x="1182.5" y="645" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1185.54" y="655.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (248,854 samples, 0.01%)</title><rect x="1187.3" y="101" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="1190.26" y="111.5" ></text>
</g>
<g >
<title>__sbrk (248,854 samples, 0.01%)</title><rect x="1187.3" y="485" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="1190.26" y="495.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (551,320 samples, 0.02%)</title><rect x="131.6" y="741" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="134.59" y="751.5" ></text>
</g>
<g >
<title>update_curr_se (298,337 samples, 0.01%)</title><rect x="611.2" y="501" width="0.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="614.19" y="511.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (345,508 samples, 0.01%)</title><rect x="10.2" y="549" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="13.18" y="559.5" ></text>
</g>
<g >
<title>scheduler_tick (1,735,723 samples, 0.07%)</title><rect x="50.4" y="725" width="0.8" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="53.39" y="735.5" ></text>
</g>
<g >
<title>prepare_task_switch (424,385 samples, 0.02%)</title><rect x="1148.9" y="693" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1151.86" y="703.5" ></text>
</g>
<g >
<title>arch_scale_freq_tick (664,725 samples, 0.03%)</title><rect x="461.6" y="517" width="0.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="464.65" y="527.5" ></text>
</g>
<g >
<title>update_curr (86,815,696 samples, 3.62%)</title><rect x="339.8" y="629" width="42.8" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="342.82" y="639.5" >upda..</text>
</g>
<g >
<title>hrtimer_interrupt (504,469 samples, 0.02%)</title><rect x="21.7" y="805" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="24.70" y="815.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (669,020,421 samples, 27.92%)</title><rect x="734.6" y="597" width="329.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="737.56" y="607.5" >amd_pmu_disable_all</text>
</g>
<g >
<title>mem_cgroup_handle_over_high (1,331,688 samples, 0.06%)</title><rect x="136.3" y="789" width="0.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="139.26" y="799.5" ></text>
</g>
<g >
<title>vma_complete (248,854 samples, 0.01%)</title><rect x="1187.3" y="341" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="1190.26" y="351.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (260,796 samples, 0.01%)</title><rect x="453.2" y="485" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="456.15" y="495.5" ></text>
</g>
<g >
<title>update_rt_rq_load_avg (243,482 samples, 0.01%)</title><rect x="644.5" y="565" width="0.1" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="647.46" y="575.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (401,251 samples, 0.02%)</title><rect x="59.0" y="789" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="62.03" y="799.5" ></text>
</g>
<g >
<title>ServerLoop (704,936 samples, 0.03%)</title><rect x="10.0" y="917" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="13.00" y="927.5" ></text>
</g>
<g >
<title>ExecInterpExpr (704,936 samples, 0.03%)</title><rect x="10.0" y="677" width="0.3" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text x="13.00" y="687.5" ></text>
</g>
<g >
<title>ReplicationSlotSave (704,936 samples, 0.03%)</title><rect x="10.0" y="645" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="13.00" y="655.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,163,306 samples, 0.05%)</title><rect x="49.8" y="821" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="52.78" y="831.5" ></text>
</g>
<g >
<title>do_syscall_64 (345,508 samples, 0.01%)</title><rect x="10.2" y="533" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="13.18" y="543.5" ></text>
</g>
<g >
<title>rseq_get_rseq_cs (1,614,528 samples, 0.07%)</title><rect x="176.0" y="741" width="0.8" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="179.00" y="751.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (739,576 samples, 0.03%)</title><rect x="59.2" y="853" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="62.23" y="863.5" ></text>
</g>
<g >
<title>do_vmi_align_munmap (248,854 samples, 0.01%)</title><rect x="1187.3" y="373" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1190.26" y="383.5" ></text>
</g>
<g >
<title>scheduler_tick (239,088 samples, 0.01%)</title><rect x="184.7" y="613" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="187.69" y="623.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (4,311,656 samples, 0.18%)</title><rect x="268.6" y="693" width="2.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="271.56" y="703.5" ></text>
</g>
<g >
<title>create_logical_replication_slot (804,712 samples, 0.03%)</title><rect x="1187.0" y="581" width="0.4" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="1189.99" y="591.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (347,847 samples, 0.01%)</title><rect x="610.4" y="485" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="613.40" y="495.5" ></text>
</g>
<g >
<title>tick_sched_handle (629,724 samples, 0.03%)</title><rect x="59.2" y="773" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="62.23" y="783.5" ></text>
</g>
<g >
<title>prepare_task_switch (751,520,961 samples, 31.36%)</title><rect x="702.6" y="677" width="370.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="705.63" y="687.5" >prepare_task_switch</text>
</g>
<g >
<title>sched_clock_noinstr (877,949 samples, 0.04%)</title><rect x="621.2" y="469" width="0.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="624.24" y="479.5" ></text>
</g>
<g >
<title>__x86_indirect_thunk_array (302,359 samples, 0.01%)</title><rect x="626.9" y="581" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="629.95" y="591.5" ></text>
</g>
<g >
<title>update_process_times (353,858,663 samples, 14.77%)</title><rect x="448.5" y="549" width="174.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="451.46" y="559.5" >update_process_times</text>
</g>
<g >
<title>__cgroup_account_cputime (5,724,863 samples, 0.24%)</title><rect x="366.4" y="613" width="2.9" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="369.45" y="623.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (916,389 samples, 0.04%)</title><rect x="1168.3" y="725" width="0.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1171.29" y="735.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (648,159 samples, 0.03%)</title><rect x="175.6" y="725" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="178.58" y="735.5" ></text>
</g>
<g >
<title>lapic_next_event (24,032,550 samples, 1.00%)</title><rect x="629.0" y="565" width="11.9" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="632.02" y="575.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (1,293,952 samples, 0.05%)</title><rect x="368.6" y="597" width="0.7" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="371.63" y="607.5" ></text>
</g>
<g >
<title>psi_flags_change (648,389 samples, 0.03%)</title><rect x="1072.7" y="677" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1075.71" y="687.5" ></text>
</g>
<g >
<title>task_tick_fair (266,873 samples, 0.01%)</title><rect x="272.2" y="533" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="275.20" y="543.5" ></text>
</g>
<g >
<title>handle_mm_fault (463,590 samples, 0.02%)</title><rect x="1187.9" y="645" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1190.93" y="655.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (250,889 samples, 0.01%)</title><rect x="691.4" y="565" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="694.43" y="575.5" ></text>
</g>
<g >
<title>_raw_spin_lock (395,339 samples, 0.02%)</title><rect x="463.3" y="501" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="466.27" y="511.5" ></text>
</g>
<g >
<title>update_load_avg (266,873 samples, 0.01%)</title><rect x="272.2" y="517" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="275.20" y="527.5" ></text>
</g>
<g >
<title>_find_next_and_bit (257,761 samples, 0.01%)</title><rect x="615.9" y="485" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="618.94" y="495.5" ></text>
</g>
<g >
<title>[unknown] (2,390,142,200 samples, 99.74%)</title><rect x="10.0" y="933" width="1177.0" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="943.5" >[unknown]</text>
</g>
<g >
<title>clockevents_program_event (404,212 samples, 0.02%)</title><rect x="272.3" y="597" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="275.33" y="607.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (1,081,164 samples, 0.05%)</title><rect x="1067.3" y="661" width="0.6" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1070.33" y="671.5" ></text>
</g>
<g >
<title>__update_load_avg_se (677,003 samples, 0.03%)</title><rect x="604.9" y="501" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="607.89" y="511.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (250,889 samples, 0.01%)</title><rect x="691.4" y="549" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="694.43" y="559.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (157,059,165 samples, 6.55%)</title><rect x="525.2" y="453" width="77.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="528.18" y="463.5" >x86_pmu_..</text>
</g>
<g >
<title>sched_clock_tick (615,372 samples, 0.03%)</title><rect x="458.8" y="533" width="0.3" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="461.77" y="543.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (916,389 samples, 0.04%)</title><rect x="1168.3" y="709" width="0.4" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1171.29" y="719.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (551,320 samples, 0.02%)</title><rect x="131.6" y="757" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="134.59" y="767.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (1,328,815 samples, 0.06%)</title><rect x="444.2" y="581" width="0.7" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="447.24" y="591.5" ></text>
</g>
<g >
<title>update_process_times (357,569 samples, 0.01%)</title><rect x="131.7" y="677" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="134.68" y="687.5" ></text>
</g>
<g >
<title>check_cpu_stall (1,631,577 samples, 0.07%)</title><rect x="457.5" y="501" width="0.8" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="460.48" y="511.5" ></text>
</g>
<g >
<title>___perf_sw_event (20,392,628 samples, 0.85%)</title><rect x="707.1" y="661" width="10.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="710.13" y="671.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (1,030,059 samples, 0.04%)</title><rect x="1182.4" y="773" width="0.5" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="1185.39" y="783.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (216,780 samples, 0.01%)</title><rect x="225.7" y="709" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="228.66" y="719.5" ></text>
</g>
<g >
<title>ktime_get (2,051,444 samples, 0.09%)</title><rect x="273.7" y="693" width="1.0" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="276.69" y="703.5" ></text>
</g>
<g >
<title>task_work_run (587,802 samples, 0.02%)</title><rect x="1189.7" y="837" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1192.71" y="847.5" ></text>
</g>
<g >
<title>do_user_addr_fault (463,590 samples, 0.02%)</title><rect x="1187.9" y="661" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1190.93" y="671.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (739,576 samples, 0.03%)</title><rect x="59.2" y="837" width="0.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="62.23" y="847.5" ></text>
</g>
<g >
<title>printtup_prepare_info (325,897 samples, 0.01%)</title><rect x="1187.4" y="677" width="0.1" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="1190.38" y="687.5" ></text>
</g>
<g >
<title>jbd2_complete_transaction (345,508 samples, 0.01%)</title><rect x="10.2" y="437" width="0.1" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="13.18" y="447.5" ></text>
</g>
<g >
<title>scheduler_tick (401,251 samples, 0.02%)</title><rect x="59.0" y="725" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="62.03" y="735.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (248,854 samples, 0.01%)</title><rect x="1187.3" y="53" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1190.26" y="63.5" ></text>
</g>
<g >
<title>exit_mm (2,230,734 samples, 0.09%)</title><rect x="1188.6" y="837" width="1.1" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="1191.61" y="847.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (324,374 samples, 0.01%)</title><rect x="59.4" y="661" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="62.38" y="671.5" ></text>
</g>
<g >
<title>perf_event_task_tick (556,354 samples, 0.02%)</title><rect x="213.7" y="613" width="0.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="216.74" y="623.5" ></text>
</g>
<g >
<title>vfs_fsync_range (345,508 samples, 0.01%)</title><rect x="10.2" y="485" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="13.18" y="495.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (311,246 samples, 0.01%)</title><rect x="113.0" y="741" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="115.99" y="751.5" ></text>
</g>
<g >
<title>tick_sched_handle (1,631,804 samples, 0.07%)</title><rect x="113.1" y="725" width="0.8" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="116.14" y="735.5" ></text>
</g>
<g >
<title>note_gp_changes (380,421 samples, 0.02%)</title><rect x="641.7" y="565" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="644.71" y="575.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (266,143 samples, 0.01%)</title><rect x="1186.7" y="837" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1189.73" y="847.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (401,251 samples, 0.02%)</title><rect x="59.0" y="773" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="62.03" y="783.5" ></text>
</g>
<g >
<title>native_write_msr (94,335,953 samples, 3.94%)</title><rect x="478.7" y="453" width="46.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="481.73" y="463.5" >nati..</text>
</g>
<g >
<title>scheduler_tick (266,143 samples, 0.01%)</title><rect x="1186.7" y="709" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1189.73" y="719.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (916,389 samples, 0.04%)</title><rect x="1168.3" y="741" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1171.29" y="751.5" ></text>
</g>
<g >
<title>LogicalDecodingProcessRecord (314,254 samples, 0.01%)</title><rect x="1187.0" y="549" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1189.99" y="559.5" ></text>
</g>
<g >
<title>perf_event_task_tick (1,387,084 samples, 0.06%)</title><rect x="271.5" y="533" width="0.7" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="274.52" y="543.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (458,496 samples, 0.02%)</title><rect x="86.2" y="805" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="89.22" y="815.5" ></text>
</g>
<g >
<title>tick_sched_handle (217,959 samples, 0.01%)</title><rect x="21.8" y="757" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="24.85" y="767.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (704,936 samples, 0.03%)</title><rect x="10.0" y="789" width="0.3" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="13.00" y="799.5" ></text>
</g>
<g >
<title>sched_clock (795,811 samples, 0.03%)</title><rect x="614.5" y="469" width="0.4" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="617.50" y="479.5" ></text>
</g>
<g >
<title>count_memcg_events.constprop.0 (463,590 samples, 0.02%)</title><rect x="1187.9" y="629" width="0.3" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="1190.93" y="639.5" ></text>
</g>
<g >
<title>task_tick_fair (24,681,687 samples, 1.03%)</title><rect x="603.4" y="517" width="12.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="606.40" y="527.5" ></text>
</g>
<g >
<title>__update_load_avg_se (958,811 samples, 0.04%)</title><rect x="330.3" y="629" width="0.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="333.31" y="639.5" ></text>
</g>
<g >
<title>task_work_run (6,012,104 samples, 0.25%)</title><rect x="193.5" y="773" width="2.9" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="196.48" y="783.5" ></text>
</g>
<g >
<title>get_nohz_timer_target (4,951,500 samples, 0.21%)</title><rect x="249.9" y="677" width="2.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="252.94" y="687.5" ></text>
</g>
<g >
<title>psi_group_change (1,306,212 samples, 0.05%)</title><rect x="1073.0" y="677" width="0.7" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="1076.03" y="687.5" ></text>
</g>
<g >
<title>scheduler_tick (629,724 samples, 0.03%)</title><rect x="59.2" y="741" width="0.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="62.23" y="751.5" ></text>
</g>
<g >
<title>record_times (286,189 samples, 0.01%)</title><rect x="1129.5" y="661" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="1132.49" y="671.5" ></text>
</g>
<g >
<title>native_read_msr (357,569 samples, 0.01%)</title><rect x="131.7" y="565" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="134.68" y="575.5" ></text>
</g>
<g >
<title>sched_clock_cpu (1,183,290 samples, 0.05%)</title><rect x="1129.6" y="661" width="0.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1132.63" y="671.5" ></text>
</g>
<g >
<title>perf_ctx_disable (527,971 samples, 0.02%)</title><rect x="721.0" y="645" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="724.04" y="655.5" ></text>
</g>
<g >
<title>mas_store_prealloc (248,854 samples, 0.01%)</title><rect x="1187.3" y="325" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="1190.26" y="335.5" ></text>
</g>
<g >
<title>_IO_fflush (465,645 samples, 0.02%)</title><rect x="1187.7" y="629" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1190.70" y="639.5" ></text>
</g>
<g >
<title>rseq_ip_fixup (2,284,153 samples, 0.10%)</title><rect x="188.4" y="773" width="1.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="191.44" y="783.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (304,793 samples, 0.01%)</title><rect x="49.8" y="773" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="52.78" y="783.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (390,243 samples, 0.02%)</title><rect x="214.9" y="693" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="217.91" y="703.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturnSwitchContext (804,712 samples, 0.03%)</title><rect x="1187.0" y="645" width="0.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1189.99" y="655.5" ></text>
</g>
<g >
<title>scheduler_tick (298,180 samples, 0.01%)</title><rect x="86.3" y="709" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="89.30" y="719.5" ></text>
</g>
<g >
<title>sched_clock_cpu (250,889 samples, 0.01%)</title><rect x="691.4" y="597" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="694.43" y="607.5" ></text>
</g>
<g >
<title>retbleed_untrain_ret (281,047 samples, 0.01%)</title><rect x="336.4" y="629" width="0.1" height="15.0" fill="rgb(210,25,5)" rx="2" ry="2" />
<text x="339.39" y="639.5" ></text>
</g>
<g >
<title>_copy_from_user (3,151,485 samples, 0.13%)</title><rect x="212.2" y="757" width="1.5" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="215.19" y="767.5" ></text>
</g>
<g >
<title>x86_pmu_disable (217,959 samples, 0.01%)</title><rect x="21.8" y="677" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="24.85" y="687.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (248,854 samples, 0.01%)</title><rect x="1187.3" y="229" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1190.26" y="239.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (411,383,891 samples, 17.17%)</title><rect x="442.4" y="661" width="202.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="445.39" y="671.5" >asm_sysvec_apic_timer_inte..</text>
</g>
<g >
<title>__rcu_read_unlock (235,990 samples, 0.01%)</title><rect x="193.8" y="757" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="196.83" y="767.5" ></text>
</g>
<g >
<title>update_process_times (1,832,304 samples, 0.08%)</title><rect x="271.4" y="565" width="0.9" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="274.43" y="575.5" ></text>
</g>
<g >
<title>__split_vma (248,854 samples, 0.01%)</title><rect x="1187.3" y="357" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1190.26" y="367.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (1,425,942 samples, 0.06%)</title><rect x="283.8" y="677" width="0.7" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="286.80" y="687.5" ></text>
</g>
<g >
<title>cpuacct_charge (649,333 samples, 0.03%)</title><rect x="336.1" y="629" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="339.07" y="639.5" ></text>
</g>
<g >
<title>switch_fpu_return (5,501,299 samples, 0.23%)</title><rect x="190.8" y="773" width="2.7" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="193.77" y="783.5" ></text>
</g>
<g >
<title>sched_clock_cpu (972,127 samples, 0.04%)</title><rect x="621.2" y="501" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="624.24" y="511.5" ></text>
</g>
<g >
<title>native_read_msr (1,278,645 samples, 0.05%)</title><rect x="50.5" y="629" width="0.7" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="53.53" y="639.5" ></text>
</g>
<g >
<title>newidle_balance (1,383,225 samples, 0.06%)</title><rect x="652.9" y="661" width="0.7" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="655.92" y="671.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (1,626,874 samples, 0.07%)</title><rect x="628.0" y="549" width="0.8" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="631.04" y="559.5" ></text>
</g>
<g >
<title>mas_wr_modify (248,854 samples, 0.01%)</title><rect x="1187.3" y="293" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1190.26" y="303.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (357,569 samples, 0.01%)</title><rect x="131.7" y="709" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="134.68" y="719.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (266,143 samples, 0.01%)</title><rect x="1186.7" y="821" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1189.73" y="831.5" ></text>
</g>
<g >
<title>open (359,428 samples, 0.01%)</title><rect x="10.0" y="581" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="13.00" y="591.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (795,811 samples, 0.03%)</title><rect x="614.5" y="437" width="0.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="617.50" y="447.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (411,383,891 samples, 17.17%)</title><rect x="442.4" y="645" width="202.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="445.39" y="655.5" >sysvec_apic_timer_interrupt</text>
</g>
<g >
<title>account_system_index_time (6,077,385 samples, 0.25%)</title><rect x="450.5" y="501" width="2.9" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="453.46" y="511.5" ></text>
</g>
<g >
<title>__x64_sys_clock_nanosleep (6,450,013 samples, 0.27%)</title><rect x="128.4" y="789" width="3.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="131.41" y="799.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (325,897 samples, 0.01%)</title><rect x="1187.4" y="661" width="0.1" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="1190.38" y="671.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (248,854 samples, 0.01%)</title><rect x="1187.3" y="213" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1190.26" y="223.5" ></text>
</g>
<g >
<title>native_write_msr (245,002 samples, 0.01%)</title><rect x="59.0" y="645" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="62.03" y="655.5" ></text>
</g>
<g >
<title>select_task_rq (387,444 samples, 0.02%)</title><rect x="644.7" y="453" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="647.66" y="463.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (1,832,304 samples, 0.08%)</title><rect x="271.4" y="613" width="0.9" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="274.43" y="623.5" ></text>
</g>
<g >
<title>rseq_ip_fixup (40,102,865 samples, 1.67%)</title><rect x="157.0" y="757" width="19.8" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="160.05" y="767.5" ></text>
</g>
<g >
<title>OpenTransientFilePerm (359,428 samples, 0.01%)</title><rect x="10.0" y="613" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="13.00" y="623.5" ></text>
</g>
<g >
<title>brk (248,854 samples, 0.01%)</title><rect x="1187.3" y="469" width="0.1" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="1190.26" y="479.5" ></text>
</g>
<g >
<title>native_read_msr (156,508,739 samples, 6.53%)</title><rect x="525.5" y="437" width="77.0" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="528.45" y="447.5" >native_r..</text>
</g>
<g >
<title>__hrtimer_run_queues (266,143 samples, 0.01%)</title><rect x="1186.7" y="773" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1189.73" y="783.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,163,306 samples, 0.05%)</title><rect x="49.8" y="837" width="0.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="52.78" y="847.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (1,631,804 samples, 0.07%)</title><rect x="113.1" y="741" width="0.8" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="116.14" y="751.5" ></text>
</g>
<g >
<title>update_rq_clock (1,311,951 samples, 0.05%)</title><rect x="1150.6" y="693" width="0.6" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="1153.56" y="703.5" ></text>
</g>
<g >
<title>sched_clock_cpu (795,811 samples, 0.03%)</title><rect x="614.5" y="485" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="617.50" y="495.5" ></text>
</g>
<g >
<title>postmaster_child_launch (2,372,309 samples, 0.10%)</title><rect x="1187.0" y="821" width="1.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1189.99" y="831.5" ></text>
</g>
<g >
<title>pick_next_task_idle (1,338,941 samples, 0.06%)</title><rect x="691.6" y="661" width="0.6" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="694.56" y="671.5" ></text>
</g>
<g >
<title>dequeue_task_fair (4,956,822 samples, 0.21%)</title><rect x="432.9" y="677" width="2.4" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="435.90" y="687.5" ></text>
</g>
<g >
<title>exc_page_fault (463,590 samples, 0.02%)</title><rect x="1187.9" y="677" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1190.93" y="687.5" ></text>
</g>
<g >
<title>__x64_sys_fsync (345,508 samples, 0.01%)</title><rect x="10.2" y="501" width="0.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="13.18" y="511.5" ></text>
</g>
<g >
<title>irq_exit_rcu (273,504 samples, 0.01%)</title><rect x="272.5" y="645" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="275.53" y="655.5" ></text>
</g>
<g >
<title>native_read_msr (347,499 samples, 0.01%)</title><rect x="213.8" y="533" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="216.85" y="543.5" ></text>
</g>
<g >
<title>[libc.so.6] (248,854 samples, 0.01%)</title><rect x="1187.3" y="517" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1190.26" y="527.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (1,336,089 samples, 0.06%)</title><rect x="1182.4" y="821" width="0.7" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1185.39" y="831.5" ></text>
</g>
<g >
<title>cpuacct_charge (14,911,136 samples, 0.62%)</title><rect x="369.4" y="613" width="7.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="372.37" y="623.5" ></text>
</g>
<g >
<title>__bitmap_weight (726,475 samples, 0.03%)</title><rect x="196.0" y="741" width="0.4" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="199.00" y="751.5" ></text>
</g>
<g >
<title>perf_event_task_tick (1,451,807 samples, 0.06%)</title><rect x="113.2" y="677" width="0.7" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="116.23" y="687.5" ></text>
</g>
<g >
<title>RecoveryInProgress (18,224,509 samples, 0.76%)</title><rect x="41.4" y="853" width="9.0" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="44.38" y="863.5" ></text>
</g>
<g >
<title>update_rq_clock (2,386,430 samples, 0.10%)</title><rect x="620.5" y="517" width="1.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="623.54" y="527.5" ></text>
</g>
<g >
<title>pg_fsync (345,508 samples, 0.01%)</title><rect x="10.2" y="613" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="13.18" y="623.5" ></text>
</g>
<g >
<title>nohz_balancer_kick (2,958,720 samples, 0.12%)</title><rect x="615.8" y="501" width="1.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="618.80" y="511.5" ></text>
</g>
<g >
<title>rseq_update_cpu_node_id (2,362,629 samples, 0.10%)</title><rect x="189.6" y="773" width="1.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="192.57" y="783.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (6,928,841 samples, 0.29%)</title><rect x="641.6" y="613" width="3.4" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="644.55" y="623.5" ></text>
</g>
<g >
<title>rseq_get_rseq_cs (2,998,888 samples, 0.13%)</title><rect x="155.6" y="757" width="1.4" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="158.57" y="767.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (852,881 samples, 0.04%)</title><rect x="285.7" y="677" width="0.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="288.73" y="687.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (1,107,592 samples, 0.05%)</title><rect x="113.4" y="613" width="0.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="116.40" y="623.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (2,089,736 samples, 0.09%)</title><rect x="409.9" y="549" width="1.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="412.89" y="559.5" ></text>
</g>
<g >
<title>x86_pmu_disable (390,243 samples, 0.02%)</title><rect x="214.9" y="549" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="217.91" y="559.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (916,389 samples, 0.04%)</title><rect x="1168.3" y="677" width="0.4" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="1171.29" y="687.5" ></text>
</g>
<g >
<title>update_rq_clock (570,013 samples, 0.02%)</title><rect x="622.4" y="533" width="0.3" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="625.43" y="543.5" ></text>
</g>
<g >
<title>__calc_delta.constprop.0 (1,571,762 samples, 0.07%)</title><rect x="307.5" y="645" width="0.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="310.47" y="655.5" ></text>
</g>
<g >
<title>update_min_vruntime (1,346,397 samples, 0.06%)</title><rect x="614.9" y="501" width="0.7" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="617.89" y="511.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (4,311,656 samples, 0.18%)</title><rect x="268.6" y="677" width="2.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="271.56" y="687.5" ></text>
</g>
<g >
<title>native_read_msr (400,943 samples, 0.02%)</title><rect x="1168.3" y="533" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1171.32" y="543.5" ></text>
</g>
<g >
<title>smp_call_function_single_async (564,454 samples, 0.02%)</title><rect x="616.1" y="469" width="0.3" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="619.11" y="479.5" ></text>
</g>
<g >
<title>__nanosleep (2,249,171,751 samples, 93.86%)</title><rect x="74.8" y="853" width="1107.6" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text x="77.83" y="863.5" >__nanosleep</text>
</g>
<g >
<title>scheduler_tick (476,282 samples, 0.02%)</title><rect x="175.6" y="597" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="178.58" y="607.5" ></text>
</g>
<g >
<title>ServerLoop (2,372,309 samples, 0.10%)</title><rect x="1187.0" y="853" width="1.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1189.99" y="863.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (292,316 samples, 0.01%)</title><rect x="444.9" y="581" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="447.89" y="591.5" ></text>
</g>
<g >
<title>update_process_times (304,793 samples, 0.01%)</title><rect x="49.8" y="725" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="52.78" y="735.5" ></text>
</g>
<g >
<title>scheduler_tick (330,277,587 samples, 13.78%)</title><rect x="459.1" y="533" width="162.6" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="462.08" y="543.5" >scheduler_tick</text>
</g>
<g >
<title>native_write_msr (436,953 samples, 0.02%)</title><rect x="50.1" y="725" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="53.14" y="735.5" ></text>
</g>
<g >
<title>kick_pool (781,319 samples, 0.03%)</title><rect x="644.6" y="501" width="0.4" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="647.58" y="511.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (248,854 samples, 0.01%)</title><rect x="1187.3" y="197" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1190.26" y="207.5" ></text>
</g>
<g >
<title>do_nanosleep (1,883,258,143 samples, 78.59%)</title><rect x="223.8" y="725" width="927.4" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="226.82" y="735.5" >do_nanosleep</text>
</g>
<g >
<title>ExecEvalExprNoReturn (804,712 samples, 0.03%)</title><rect x="1187.0" y="629" width="0.4" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="1189.99" y="639.5" ></text>
</g>
<g >
<title>rcu_sched_clock_irq (302,462 samples, 0.01%)</title><rect x="1182.4" y="725" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="1185.39" y="735.5" ></text>
</g>
<g >
<title>tick_program_event (534,173 samples, 0.02%)</title><rect x="113.9" y="757" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="116.94" y="767.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (401,251 samples, 0.02%)</title><rect x="59.0" y="693" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="62.03" y="703.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (16,881,870 samples, 0.70%)</title><rect x="396.5" y="613" width="8.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="399.49" y="623.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (403,735,946 samples, 16.85%)</title><rect x="442.5" y="613" width="198.9" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="445.54" y="623.5" >hrtimer_interrupt</text>
</g>
<g >
<title>tick_sched_handle (1,822,269 samples, 0.08%)</title><rect x="50.4" y="757" width="0.8" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="53.35" y="767.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (304,793 samples, 0.01%)</title><rect x="49.8" y="757" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="52.78" y="767.5" ></text>
</g>
<g >
<title>x86_pmu_disable (672,956,704 samples, 28.08%)</title><rect x="732.7" y="613" width="331.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="735.67" y="623.5" >x86_pmu_disable</text>
</g>
<g >
<title>scheduler_tick (1,748,588 samples, 0.07%)</title><rect x="271.5" y="549" width="0.8" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="274.47" y="559.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (114,214,096 samples, 4.77%)</title><rect x="140.2" y="789" width="56.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="143.19" y="799.5" >sysca..</text>
</g>
<g >
<title>put_prev_task_fair (14,143,298 samples, 0.59%)</title><rect x="694.2" y="661" width="7.0" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="697.24" y="671.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (551,320 samples, 0.02%)</title><rect x="131.6" y="773" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="134.59" y="783.5" ></text>
</g>
<g >
<title>____fput (587,802 samples, 0.02%)</title><rect x="1189.7" y="821" width="0.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="1192.71" y="831.5" ></text>
</g>
<g >
<title>rcu_core_si (380,421 samples, 0.02%)</title><rect x="641.7" y="581" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="644.71" y="591.5" ></text>
</g>
<g >
<title>calc_global_load_tick (255,675 samples, 0.01%)</title><rect x="1147.5" y="549" width="0.1" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="1150.45" y="559.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (573,585 samples, 0.02%)</title><rect x="213.7" y="741" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="216.74" y="751.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (32,846,851 samples, 1.37%)</title><rect x="1113.3" y="613" width="16.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1116.31" y="623.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (476,282 samples, 0.02%)</title><rect x="175.6" y="693" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="178.58" y="703.5" ></text>
</g>
<g >
<title>ktime_get (204,945 samples, 0.01%)</title><rect x="272.3" y="581" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="275.33" y="591.5" ></text>
</g>
<g >
<title>perf_exclude_event (2,898,791 samples, 0.12%)</title><rect x="1068.3" y="661" width="1.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1071.28" y="671.5" ></text>
</g>
<g >
<title>BackendStartup (704,936 samples, 0.03%)</title><rect x="10.0" y="901" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="13.00" y="911.5" ></text>
</g>
<g >
<title>calc_global_load_tick (273,950 samples, 0.01%)</title><rect x="50.4" y="709" width="0.1" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="53.39" y="719.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (585,194 samples, 0.02%)</title><rect x="86.2" y="837" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="89.16" y="847.5" ></text>
</g>
<g >
<title>blkcg_maybe_throttle_current (4,761,252 samples, 0.20%)</title><rect x="131.9" y="789" width="2.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="134.86" y="799.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (556,354 samples, 0.02%)</title><rect x="213.7" y="677" width="0.3" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="216.74" y="687.5" ></text>
</g>
<g >
<title>ExecProject (704,936 samples, 0.03%)</title><rect x="10.0" y="725" width="0.3" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="13.00" y="735.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2,236,516 samples, 0.09%)</title><rect x="271.4" y="629" width="1.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="274.43" y="639.5" ></text>
</g>
<g >
<title>ext4_fc_commit (345,508 samples, 0.01%)</title><rect x="10.2" y="453" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="13.18" y="463.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (359,428 samples, 0.01%)</title><rect x="10.0" y="549" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="13.00" y="559.5" ></text>
</g>
<g >
<title>scheduler_tick (304,793 samples, 0.01%)</title><rect x="49.8" y="709" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="52.78" y="719.5" ></text>
</g>
<g >
<title>tick_sched_handle (556,354 samples, 0.02%)</title><rect x="213.7" y="661" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="216.74" y="671.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (97,765,884 samples, 4.08%)</title><rect x="226.6" y="709" width="48.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="229.56" y="719.5" >hrti..</text>
</g>
<g >
<title>delayed_work_timer_fn (781,319 samples, 0.03%)</title><rect x="644.6" y="533" width="0.4" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="647.58" y="543.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (795,811 samples, 0.03%)</title><rect x="614.5" y="421" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="617.50" y="431.5" ></text>
</g>
<g >
<title>irq_work_run_list (816,706 samples, 0.03%)</title><rect x="454.9" y="517" width="0.4" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="457.94" y="527.5" ></text>
</g>
<g >
<title>tick_sched_handle (1,030,059 samples, 0.04%)</title><rect x="1182.4" y="757" width="0.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1185.39" y="767.5" ></text>
</g>
<g >
<title>dequeue_task (298,007,605 samples, 12.44%)</title><rect x="286.2" y="677" width="146.7" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="289.15" y="687.5" >dequeue_task</text>
</g>
<g >
<title>entry_SYSCALL_64 (3,749,892 samples, 0.16%)</title><rect x="1188.2" y="933" width="1.8" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="1191.15" y="943.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (425,741,326 samples, 17.77%)</title><rect x="435.3" y="677" width="209.7" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="438.34" y="687.5" >finish_task_switch.isra.0</text>
</g>
<g >
<title>scheduler_tick (556,354 samples, 0.02%)</title><rect x="213.7" y="629" width="0.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="216.74" y="639.5" ></text>
</g>
<g >
<title>calc_global_load_tick (422,459 samples, 0.02%)</title><rect x="462.0" y="517" width="0.2" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="464.97" y="527.5" ></text>
</g>
<g >
<title>avg_vruntime (10,732,149 samples, 0.45%)</title><rect x="330.8" y="629" width="5.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="333.79" y="639.5" ></text>
</g>
<g >
<title>update_load_avg (2,125,728 samples, 0.09%)</title><rect x="429.5" y="645" width="1.0" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="432.48" y="655.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (318,963 samples, 0.01%)</title><rect x="1182.7" y="645" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1185.71" y="655.5" ></text>
</g>
<g >
<title>tick_sched_handle (357,335,072 samples, 14.91%)</title><rect x="446.7" y="565" width="176.0" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="449.75" y="575.5" >tick_sched_handle</text>
</g>
<g >
<title>update_blocked_averages (273,504 samples, 0.01%)</title><rect x="272.5" y="581" width="0.2" height="15.0" fill="rgb(240,163,38)" rx="2" ry="2" />
<text x="275.53" y="591.5" ></text>
</g>
<g >
<title>scheduler_tick (357,569 samples, 0.01%)</title><rect x="131.7" y="661" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="134.68" y="671.5" ></text>
</g>
<g >
<title>ReadPageInternal (2,389,183,505 samples, 99.70%)</title><rect x="10.3" y="901" width="1176.6" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="13.35" y="911.5" >ReadPageInternal</text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (465,645 samples, 0.02%)</title><rect x="1187.7" y="709" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1190.70" y="719.5" ></text>
</g>
<g >
<title>__hrtimer_next_event_base (561,569 samples, 0.02%)</title><rect x="442.7" y="597" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="445.70" y="607.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (266,143 samples, 0.01%)</title><rect x="1186.7" y="789" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1189.73" y="799.5" ></text>
</g>
<g >
<title>task_tick_fair (322,835 samples, 0.01%)</title><rect x="1168.5" y="613" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1171.52" y="623.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (739,576 samples, 0.03%)</title><rect x="59.2" y="821" width="0.4" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="62.23" y="831.5" ></text>
</g>
<g >
<title>profile_tick (456,374 samples, 0.02%)</title><rect x="447.5" y="549" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="450.46" y="559.5" ></text>
</g>
<g >
<title>mem_cgroup_handle_over_high (3,687,998 samples, 0.15%)</title><rect x="186.6" y="773" width="1.8" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="189.63" y="783.5" ></text>
</g>
<g >
<title>irq_work_run_list (207,476 samples, 0.01%)</title><rect x="454.6" y="533" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="457.57" y="543.5" ></text>
</g>
<g >
<title>calc_global_load_tick (497,868 samples, 0.02%)</title><rect x="454.3" y="533" width="0.3" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="457.33" y="543.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1,336,089 samples, 0.06%)</title><rect x="1182.4" y="805" width="0.7" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1185.39" y="815.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (29,792,136 samples, 1.24%)</title><rect x="1113.9" y="581" width="14.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1116.94" y="591.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (556,354 samples, 0.02%)</title><rect x="213.7" y="693" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="216.74" y="703.5" ></text>
</g>
<g >
<title>perf_event_task_tick (390,243 samples, 0.02%)</title><rect x="214.9" y="581" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="217.91" y="591.5" ></text>
</g>
<g >
<title>FreeDecodingContext (490,458 samples, 0.02%)</title><rect x="1187.1" y="565" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1190.14" y="575.5" ></text>
</g>
<g >
<title>retbleed_untrain_ret (6,492,925 samples, 0.27%)</title><rect x="1171.4" y="821" width="3.2" height="15.0" fill="rgb(210,25,5)" rx="2" ry="2" />
<text x="1174.37" y="831.5" ></text>
</g>
<g >
<title>update_load_avg (1,315,744 samples, 0.05%)</title><rect x="643.5" y="533" width="0.7" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="646.54" y="543.5" ></text>
</g>
<g >
<title>x86_pmu_disable (656,004 samples, 0.03%)</title><rect x="1182.5" y="677" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1185.54" y="687.5" ></text>
</g>
<g >
<title>do_nanosleep (936,002 samples, 0.04%)</title><rect x="214.6" y="741" width="0.5" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="217.64" y="751.5" ></text>
</g>
<g >
<title>wake_up_process (292,316 samples, 0.01%)</title><rect x="444.9" y="565" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="447.89" y="575.5" ></text>
</g>
<g >
<title>ExecResult (804,712 samples, 0.03%)</title><rect x="1187.0" y="677" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1189.99" y="687.5" ></text>
</g>
<g >
<title>reweight_entity (5,867,909 samples, 0.24%)</title><rect x="336.9" y="613" width="2.9" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="339.93" y="623.5" ></text>
</g>
<g >
<title>_copy_from_user (11,992,635 samples, 0.50%)</title><rect x="1153.8" y="741" width="5.9" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1156.80" y="751.5" ></text>
</g>
<g >
<title>enqueue_task (227,959 samples, 0.01%)</title><rect x="644.9" y="437" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="647.85" y="447.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (295,558 samples, 0.01%)</title><rect x="455.7" y="533" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="458.67" y="543.5" ></text>
</g>
<g >
<title>ktime_get_update_offsets_now (306,030 samples, 0.01%)</title><rect x="1182.9" y="789" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1185.90" y="799.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (708,887,299 samples, 29.58%)</title><rect x="717.2" y="661" width="349.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="720.17" y="671.5" >__perf_event_task_sched_out</text>
</g>
<g >
<title>__hrtimer_run_queues (239,088 samples, 0.01%)</title><rect x="184.7" y="677" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="187.69" y="687.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (217,959 samples, 0.01%)</title><rect x="21.8" y="645" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="24.85" y="655.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (4,175,666 samples, 0.17%)</title><rect x="1162.5" y="757" width="2.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1165.52" y="767.5" ></text>
</g>
<g >
<title>clockevents_program_event (28,138,007 samples, 1.17%)</title><rect x="627.1" y="581" width="13.9" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="630.10" y="591.5" ></text>
</g>
<g >
<title>x86_pmu_disable (467,425 samples, 0.02%)</title><rect x="1168.3" y="581" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1171.29" y="591.5" ></text>
</g>
<g >
<title>remove_entity_load_avg (292,316 samples, 0.01%)</title><rect x="444.9" y="501" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="447.89" y="511.5" ></text>
</g>
<g >
<title>perf_event_task_tick (248,854 samples, 0.01%)</title><rect x="1187.3" y="117" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="1190.26" y="127.5" ></text>
</g>
<g >
<title>get_timespec64 (19,618,310 samples, 0.82%)</title><rect x="1152.9" y="757" width="9.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1155.86" y="767.5" ></text>
</g>
<g >
<title>tick_sched_do_timer (1,706,345 samples, 0.07%)</title><rect x="445.9" y="565" width="0.8" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="448.91" y="575.5" ></text>
</g>
<g >
<title>__x64_sys_openat (359,428 samples, 0.01%)</title><rect x="10.0" y="501" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="13.00" y="511.5" ></text>
</g>
<g >
<title>zap_pte_range (1,759,340 samples, 0.07%)</title><rect x="1188.8" y="709" width="0.9" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="1191.84" y="719.5" ></text>
</g>
<g >
<title>update_min_vruntime (1,944,115 samples, 0.08%)</title><rect x="430.5" y="645" width="1.0" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="433.52" y="655.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (476,282 samples, 0.02%)</title><rect x="175.6" y="661" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="178.58" y="671.5" ></text>
</g>
<g >
<title>rb_insert_color (229,629 samples, 0.01%)</title><rect x="444.4" y="565" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="447.38" y="575.5" ></text>
</g>
<g >
<title>x86_pmu_disable (298,180 samples, 0.01%)</title><rect x="86.3" y="661" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="89.30" y="671.5" ></text>
</g>
<g >
<title>run_timer_softirq (781,319 samples, 0.03%)</title><rect x="644.6" y="581" width="0.4" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="647.58" y="591.5" ></text>
</g>
<g >
<title>put_prev_task_fair (4,689,108 samples, 0.20%)</title><rect x="1130.2" y="677" width="2.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1133.21" y="687.5" ></text>
</g>
<g >
<title>update_process_times (1,030,059 samples, 0.04%)</title><rect x="1182.4" y="741" width="0.5" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1185.39" y="751.5" ></text>
</g>
<g >
<title>update_cfs_group (6,211,946 samples, 0.26%)</title><rect x="617.3" y="517" width="3.0" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="620.26" y="527.5" ></text>
</g>
<g >
<title>retbleed_untrain_ret (867,426 samples, 0.04%)</title><rect x="1162.1" y="741" width="0.4" height="15.0" fill="rgb(210,25,5)" rx="2" ry="2" />
<text x="1165.09" y="751.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (217,959 samples, 0.01%)</title><rect x="21.8" y="773" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="24.85" y="783.5" ></text>
</g>
<g >
<title>AllocSetCheck (312,465 samples, 0.01%)</title><rect x="1187.5" y="709" width="0.2" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="1190.54" y="719.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (298,180 samples, 0.01%)</title><rect x="86.3" y="645" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="89.30" y="655.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (248,854 samples, 0.01%)</title><rect x="1187.3" y="69" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1190.26" y="79.5" ></text>
</g>
<g >
<title>task_work_add (390,778 samples, 0.02%)</title><rect x="615.6" y="517" width="0.1" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="618.56" y="527.5" ></text>
</g>
<g >
<title>lapic_next_event (436,953 samples, 0.02%)</title><rect x="50.1" y="741" width="0.3" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="53.14" y="751.5" ></text>
</g>
<g >
<title>proc_exit (929,235 samples, 0.04%)</title><rect x="1187.7" y="773" width="0.5" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1190.70" y="783.5" ></text>
</g>
<g >
<title>perf_pmu_nop_void (1,435,762 samples, 0.06%)</title><rect x="1064.1" y="629" width="0.7" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" />
<text x="1067.05" y="639.5" ></text>
</g>
<g >
<title>native_write_msr (217,212,031 samples, 9.06%)</title><rect x="738.8" y="581" width="106.9" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="741.77" y="591.5" >native_write_..</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (916,389 samples, 0.04%)</title><rect x="1168.3" y="757" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1171.29" y="767.5" ></text>
</g>
<g >
<title>path_openat (359,428 samples, 0.01%)</title><rect x="10.0" y="453" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="13.00" y="463.5" ></text>
</g>
<g >
<title>reweight_entity (416,770 samples, 0.02%)</title><rect x="336.5" y="629" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="339.53" y="639.5" ></text>
</g>
<g >
<title>zap_pmd_range.isra.0 (2,230,734 samples, 0.09%)</title><rect x="1188.6" y="725" width="1.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="1191.61" y="735.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (855,991 samples, 0.04%)</title><rect x="1147.0" y="645" width="0.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1150.03" y="655.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (2,236,516 samples, 0.09%)</title><rect x="271.4" y="645" width="1.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="274.43" y="655.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (401,251 samples, 0.02%)</title><rect x="59.0" y="805" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="62.03" y="815.5" ></text>
</g>
<g >
<title>sched_clock_cpu (2,768,295 samples, 0.12%)</title><rect x="409.7" y="613" width="1.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="412.69" y="623.5" ></text>
</g>
<g >
<title>__rcu_read_lock (269,742 samples, 0.01%)</title><rect x="689.2" y="629" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="692.18" y="639.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (1,832,304 samples, 0.08%)</title><rect x="271.4" y="597" width="0.9" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="274.43" y="607.5" ></text>
</g>
<g >
<title>kick_ilb (639,890 samples, 0.03%)</title><rect x="616.1" y="485" width="0.3" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="619.07" y="495.5" ></text>
</g>
<g >
<title>__update_blocked_fair (830,173 samples, 0.03%)</title><rect x="690.9" y="613" width="0.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="693.91" y="623.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (4,022,723 samples, 0.17%)</title><rect x="270.7" y="693" width="2.0" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="273.68" y="703.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (358,059 samples, 0.01%)</title><rect x="1147.5" y="613" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="1150.45" y="623.5" ></text>
</g>
<g >
<title>x86_pmu_disable (556,354 samples, 0.02%)</title><rect x="213.7" y="581" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="216.74" y="591.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (700,495,978 samples, 29.23%)</title><rect x="721.3" y="645" width="345.0" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="724.30" y="655.5" >perf_event_context_sched_out</text>
</g>
<g >
<title>x86_pmu_disable (1,451,807 samples, 0.06%)</title><rect x="113.2" y="645" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="116.23" y="655.5" ></text>
</g>
<g >
<title>ExecutePlan (704,936 samples, 0.03%)</title><rect x="10.0" y="773" width="0.3" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="13.00" y="783.5" ></text>
</g>
<g >
<title>try_to_wake_up (781,319 samples, 0.03%)</title><rect x="644.6" y="469" width="0.4" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="647.58" y="479.5" ></text>
</g>
<g >
<title>avg_vruntime (250,534 samples, 0.01%)</title><rect x="607.8" y="469" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="610.84" y="479.5" ></text>
</g>
<g >
<title>__x64_sys_clock_nanosleep (1,950,247,025 samples, 81.39%)</title><rect x="204.2" y="773" width="960.4" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="207.21" y="783.5" >__x64_sys_clock_nanosleep</text>
</g>
<g >
<title>tick_sched_handle (248,854 samples, 0.01%)</title><rect x="1187.3" y="165" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1190.26" y="175.5" ></text>
</g>
<g >
<title>__rcu_read_lock (2,187,733 samples, 0.09%)</title><rect x="1066.3" y="661" width="1.0" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1069.25" y="671.5" ></text>
</g>
<g >
<title>pick_next_task (1,771,185 samples, 0.07%)</title><rect x="1148.0" y="693" width="0.9" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="1150.99" y="703.5" ></text>
</g>
<g >
<title>ktime_get_update_offsets_now (2,339,967 samples, 0.10%)</title><rect x="624.7" y="597" width="1.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="627.67" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,818,536 samples, 0.12%)</title><rect x="1188.6" y="885" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.61" y="895.5" ></text>
</g>
<g >
<title>perf_event_task_tick (349,494 samples, 0.01%)</title><rect x="175.6" y="581" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="178.58" y="591.5" ></text>
</g>
<g >
<title>MemoryContextCheck (312,465 samples, 0.01%)</title><rect x="1187.5" y="725" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1190.54" y="735.5" ></text>
</g>
<g >
<title>open_last_lookups (359,428 samples, 0.01%)</title><rect x="10.0" y="437" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="13.00" y="447.5" ></text>
</g>
<g >
<title>update_process_times (266,143 samples, 0.01%)</title><rect x="1186.7" y="725" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1189.73" y="735.5" ></text>
</g>
<g >
<title>__mmput (2,230,734 samples, 0.09%)</title><rect x="1188.6" y="805" width="1.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="1191.61" y="815.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (358,059 samples, 0.01%)</title><rect x="1147.5" y="677" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1150.45" y="687.5" ></text>
</g>
<g >
<title>GetXLogReplayRecPtr (10,709,090 samples, 0.45%)</title><rect x="16.7" y="869" width="5.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="19.68" y="879.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (504,469 samples, 0.02%)</title><rect x="21.7" y="789" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="24.70" y="799.5" ></text>
</g>
<g >
<title>schedule (1,220,027 samples, 0.05%)</title><rect x="1152.3" y="725" width="0.6" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1155.25" y="735.5" ></text>
</g>
<g >
<title>migrate_task_rq_fair (292,316 samples, 0.01%)</title><rect x="444.9" y="517" width="0.1" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="447.89" y="527.5" ></text>
</g>
<g >
<title>native_write_msr (24,032,550 samples, 1.00%)</title><rect x="629.0" y="549" width="11.9" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="632.02" y="559.5" ></text>
</g>
<g >
<title>update_min_vruntime (4,394,484 samples, 0.18%)</title><rect x="380.4" y="613" width="2.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="383.41" y="623.5" ></text>
</g>
<g >
<title>psi_group_change (227,959 samples, 0.01%)</title><rect x="644.9" y="405" width="0.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="647.85" y="415.5" ></text>
</g>
<g >
<title>PortalRun (1,130,609 samples, 0.05%)</title><rect x="1187.0" y="757" width="0.5" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="1189.99" y="767.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (467,425 samples, 0.02%)</title><rect x="1168.3" y="597" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="1171.29" y="607.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (573,585 samples, 0.02%)</title><rect x="213.7" y="709" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="216.74" y="719.5" ></text>
</g>
<g >
<title>ValidXLogRecord (253,759 samples, 0.01%)</title><rect x="1186.9" y="901" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1189.86" y="911.5" ></text>
</g>
<g >
<title>perf_event_task_tick (298,180 samples, 0.01%)</title><rect x="86.3" y="693" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="89.30" y="703.5" ></text>
</g>
<g >
<title>sched_clock (33,765,929 samples, 1.41%)</title><rect x="1112.9" y="629" width="16.6" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="1115.86" y="639.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,709,633 samples, 0.11%)</title><rect x="112.9" y="821" width="1.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="115.87" y="831.5" ></text>
</g>
<g >
<title>update_min_vruntime (322,835 samples, 0.01%)</title><rect x="1168.5" y="597" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="1171.52" y="607.5" ></text>
</g>
<g >
<title>dequeue_task (722,602 samples, 0.03%)</title><rect x="1147.6" y="693" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="1150.63" y="703.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (648,159 samples, 0.03%)</title><rect x="175.6" y="709" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="178.58" y="719.5" ></text>
</g>
<g >
<title>rcu_segcblist_ready_cbs (302,462 samples, 0.01%)</title><rect x="1182.4" y="693" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1185.39" y="703.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (1,031,104 samples, 0.04%)</title><rect x="628.3" y="533" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="631.33" y="543.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (629,724 samples, 0.03%)</title><rect x="59.2" y="789" width="0.3" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="62.23" y="799.5" ></text>
</g>
<g >
<title>do_syscall_64 (248,854 samples, 0.01%)</title><rect x="1187.3" y="437" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1190.26" y="447.5" ></text>
</g>
<g >
<title>postgres (2,396,264,401 samples, 100.00%)</title><rect x="10.0" y="949" width="1180.0" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="13.00" y="959.5" >postgres</text>
</g>
<g >
<title>sched_clock_cpu (9,207,725 samples, 0.38%)</title><rect x="1142.9" y="661" width="4.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1145.92" y="671.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (458,496 samples, 0.02%)</title><rect x="86.2" y="821" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="89.22" y="831.5" ></text>
</g>
<g >
<title>tick_sched_handle (390,243 samples, 0.02%)</title><rect x="214.9" y="629" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="217.91" y="639.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturn (704,936 samples, 0.03%)</title><rect x="10.0" y="693" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="13.00" y="703.5" ></text>
</g>
<g >
<title>update_cfs_group (29,756,976 samples, 1.24%)</title><rect x="413.5" y="645" width="14.7" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="416.52" y="655.5" ></text>
</g>
<g >
<title>BackendMain (704,936 samples, 0.03%)</title><rect x="10.0" y="869" width="0.3" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="13.00" y="879.5" ></text>
</g>
<g >
<title>x86_pmu_disable (1,387,084 samples, 0.06%)</title><rect x="271.5" y="501" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="274.52" y="511.5" ></text>
</g>
<g >
<title>ktime_get (243,680 samples, 0.01%)</title><rect x="641.0" y="581" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="643.95" y="591.5" ></text>
</g>
<g >
<title>PortalRunSelect (1,130,609 samples, 0.05%)</title><rect x="1187.0" y="741" width="0.5" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="1189.99" y="751.5" ></text>
</g>
<g >
<title>record_times (4,153,894 samples, 0.17%)</title><rect x="1110.0" y="645" width="2.0" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="1113.00" y="655.5" ></text>
</g>
<g >
<title>timerqueue_add (18,709,963 samples, 0.78%)</title><rect x="240.7" y="661" width="9.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="243.73" y="671.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (467,425 samples, 0.02%)</title><rect x="1168.3" y="565" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1171.29" y="575.5" ></text>
</g>
<g >
<title>update_rq_clock (250,889 samples, 0.01%)</title><rect x="691.4" y="613" width="0.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="694.43" y="623.5" ></text>
</g>
<g >
<title>ExecProcNode (804,712 samples, 0.03%)</title><rect x="1187.0" y="693" width="0.4" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1189.99" y="703.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (1,822,269 samples, 0.08%)</title><rect x="50.4" y="821" width="0.8" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="53.35" y="831.5" ></text>
</g>
<g >
<title>__x86_indirect_thunk_array (1,362,988 samples, 0.06%)</title><rect x="284.5" y="677" width="0.7" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="287.50" y="687.5" ></text>
</g>
<g >
<title>update_process_times (629,724 samples, 0.03%)</title><rect x="59.2" y="757" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="62.23" y="767.5" ></text>
</g>
<g >
<title>__do_sys_brk (248,854 samples, 0.01%)</title><rect x="1187.3" y="389" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="1190.26" y="399.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (504,469 samples, 0.02%)</title><rect x="21.7" y="853" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="24.70" y="863.5" ></text>
</g>
<g >
<title>sched_clock_cpu (35,415,454 samples, 1.48%)</title><rect x="1112.0" y="645" width="17.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1115.05" y="655.5" ></text>
</g>
<g >
<title>should_we_balance (207,185 samples, 0.01%)</title><rect x="690.8" y="613" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="693.80" y="623.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (1,387,084 samples, 0.06%)</title><rect x="271.5" y="517" width="0.7" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="274.52" y="527.5" ></text>
</g>
<g >
<title>perf_event_task_tick (304,793 samples, 0.01%)</title><rect x="49.8" y="693" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="52.78" y="703.5" ></text>
</g>
<g >
<title>scheduler_tick (358,059 samples, 0.01%)</title><rect x="1147.5" y="565" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1150.45" y="575.5" ></text>
</g>
<g >
<title>reweight_entity (820,637 samples, 0.03%)</title><rect x="607.6" y="485" width="0.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="610.64" y="495.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (298,180 samples, 0.01%)</title><rect x="86.3" y="677" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="89.30" y="687.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (217,959 samples, 0.01%)</title><rect x="21.8" y="693" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="24.85" y="703.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,818,536 samples, 0.12%)</title><rect x="1188.6" y="917" width="1.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1191.61" y="927.5" ></text>
</g>
<g >
<title>[libicui18n.so.74.2] (463,590 samples, 0.02%)</title><rect x="1187.9" y="709" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1190.93" y="719.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (656,004 samples, 0.03%)</title><rect x="1182.5" y="693" width="0.4" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="1185.54" y="703.5" ></text>
</g>
<g >
<title>sched_mm_cid_remote_clear (576,575 samples, 0.02%)</title><rect x="194.1" y="757" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="197.13" y="767.5" ></text>
</g>
<g >
<title>update_cfs_group (6,146,269 samples, 0.26%)</title><rect x="336.8" y="629" width="3.0" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="339.80" y="639.5" ></text>
</g>
<g >
<title>__x64_sys_brk (248,854 samples, 0.01%)</title><rect x="1187.3" y="405" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="1190.26" y="415.5" ></text>
</g>
<g >
<title>printtup (325,897 samples, 0.01%)</title><rect x="1187.4" y="693" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="1190.38" y="703.5" ></text>
</g>
<g >
<title>perf_event_task_tick (284,694,239 samples, 11.88%)</title><rect x="463.1" y="517" width="140.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="466.14" y="527.5" >perf_event_task_t..</text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (349,494 samples, 0.01%)</title><rect x="175.6" y="565" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="178.58" y="575.5" ></text>
</g>
<g >
<title>mmput (2,230,734 samples, 0.09%)</title><rect x="1188.6" y="821" width="1.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="1191.61" y="831.5" ></text>
</g>
<g >
<title>amd_brs_disable_all (356,050 samples, 0.01%)</title><rect x="478.2" y="469" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="481.17" y="479.5" ></text>
</g>
<g >
<title>schedule (1,779,932,805 samples, 74.28%)</title><rect x="274.7" y="709" width="876.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="277.70" y="719.5" >schedule</text>
</g>
<g >
<title>tick_program_event (436,953 samples, 0.02%)</title><rect x="50.1" y="773" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="53.14" y="783.5" ></text>
</g>
<g >
<title>scheduler_tick (1,214,089 samples, 0.05%)</title><rect x="447.9" y="549" width="0.6" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="450.86" y="559.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (1,163,306 samples, 0.05%)</title><rect x="49.8" y="805" width="0.6" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="52.78" y="815.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (1,174,569 samples, 0.05%)</title><rect x="271.6" y="469" width="0.6" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="274.62" y="479.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (248,854 samples, 0.01%)</title><rect x="1187.3" y="245" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1190.26" y="255.5" ></text>
</g>
<g >
<title>blkcg_maybe_throttle_current (3,653,788 samples, 0.15%)</title><rect x="184.8" y="773" width="1.8" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="187.83" y="783.5" ></text>
</g>
<g >
<title>task_tick_mm_cid (1,236,472 samples, 0.05%)</title><rect x="621.8" y="533" width="0.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="624.82" y="543.5" ></text>
</g>
<g >
<title>ExecutePlan (1,130,609 samples, 0.05%)</title><rect x="1187.0" y="709" width="0.5" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="1189.99" y="719.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (71,054,023 samples, 2.97%)</title><rect x="149.8" y="773" width="35.0" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="152.81" y="783.5" >__..</text>
</g>
<g >
<title>[libc.so.6] (2,372,309 samples, 0.10%)</title><rect x="1187.0" y="901" width="1.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1189.99" y="911.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (4,170,808 samples, 0.17%)</title><rect x="134.2" y="789" width="2.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="137.20" y="799.5" ></text>
</g>
<g >
<title>PostgresMain (704,936 samples, 0.03%)</title><rect x="10.0" y="853" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="13.00" y="863.5" ></text>
</g>
<g >
<title>cpuacct_charge (309,104 samples, 0.01%)</title><rect x="605.2" y="501" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="608.23" y="511.5" ></text>
</g>
<g >
<title>dequeue_entity (2,282,237 samples, 0.10%)</title><rect x="291.1" y="661" width="1.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="294.10" y="671.5" ></text>
</g>
<g >
<title>perf_ctx_disable (688,488,289 samples, 28.73%)</title><rect x="725.0" y="629" width="339.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="728.02" y="639.5" >perf_ctx_disable</text>
</g>
<g >
<title>asm_exc_page_fault (463,590 samples, 0.02%)</title><rect x="1187.9" y="693" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1190.93" y="703.5" ></text>
</g>
<g >
<title>read_local_xlog_page_guts (2,389,183,505 samples, 99.70%)</title><rect x="10.3" y="885" width="1176.6" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="13.35" y="895.5" >read_local_xlog_page_guts</text>
</g>
<g >
<title>sched_clock (2,554,135 samples, 0.11%)</title><rect x="409.8" y="597" width="1.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="412.79" y="607.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (266,143 samples, 0.01%)</title><rect x="1186.7" y="677" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="1189.73" y="687.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturnSwitchContext (704,936 samples, 0.03%)</title><rect x="10.0" y="709" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="13.00" y="719.5" ></text>
</g>
<g >
<title>x86_pmu_disable (960,802 samples, 0.04%)</title><rect x="602.9" y="501" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="605.86" y="511.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (239,088 samples, 0.01%)</title><rect x="184.7" y="693" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="187.69" y="703.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (3,673,435 samples, 0.15%)</title><rect x="658.3" y="645" width="1.8" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="661.30" y="655.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (1,904,335,250 samples, 79.47%)</title><rect x="215.1" y="741" width="937.8" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="218.10" y="751.5" >hrtimer_nanosleep</text>
</g>
<g >
<title>update_min_vruntime (5,006,748 samples, 0.21%)</title><rect x="411.1" y="629" width="2.4" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="414.05" y="639.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (6,158,947 samples, 0.26%)</title><rect x="1143.7" y="613" width="3.0" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="1146.71" y="623.5" ></text>
</g>
<g >
<title>__msecs_to_jiffies (3,136,253 samples, 0.13%)</title><rect x="655.6" y="645" width="1.6" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="658.64" y="655.5" ></text>
</g>
<g >
<title>update_process_times (358,059 samples, 0.01%)</title><rect x="1147.5" y="581" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1150.45" y="591.5" ></text>
</g>
<g >
<title>native_read_msr (318,963 samples, 0.01%)</title><rect x="1182.7" y="629" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1185.71" y="639.5" ></text>
</g>
<g >
<title>irq_work_tick (706,822 samples, 0.03%)</title><rect x="447.1" y="549" width="0.4" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="450.11" y="559.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (588,084 samples, 0.02%)</title><rect x="1146.7" y="613" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1149.74" y="623.5" ></text>
</g>
<g >
<title>pg_fsync_no_writethrough (345,508 samples, 0.01%)</title><rect x="10.2" y="597" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="13.18" y="607.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (476,282 samples, 0.02%)</title><rect x="175.6" y="645" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="178.58" y="655.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1,822,269 samples, 0.08%)</title><rect x="50.4" y="805" width="0.8" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="53.35" y="815.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (504,469 samples, 0.02%)</title><rect x="21.7" y="837" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="24.70" y="847.5" ></text>
</g>
<g >
<title>get_nohz_timer_target (2,087,657 samples, 0.09%)</title><rect x="272.7" y="693" width="1.0" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="275.67" y="703.5" ></text>
</g>
<g >
<title>__cxa_finalize (465,645 samples, 0.02%)</title><rect x="1187.7" y="677" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1190.70" y="687.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (282,385,693 samples, 11.78%)</title><rect x="463.5" y="501" width="139.0" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="466.46" y="511.5" >perf_adjust_freq_..</text>
</g>
<g >
<title>PortalRun (704,936 samples, 0.03%)</title><rect x="10.0" y="821" width="0.3" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="13.00" y="831.5" ></text>
</g>
<g >
<title>nohz_balance_exit_idle (1,781,934 samples, 0.07%)</title><rect x="616.4" y="485" width="0.9" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="619.38" y="495.5" ></text>
</g>
<g >
<title>dequeue_entity (211,659,801 samples, 8.83%)</title><rect x="309.3" y="645" width="104.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="312.29" y="655.5" >dequeue_entity</text>
</g>
<g >
<title>account_system_time (523,965 samples, 0.02%)</title><rect x="453.7" y="533" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="456.68" y="543.5" ></text>
</g>
<g >
<title>__update_load_avg_blocked_se (292,316 samples, 0.01%)</title><rect x="444.9" y="485" width="0.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="447.89" y="495.5" ></text>
</g>
<g >
<title>perf_event_task_tick (401,251 samples, 0.02%)</title><rect x="59.0" y="709" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="62.03" y="719.5" ></text>
</g>
<g >
<title>__update_load_avg_se (9,918,107 samples, 0.41%)</title><rect x="404.8" y="613" width="4.9" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="407.80" y="623.5" ></text>
</g>
<g >
<title>rseq_update_cpu_node_id (16,262,893 samples, 0.68%)</title><rect x="176.8" y="757" width="8.0" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="179.79" y="767.5" ></text>
</g>
<g >
<title>ktime_get (25,421,919 samples, 1.06%)</title><rect x="252.4" y="677" width="12.5" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="255.38" y="687.5" ></text>
</g>
<g >
<title>update_cfs_group (996,977 samples, 0.04%)</title><rect x="607.5" y="501" width="0.5" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="610.55" y="511.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (1,473,068 samples, 0.06%)</title><rect x="731.9" y="613" width="0.8" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="734.94" y="623.5" ></text>
</g>
<g >
<title>x64_sys_call (345,508 samples, 0.01%)</title><rect x="10.2" y="517" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="13.18" y="527.5" ></text>
</g>
<g >
<title>amd_pmu_addr_offset (232,433 samples, 0.01%)</title><rect x="478.3" y="453" width="0.2" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="481.35" y="463.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (390,243 samples, 0.02%)</title><rect x="214.9" y="565" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="217.91" y="575.5" ></text>
</g>
<g >
<title>standby_decode (314,254 samples, 0.01%)</title><rect x="1187.0" y="533" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1189.99" y="543.5" ></text>
</g>
<g >
<title>update_curr_se (245,465 samples, 0.01%)</title><rect x="382.6" y="629" width="0.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="385.57" y="639.5" ></text>
</g>
<g >
<title>amd_brs_disable_all (3,851,197 samples, 0.16%)</title><rect x="732.7" y="597" width="1.9" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="735.67" y="607.5" ></text>
</g>
<g >
<title>kmem_cache_free (587,802 samples, 0.02%)</title><rect x="1189.7" y="789" width="0.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1192.71" y="799.5" ></text>
</g>
<g >
<title>task_mm_cid_work (4,107,947 samples, 0.17%)</title><rect x="194.4" y="757" width="2.0" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="197.41" y="767.5" ></text>
</g>
<g >
<title>hrtimer_active (4,404,546 samples, 0.18%)</title><rect x="605.4" y="501" width="2.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="608.38" y="511.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (656,004 samples, 0.03%)</title><rect x="1182.5" y="661" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1185.54" y="671.5" ></text>
</g>
<g >
<title>native_write_msr (390,243 samples, 0.02%)</title><rect x="214.9" y="517" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="217.91" y="527.5" ></text>
</g>
<g >
<title>__count_memcg_events (463,590 samples, 0.02%)</title><rect x="1187.9" y="613" width="0.3" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="1190.93" y="623.5" ></text>
</g>
<g >
<title>ExecResult (704,936 samples, 0.03%)</title><rect x="10.0" y="741" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="13.00" y="751.5" ></text>
</g>
<g >
<title>_start (2,372,309 samples, 0.10%)</title><rect x="1187.0" y="933" width="1.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1189.99" y="943.5" ></text>
</g>
<g >
<title>put_prev_entity (4,108,839 samples, 0.17%)</title><rect x="692.2" y="661" width="2.0" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="695.22" y="671.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,822,269 samples, 0.08%)</title><rect x="50.4" y="853" width="0.8" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="53.35" y="863.5" ></text>
</g>
<g >
<title>exit (929,235 samples, 0.04%)</title><rect x="1187.7" y="757" width="0.5" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="1190.70" y="767.5" ></text>
</g>
<g >
<title>sched_clock (250,511 samples, 0.01%)</title><rect x="1142.8" y="661" width="0.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="1145.80" y="671.5" ></text>
</g>
<g >
<title>PortalRunSelect (704,936 samples, 0.03%)</title><rect x="10.0" y="805" width="0.3" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="13.00" y="815.5" ></text>
</g>
<g >
<title>update_process_times (458,496 samples, 0.02%)</title><rect x="86.2" y="725" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="89.22" y="735.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime_field (358,890 samples, 0.01%)</title><rect x="452.1" y="485" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="455.06" y="495.5" ></text>
</g>
<g >
<title>ttwu_do_activate (227,959 samples, 0.01%)</title><rect x="644.9" y="453" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="647.85" y="463.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (937,121 samples, 0.04%)</title><rect x="1143.2" y="629" width="0.5" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="1146.25" y="639.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (248,854 samples, 0.01%)</title><rect x="1187.3" y="261" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1190.26" y="271.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (674,630 samples, 0.03%)</title><rect x="621.3" y="453" width="0.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="624.34" y="463.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (1,056,102 samples, 0.04%)</title><rect x="1168.7" y="805" width="0.6" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="1171.74" y="815.5" ></text>
</g>
<g >
<title>rep_movs_alternative (4,833,050 samples, 0.20%)</title><rect x="1159.7" y="741" width="2.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1162.71" y="751.5" ></text>
</g>
<g >
<title>do_syscall_64 (359,428 samples, 0.01%)</title><rect x="10.0" y="533" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="13.00" y="543.5" ></text>
</g>
<g >
<title>run_rebalance_domains (5,441,762 samples, 0.23%)</title><rect x="641.9" y="581" width="2.7" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="644.90" y="591.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (556,354 samples, 0.02%)</title><rect x="213.7" y="565" width="0.3" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="216.74" y="575.5" ></text>
</g>
<g >
<title>__hrtimer_start_range_ns (529,764 samples, 0.02%)</title><rect x="225.0" y="709" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="227.97" y="719.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,510,020 samples, 0.10%)</title><rect x="271.4" y="677" width="1.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="274.43" y="687.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (1,451,807 samples, 0.06%)</title><rect x="113.2" y="661" width="0.7" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="116.23" y="671.5" ></text>
</g>
<g >
<title>dequeue_task_fair (282,786,038 samples, 11.80%)</title><rect x="292.2" y="661" width="139.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="295.23" y="671.5" >dequeue_task_fair</text>
</g>
<g >
<title>main (2,372,309 samples, 0.10%)</title><rect x="1187.0" y="885" width="1.2" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="1189.99" y="895.5" ></text>
</g>
<g >
<title>update_rq_clock (12,686,130 samples, 0.53%)</title><rect x="1141.2" y="677" width="6.3" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="1144.21" y="687.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (264,068 samples, 0.01%)</title><rect x="410.9" y="565" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="413.92" y="575.5" ></text>
</g>
<g >
<title>update_load_avg (236,450 samples, 0.01%)</title><rect x="620.4" y="517" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="623.42" y="527.5" ></text>
</g>
<g >
<title>trigger_load_balance (3,072,169 samples, 0.13%)</title><rect x="615.7" y="517" width="1.6" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="618.75" y="527.5" ></text>
</g>
<g >
<title>__remove_hrtimer (650,595 samples, 0.03%)</title><rect x="443.8" y="581" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="446.82" y="591.5" ></text>
</g>
<g >
<title>update_process_times (239,088 samples, 0.01%)</title><rect x="184.7" y="629" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="187.69" y="639.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (239,088 samples, 0.01%)</title><rect x="184.7" y="661" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="187.69" y="671.5" ></text>
</g>
<g >
<title>acct_account_cputime (1,858,166 samples, 0.08%)</title><rect x="452.2" y="485" width="1.0" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="455.24" y="495.5" ></text>
</g>
<g >
<title>kthread_is_per_cpu (387,444 samples, 0.02%)</title><rect x="644.7" y="437" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="647.66" y="447.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,510,020 samples, 0.10%)</title><rect x="271.4" y="661" width="1.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="274.43" y="671.5" ></text>
</g>
<g >
<title>tick_program_event (31,105,160 samples, 1.30%)</title><rect x="626.0" y="597" width="15.4" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="629.04" y="607.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (1,422,892 samples, 0.06%)</title><rect x="329.6" y="629" width="0.7" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="332.61" y="639.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (365,464,735 samples, 15.25%)</title><rect x="443.0" y="597" width="179.9" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="445.98" y="607.5" >__hrtimer_run_queues</text>
</g>
<g >
<title>pg_fsync_no_writethrough (345,508 samples, 0.01%)</title><rect x="10.2" y="581" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="13.18" y="591.5" ></text>
</g>
<g >
<title>tick_sched_handle (916,389 samples, 0.04%)</title><rect x="1168.3" y="661" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1171.29" y="671.5" ></text>
</g>
<g >
<title>rebalance_domains (241,184 samples, 0.01%)</title><rect x="641.9" y="565" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="644.90" y="575.5" ></text>
</g>
<g >
<title>perf_event_task_tick (217,959 samples, 0.01%)</title><rect x="21.8" y="709" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="24.85" y="719.5" ></text>
</g>
<g >
<title>run_posix_cpu_timers (609,256 samples, 0.03%)</title><rect x="458.5" y="533" width="0.3" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="461.47" y="543.5" ></text>
</g>
<g >
<title>fsync (345,508 samples, 0.01%)</title><rect x="10.2" y="565" width="0.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="13.18" y="575.5" ></text>
</g>
<g >
<title>__calc_delta.constprop.0 (4,982,082 samples, 0.21%)</title><rect x="364.0" y="613" width="2.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="367.00" y="623.5" ></text>
</g>
<g >
<title>x86_pmu_disable (357,569 samples, 0.01%)</title><rect x="131.7" y="613" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="134.68" y="623.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (2,709,633 samples, 0.11%)</title><rect x="112.9" y="789" width="1.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="115.87" y="799.5" ></text>
</g>
<g >
<title>native_write_msr (564,454 samples, 0.02%)</title><rect x="616.1" y="405" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="619.11" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,818,536 samples, 0.12%)</title><rect x="1188.6" y="901" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.61" y="911.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (426,830 samples, 0.02%)</title><rect x="449.3" y="533" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="452.26" y="543.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (357,569 samples, 0.01%)</title><rect x="131.7" y="597" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="134.68" y="607.5" ></text>
</g>
<g >
<title>update_curr (2,648,555 samples, 0.11%)</title><rect x="428.2" y="645" width="1.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="431.17" y="655.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (4,860,244 samples, 0.20%)</title><rect x="264.9" y="677" width="2.4" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="267.90" y="687.5" ></text>
</g>
<g >
<title>perf_event_task_tick (1,278,645 samples, 0.05%)</title><rect x="50.5" y="709" width="0.7" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="53.53" y="719.5" ></text>
</g>
<g >
<title>hrtimer_forward (371,988 samples, 0.02%)</title><rect x="445.4" y="565" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="448.36" y="575.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (304,793 samples, 0.01%)</title><rect x="49.8" y="677" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="52.78" y="687.5" ></text>
</g>
<g >
<title>hrtick_update (2,737,960 samples, 0.11%)</title><rect x="431.5" y="661" width="1.3" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="434.48" y="671.5" ></text>
</g>
<g >
<title>x86_pmu_disable (629,724 samples, 0.03%)</title><rect x="59.2" y="693" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="62.23" y="703.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (358,059 samples, 0.01%)</title><rect x="1147.5" y="645" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1150.45" y="655.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (564,454 samples, 0.02%)</title><rect x="616.1" y="421" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="619.11" y="431.5" ></text>
</g>
<g >
<title>__queue_work.part.0 (781,319 samples, 0.03%)</title><rect x="644.6" y="517" width="0.4" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="647.58" y="527.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (551,320 samples, 0.02%)</title><rect x="131.6" y="789" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="134.59" y="799.5" ></text>
</g>
<g >
<title>tick_sched_handle (1,832,304 samples, 0.08%)</title><rect x="271.4" y="581" width="0.9" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="274.43" y="591.5" ></text>
</g>
<g >
<title>rcu_pending (3,482,808 samples, 0.15%)</title><rect x="456.7" y="517" width="1.7" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="459.67" y="527.5" ></text>
</g>
<g >
<title>try_to_wake_up (292,316 samples, 0.01%)</title><rect x="444.9" y="549" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="447.89" y="559.5" ></text>
</g>
<g >
<title>perf_event_task_tick (629,724 samples, 0.03%)</title><rect x="59.2" y="725" width="0.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="62.23" y="735.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (1,278,645 samples, 0.05%)</title><rect x="50.5" y="693" width="0.7" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="53.53" y="703.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (401,251 samples, 0.02%)</title><rect x="59.0" y="853" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="62.03" y="863.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2,709,633 samples, 0.11%)</title><rect x="112.9" y="773" width="1.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="115.87" y="783.5" ></text>
</g>
<g >
<title>__hrtimer_start_range_ns (80,148,912 samples, 3.34%)</title><rect x="228.2" y="693" width="39.5" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="231.20" y="703.5" >__h..</text>
</g>
<g >
<title>enqueue_hrtimer (36,435,601 samples, 1.52%)</title><rect x="232.0" y="677" width="17.9" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="235.00" y="687.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (739,576 samples, 0.03%)</title><rect x="59.2" y="805" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="62.23" y="815.5" ></text>
</g>
<g >
<title>BackendMain (2,372,309 samples, 0.10%)</title><rect x="1187.0" y="805" width="1.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="1189.99" y="815.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (401,251 samples, 0.02%)</title><rect x="59.0" y="661" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="62.03" y="671.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (443,263,469 samples, 18.50%)</title><rect x="845.7" y="581" width="218.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="848.73" y="591.5" >x86_pmu_disable_all</text>
</g>
<g >
<title>irq_exit_rcu (6,928,841 samples, 0.29%)</title><rect x="641.6" y="629" width="3.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="644.55" y="639.5" ></text>
</g>
<g >
<title>mas_wr_store_entry.isra.0 (248,854 samples, 0.01%)</title><rect x="1187.3" y="309" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1190.26" y="319.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (439,363 samples, 0.02%)</title><rect x="625.8" y="597" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="628.82" y="607.5" ></text>
</g>
<g >
<title>tick_sched_do_timer (242,503 samples, 0.01%)</title><rect x="622.7" y="581" width="0.1" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="625.71" y="591.5" ></text>
</g>
<g >
<title>__memcg_slab_free_hook (587,802 samples, 0.02%)</title><rect x="1189.7" y="773" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="1192.71" y="783.5" ></text>
</g>
<g >
<title>set_task_cpu (292,316 samples, 0.01%)</title><rect x="444.9" y="533" width="0.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="447.89" y="543.5" ></text>
</g>
<g >
<title>__rcu_read_lock (327,261 samples, 0.01%)</title><rect x="461.3" y="517" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="464.31" y="527.5" ></text>
</g>
<g >
<title>x86_pmu_disable (3,033,131 samples, 0.13%)</title><rect x="1064.8" y="629" width="1.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1067.76" y="639.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (266,143 samples, 0.01%)</title><rect x="1186.7" y="805" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1189.73" y="815.5" ></text>
</g>
<g >
<title>psi_flags_change (948,231 samples, 0.04%)</title><rect x="1080.0" y="661" width="0.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1083.05" y="671.5" ></text>
</g>
<g >
<title>psi_task_switch (114,813,759 samples, 4.79%)</title><rect x="1073.7" y="677" width="56.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1076.67" y="687.5" >psi_t..</text>
</g>
<g >
<title>scheduler_tick (1,451,807 samples, 0.06%)</title><rect x="113.2" y="693" width="0.7" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="116.23" y="703.5" ></text>
</g>
<g >
<title>update_sg_lb_stats (2,799,621 samples, 0.12%)</title><rect x="689.4" y="581" width="1.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="692.43" y="591.5" ></text>
</g>
<g >
<title>scheduler_tick (390,243 samples, 0.02%)</title><rect x="214.9" y="597" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="217.91" y="607.5" ></text>
</g>
<g >
<title>__rcu_read_lock (2,259,256 samples, 0.09%)</title><rect x="657.2" y="645" width="1.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="660.18" y="655.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (252,158,941 samples, 10.52%)</title><rect x="478.3" y="469" width="124.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="481.35" y="479.5" >amd_pmu_disable..</text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (401,251 samples, 0.02%)</title><rect x="59.0" y="837" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="62.03" y="847.5" ></text>
</g>
<g >
<title>cpuacct_account_field (338,182 samples, 0.01%)</title><rect x="453.3" y="485" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="456.28" y="495.5" ></text>
</g>
<g >
<title>__x86_indirect_thunk_array (260,689 samples, 0.01%)</title><rect x="724.9" y="629" width="0.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="727.89" y="639.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (629,724 samples, 0.03%)</title><rect x="59.2" y="709" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="62.23" y="719.5" ></text>
</g>
<g >
<title>hrtimer_active (590,770 samples, 0.02%)</title><rect x="226.3" y="709" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="229.27" y="719.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (390,243 samples, 0.02%)</title><rect x="214.9" y="725" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="217.91" y="735.5" ></text>
</g>
<g >
<title>update_process_times (217,959 samples, 0.01%)</title><rect x="21.8" y="741" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="24.85" y="751.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (1,278,645 samples, 0.05%)</title><rect x="50.5" y="661" width="0.7" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="53.53" y="671.5" ></text>
</g>
<g >
<title>__schedule (870,692 samples, 0.04%)</title><rect x="225.2" y="709" width="0.5" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="228.24" y="719.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (2,175,460 samples, 0.09%)</title><rect x="112.9" y="757" width="1.0" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="115.87" y="767.5" ></text>
</g>
<g >
<title>std::ostream::flush (465,645 samples, 0.02%)</title><rect x="1187.7" y="645" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="1190.70" y="655.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (1,781,250 samples, 0.07%)</title><rect x="1128.6" y="597" width="0.9" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1131.61" y="607.5" ></text>
</g>
<g >
<title>run_rebalance_domains (273,504 samples, 0.01%)</title><rect x="272.5" y="597" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="275.53" y="607.5" ></text>
</g>
<g >
<title>std::ios_base::Init::~Init (465,645 samples, 0.02%)</title><rect x="1187.7" y="661" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="1190.70" y="671.5" ></text>
</g>
<g >
<title>__update_load_avg_se (846,388 samples, 0.04%)</title><rect x="643.8" y="517" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="646.77" y="527.5" ></text>
</g>
<g >
<title>arch_scale_freq_tick (785,203 samples, 0.03%)</title><rect x="453.9" y="533" width="0.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="456.94" y="543.5" ></text>
</g>
<g >
<title>XLogDecodeNextRecord (2,389,437,264 samples, 99.72%)</title><rect x="10.3" y="917" width="1176.7" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="13.35" y="927.5" >XLogDecodeNextRecord</text>
</g>
<g >
<title>native_read_msr (324,374 samples, 0.01%)</title><rect x="59.4" y="645" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="62.38" y="655.5" ></text>
</g>
<g >
<title>tlb_batch_pages_flush (586,473 samples, 0.02%)</title><rect x="1189.4" y="677" width="0.3" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="1192.42" y="687.5" ></text>
</g>
<g >
<title>handle_softirqs (273,504 samples, 0.01%)</title><rect x="272.5" y="613" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="275.53" y="623.5" ></text>
</g>
<g >
<title>native_read_msr (248,854 samples, 0.01%)</title><rect x="1187.3" y="37" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1190.26" y="47.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (504,469 samples, 0.02%)</title><rect x="21.7" y="821" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="24.70" y="831.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (573,585 samples, 0.02%)</title><rect x="213.7" y="757" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="216.74" y="767.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,336,089 samples, 0.06%)</title><rect x="1182.4" y="837" width="0.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1185.39" y="847.5" ></text>
</g>
<g >
<title>tick_sched_handle (266,143 samples, 0.01%)</title><rect x="1186.7" y="741" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1189.73" y="751.5" ></text>
</g>
<g >
<title>schedule_debug.isra.0 (1,080,294 samples, 0.05%)</title><rect x="1150.0" y="693" width="0.6" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1153.02" y="703.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (739,576 samples, 0.03%)</title><rect x="59.2" y="869" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="62.23" y="879.5" ></text>
</g>
<g >
<title>common_nsleep (8,112,138 samples, 0.34%)</title><rect x="1164.7" y="773" width="4.0" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1167.75" y="783.5" ></text>
</g>
</g>
</svg>