Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FranckPachot/a85346bf3a7fb3e6d1ab3c7be12e7a8e to your computer and use it in GitHub Desktop.
Save FranckPachot/a85346bf3a7fb3e6d1ab3c7be12e7a8e to your computer and use it in GitHub Desktop.
<?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="630" onload="init(evt)" viewBox="0 0 1200 630" 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 { opacity:0.1; cursor:pointer; }
#search:hover, #search.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;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
}
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();
zoom(target);
}
else if (e.target.id == "unzoom") unzoom();
else if (e.target.id == "search") search_prompt();
}, 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
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// functions
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
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;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x = txt.length - 2; x > 0; x--) {
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);
}
}
}
}
function unzoom() {
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]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
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;
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="630.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="613" > </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="matched" x="1090.00" y="613" > </text>
<g id="frames">
<g >
<title>palloc (14 samples, 0.02%)</title><rect x="616.8" y="405" width="0.2" height="15.0" fill="rgb(3537,90,-354911973014429)" rx="2" ry="2" />
<text x="619.77" y="415.5" ></text>
</g>
<g >
<title>hash_search (20 samples, 0.03%)</title><rect x="602.6" y="309" width="0.3" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="605.60" y="319.5" ></text>
</g>
<g >
<title>socket_putmessage (126 samples, 0.18%)</title><rect x="956.3" y="453" width="2.1" height="15.0" fill="rgb(88,173,225)" rx="2" ry="2" />
<text x="959.28" y="463.5" ></text>
</g>
<g >
<title>pqReadData (366 samples, 0.52%)</title><rect x="287.5" y="469" width="6.1" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="290.48" y="479.5" ></text>
</g>
<g >
<title>unroll_tree_refs (19 samples, 0.03%)</title><rect x="925.3" y="325" width="0.3" height="15.0" fill="rgb(239,154,37)" rx="2" ry="2" />
<text x="928.25" y="335.5" ></text>
</g>
<g >
<title>lock_hrtimer_base.isra.21 (36 samples, 0.05%)</title><rect x="1162.3" y="437" width="0.6" height="15.0" fill="rgb(225,151,22)" rx="2" ry="2" />
<text x="1165.30" y="447.5" ></text>
</g>
<g >
<title>update_rq_clock (109 samples, 0.15%)</title><rect x="183.2" y="165" width="1.9" height="15.0" fill="rgb(240,150,39)" rx="2" ry="2" />
<text x="186.25" y="175.5" ></text>
</g>
<g >
<title>MarkPortalActive (18 samples, 0.03%)</title><rect x="457.9" y="437" width="0.3" height="15.0" fill="rgb(197,173,166)" rx="2" ry="2" />
<text x="460.88" y="447.5" ></text>
</g>
<g >
<title>dostr (8 samples, 0.01%)</title><rect x="304.5" y="405" width="0.2" height="15.0" fill="rgb(54790,201,83)" rx="2" ry="2" />
<text x="307.54" y="415.5" ></text>
</g>
<g >
<title>default_wake_function (10 samples, 0.01%)</title><rect x="656.5" y="213" width="0.2" height="15.0" fill="rgb(247,200,46)" rx="2" ry="2" />
<text x="659.50" y="223.5" ></text>
</g>
<g >
<title>superuser_arg (8 samples, 0.01%)</title><rect x="585.0" y="309" width="0.1" height="15.0" fill="rgb(195,218,231)" rx="2" ry="2" />
<text x="587.97" y="319.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (26 samples, 0.04%)</title><rect x="863.4" y="325" width="0.5" height="15.0" fill="rgb(243,151,42)" rx="2" ry="2" />
<text x="866.42" y="335.5" ></text>
</g>
<g >
<title>[unknown] (119 samples, 0.17%)</title><rect x="273.6" y="453" width="2.0" height="15.0" fill="rgb(242,180,40)" rx="2" ry="2" />
<text x="276.58" y="463.5" ></text>
</g>
<g >
<title>reschedule_interrupt (12 samples, 0.02%)</title><rect x="985.2" y="549" width="0.2" height="15.0" fill="rgb(236,165,34)" rx="2" ry="2" />
<text x="988.17" y="559.5" ></text>
</g>
<g >
<title>__switch_to (25 samples, 0.04%)</title><rect x="846.0" y="245" width="0.5" height="15.0" fill="rgb(238,132,37)" rx="2" ry="2" />
<text x="849.05" y="255.5" ></text>
</g>
<g >
<title>timerqueue_add (94 samples, 0.13%)</title><rect x="1129.2" y="405" width="1.6" height="15.0" fill="rgb(253,148,53)" rx="2" ry="2" />
<text x="1132.20" y="415.5" ></text>
</g>
<g >
<title>unix_stream_recvmsg (1,364 samples, 1.94%)</title><rect x="54.3" y="357" width="22.8" height="15.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text x="57.27" y="367.5" >u..</text>
</g>
<g >
<title>__fget_light (9 samples, 0.01%)</title><rect x="241.6" y="421" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="244.62" y="431.5" ></text>
</g>
<g >
<title>__strlen_sse2 (12 samples, 0.02%)</title><rect x="222.0" y="453" width="0.2" height="15.0" fill="rgb(247,132,47)" rx="2" ry="2" />
<text x="225.00" y="463.5" ></text>
</g>
<g >
<title>main (34,306 samples, 48.71%)</title><rect x="396.6" y="517" width="574.8" height="15.0" fill="rgb(250,248,175070962044235)" rx="2" ry="2" />
<text x="399.61" y="527.5" >main</text>
</g>
<g >
<title>resched_curr (41 samples, 0.06%)</title><rect x="300.8" y="101" width="0.6" height="15.0" fill="rgb(237,165,35)" rx="2" ry="2" />
<text x="303.75" y="111.5" ></text>
</g>
<g >
<title>sock_has_perm (10 samples, 0.01%)</title><rect x="53.8" y="341" width="0.2" height="15.0" fill="rgb(231,175,29)" rx="2" ry="2" />
<text x="56.85" y="351.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (16 samples, 0.02%)</title><rect x="491.9" y="309" width="0.3" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="494.90" y="319.5" ></text>
</g>
<g >
<title>__x2apic_send_IPI_dest.constprop.4 (26 samples, 0.04%)</title><rect x="679.7" y="69" width="0.5" height="15.0" fill="rgb(246,154,45)" rx="2" ry="2" />
<text x="682.72" y="79.5" ></text>
</g>
<g >
<title>__schedule (976 samples, 1.39%)</title><rect x="247.6" y="357" width="16.4" height="15.0" fill="rgb(237,132,35)" rx="2" ry="2" />
<text x="250.61" y="367.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (6 samples, 0.01%)</title><rect x="203.8" y="437" width="0.1" height="15.0" fill="rgb(242,151,40)" rx="2" ry="2" />
<text x="206.82" y="447.5" ></text>
</g>
<g >
<title>fmgr_info_copy (21 samples, 0.03%)</title><rect x="384.3" y="373" width="0.4" height="15.0" fill="rgb(145,11509185,99)" rx="2" ry="2" />
<text x="387.34" y="383.5" ></text>
</g>
<g >
<title>ServerLoop (34,306 samples, 48.71%)</title><rect x="396.6" y="485" width="574.8" height="15.0" fill="rgb(106,173,220)" rx="2" ry="2" />
<text x="399.61" y="495.5" >ServerLoop</text>
</g>
<g >
<title>ExecInitScanTupleSlot (258 samples, 0.37%)</title><rect x="595.9" y="389" width="4.3" height="15.0" fill="rgb(81,86,92)" rx="2" ry="2" />
<text x="598.88" y="399.5" ></text>
</g>
<g >
<title>MakeTupleTableSlot (150 samples, 0.21%)</title><rect x="596.6" y="357" width="2.5" height="15.0" fill="rgb(81,86,166)" rx="2" ry="2" />
<text x="599.63" y="367.5" ></text>
</g>
<g >
<title>place_entity (31 samples, 0.04%)</title><rect x="672.3" y="101" width="0.5" height="15.0" fill="rgb(240,165,38)" rx="2" ry="2" />
<text x="675.28" y="111.5" ></text>
</g>
<g >
<title>palloc (33 samples, 0.05%)</title><rect x="560.1" y="309" width="0.5" height="15.0" fill="rgb(3537,90,-354911973014429)" rx="2" ry="2" />
<text x="563.09" y="319.5" ></text>
</g>
<g >
<title>pick_next_task_idle (106 samples, 0.15%)</title><rect x="856.5" y="245" width="1.7" height="15.0" fill="rgb(240,174,39)" rx="2" ry="2" />
<text x="859.45" y="255.5" ></text>
</g>
<g >
<title>sys_sendto (305 samples, 0.43%)</title><rect x="297.0" y="357" width="5.1" height="15.0" fill="rgb(243,167,42)" rx="2" ry="2" />
<text x="299.98" y="367.5" ></text>
</g>
<g >
<title>__fdget (77 samples, 0.11%)</title><rect x="240.3" y="421" width="1.3" height="15.0" fill="rgb(237,135,35)" rx="2" ry="2" />
<text x="243.33" y="431.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (34 samples, 0.05%)</title><rect x="244.7" y="389" width="0.6" height="15.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text x="247.74" y="399.5" ></text>
</g>
<g >
<title>evaluateExpr (21 samples, 0.03%)</title><rect x="303.8" y="485" width="0.3" height="15.0" fill="rgb(208,154,89)" rx="2" ry="2" />
<text x="306.77" y="495.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (11 samples, 0.02%)</title><rect x="855.8" y="229" width="0.1" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="858.75" y="239.5" ></text>
</g>
<g >
<title>secure_write (147 samples, 0.21%)</title><rect x="390.2" y="517" width="2.5" height="15.0" fill="rgb(88,57,14222646)" rx="2" ry="2" />
<text x="393.23" y="527.5" ></text>
</g>
<g >
<title>ExecTargetListLength (19 samples, 0.03%)</title><rect x="591.5" y="357" width="0.3" height="15.0" fill="rgb(81,87,93)" rx="2" ry="2" />
<text x="594.49" y="367.5" ></text>
</g>
<g >
<title>hrtimer_cancel (29 samples, 0.04%)</title><rect x="1187.5" y="405" width="0.4" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" />
<text x="1190.45" y="415.5" ></text>
</g>
<g >
<title>enqueue_entity (198 samples, 0.28%)</title><rect x="170.6" y="117" width="3.3" height="15.0" fill="rgb(240,205,38)" rx="2" ry="2" />
<text x="173.63" y="127.5" ></text>
</g>
<g >
<title>dequeue_task_fair (232 samples, 0.33%)</title><rect x="252.5" y="325" width="3.9" height="15.0" fill="rgb(240,203,39)" rx="2" ry="2" />
<text x="255.53" y="335.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (7 samples, 0.01%)</title><rect x="591.9" y="341" width="0.1" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="594.89" y="351.5" ></text>
</g>
<g >
<title>__virt_addr_valid (10 samples, 0.01%)</title><rect x="641.2" y="245" width="0.2" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" />
<text x="644.20" y="255.5" ></text>
</g>
<g >
<title>rb_next (33 samples, 0.05%)</title><rect x="1112.2" y="405" width="0.5" height="15.0" fill="rgb(230,112,27)" rx="2" ry="2" />
<text x="1115.19" y="415.5" ></text>
</g>
<g >
<title>activate_task (280 samples, 0.40%)</title><rect x="169.4" y="149" width="4.6" height="15.0" fill="rgb(236,148,34)" rx="2" ry="2" />
<text x="172.36" y="159.5" ></text>
</g>
<g >
<title>recomputeNamespacePath (53 samples, 0.08%)</title><rect x="433.0" y="405" width="0.8" height="15.0" fill="rgb(78,81693,199)" rx="2" ry="2" />
<text x="435.95" y="415.5" ></text>
</g>
<g >
<title>__tick_nohz_idle_enter (3,239 samples, 4.60%)</title><rect x="1081.5" y="469" width="54.2" height="15.0" fill="rgb(240,128,38)" rx="2" ry="2" />
<text x="1084.46" y="479.5" >__tic..</text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (128 samples, 0.18%)</title><rect x="825.4" y="309" width="2.2" height="15.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text x="828.44" y="319.5" ></text>
</g>
<g >
<title>btint4cmp (42 samples, 0.06%)</title><rect x="355.5" y="309" width="0.7" height="15.0" fill="rgb(63,131,63)" rx="2" ry="2" />
<text x="358.51" y="319.5" ></text>
</g>
<g >
<title>_bt_compare (481 samples, 0.68%)</title><rect x="348.2" y="341" width="8.0" height="15.0" fill="rgb(63,132,62)" rx="2" ry="2" />
<text x="351.15" y="351.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (63 samples, 0.09%)</title><rect x="602.9" y="309" width="1.1" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="605.93" y="319.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (20 samples, 0.03%)</title><rect x="164.8" y="149" width="0.4" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="167.83" y="159.5" ></text>
</g>
<g >
<title>unix_stream_read_actor (202 samples, 0.29%)</title><rect x="917.5" y="277" width="3.3" height="15.0" fill="rgb(241,145,39)" rx="2" ry="2" />
<text x="920.46" y="287.5" ></text>
</g>
<g >
<title>index_getprocinfo (26 samples, 0.04%)</title><rect x="384.7" y="373" width="0.4" height="15.0" fill="rgb(61,111,147)" rx="2" ry="2" />
<text x="387.70" y="383.5" ></text>
</g>
<g >
<title>__strcmp_sse42 (61 samples, 0.09%)</title><rect x="212.9" y="389" width="1.0" height="15.0" fill="rgb(242,132,41)" rx="2" ry="2" />
<text x="215.89" y="399.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (14 samples, 0.02%)</title><rect x="820.6" y="325" width="0.2" height="15.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text x="823.58" y="335.5" ></text>
</g>
<g >
<title>__sigjmp_save (7 samples, 0.01%)</title><rect x="941.6" y="437" width="0.2" height="15.0" fill="rgb(243,132,42)" rx="2" ry="2" />
<text x="944.64" y="447.5" ></text>
</g>
<g >
<title>palloc (15 samples, 0.02%)</title><rect x="585.9" y="325" width="0.3" height="15.0" fill="rgb(3537,90,-354911973014429)" rx="2" ry="2" />
<text x="588.94" y="335.5" ></text>
</g>
<g >
<title>palloc (35 samples, 0.05%)</title><rect x="556.9" y="325" width="0.6" height="15.0" fill="rgb(3537,90,-354911973014429)" rx="2" ry="2" />
<text x="559.92" y="335.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (13 samples, 0.02%)</title><rect x="365.0" y="277" width="0.3" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="368.04" y="287.5" ></text>
</g>
<g >
<title>AtEOXact_Inval (14 samples, 0.02%)</title><rect x="722.1" y="405" width="0.3" height="15.0" fill="rgb(142,66419,56)" rx="2" ry="2" />
<text x="725.15" y="415.5" ></text>
</g>
<g >
<title>ep_scan_ready_list.isra.11 (797 samples, 1.13%)</title><rect x="827.6" y="309" width="13.4" height="15.0" fill="rgb(226,176,24)" rx="2" ry="2" />
<text x="830.60" y="319.5" ></text>
</g>
<g >
<title>UnregisterSnapshotFromOwner (92 samples, 0.13%)</title><rect x="732.7" y="341" width="1.6" height="15.0" fill="rgb(202,201,242)" rx="2" ry="2" />
<text x="735.73" y="351.5" ></text>
</g>
<g >
<title>update_curr (69 samples, 0.10%)</title><rect x="849.8" y="197" width="1.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="852.79" y="207.5" ></text>
</g>
<g >
<title>appendBinaryStringInfoNT (47 samples, 0.07%)</title><rect x="515.3" y="389" width="0.8" height="15.0" fill="rgb(86,215,54)" rx="2" ry="2" />
<text x="518.27" y="399.5" ></text>
</g>
<g >
<title>ExecEndNode (23 samples, 0.03%)</title><rect x="743.2" y="341" width="0.4" height="15.0" fill="rgb(81,85,90)" rx="2" ry="2" />
<text x="746.21" y="351.5" ></text>
</g>
<g >
<title>writen (46 samples, 0.07%)</title><rect x="12.1" y="549" width="0.7" height="15.0" fill="rgb(247,108,46)" rx="2" ry="2" />
<text x="15.08" y="559.5" ></text>
</g>
<g >
<title>__alloc_skb (393 samples, 0.56%)</title><rect x="645.7" y="245" width="6.6" height="15.0" fill="rgb(227,151,24)" rx="2" ry="2" />
<text x="648.72" y="255.5" ></text>
</g>
<g >
<title>socket_putmessage (73 samples, 0.10%)</title><rect x="617.4" y="421" width="1.3" height="15.0" fill="rgb(88,173,225)" rx="2" ry="2" />
<text x="620.44" y="431.5" ></text>
</g>
<g >
<title>pqFlush (146 samples, 0.21%)</title><rect x="16.8" y="517" width="2.4" height="15.0" fill="rgb(241,90,190)" rx="2" ry="2" />
<text x="19.80" y="527.5" ></text>
</g>
<g >
<title>_int_malloc (16 samples, 0.02%)</title><rect x="294.6" y="421" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="297.60" y="431.5" ></text>
</g>
<g >
<title>__strcpy_sse2_unaligned (50 samples, 0.07%)</title><rect x="117.8" y="453" width="0.8" height="15.0" fill="rgb(251,132,51)" rx="2" ry="2" />
<text x="120.80" y="463.5" ></text>
</g>
<g >
<title>schedule (98 samples, 0.14%)</title><rect x="307.1" y="357" width="1.6" height="15.0" fill="rgb(237,164,35)" rx="2" ry="2" />
<text x="310.05" y="367.5" ></text>
</g>
<g >
<title>do_syscall_64 (7 samples, 0.01%)</title><rect x="11.8" y="501" width="0.2" height="15.0" fill="rgb(232,189,30)" rx="2" ry="2" />
<text x="14.84" y="511.5" ></text>
</g>
<g >
<title>__strncmp_sse42 (18 samples, 0.03%)</title><rect x="752.6" y="357" width="0.3" height="15.0" fill="rgb(242,132,41)" rx="2" ry="2" />
<text x="755.59" y="367.5" ></text>
</g>
<g >
<title>SnapshotResetXmin (53 samples, 0.08%)</title><rect x="460.0" y="421" width="0.9" height="15.0" fill="rgb(202,201,225)" rx="2" ry="2" />
<text x="462.98" y="431.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (18 samples, 0.03%)</title><rect x="1061.5" y="437" width="0.3" height="15.0" fill="rgb(236,134,34)" rx="2" ry="2" />
<text x="1064.52" y="447.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (9 samples, 0.01%)</title><rect x="269.1" y="341" width="0.1" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="272.07" y="351.5" ></text>
</g>
<g >
<title>worker_thread (15 samples, 0.02%)</title><rect x="10.5" y="517" width="0.3" height="15.0" fill="rgb(241,133,40)" rx="2" ry="2" />
<text x="13.50" y="527.5" ></text>
</g>
<g >
<title>AllocSetAlloc (38 samples, 0.05%)</title><rect x="791.0" y="421" width="0.7" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="794.04" y="431.5" ></text>
</g>
<g >
<title>ret_from_fork (15 samples, 0.02%)</title><rect x="10.5" y="549" width="0.3" height="15.0" fill="rgb(236,162,34)" rx="2" ry="2" />
<text x="13.50" y="559.5" ></text>
</g>
<g >
<title>security_socket_sendmsg (6 samples, 0.01%)</title><rect x="135.0" y="341" width="0.1" height="15.0" fill="rgb(243,170,42)" rx="2" ry="2" />
<text x="138.01" y="351.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (74 samples, 0.11%)</title><rect x="144.5" y="293" width="1.2" height="15.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text x="147.46" y="303.5" ></text>
</g>
<g >
<title>hash_any (16 samples, 0.02%)</title><rect x="430.0" y="325" width="0.2" height="15.0" fill="rgb(147,107,143)" rx="2" ry="2" />
<text x="432.97" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (14 samples, 0.02%)</title><rect x="588.8" y="357" width="0.3" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="591.84" y="367.5" ></text>
</g>
<g >
<title>IncrTupleDescRefCount (76 samples, 0.11%)</title><rect x="597.2" y="341" width="1.2" height="15.0" fill="rgb(53,229,147)" rx="2" ry="2" />
<text x="600.15" y="351.5" ></text>
</g>
<g >
<title>cpuacct_charge (44 samples, 0.06%)</title><rect x="850.1" y="181" width="0.7" height="15.0" fill="rgb(244,118,43)" rx="2" ry="2" />
<text x="853.07" y="191.5" ></text>
</g>
<g >
<title>ModifyWaitEvent (32 samples, 0.05%)</title><rect x="803.9" y="405" width="0.5" height="15.0" fill="rgb(126,122,168)" rx="2" ry="2" />
<text x="806.91" y="415.5" ></text>
</g>
<g >
<title>_int_malloc (20 samples, 0.03%)</title><rect x="295.4" y="421" width="0.4" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="298.42" y="431.5" ></text>
</g>
<g >
<title>palloc (10 samples, 0.01%)</title><rect x="569.8" y="325" width="0.1" height="15.0" fill="rgb(3537,90,-354911973014429)" rx="2" ry="2" />
<text x="572.77" y="335.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (32 samples, 0.05%)</title><rect x="493.2" y="277" width="0.5" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="496.20" y="287.5" ></text>
</g>
<g >
<title>OidInputFunctionCall (195 samples, 0.28%)</title><rect x="451.6" y="453" width="3.3" height="15.0" fill="rgb(145,11509185,173)" rx="2" ry="2" />
<text x="454.63" y="463.5" ></text>
</g>
<g >
<title>irq_exit (7 samples, 0.01%)</title><rect x="1061.7" y="405" width="0.1" height="15.0" fill="rgb(237,153,36)" rx="2" ry="2" />
<text x="1064.69" y="415.5" ></text>
</g>
<g >
<title>list_delete_cell (86 samples, 0.12%)</title><rect x="746.8" y="309" width="1.4" height="15.0" fill="rgb(91,1623125281314712,160)" rx="2" ry="2" />
<text x="749.78" y="319.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (9 samples, 0.01%)</title><rect x="38.1" y="437" width="0.2" height="15.0" fill="rgb(236,134,34)" rx="2" ry="2" />
<text x="41.13" y="447.5" ></text>
</g>
<g >
<title>native_write_msr (18 samples, 0.03%)</title><rect x="1186.4" y="341" width="0.3" height="15.0" fill="rgb(241,158,40)" rx="2" ry="2" />
<text x="1189.45" y="351.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (36 samples, 0.05%)</title><rect x="693.5" y="325" width="0.6" height="15.0" fill="rgb(243,151,42)" rx="2" ry="2" />
<text x="696.51" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (11 samples, 0.02%)</title><rect x="613.4" y="389" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="616.40" y="399.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (8 samples, 0.01%)</title><rect x="1135.7" y="453" width="0.2" height="15.0" fill="rgb(236,126,34)" rx="2" ry="2" />
<text x="1138.75" y="463.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (156 samples, 0.22%)</title><rect x="601.4" y="325" width="2.6" height="15.0" fill="rgb(142,187,201)" rx="2" ry="2" />
<text x="604.37" y="335.5" ></text>
</g>
<g >
<title>check_spread.isra.40 (8 samples, 0.01%)</title><rect x="857.7" y="213" width="0.2" height="15.0" fill="rgb(225,116,22)" rx="2" ry="2" />
<text x="860.73" y="223.5" ></text>
</g>
<g >
<title>pgstat_clear_snapshot (16 samples, 0.02%)</title><rect x="782.7" y="405" width="0.3" height="15.0" fill="rgb(106,166,184)" rx="2" ry="2" />
<text x="785.75" y="415.5" ></text>
</g>
<g >
<title>selinux_socket_recvmsg (15 samples, 0.02%)</title><rect x="289.3" y="325" width="0.3" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="292.34" y="335.5" ></text>
</g>
<g >
<title>__schedule (56 samples, 0.08%)</title><rect x="1182.9" y="421" width="1.0" height="15.0" fill="rgb(237,132,35)" rx="2" ry="2" />
<text x="1185.95" y="431.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (31 samples, 0.04%)</title><rect x="1085.9" y="453" width="0.5" height="15.0" fill="rgb(244,130,43)" rx="2" ry="2" />
<text x="1088.88" y="463.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (7 samples, 0.01%)</title><rect x="1151.3" y="421" width="0.1" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="1154.30" y="431.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (58 samples, 0.08%)</title><rect x="1115.4" y="357" width="0.9" height="15.0" fill="rgb(244,130,43)" rx="2" ry="2" />
<text x="1118.37" y="367.5" ></text>
</g>
<g >
<title>ep_poll_callback (17 samples, 0.02%)</title><rect x="69.3" y="197" width="0.3" height="15.0" fill="rgb(242,176,40)" rx="2" ry="2" />
<text x="72.28" y="207.5" ></text>
</g>
<g >
<title>tts_virtual_clear (18 samples, 0.03%)</title><rect x="742.9" y="325" width="0.3" height="15.0" fill="rgb(81,86,239)" rx="2" ry="2" />
<text x="745.90" y="335.5" ></text>
</g>
<g >
<title>kfree (10 samples, 0.01%)</title><rect x="80.7" y="373" width="0.2" height="15.0" fill="rgb(246,139,46)" rx="2" ry="2" />
<text x="83.74" y="383.5" ></text>
</g>
<g >
<title>DataChecksumsEnabled (27 samples, 0.04%)</title><rect x="342.6" y="341" width="0.4" height="15.0" fill="rgb(71,-4665923811366657,78)" rx="2" ry="2" />
<text x="345.57" y="351.5" ></text>
</g>
<g >
<title>_raw_spin_lock (109 samples, 0.15%)</title><rect x="897.9" y="277" width="1.9" height="15.0" fill="rgb(240,166,39)" rx="2" ry="2" />
<text x="900.92" y="287.5" ></text>
</g>
<g >
<title>ep_poll (2,384 samples, 3.39%)</title><rect x="820.8" y="325" width="40.0" height="15.0" fill="rgb(229,176,26)" rx="2" ry="2" />
<text x="823.85" y="335.5" >ep_..</text>
</g>
<g >
<title>dequeue_task_fair (276 samples, 0.39%)</title><rect x="847.9" y="229" width="4.7" height="15.0" fill="rgb(240,203,39)" rx="2" ry="2" />
<text x="850.93" y="239.5" ></text>
</g>
<g >
<title>pg_snprintf (311 samples, 0.44%)</title><rect x="215.8" y="485" width="5.2" height="15.0" fill="rgb(54790,201,184)" rx="2" ry="2" />
<text x="218.75" y="495.5" ></text>
</g>
<g >
<title>pg_sprintf (193 samples, 0.27%)</title><rect x="223.5" y="501" width="3.3" height="15.0" fill="rgb(54790,201,184)" rx="2" ry="2" />
<text x="226.53" y="511.5" ></text>
</g>
<g >
<title>sched_clock_cpu (38 samples, 0.05%)</title><rect x="184.4" y="149" width="0.7" height="15.0" fill="rgb(238,164,36)" rx="2" ry="2" />
<text x="187.44" y="159.5" ></text>
</g>
<g >
<title>lappend (63 samples, 0.09%)</title><rect x="599.1" y="357" width="1.1" height="15.0" fill="rgb(91,1623125281314712,156)" rx="2" ry="2" />
<text x="602.15" y="367.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (13 samples, 0.02%)</title><rect x="571.2" y="357" width="0.3" height="15.0" fill="rgb(81,84,95)" rx="2" ry="2" />
<text x="574.25" y="367.5" ></text>
</g>
<g >
<title>xactGetCommittedInvalidationMessages (20 samples, 0.03%)</title><rect x="784.3" y="405" width="0.3" height="15.0" fill="rgb(142,66419,247)" rx="2" ry="2" />
<text x="787.27" y="415.5" ></text>
</g>
<g >
<title>fput (21 samples, 0.03%)</title><rect x="50.4" y="373" width="0.4" height="15.0" fill="rgb(234,174,31)" rx="2" ry="2" />
<text x="53.43" y="383.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (7 samples, 0.01%)</title><rect x="1152.3" y="341" width="0.1" height="15.0" fill="rgb(241,163,40)" rx="2" ry="2" />
<text x="1155.30" y="351.5" ></text>
</g>
<g >
<title>rb_insert_color (22 samples, 0.03%)</title><rect x="1130.4" y="389" width="0.4" height="15.0" fill="rgb(246,112,46)" rx="2" ry="2" />
<text x="1133.40" y="399.5" ></text>
</g>
<g >
<title>__libc_recv (3,560 samples, 5.05%)</title><rect x="35.6" y="453" width="59.6" height="15.0" fill="rgb(237,154,35)" rx="2" ry="2" />
<text x="38.55" y="463.5" >__libc..</text>
</g>
<g >
<title>fput (7 samples, 0.01%)</title><rect x="79.0" y="389" width="0.2" height="15.0" fill="rgb(234,174,31)" rx="2" ry="2" />
<text x="82.05" y="399.5" ></text>
</g>
<g >
<title>LWLockAcquire (186 samples, 0.26%)</title><rect x="359.5" y="293" width="3.1" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="362.48" y="303.5" ></text>
</g>
<g >
<title>_bt_mark_scankey_required (23 samples, 0.03%)</title><rect x="341.0" y="357" width="0.4" height="15.0" fill="rgb(63,133,63)" rx="2" ry="2" />
<text x="343.96" y="367.5" ></text>
</g>
<g >
<title>RelationIncrementReferenceCount (34 samples, 0.05%)</title><rect x="601.9" y="309" width="0.6" height="15.0" fill="rgb(142,187,202)" rx="2" ry="2" />
<text x="604.93" y="319.5" ></text>
</g>
<g >
<title>update_process_times (25 samples, 0.04%)</title><rect x="1012.1" y="325" width="0.4" height="15.0" fill="rgb(243,150,42)" rx="2" ry="2" />
<text x="1015.08" y="335.5" ></text>
</g>
<g >
<title>[unknown] (130 samples, 0.18%)</title><rect x="872.8" y="389" width="2.2" height="15.0" fill="rgb(242,180,40)" rx="2" ry="2" />
<text x="875.77" y="399.5" ></text>
</g>
<g >
<title>SYSC_sendto (304 samples, 0.43%)</title><rect x="297.0" y="341" width="5.1" height="15.0" fill="rgb(243,165,42)" rx="2" ry="2" />
<text x="299.98" y="351.5" ></text>
</g>
<g >
<title>AllocSetDelete (19 samples, 0.03%)</title><rect x="745.8" y="309" width="0.3" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="748.75" y="319.5" ></text>
</g>
<g >
<title>__libc_send (147 samples, 0.21%)</title><rect x="390.2" y="501" width="2.5" height="15.0" fill="rgb(251,154,51)" rx="2" ry="2" />
<text x="393.23" y="511.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (17 samples, 0.02%)</title><rect x="521.0" y="357" width="0.3" height="15.0" fill="rgb(242,151,40)" rx="2" ry="2" />
<text x="524.05" y="367.5" ></text>
</g>
<g >
<title>block_write_end (13 samples, 0.02%)</title><rect x="12.5" y="325" width="0.2" height="15.0" fill="rgb(251,110,51)" rx="2" ry="2" />
<text x="15.46" y="335.5" ></text>
</g>
<g >
<title>free (6 samples, 0.01%)</title><rect x="737.3" y="293" width="0.1" height="15.0" fill="rgb(246,177,46)" rx="2" ry="2" />
<text x="740.31" y="303.5" ></text>
</g>
<g >
<title>AllocSetAlloc (19 samples, 0.03%)</title><rect x="555.7" y="341" width="0.4" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="558.75" y="351.5" ></text>
</g>
<g >
<title>load_new_mm_cr3 (206 samples, 0.29%)</title><rect x="1075.7" y="437" width="3.4" height="15.0" fill="rgb(246,157,45)" rx="2" ry="2" />
<text x="1078.68" y="447.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (80 samples, 0.11%)</title><rect x="112.1" y="421" width="1.4" height="15.0" fill="rgb(242,151,40)" rx="2" ry="2" />
<text x="115.14" y="431.5" ></text>
</g>
<g >
<title>security_socket_sendmsg (72 samples, 0.10%)</title><rect x="135.8" y="325" width="1.2" height="15.0" fill="rgb(243,170,42)" rx="2" ry="2" />
<text x="138.78" y="335.5" ></text>
</g>
<g >
<title>postgres (39,415 samples, 55.97%)</title><rect x="315.6" y="565" width="660.4" height="15.0" fill="rgb(239,186,38)" rx="2" ry="2" />
<text x="318.56" y="575.5" >postgres</text>
</g>
<g >
<title>skb_free_head (113 samples, 0.16%)</title><rect x="902.6" y="229" width="1.9" height="15.0" fill="rgb(241,143,40)" rx="2" ry="2" />
<text x="905.62" y="239.5" ></text>
</g>
<g >
<title>appendPQExpBufferStr (10 samples, 0.01%)</title><rect x="98.0" y="469" width="0.2" height="15.0" fill="rgb(241,174,54)" rx="2" ry="2" />
<text x="101.05" y="479.5" ></text>
</g>
<g >
<title>switch_mm_irqs_off (167 samples, 0.24%)</title><rect x="972.7" y="389" width="2.8" height="15.0" fill="rgb(246,115,45)" rx="2" ry="2" />
<text x="975.74" y="399.5" ></text>
</g>
<g >
<title>printtup_prepare_info (174 samples, 0.25%)</title><rect x="517.5" y="389" width="2.9" height="15.0" fill="rgb(53,177,194)" rx="2" ry="2" />
<text x="520.51" y="399.5" ></text>
</g>
<g >
<title>put_prev_entity (6 samples, 0.01%)</title><rect x="261.8" y="325" width="0.1" height="15.0" fill="rgb(240,152,38)" rx="2" ry="2" />
<text x="264.83" y="335.5" ></text>
</g>
<g >
<title>unroll_tree_refs (11 samples, 0.02%)</title><rect x="81.1" y="373" width="0.2" height="15.0" fill="rgb(239,154,37)" rx="2" ry="2" />
<text x="84.14" y="383.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (35 samples, 0.05%)</title><rect x="145.7" y="293" width="0.6" height="15.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text x="148.70" y="303.5" ></text>
</g>
<g >
<title>__remove_hrtimer (1,076 samples, 1.53%)</title><rect x="1109.9" y="421" width="18.0" height="15.0" fill="rgb(245,135,44)" rx="2" ry="2" />
<text x="1112.88" y="431.5" ></text>
</g>
<g >
<title>RecoveryInProgress (23 samples, 0.03%)</title><rect x="966.5" y="405" width="0.4" height="15.0" fill="rgb(71,-4665923811366657,11178493)" rx="2" ry="2" />
<text x="969.50" y="415.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (16 samples, 0.02%)</title><rect x="771.8" y="341" width="0.3" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="774.82" y="351.5" ></text>
</g>
<g >
<title>native_apic_msr_eoi_write (349 samples, 0.50%)</title><rect x="1018.4" y="373" width="5.8" height="15.0" fill="rgb(240,158,38)" rx="2" ry="2" />
<text x="1021.36" y="383.5" ></text>
</g>
<g >
<title>_copy_to_iter (13 samples, 0.02%)</title><rect x="291.7" y="277" width="0.2" height="15.0" fill="rgb(240,180,38)" rx="2" ry="2" />
<text x="294.67" y="287.5" ></text>
</g>
<g >
<title>hash_seq_search (162 samples, 0.23%)</title><rect x="754.5" y="389" width="2.7" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="757.52" y="399.5" ></text>
</g>
<g >
<title>ShutdownExprContext.isra.2 (7 samples, 0.01%)</title><rect x="472.2" y="357" width="0.1" height="15.0" fill="rgb(81,87,223)" rx="2" ry="2" />
<text x="475.17" y="367.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (11 samples, 0.02%)</title><rect x="572.4" y="373" width="0.2" height="15.0" fill="rgb(145,11509185,99)" rx="2" ry="2" />
<text x="575.44" y="383.5" ></text>
</g>
<g >
<title>check_stack_depth (11 samples, 0.02%)</title><rect x="582.1" y="325" width="0.2" height="15.0" fill="rgb(135,173,68)" rx="2" ry="2" />
<text x="585.11" y="335.5" ></text>
</g>
<g >
<title>__next_timer_interrupt (509 samples, 0.72%)</title><rect x="1093.7" y="421" width="8.6" height="15.0" fill="rgb(236,148,34)" rx="2" ry="2" />
<text x="1096.74" y="431.5" ></text>
</g>
<g >
<title>malloc (77 samples, 0.11%)</title><rect x="222.2" y="453" width="1.3" height="15.0" fill="rgb(238,112,36)" rx="2" ry="2" />
<text x="225.20" y="463.5" ></text>
</g>
<g >
<title>__wake_up_locked (1,650 samples, 2.34%)</title><rect x="158.1" y="229" width="27.7" height="15.0" fill="rgb(245,119,44)" rx="2" ry="2" />
<text x="161.13" y="239.5" >_..</text>
</g>
<g >
<title>kvm_sched_clock_read (94 samples, 0.13%)</title><rect x="1088.0" y="405" width="1.6" height="15.0" fill="rgb(241,130,40)" rx="2" ry="2" />
<text x="1091.01" y="415.5" ></text>
</g>
<g >
<title>switch_mm (13 samples, 0.02%)</title><rect x="307.9" y="309" width="0.2" height="15.0" fill="rgb(220,115,17)" rx="2" ry="2" />
<text x="310.91" y="319.5" ></text>
</g>
<g >
<title>arch_cpu_idle (15 samples, 0.02%)</title><rect x="999.1" y="485" width="0.2" height="15.0" fill="rgb(240,144,39)" rx="2" ry="2" />
<text x="1002.07" y="495.5" ></text>
</g>
<g >
<title>selinux_socket_getpeersec_dgram (28 samples, 0.04%)</title><rect x="639.7" y="261" width="0.5" height="15.0" fill="rgb(225,179,22)" rx="2" ry="2" />
<text x="642.69" y="271.5" ></text>
</g>
<g >
<title>pqSendSome (393 samples, 0.56%)</title><rect x="296.3" y="437" width="6.6" height="15.0" fill="rgb(241,90,192)" rx="2" ry="2" />
<text x="299.31" y="447.5" ></text>
</g>
<g >
<title>current_kernel_time64 (7 samples, 0.01%)</title><rect x="863.7" y="309" width="0.2" height="15.0" fill="rgb(237,103,35)" rx="2" ry="2" />
<text x="866.74" y="319.5" ></text>
</g>
<g >
<title>cpu_load_update_nohz_stop (6 samples, 0.01%)</title><rect x="1187.4" y="405" width="0.1" height="15.0" fill="rgb(244,118,43)" rx="2" ry="2" />
<text x="1190.35" y="415.5" ></text>
</g>
<g >
<title>pq_sendcountedtext (52 samples, 0.07%)</title><rect x="516.6" y="389" width="0.9" height="15.0" fill="rgb(88,174,192)" rx="2" ry="2" />
<text x="519.64" y="399.5" ></text>
</g>
<g >
<title>poll_select_copy_remaining (6 samples, 0.01%)</title><rect x="269.8" y="437" width="0.1" height="15.0" fill="rgb(243,208,42)" rx="2" ry="2" />
<text x="272.79" y="447.5" ></text>
</g>
<g >
<title>run_posix_cpu_timers (14 samples, 0.02%)</title><rect x="1012.1" y="309" width="0.3" height="15.0" fill="rgb(238,156,36)" rx="2" ry="2" />
<text x="1015.13" y="319.5" ></text>
</g>
<g >
<title>unix_stream_recvmsg (1,729 samples, 2.46%)</title><rect x="891.9" y="309" width="28.9" height="15.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text x="894.88" y="319.5" >un..</text>
</g>
<g >
<title>sys_ppoll (241 samples, 0.34%)</title><rect x="310.7" y="517" width="4.1" height="15.0" fill="rgb(229,167,26)" rx="2" ry="2" />
<text x="313.72" y="527.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.01%)</title><rect x="12.0" y="517" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" />
<text x="14.96" y="527.5" ></text>
</g>
<g >
<title>skb_release_data (12 samples, 0.02%)</title><rect x="69.9" y="309" width="0.2" height="15.0" fill="rgb(235,143,33)" rx="2" ry="2" />
<text x="72.88" y="319.5" ></text>
</g>
<g >
<title>[systemd] (10 samples, 0.01%)</title><rect x="1189.3" y="517" width="0.2" height="15.0" fill="rgb(247,193,47)" rx="2" ry="2" />
<text x="1192.35" y="527.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (99 samples, 0.14%)</title><rect x="307.0" y="389" width="1.7" height="15.0" fill="rgb(247,164,46)" rx="2" ry="2" />
<text x="310.04" y="399.5" ></text>
</g>
<g >
<title>palloc0 (54 samples, 0.08%)</title><rect x="583.3" y="341" width="0.9" height="15.0" fill="rgb(3537,90,177)" rx="2" ry="2" />
<text x="586.33" y="351.5" ></text>
</g>
<g >
<title>smp_reschedule_interrupt (639 samples, 0.91%)</title><rect x="1017.5" y="405" width="10.7" height="15.0" fill="rgb(236,126,34)" rx="2" ry="2" />
<text x="1020.47" y="415.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (241 samples, 0.34%)</title><rect x="310.7" y="453" width="4.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="313.72" y="463.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (60 samples, 0.09%)</title><rect x="965.5" y="405" width="1.0" height="15.0" fill="rgb(126,199,199)" rx="2" ry="2" />
<text x="968.50" y="415.5" ></text>
</g>
<g >
<title>MemoryContextAllocZeroAligned (38 samples, 0.05%)</title><rect x="588.4" y="373" width="0.7" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="591.44" y="383.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (1,034 samples, 1.47%)</title><rect x="247.4" y="389" width="17.3" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="250.42" y="399.5" ></text>
</g>
<g >
<title>_int_free (10 samples, 0.01%)</title><rect x="310.2" y="469" width="0.2" height="15.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text x="313.20" y="479.5" ></text>
</g>
<g >
<title>fmtint (94 samples, 0.13%)</title><rect x="527.6" y="389" width="1.6" height="15.0" fill="rgb(54790,201,99)" rx="2" ry="2" />
<text x="530.62" y="399.5" ></text>
</g>
<g >
<title>tick_program_event (15 samples, 0.02%)</title><rect x="1187.6" y="357" width="0.2" height="15.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text x="1190.57" y="367.5" ></text>
</g>
<g >
<title>tsc_verify_tsc_adjust (15 samples, 0.02%)</title><rect x="999.5" y="469" width="0.2" height="15.0" fill="rgb(232,147,30)" rx="2" ry="2" />
<text x="1002.48" y="479.5" ></text>
</g>
<g >
<title>MemoryContextReset (7 samples, 0.01%)</title><rect x="470.5" y="357" width="0.1" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="473.48" y="367.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_node (93 samples, 0.13%)</title><rect x="648.9" y="229" width="1.5" height="15.0" fill="rgb(250,107,49)" rx="2" ry="2" />
<text x="651.89" y="239.5" ></text>
</g>
<g >
<title>LWLockRelease (20 samples, 0.03%)</title><rect x="492.2" y="325" width="0.3" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="495.16" y="335.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (3,654 samples, 5.19%)</title><rect x="323.9" y="485" width="61.2" height="15.0" fill="rgb(81,84,229)" rx="2" ry="2" />
<text x="326.91" y="495.5" >standa..</text>
</g>
<g >
<title>tick_nohz_stop_sched_tick (153 samples, 0.22%)</title><rect x="1184.3" y="405" width="2.6" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="1187.29" y="415.5" ></text>
</g>
<g >
<title>alloc_skb_with_frags (12 samples, 0.02%)</title><rect x="140.6" y="309" width="0.2" height="15.0" fill="rgb(241,128,39)" rx="2" ry="2" />
<text x="143.64" y="319.5" ></text>
</g>
<g >
<title>unix_stream_sendmsg (14 samples, 0.02%)</title><rect x="691.4" y="309" width="0.2" height="15.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text x="694.38" y="319.5" ></text>
</g>
<g >
<title>dequeue_task_fair (26 samples, 0.04%)</title><rect x="307.4" y="309" width="0.4" height="15.0" fill="rgb(240,203,39)" rx="2" ry="2" />
<text x="310.39" y="319.5" ></text>
</g>
<g >
<title>hrtimer_cancel (6 samples, 0.01%)</title><rect x="1139.8" y="469" width="0.1" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" />
<text x="1142.75" y="479.5" ></text>
</g>
<g >
<title>_find_next_bit (7 samples, 0.01%)</title><rect x="1184.6" y="357" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="1187.60" y="367.5" ></text>
</g>
<g >
<title>update_curr (66 samples, 0.09%)</title><rect x="254.1" y="293" width="1.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="257.14" y="303.5" ></text>
</g>
<g >
<title>security_socket_getpeersec_dgram (45 samples, 0.06%)</title><rect x="140.9" y="309" width="0.8" height="15.0" fill="rgb(225,170,22)" rx="2" ry="2" />
<text x="143.92" y="319.5" ></text>
</g>
<g >
<title>pqParseInput3 (92 samples, 0.13%)</title><rect x="96.1" y="485" width="1.5" height="15.0" fill="rgb(241,91,191)" rx="2" ry="2" />
<text x="99.05" y="495.5" ></text>
</g>
<g >
<title>free (11 samples, 0.02%)</title><rect x="283.1" y="485" width="0.2" height="15.0" fill="rgb(246,177,46)" rx="2" ry="2" />
<text x="286.08" y="495.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (35 samples, 0.05%)</title><rect x="164.6" y="165" width="0.6" height="15.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text x="167.58" y="175.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (24 samples, 0.03%)</title><rect x="368.7" y="325" width="0.4" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="371.73" y="335.5" ></text>
</g>
<g >
<title>arch_cpu_idle_enter (24 samples, 0.03%)</title><rect x="999.3" y="485" width="0.4" height="15.0" fill="rgb(240,144,38)" rx="2" ry="2" />
<text x="1002.33" y="495.5" ></text>
</g>
<g >
<title>pqsecure_raw_write (390 samples, 0.55%)</title><rect x="296.4" y="421" width="6.5" height="15.0" fill="rgb(241,91,192)" rx="2" ry="2" />
<text x="299.36" y="431.5" ></text>
</g>
<g >
<title>SYSC_recvfrom (12 samples, 0.02%)</title><rect x="886.7" y="357" width="0.2" height="15.0" fill="rgb(234,165,31)" rx="2" ry="2" />
<text x="889.75" y="367.5" ></text>
</g>
<g >
<title>UnpinBuffer.constprop.6 (105 samples, 0.15%)</title><rect x="381.4" y="325" width="1.8" height="15.0" fill="rgb(121,61,242)" rx="2" ry="2" />
<text x="384.45" y="335.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (20 samples, 0.03%)</title><rect x="569.6" y="341" width="0.3" height="15.0" fill="rgb(81,84,95)" rx="2" ry="2" />
<text x="572.61" y="351.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (133 samples, 0.19%)</title><rect x="79.3" y="405" width="2.2" height="15.0" fill="rgb(236,167,34)" rx="2" ry="2" />
<text x="82.28" y="415.5" ></text>
</g>
<g >
<title>__memmove_ssse3_back (8 samples, 0.01%)</title><rect x="304.5" y="389" width="0.2" height="15.0" fill="rgb(242,151,40)" rx="2" ry="2" />
<text x="307.54" y="399.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (17 samples, 0.02%)</title><rect x="185.8" y="229" width="0.3" height="15.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text x="188.78" y="239.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (69 samples, 0.10%)</title><rect x="430.2" y="357" width="1.2" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="433.24" y="367.5" ></text>
</g>
<g >
<title>pq_endmessage_reuse (9 samples, 0.01%)</title><rect x="705.4" y="437" width="0.2" height="15.0" fill="rgb(88,174,190)" rx="2" ry="2" />
<text x="708.42" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (22 samples, 0.03%)</title><rect x="557.1" y="309" width="0.4" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="560.14" y="319.5" ></text>
</g>
<g >
<title>FastPathUnGrantRelationLock (137 samples, 0.19%)</title><rect x="769.4" y="357" width="2.3" height="15.0" fill="rgb(129,24381895395797,96)" rx="2" ry="2" />
<text x="772.45" y="367.5" ></text>
</g>
<g >
<title>__strncmp_sse42 (23 samples, 0.03%)</title><rect x="436.8" y="421" width="0.3" height="15.0" fill="rgb(242,132,41)" rx="2" ry="2" />
<text x="439.75" y="431.5" ></text>
</g>
<g >
<title>kworker/u96:1 (7 samples, 0.01%)</title><rect x="10.8" y="565" width="0.1" height="15.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text x="13.75" y="575.5" ></text>
</g>
<g >
<title>IsSharedRelation (32 samples, 0.05%)</title><rect x="425.3" y="373" width="0.5" height="15.0" fill="rgb(78,62,153)" rx="2" ry="2" />
<text x="428.26" y="383.5" ></text>
</g>
<g >
<title>PQconsumeInput (369 samples, 0.52%)</title><rect x="287.4" y="485" width="6.2" height="15.0" fill="rgb(241,90,190)" rx="2" ry="2" />
<text x="290.43" y="495.5" ></text>
</g>
<g >
<title>ep_send_events_proc (355 samples, 0.50%)</title><rect x="833.3" y="293" width="6.0" height="15.0" fill="rgb(234,176,31)" rx="2" ry="2" />
<text x="836.33" y="303.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (17 samples, 0.02%)</title><rect x="429.2" y="357" width="0.2" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="432.16" y="367.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (49 samples, 0.07%)</title><rect x="1104.6" y="405" width="0.8" height="15.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text x="1107.57" y="415.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (45 samples, 0.06%)</title><rect x="12.1" y="517" width="0.7" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" />
<text x="15.08" y="527.5" ></text>
</g>
<g >
<title>ExecInitNode (3,664 samples, 5.20%)</title><rect x="551.2" y="421" width="61.4" height="15.0" fill="rgb(81,85,92)" rx="2" ry="2" />
<text x="554.23" y="431.5" >ExecIn..</text>
</g>
<g >
<title>threadRun (15,674 samples, 22.26%)</title><rect x="21.8" y="517" width="262.6" height="15.0" fill="rgb(208,154,234)" rx="2" ry="2" />
<text x="24.76" y="527.5" >threadRun</text>
</g>
<g >
<title>pick_next_task_fair (6 samples, 0.01%)</title><rect x="308.3" y="325" width="0.1" height="15.0" fill="rgb(240,174,39)" rx="2" ry="2" />
<text x="311.33" y="335.5" ></text>
</g>
<g >
<title>iscsi_sw_tcp_pdu_xmit (7 samples, 0.01%)</title><rect x="10.6" y="437" width="0.2" height="15.0" fill="rgb(237,155,35)" rx="2" ry="2" />
<text x="13.64" y="447.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (11 samples, 0.02%)</title><rect x="292.1" y="373" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="295.14" y="383.5" ></text>
</g>
<g >
<title>LWLockAcquire (80 samples, 0.11%)</title><rect x="969.7" y="389" width="1.4" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="972.72" y="399.5" ></text>
</g>
<g >
<title>hash_any (7 samples, 0.01%)</title><rect x="413.1" y="405" width="0.2" height="15.0" fill="rgb(147,107,143)" rx="2" ry="2" />
<text x="416.15" y="415.5" ></text>
</g>
<g >
<title>malloc (60 samples, 0.09%)</title><rect x="488.9" y="293" width="1.0" height="15.0" fill="rgb(238,112,36)" rx="2" ry="2" />
<text x="491.88" y="303.5" ></text>
</g>
<g >
<title>sock_has_perm (144 samples, 0.20%)</title><rect x="889.3" y="277" width="2.4" height="15.0" fill="rgb(231,175,29)" rx="2" ry="2" />
<text x="892.26" y="287.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (16 samples, 0.02%)</title><rect x="292.1" y="389" width="0.3" height="15.0" fill="rgb(236,167,34)" rx="2" ry="2" />
<text x="295.09" y="399.5" ></text>
</g>
<g >
<title>new_list (42 samples, 0.06%)</title><rect x="599.5" y="341" width="0.7" height="15.0" fill="rgb(91,1623125281314712,171)" rx="2" ry="2" />
<text x="602.50" y="351.5" ></text>
</g>
<g >
<title>PortalGetPrimaryStmt (12 samples, 0.02%)</title><rect x="415.0" y="437" width="0.2" height="15.0" fill="rgb(197,173,189)" rx="2" ry="2" />
<text x="417.96" y="447.5" ></text>
</g>
<g >
<title>expression_tree_walker (60 samples, 0.09%)</title><rect x="586.4" y="341" width="1.0" height="15.0" fill="rgb(91,136,452238107559)" rx="2" ry="2" />
<text x="589.38" y="351.5" ></text>
</g>
<g >
<title>__check_object_size (14 samples, 0.02%)</title><rect x="240.1" y="421" width="0.2" height="15.0" fill="rgb(245,144,44)" rx="2" ry="2" />
<text x="243.10" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (23 samples, 0.03%)</title><rect x="589.5" y="325" width="0.4" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="592.51" y="335.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (59 samples, 0.08%)</title><rect x="641.7" y="245" width="1.0" height="15.0" fill="rgb(243,140,42)" rx="2" ry="2" />
<text x="644.74" y="255.5" ></text>
</g>
<g >
<title>pqResultAlloc (215 samples, 0.31%)</title><rect x="114.2" y="469" width="3.6" height="15.0" fill="rgb(241,90,192)" rx="2" ry="2" />
<text x="117.15" y="479.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetRelationRef (35 samples, 0.05%)</title><rect x="738.8" y="309" width="0.6" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="741.77" y="319.5" ></text>
</g>
<g >
<title>PinBuffer (54 samples, 0.08%)</title><rect x="496.5" y="293" width="0.9" height="15.0" fill="rgb(121,61,187)" rx="2" ry="2" />
<text x="499.54" y="303.5" ></text>
</g>
<g >
<title>sock_recvmsg (154 samples, 0.22%)</title><rect x="289.3" y="357" width="2.6" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="292.31" y="367.5" ></text>
</g>
<g >
<title>kfree (110 samples, 0.16%)</title><rect x="902.7" y="213" width="1.8" height="15.0" fill="rgb(246,139,46)" rx="2" ry="2" />
<text x="905.67" y="223.5" ></text>
</g>
<g >
<title>hrtimer_try_to_cancel (28 samples, 0.04%)</title><rect x="1187.5" y="389" width="0.4" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" />
<text x="1190.47" y="399.5" ></text>
</g>
<g >
<title>all (70,426 samples, 100%)</title><rect x="10.0" y="581" width="1180.0" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" />
<text x="13.00" y="591.5" ></text>
</g>
<g >
<title>sock_has_perm (7 samples, 0.01%)</title><rect x="297.2" y="277" width="0.1" height="15.0" fill="rgb(231,175,29)" rx="2" ry="2" />
<text x="300.18" y="287.5" ></text>
</g>
<g >
<title>__strlen_sse2_pminub (55 samples, 0.08%)</title><rect x="798.6" y="437" width="1.0" height="15.0" fill="rgb(231,132,29)" rx="2" ry="2" />
<text x="801.63" y="447.5" ></text>
</g>
<g >
<title>_bt_next (76 samples, 0.11%)</title><rect x="505.8" y="325" width="1.3" height="15.0" fill="rgb(63,132,63)" rx="2" ry="2" />
<text x="508.80" y="335.5" ></text>
</g>
<g >
<title>copyin (9 samples, 0.01%)</title><rect x="144.3" y="293" width="0.1" height="15.0" fill="rgb(247,140,46)" rx="2" ry="2" />
<text x="147.28" y="303.5" ></text>
</g>
<g >
<title>palloc (11 samples, 0.02%)</title><rect x="557.5" y="341" width="0.2" height="15.0" fill="rgb(3537,90,-354911973014429)" rx="2" ry="2" />
<text x="560.51" y="351.5" ></text>
</g>
<g >
<title>skb_unref.part.41 (16 samples, 0.02%)</title><rect x="913.7" y="261" width="0.3" height="15.0" fill="rgb(223,143,20)" rx="2" ry="2" />
<text x="916.74" y="271.5" ></text>
</g>
<g >
<title>ServerLoop (3,655 samples, 5.19%)</title><rect x="323.9" y="549" width="61.2" height="15.0" fill="rgb(106,173,220)" rx="2" ry="2" />
<text x="326.91" y="559.5" >Server..</text>
</g>
<g >
<title>palloc (23 samples, 0.03%)</title><rect x="576.1" y="373" width="0.4" height="15.0" fill="rgb(3537,90,-354911973014429)" rx="2" ry="2" />
<text x="579.07" y="383.5" ></text>
</g>
<g >
<title>PostgresMain (3,654 samples, 5.19%)</title><rect x="323.9" y="533" width="61.2" height="15.0" fill="rgb(135,173,190)" rx="2" ry="2" />
<text x="326.91" y="543.5" >Postgr..</text>
</g>
<g >
<title>select_task_rq_fair (232 samples, 0.33%)</title><rect x="165.3" y="165" width="3.8" height="15.0" fill="rgb(240,179,39)" rx="2" ry="2" />
<text x="168.25" y="175.5" ></text>
</g>
<g >
<title>sock_alloc_send_pskb (444 samples, 0.63%)</title><rect x="146.3" y="309" width="7.5" height="15.0" fill="rgb(227,175,24)" rx="2" ry="2" />
<text x="149.34" y="319.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (12 samples, 0.02%)</title><rect x="689.7" y="197" width="0.2" height="15.0" fill="rgb(236,126,34)" rx="2" ry="2" />
<text x="692.72" y="207.5" ></text>
</g>
<g >
<title>native_write_msr (19 samples, 0.03%)</title><rect x="1188.6" y="357" width="0.3" height="15.0" fill="rgb(241,158,40)" rx="2" ry="2" />
<text x="1191.58" y="367.5" ></text>
</g>
<g >
<title>native_safe_halt (1,573 samples, 2.23%)</title><rect x="1001.9" y="437" width="26.4" height="15.0" fill="rgb(233,158,31)" rx="2" ry="2" />
<text x="1004.91" y="447.5" >n..</text>
</g>
<g >
<title>_perf_event_enable (7 samples, 0.01%)</title><rect x="12.0" y="421" width="0.1" height="15.0" fill="rgb(241,163,40)" rx="2" ry="2" />
<text x="14.96" y="431.5" ></text>
</g>
<g >
<title>pick_next_task_idle (15 samples, 0.02%)</title><rect x="264.5" y="357" width="0.2" height="15.0" fill="rgb(240,174,39)" rx="2" ry="2" />
<text x="267.46" y="367.5" ></text>
</g>
<g >
<title>RevalidateCachedQuery (671 samples, 0.95%)</title><rect x="422.6" y="437" width="11.2" height="15.0" fill="rgb(142,170,206)" rx="2" ry="2" />
<text x="425.60" y="447.5" ></text>
</g>
<g >
<title>AllocSetFree (12 samples, 0.02%)</title><rect x="772.9" y="341" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="775.95" y="351.5" ></text>
</g>
<g >
<title>x86_pmu_enable (12 samples, 0.02%)</title><rect x="689.7" y="69" width="0.2" height="15.0" fill="rgb(241,205,40)" rx="2" ry="2" />
<text x="692.72" y="79.5" ></text>
</g>
<g >
<title>prefetch_freepointer.isra.60 (15 samples, 0.02%)</title><rect x="148.8" y="229" width="0.2" height="15.0" fill="rgb(223,177,19)" rx="2" ry="2" />
<text x="151.77" y="239.5" ></text>
</g>
<g >
<title>SearchCatCache3 (123 samples, 0.17%)</title><rect x="573.0" y="357" width="2.1" height="15.0" fill="rgb(142,62,219)" rx="2" ry="2" />
<text x="576.01" y="367.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (6 samples, 0.01%)</title><rect x="493.6" y="261" width="0.1" height="15.0" fill="rgb(228,151,26)" rx="2" ry="2" />
<text x="496.64" y="271.5" ></text>
</g>
<g >
<title>default_idle (2,496 samples, 3.54%)</title><rect x="1001.0" y="453" width="41.8" height="15.0" fill="rgb(240,200,39)" rx="2" ry="2" />
<text x="1004.02" y="463.5" >def..</text>
</g>
<g >
<title>__switch_to_asm (52 samples, 0.07%)</title><rect x="395.7" y="549" width="0.9" height="15.0" fill="rgb(233,132,30)" rx="2" ry="2" />
<text x="398.74" y="559.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (102 samples, 0.14%)</title><rect x="915.7" y="261" width="1.7" height="15.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text x="918.73" y="271.5" ></text>
</g>
<g >
<title>GetNextLocalTransactionId (31 samples, 0.04%)</title><rect x="963.7" y="405" width="0.5" height="15.0" fill="rgb(126,199,136)" rx="2" ry="2" />
<text x="966.70" y="415.5" ></text>
</g>
<g >
<title>unix_write_space (27 samples, 0.04%)</title><rect x="290.8" y="229" width="0.4" height="15.0" fill="rgb(252,145,52)" rx="2" ry="2" />
<text x="293.77" y="239.5" ></text>
</g>
<g >
<title>MemoryContextCreate (8 samples, 0.01%)</title><rect x="555.0" y="341" width="0.2" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="558.03" y="351.5" ></text>
</g>
<g >
<title>_bt_readnextpage (32 samples, 0.05%)</title><rect x="506.5" y="293" width="0.6" height="15.0" fill="rgb(63,132,63)" rx="2" ry="2" />
<text x="509.54" y="303.5" ></text>
</g>
<g >
<title>AllocSetFree (19 samples, 0.03%)</title><rect x="747.2" y="293" width="0.3" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="750.23" y="303.5" ></text>
</g>
<g >
<title>StartTransaction (679 samples, 0.96%)</title><rect x="959.9" y="421" width="11.3" height="15.0" fill="rgb(216,152,229)" rx="2" ry="2" />
<text x="962.85" y="431.5" ></text>
</g>
<g >
<title>AllocSetFree (12 samples, 0.02%)</title><rect x="568.5" y="373" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="571.47" y="383.5" ></text>
</g>
<g >
<title>default_idle (134 samples, 0.19%)</title><rect x="1180.2" y="405" width="2.2" height="15.0" fill="rgb(240,200,39)" rx="2" ry="2" />
<text x="1183.18" y="415.5" ></text>
</g>
<g >
<title>clockevents_program_event (103 samples, 0.15%)</title><rect x="1132.0" y="405" width="1.7" height="15.0" fill="rgb(241,102,39)" rx="2" ry="2" />
<text x="1134.96" y="415.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (25 samples, 0.04%)</title><rect x="71.9" y="309" width="0.4" height="15.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text x="74.86" y="319.5" ></text>
</g>
<g >
<title>gettimeofday@plt (17 samples, 0.02%)</title><rect x="708.3" y="421" width="0.3" height="15.0" fill="rgb(231,170,29)" rx="2" ry="2" />
<text x="711.34" y="431.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (35 samples, 0.05%)</title><rect x="184.5" y="101" width="0.6" height="15.0" fill="rgb(241,163,40)" rx="2" ry="2" />
<text x="187.49" y="111.5" ></text>
</g>
<g >
<title>pq_getbytes (142 samples, 0.20%)</title><rect x="942.9" y="437" width="2.4" height="15.0" fill="rgb(88,173,191)" rx="2" ry="2" />
<text x="945.91" y="447.5" ></text>
</g>
<g >
<title>heap_trim (47 samples, 0.07%)</title><rect x="31.1" y="469" width="0.8" height="15.0" fill="rgb(228,184,25)" rx="2" ry="2" />
<text x="34.09" y="479.5" ></text>
</g>
<g >
<title>get_next_timer_interrupt (34 samples, 0.05%)</title><rect x="1184.4" y="389" width="0.6" height="15.0" fill="rgb(236,170,34)" rx="2" ry="2" />
<text x="1187.40" y="399.5" ></text>
</g>
<g >
<title>native_smp_send_reschedule (26 samples, 0.04%)</title><rect x="301.0" y="85" width="0.4" height="15.0" fill="rgb(237,158,35)" rx="2" ry="2" />
<text x="303.99" y="95.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (67 samples, 0.10%)</title><rect x="292.5" y="421" width="1.1" height="15.0" fill="rgb(238,167,36)" rx="2" ry="2" />
<text x="295.49" y="431.5" ></text>
</g>
<g >
<title>worker_thread (7 samples, 0.01%)</title><rect x="10.8" y="517" width="0.1" height="15.0" fill="rgb(241,133,40)" rx="2" ry="2" />
<text x="13.75" y="527.5" ></text>
</g>
<g >
<title>heapam_index_fetch_end (32 samples, 0.05%)</title><rect x="742.1" y="309" width="0.5" height="15.0" fill="rgb(59,595463,145)" rx="2" ry="2" />
<text x="745.08" y="319.5" ></text>
</g>
<g >
<title>put_prev_entity (17 samples, 0.02%)</title><rect x="262.2" y="309" width="0.3" height="15.0" fill="rgb(240,152,38)" rx="2" ry="2" />
<text x="265.17" y="319.5" ></text>
</g>
<g >
<title>copy_user_generic_unrolled (22 samples, 0.03%)</title><rect x="242.3" y="421" width="0.3" height="15.0" fill="rgb(252,140,52)" rx="2" ry="2" />
<text x="245.26" y="431.5" ></text>
</g>
<g >
<title>pg_any_to_server (99 samples, 0.14%)</title><rect x="793.7" y="453" width="1.6" height="15.0" fill="rgb(150,128,178)" rx="2" ry="2" />
<text x="796.66" y="463.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (20 samples, 0.03%)</title><rect x="1061.2" y="437" width="0.3" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="1064.19" y="447.5" ></text>
</g>
<g >
<title>AllocSetFree (13 samples, 0.02%)</title><rect x="455.5" y="437" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="458.47" y="447.5" ></text>
</g>
<g >
<title>SYSC_recvfrom (2,146 samples, 3.05%)</title><rect x="887.2" y="341" width="35.9" height="15.0" fill="rgb(234,165,31)" rx="2" ry="2" />
<text x="890.15" y="351.5" >SYS..</text>
</g>
<g >
<title>MemoryContextStrdup (149 samples, 0.21%)</title><rect x="449.1" y="453" width="2.5" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="452.14" y="463.5" ></text>
</g>
<g >
<title>__perf_event_enable (8 samples, 0.01%)</title><rect x="1135.7" y="373" width="0.2" height="15.0" fill="rgb(241,141,40)" rx="2" ry="2" />
<text x="1138.75" y="383.5" ></text>
</g>
<g >
<title>switch_mm (140 samples, 0.20%)</title><rect x="256.7" y="325" width="2.3" height="15.0" fill="rgb(220,115,17)" rx="2" ry="2" />
<text x="259.70" y="335.5" ></text>
</g>
<g >
<title>switch_mm_irqs_off (14 samples, 0.02%)</title><rect x="1183.6" y="405" width="0.3" height="15.0" fill="rgb(246,115,45)" rx="2" ry="2" />
<text x="1186.65" y="415.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (28 samples, 0.04%)</title><rect x="659.7" y="165" width="0.5" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="662.68" y="175.5" ></text>
</g>
<g >
<title>PyEval_EvalFrameEx (11 samples, 0.02%)</title><rect x="11.6" y="421" width="0.1" height="15.0" fill="rgb(248,201,47)" rx="2" ry="2" />
<text x="14.56" y="431.5" ></text>
</g>
<g >
<title>ReleaseCatCache (25 samples, 0.04%)</title><rect x="548.6" y="389" width="0.4" height="15.0" fill="rgb(142,62,202)" rx="2" ry="2" />
<text x="551.56" y="399.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (84 samples, 0.12%)</title><rect x="916.0" y="245" width="1.4" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="919.04" y="255.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (23 samples, 0.03%)</title><rect x="597.9" y="309" width="0.3" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="600.86" y="319.5" ></text>
</g>
<g >
<title>sched_clock (37 samples, 0.05%)</title><rect x="184.5" y="133" width="0.6" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="187.45" y="143.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (91 samples, 0.13%)</title><rect x="1160.8" y="437" width="1.5" height="15.0" fill="rgb(245,205,44)" rx="2" ry="2" />
<text x="1163.78" y="447.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetRelationRef (13 samples, 0.02%)</title><rect x="750.7" y="325" width="0.2" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="753.73" y="335.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (6 samples, 0.01%)</title><rect x="310.4" y="549" width="0.1" height="15.0" fill="rgb(236,134,34)" rx="2" ry="2" />
<text x="313.44" y="559.5" ></text>
</g>
<g >
<title>security_socket_getpeersec_dgram (44 samples, 0.06%)</title><rect x="639.4" y="277" width="0.8" height="15.0" fill="rgb(225,170,22)" rx="2" ry="2" />
<text x="642.42" y="287.5" ></text>
</g>
<g >
<title>ResourceOwnerEnlargeCatCacheRefs (10 samples, 0.01%)</title><rect x="574.8" y="341" width="0.2" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="577.83" y="351.5" ></text>
</g>
<g >
<title>hash_search (73 samples, 0.10%)</title><rect x="434.6" y="437" width="1.2" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="437.56" y="447.5" ></text>
</g>
<g >
<title>pqGetInt (10 samples, 0.01%)</title><rect x="97.1" y="469" width="0.1" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="100.06" y="479.5" ></text>
</g>
<g >
<title>AllocSetAlloc (13 samples, 0.02%)</title><rect x="615.6" y="421" width="0.3" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="618.63" y="431.5" ></text>
</g>
<g >
<title>LWLockRelease (16 samples, 0.02%)</title><rect x="337.2" y="357" width="0.3" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="340.25" y="367.5" ></text>
</g>
<g >
<title>ResourceArrayAdd (6 samples, 0.01%)</title><rect x="614.1" y="405" width="0.1" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="617.07" y="415.5" ></text>
</g>
<g >
<title>initStringInfo (32 samples, 0.05%)</title><rect x="523.7" y="389" width="0.5" height="15.0" fill="rgb(86,215,148)" rx="2" ry="2" />
<text x="526.70" y="399.5" ></text>
</g>
<g >
<title>deregister_seq_scan (7 samples, 0.01%)</title><rect x="780.4" y="341" width="0.1" height="15.0" fill="rgb(147,79,81)" rx="2" ry="2" />
<text x="783.39" y="351.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (98 samples, 0.14%)</title><rect x="307.1" y="373" width="1.6" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="310.05" y="383.5" ></text>
</g>
<g >
<title>finish_task_switch (39 samples, 0.06%)</title><rect x="855.4" y="245" width="0.6" height="15.0" fill="rgb(242,177,41)" rx="2" ry="2" />
<text x="858.38" y="255.5" ></text>
</g>
<g >
<title>rcu_eqs_enter.isra.40 (155 samples, 0.22%)</title><rect x="1048.2" y="469" width="2.6" height="15.0" fill="rgb(225,169,22)" rx="2" ry="2" />
<text x="1051.18" y="479.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (21 samples, 0.03%)</title><rect x="359.1" y="277" width="0.4" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="362.13" y="287.5" ></text>
</g>
<g >
<title>native_smp_send_reschedule (7 samples, 0.01%)</title><rect x="676.6" y="117" width="0.1" height="15.0" fill="rgb(237,158,35)" rx="2" ry="2" />
<text x="679.62" y="127.5" ></text>
</g>
<g >
<title>pg_strdup (13 samples, 0.02%)</title><rect x="304.7" y="469" width="0.2" height="15.0" fill="rgb(3537,90,3576938)" rx="2" ry="2" />
<text x="307.67" y="479.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (11 samples, 0.02%)</title><rect x="1132.1" y="373" width="0.1" height="15.0" fill="rgb(244,130,43)" rx="2" ry="2" />
<text x="1135.06" y="383.5" ></text>
</g>
<g >
<title>__dta_xfsaild_3895 (7 samples, 0.01%)</title><rect x="1189.9" y="517" width="0.1" height="15.0" fill="rgb(241,141,40)" rx="2" ry="2" />
<text x="1192.88" y="527.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (2,080 samples, 2.95%)</title><rect x="655.3" y="245" width="34.9" height="15.0" fill="rgb(240,119,39)" rx="2" ry="2" />
<text x="658.31" y="255.5" >__..</text>
</g>
<g >
<title>select_task_rq_fair (14 samples, 0.02%)</title><rect x="160.0" y="181" width="0.2" height="15.0" fill="rgb(240,179,39)" rx="2" ry="2" />
<text x="162.96" y="191.5" ></text>
</g>
<g >
<title>fmtint (22 samples, 0.03%)</title><rect x="304.3" y="421" width="0.4" height="15.0" fill="rgb(54790,201,99)" rx="2" ry="2" />
<text x="307.30" y="431.5" ></text>
</g>
<g >
<title>merge.isra.0 (26 samples, 0.04%)</title><rect x="533.4" y="389" width="0.5" height="15.0" fill="rgb(86,145,168)" rx="2" ry="2" />
<text x="536.45" y="399.5" ></text>
</g>
<g >
<title>tick_program_event (50 samples, 0.07%)</title><rect x="1185.3" y="357" width="0.8" height="15.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text x="1188.26" y="367.5" ></text>
</g>
<g >
<title>lappend (26 samples, 0.04%)</title><rect x="566.2" y="341" width="0.4" height="15.0" fill="rgb(91,1623125281314712,156)" rx="2" ry="2" />
<text x="569.15" y="351.5" ></text>
</g>
<g >
<title>hash_any (17 samples, 0.02%)</title><rect x="497.4" y="277" width="0.3" height="15.0" fill="rgb(147,107,143)" rx="2" ry="2" />
<text x="500.44" y="287.5" ></text>
</g>
<g >
<title>index_close (18 samples, 0.03%)</title><rect x="749.9" y="341" width="0.3" height="15.0" fill="rgb(61,111,147)" rx="2" ry="2" />
<text x="752.93" y="351.5" ></text>
</g>
<g >
<title>_raw_spin_lock (79 samples, 0.11%)</title><rect x="660.2" y="165" width="1.3" height="15.0" fill="rgb(240,166,39)" rx="2" ry="2" />
<text x="663.15" y="175.5" ></text>
</g>
<g >
<title>enlargePQExpBuffer (19 samples, 0.03%)</title><rect x="113.5" y="421" width="0.3" height="15.0" fill="rgb(241,174,86)" rx="2" ry="2" />
<text x="116.48" y="431.5" ></text>
</g>
<g >
<title>default_idle_call (39 samples, 0.06%)</title><rect x="986.6" y="501" width="0.7" height="15.0" fill="rgb(230,200,28)" rx="2" ry="2" />
<text x="989.61" y="511.5" ></text>
</g>
<g >
<title>resched_curr (28 samples, 0.04%)</title><rect x="182.7" y="133" width="0.5" height="15.0" fill="rgb(237,165,35)" rx="2" ry="2" />
<text x="185.70" y="143.5" ></text>
</g>
<g >
<title>AllocSetAlloc (23 samples, 0.03%)</title><rect x="599.8" y="309" width="0.4" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="602.82" y="319.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (19 samples, 0.03%)</title><rect x="459.7" y="405" width="0.3" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="462.66" y="415.5" ></text>
</g>
<g >
<title>__fget (40 samples, 0.06%)</title><rect x="188.2" y="293" width="0.7" height="15.0" fill="rgb(237,135,35)" rx="2" ry="2" />
<text x="191.21" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_poll (7 samples, 0.01%)</title><rect x="11.8" y="533" width="0.2" height="15.0" fill="rgb(229,119,26)" rx="2" ry="2" />
<text x="14.84" y="543.5" ></text>
</g>
<g >
<title>tick_nohz_idle_enter (174 samples, 0.25%)</title><rect x="1184.0" y="437" width="2.9" height="15.0" fill="rgb(240,142,38)" rx="2" ry="2" />
<text x="1186.98" y="447.5" ></text>
</g>
<g >
<title>sock_has_perm (59 samples, 0.08%)</title><rect x="135.8" y="293" width="1.0" height="15.0" fill="rgb(231,175,29)" rx="2" ry="2" />
<text x="138.85" y="303.5" ></text>
</g>
<g >
<title>__fdget (6 samples, 0.01%)</title><rect x="306.5" y="405" width="0.2" height="15.0" fill="rgb(237,135,35)" rx="2" ry="2" />
<text x="309.55" y="415.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (8 samples, 0.01%)</title><rect x="610.2" y="341" width="0.1" height="15.0" fill="rgb(126,199,199)" rx="2" ry="2" />
<text x="613.20" y="351.5" ></text>
</g>
<g >
<title>tick_nohz_idle_enter (3,339 samples, 4.74%)</title><rect x="1081.1" y="485" width="55.9" height="15.0" fill="rgb(240,142,38)" rx="2" ry="2" />
<text x="1084.06" y="495.5" >tick_..</text>
</g>
<g >
<title>sched_clock_cpu (52 samples, 0.07%)</title><rect x="686.9" y="149" width="0.9" height="15.0" fill="rgb(238,164,36)" rx="2" ry="2" />
<text x="689.89" y="159.5" ></text>
</g>
<g >
<title>find_next_bit (107 samples, 0.15%)</title><rect x="1100.5" y="405" width="1.8" height="15.0" fill="rgb(236,177,34)" rx="2" ry="2" />
<text x="1103.48" y="415.5" ></text>
</g>
<g >
<title>sched_clock (100 samples, 0.14%)</title><rect x="1088.0" y="421" width="1.7" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="1090.99" y="431.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (12 samples, 0.02%)</title><rect x="688.7" y="213" width="0.2" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="691.69" y="223.5" ></text>
</g>
<g >
<title>PyEval_EvalCodeEx (9 samples, 0.01%)</title><rect x="11.6" y="357" width="0.1" height="15.0" fill="rgb(248,201,47)" rx="2" ry="2" />
<text x="14.56" y="367.5" ></text>
</g>
<g >
<title>finish_task_switch (7 samples, 0.01%)</title><rect x="860.1" y="261" width="0.1" height="15.0" fill="rgb(242,177,41)" rx="2" ry="2" />
<text x="863.09" y="271.5" ></text>
</g>
<g >
<title>default_wake_function (138 samples, 0.20%)</title><rect x="299.4" y="181" width="2.3" height="15.0" fill="rgb(247,200,46)" rx="2" ry="2" />
<text x="302.41" y="191.5" ></text>
</g>
<g >
<title>kthread (12 samples, 0.02%)</title><rect x="976.0" y="533" width="0.2" height="15.0" fill="rgb(241,117,40)" rx="2" ry="2" />
<text x="978.97" y="543.5" ></text>
</g>
<g >
<title>evalStandardFunc (349 samples, 0.50%)</title><rect x="209.0" y="485" width="5.8" height="15.0" fill="rgb(208,154,89)" rx="2" ry="2" />
<text x="211.95" y="495.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (114 samples, 0.16%)</title><rect x="1128.9" y="421" width="1.9" height="15.0" fill="rgb(245,205,44)" rx="2" ry="2" />
<text x="1131.86" y="431.5" ></text>
</g>
<g >
<title>ktime_get (7 samples, 0.01%)</title><rect x="1185.4" y="325" width="0.1" height="15.0" fill="rgb(237,114,35)" rx="2" ry="2" />
<text x="1188.36" y="335.5" ></text>
</g>
<g >
<title>__check_object_size (43 samples, 0.06%)</title><rect x="640.6" y="261" width="0.8" height="15.0" fill="rgb(245,144,44)" rx="2" ry="2" />
<text x="643.65" y="271.5" ></text>
</g>
<g >
<title>btgettuple (3,654 samples, 5.19%)</title><rect x="323.9" y="405" width="61.2" height="15.0" fill="rgb(63,51424,62)" rx="2" ry="2" />
<text x="326.91" y="415.5" >btgett..</text>
</g>
<g >
<title>hash_seq_search (69 samples, 0.10%)</title><rect x="779.3" y="357" width="1.2" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="782.35" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (20 samples, 0.03%)</title><rect x="597.9" y="293" width="0.3" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="600.91" y="303.5" ></text>
</g>
<g >
<title>palloc (41 samples, 0.06%)</title><rect x="513.5" y="357" width="0.7" height="15.0" fill="rgb(3537,90,-354911973014429)" rx="2" ry="2" />
<text x="516.54" y="367.5" ></text>
</g>
<g >
<title>forbidden_in_wal_sender (36 samples, 0.05%)</title><rect x="784.6" y="453" width="0.6" height="15.0" fill="rgb(135,173,99)" rx="2" ry="2" />
<text x="787.61" y="463.5" ></text>
</g>
<g >
<title>__schedule (231 samples, 0.33%)</title><rect x="971.7" y="437" width="3.9" height="15.0" fill="rgb(237,132,35)" rx="2" ry="2" />
<text x="974.68" y="447.5" ></text>
</g>
<g >
<title>[unknown] (10 samples, 0.01%)</title><rect x="309.5" y="437" width="0.1" height="15.0" fill="rgb(242,180,40)" rx="2" ry="2" />
<text x="312.48" y="447.5" ></text>
</g>
<g >
<title>PQconsumeInput (3,753 samples, 5.33%)</title><rect x="32.4" y="501" width="62.8" height="15.0" fill="rgb(241,90,190)" rx="2" ry="2" />
<text x="35.35" y="511.5" >PQcons..</text>
</g>
<g >
<title>fmgr_info_cxt_security (14 samples, 0.02%)</title><rect x="518.3" y="373" width="0.2" height="15.0" fill="rgb(145,11509185,99)" rx="2" ry="2" />
<text x="521.29" y="383.5" ></text>
</g>
<g >
<title>mutex_unlock (20 samples, 0.03%)</title><rect x="839.7" y="293" width="0.4" height="15.0" fill="rgb(240,96,39)" rx="2" ry="2" />
<text x="842.72" y="303.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (20 samples, 0.03%)</title><rect x="778.0" y="325" width="0.3" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="780.97" y="335.5" ></text>
</g>
<g >
<title>int4hashfast (14 samples, 0.02%)</title><rect x="574.5" y="325" width="0.2" height="15.0" fill="rgb(142,62,150)" rx="2" ry="2" />
<text x="577.48" y="335.5" ></text>
</g>
<g >
<title>palloc (31 samples, 0.04%)</title><rect x="589.4" y="341" width="0.5" height="15.0" fill="rgb(3537,90,-354911973014429)" rx="2" ry="2" />
<text x="592.38" y="351.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (7 samples, 0.01%)</title><rect x="291.0" y="149" width="0.1" height="15.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text x="294.02" y="159.5" ></text>
</g>
<g >
<title>kfree_skbmem (87 samples, 0.12%)</title><rect x="899.9" y="261" width="1.4" height="15.0" fill="rgb(236,139,34)" rx="2" ry="2" />
<text x="902.85" y="271.5" ></text>
</g>
<g >
<title>afterTriggerMarkEvents.isra.4 (20 samples, 0.03%)</title><rect x="716.5" y="389" width="0.3" height="15.0" fill="rgb(79,33335,52)" rx="2" ry="2" />
<text x="719.48" y="399.5" ></text>
</g>
<g >
<title>VirtualXactLockTableInsert (109 samples, 0.15%)</title><rect x="969.2" y="405" width="1.9" height="15.0" fill="rgb(129,24381895395797,244)" rx="2" ry="2" />
<text x="972.23" y="415.5" ></text>
</g>
<g >
<title>tick_sched_handle (14 samples, 0.02%)</title><rect x="187.2" y="165" width="0.2" height="15.0" fill="rgb(240,142,39)" rx="2" ry="2" />
<text x="190.20" y="175.5" ></text>
</g>
<g >
<title>start_kernel (566 samples, 0.80%)</title><rect x="1179.6" y="501" width="9.5" height="15.0" fill="rgb(237,156,35)" rx="2" ry="2" />
<text x="1182.58" y="511.5" ></text>
</g>
<g >
<title>kvm_steal_clock (6 samples, 0.01%)</title><rect x="301.5" y="133" width="0.1" height="15.0" fill="rgb(240,130,39)" rx="2" ry="2" />
<text x="304.54" y="143.5" ></text>
</g>
<g >
<title>pqFlush (4,393 samples, 6.24%)</title><rect x="124.4" y="469" width="73.6" height="15.0" fill="rgb(241,90,190)" rx="2" ry="2" />
<text x="127.40" y="479.5" >pqFlush</text>
</g>
<g >
<title>__audit_syscall_entry (10 samples, 0.01%)</title><rect x="273.1" y="437" width="0.2" height="15.0" fill="rgb(243,151,42)" rx="2" ry="2" />
<text x="276.09" y="447.5" ></text>
</g>
<g >
<title>dequeue_entity (8 samples, 0.01%)</title><rect x="847.8" y="229" width="0.1" height="15.0" fill="rgb(240,203,38)" rx="2" ry="2" />
<text x="850.79" y="239.5" ></text>
</g>
<g >
<title>nohz_balance_enter_idle (12 samples, 0.02%)</title><rect x="1136.0" y="469" width="0.2" height="15.0" fill="rgb(240,199,39)" rx="2" ry="2" />
<text x="1139.05" y="479.5" ></text>
</g>
<g >
<title>put_prev_task_fair (16 samples, 0.02%)</title><rect x="858.2" y="245" width="0.3" height="15.0" fill="rgb(240,152,39)" rx="2" ry="2" />
<text x="861.23" y="255.5" ></text>
</g>
<g >
<title>enqueue_entity (232 samples, 0.33%)</title><rect x="670.3" y="117" width="3.9" height="15.0" fill="rgb(240,205,38)" rx="2" ry="2" />
<text x="673.34" y="127.5" ></text>
</g>
<g >
<title>palloc (30 samples, 0.04%)</title><rect x="577.0" y="373" width="0.5" height="15.0" fill="rgb(3537,90,-354911973014429)" rx="2" ry="2" />
<text x="580.01" y="383.5" ></text>
</g>
<g >
<title>pqGetc (84 samples, 0.12%)</title><rect x="108.7" y="469" width="1.4" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="111.72" y="479.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (41 samples, 0.06%)</title><rect x="926.2" y="341" width="0.7" height="15.0" fill="rgb(243,151,42)" rx="2" ry="2" />
<text x="929.21" y="351.5" ></text>
</g>
<g >
<title>smgrDoPendingDeletes (26 samples, 0.04%)</title><rect x="783.4" y="405" width="0.4" height="15.0" fill="rgb(78,214,224)" rx="2" ry="2" />
<text x="786.39" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (10 samples, 0.01%)</title><rect x="541.2" y="405" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="544.24" y="415.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (40 samples, 0.06%)</title><rect x="81.9" y="389" width="0.6" height="15.0" fill="rgb(243,151,42)" rx="2" ry="2" />
<text x="84.88" y="399.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (340 samples, 0.48%)</title><rect x="275.6" y="485" width="5.7" height="15.0" fill="rgb(238,167,36)" rx="2" ry="2" />
<text x="278.57" y="495.5" ></text>
</g>
<g >
<title>StartTransactionCommand (730 samples, 1.04%)</title><rect x="959.0" y="437" width="12.2" height="15.0" fill="rgb(71,807901,229)" rx="2" ry="2" />
<text x="962.01" y="447.5" ></text>
</g>
<g >
<title>__update_idle_core (28 samples, 0.04%)</title><rect x="846.5" y="245" width="0.4" height="15.0" fill="rgb(246,125,45)" rx="2" ry="2" />
<text x="849.47" y="255.5" ></text>
</g>
<g >
<title>btendscan (32 samples, 0.05%)</title><rect x="740.9" y="309" width="0.5" height="15.0" fill="rgb(63,51424,62)" rx="2" ry="2" />
<text x="743.91" y="319.5" ></text>
</g>
<g >
<title>x2apic_send_IPI (26 samples, 0.04%)</title><rect x="301.0" y="69" width="0.4" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" />
<text x="303.99" y="79.5" ></text>
</g>
<g >
<title>index_getnext_tid (3,654 samples, 5.19%)</title><rect x="323.9" y="421" width="61.2" height="15.0" fill="rgb(61,111,147)" rx="2" ry="2" />
<text x="326.91" y="431.5" >index_..</text>
</g>
<g >
<title>unix_write_space (356 samples, 0.51%)</title><rect x="907.5" y="197" width="6.0" height="15.0" fill="rgb(252,145,52)" rx="2" ry="2" />
<text x="910.51" y="207.5" ></text>
</g>
<g >
<title>_int_free (8 samples, 0.01%)</title><rect x="287.3" y="469" width="0.1" height="15.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text x="290.28" y="479.5" ></text>
</g>
<g >
<title>ExecAllocTableSlot (71 samples, 0.10%)</title><rect x="565.4" y="357" width="1.2" height="15.0" fill="rgb(81,86,89)" rx="2" ry="2" />
<text x="568.40" y="367.5" ></text>
</g>
<g >
<title>dequeue_entity (18 samples, 0.03%)</title><rect x="307.5" y="293" width="0.3" height="15.0" fill="rgb(240,203,38)" rx="2" ry="2" />
<text x="310.47" y="303.5" ></text>
</g>
<g >
<title>evalStandardFunc (13 samples, 0.02%)</title><rect x="303.9" y="437" width="0.2" height="15.0" fill="rgb(208,154,89)" rx="2" ry="2" />
<text x="306.90" y="447.5" ></text>
</g>
<g >
<title>pqPuts (119 samples, 0.17%)</title><rect x="204.0" y="469" width="2.0" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="206.99" y="479.5" ></text>
</g>
<g >
<title>LWLockAcquire (110 samples, 0.16%)</title><rect x="537.1" y="405" width="1.9" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="540.13" y="415.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (119 samples, 0.17%)</title><rect x="1140.6" y="453" width="2.0" height="15.0" fill="rgb(244,130,43)" rx="2" ry="2" />
<text x="1143.64" y="463.5" ></text>
</g>
<g >
<title>skb_copy_datagram_iter (16 samples, 0.02%)</title><rect x="291.6" y="293" width="0.3" height="15.0" fill="rgb(240,143,38)" rx="2" ry="2" />
<text x="294.62" y="303.5" ></text>
</g>
<g >
<title>tick_program_event (34 samples, 0.05%)</title><rect x="1188.3" y="389" width="0.6" height="15.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text x="1191.32" y="399.5" ></text>
</g>
<g >
<title>ReadBuffer_common (640 samples, 0.91%)</title><rect x="370.6" y="325" width="10.7" height="15.0" fill="rgb(121,61,198)" rx="2" ry="2" />
<text x="373.62" y="335.5" ></text>
</g>
<g >
<title>native_write_msr (214 samples, 0.30%)</title><rect x="981.6" y="549" width="3.6" height="15.0" fill="rgb(241,158,40)" rx="2" ry="2" />
<text x="984.58" y="559.5" ></text>
</g>
<g >
<title>pqPutMsgBytes (127 samples, 0.18%)</title><rect x="198.9" y="453" width="2.2" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="201.93" y="463.5" ></text>
</g>
<g >
<title>tick_sched_timer (14 samples, 0.02%)</title><rect x="187.2" y="181" width="0.2" height="15.0" fill="rgb(245,142,44)" rx="2" ry="2" />
<text x="190.20" y="191.5" ></text>
</g>
<g >
<title>default_wake_function (21 samples, 0.03%)</title><rect x="185.4" y="213" width="0.4" height="15.0" fill="rgb(247,200,46)" rx="2" ry="2" />
<text x="188.43" y="223.5" ></text>
</g>
<g >
<title>__strcmp_sse42 (21 samples, 0.03%)</title><rect x="215.3" y="453" width="0.3" height="15.0" fill="rgb(242,132,41)" rx="2" ry="2" />
<text x="218.28" y="463.5" ></text>
</g>
<g >
<title>cpu_startup_entry (11,574 samples, 16.43%)</title><rect x="985.4" y="517" width="193.9" height="15.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text x="988.42" y="527.5" >cpu_startup_entry</text>
</g>
<g >
<title>sched_clock_cpu (106 samples, 0.15%)</title><rect x="1087.9" y="437" width="1.8" height="15.0" fill="rgb(238,164,36)" rx="2" ry="2" />
<text x="1090.89" y="447.5" ></text>
</g>
<g >
<title>tick_sched_timer (28 samples, 0.04%)</title><rect x="1012.0" y="357" width="0.5" height="15.0" fill="rgb(245,142,44)" rx="2" ry="2" />
<text x="1015.04" y="367.5" ></text>
</g>
<g >
<title>__wake_up_common (1,612 samples, 2.29%)</title><rect x="158.4" y="213" width="27.0" height="15.0" fill="rgb(253,119,53)" rx="2" ry="2" />
<text x="161.40" y="223.5" >_..</text>
</g>
<g >
<title>dequeue_entity (209 samples, 0.30%)</title><rect x="252.8" y="309" width="3.5" height="15.0" fill="rgb(240,203,38)" rx="2" ry="2" />
<text x="255.82" y="319.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (10 samples, 0.01%)</title><rect x="1091.8" y="437" width="0.2" height="15.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text x="1094.80" y="447.5" ></text>
</g>
<g >
<title>CreateExprContext (229 samples, 0.33%)</title><rect x="553.9" y="373" width="3.8" height="15.0" fill="rgb(81,87,76)" rx="2" ry="2" />
<text x="556.86" y="383.5" ></text>
</g>
<g >
<title>ksize (110 samples, 0.16%)</title><rect x="650.4" y="229" width="1.9" height="15.0" fill="rgb(245,119,44)" rx="2" ry="2" />
<text x="653.45" y="239.5" ></text>
</g>
<g >
<title>check_stack_depth (12 samples, 0.02%)</title><rect x="561.1" y="325" width="0.2" height="15.0" fill="rgb(135,173,68)" rx="2" ry="2" />
<text x="564.09" y="335.5" ></text>
</g>
<g >
<title>sockfd_lookup_light (7 samples, 0.01%)</title><rect x="291.9" y="357" width="0.1" height="15.0" fill="rgb(234,175,32)" rx="2" ry="2" />
<text x="294.89" y="367.5" ></text>
</g>
<g >
<title>flush_smp_call_function_queue (8 samples, 0.01%)</title><rect x="1135.7" y="421" width="0.2" height="15.0" fill="rgb(242,139,40)" rx="2" ry="2" />
<text x="1138.75" y="431.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (741 samples, 1.05%)</title><rect x="927.5" y="389" width="12.4" height="15.0" fill="rgb(238,167,36)" rx="2" ry="2" />
<text x="930.53" y="399.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,342 samples, 6.17%)</title><rect x="621.9" y="373" width="72.8" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" />
<text x="624.92" y="383.5" >entry_SY..</text>
</g>
<g >
<title>add_wait_queue (60 samples, 0.09%)</title><rect x="268.2" y="373" width="1.0" height="15.0" fill="rgb(242,156,40)" rx="2" ry="2" />
<text x="271.21" y="383.5" ></text>
</g>
<g >
<title>load_new_mm_cr3 (135 samples, 0.19%)</title><rect x="312.4" y="357" width="2.3" height="15.0" fill="rgb(246,157,45)" rx="2" ry="2" />
<text x="315.45" y="367.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (8 samples, 0.01%)</title><rect x="706.3" y="405" width="0.1" height="15.0" fill="rgb(242,151,40)" rx="2" ry="2" />
<text x="709.26" y="415.5" ></text>
</g>
<g >
<title>pg_vsprintf (12 samples, 0.02%)</title><rect x="304.9" y="469" width="0.2" height="15.0" fill="rgb(54790,201,187)" rx="2" ry="2" />
<text x="307.92" y="479.5" ></text>
</g>
<g >
<title>ResourceArrayRemove (7 samples, 0.01%)</title><rect x="518.2" y="341" width="0.1" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="521.17" y="351.5" ></text>
</g>
<g >
<title>hash_any (8 samples, 0.01%)</title><rect x="751.9" y="341" width="0.2" height="15.0" fill="rgb(147,107,143)" rx="2" ry="2" />
<text x="754.92" y="351.5" ></text>
</g>
<g >
<title>pqReadData (3,708 samples, 5.27%)</title><rect x="33.1" y="485" width="62.1" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="36.11" y="495.5" >pqRead..</text>
</g>
<g >
<title>rebalance_domains (6 samples, 0.01%)</title><rect x="1028.0" y="325" width="0.1" height="15.0" fill="rgb(240,181,38)" rx="2" ry="2" />
<text x="1031.04" y="335.5" ></text>
</g>
<g >
<title>socket_putmessage (55 samples, 0.08%)</title><rect x="520.4" y="389" width="1.0" height="15.0" fill="rgb(88,173,225)" rx="2" ry="2" />
<text x="523.43" y="399.5" ></text>
</g>
<g >
<title>ExecReadyExpr (9 samples, 0.01%)</title><rect x="587.5" y="373" width="0.2" height="15.0" fill="rgb(81,84,92)" rx="2" ry="2" />
<text x="590.52" y="383.5" ></text>
</g>
<g >
<title>dopr.constprop.2 (274 samples, 0.39%)</title><rect x="524.6" y="405" width="4.6" height="15.0" fill="rgb(54790,201,82)" rx="2" ry="2" />
<text x="527.60" y="415.5" ></text>
</g>
<g >
<title>_find_next_bit (14 samples, 0.02%)</title><rect x="1046.5" y="405" width="0.3" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="1049.54" y="415.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,178 samples, 3.09%)</title><rect x="236.8" y="469" width="36.5" height="15.0" fill="rgb(232,189,30)" rx="2" ry="2" />
<text x="239.76" y="479.5" >do_..</text>
</g>
<g >
<title>ReleaseBuffer (10 samples, 0.01%)</title><rect x="509.2" y="357" width="0.1" height="15.0" fill="rgb(121,61,15235984)" rx="2" ry="2" />
<text x="512.17" y="367.5" ></text>
</g>
<g >
<title>__memmove_ssse3_back (46 samples, 0.07%)</title><rect x="479.3" y="357" width="0.8" height="15.0" fill="rgb(242,151,40)" rx="2" ry="2" />
<text x="482.31" y="367.5" ></text>
</g>
<g >
<title>t_bootstrap (11 samples, 0.02%)</title><rect x="11.6" y="549" width="0.1" height="15.0" fill="rgb(237,140,35)" rx="2" ry="2" />
<text x="14.56" y="559.5" ></text>
</g>
<g >
<title>copyin (13 samples, 0.02%)</title><rect x="642.8" y="261" width="0.3" height="15.0" fill="rgb(247,140,46)" rx="2" ry="2" />
<text x="645.84" y="271.5" ></text>
</g>
<g >
<title>GetCurrentSubTransactionId (12 samples, 0.02%)</title><rect x="458.0" y="421" width="0.2" height="15.0" fill="rgb(71,807901,135)" rx="2" ry="2" />
<text x="460.98" y="431.5" ></text>
</g>
<g >
<title>lookupVariable (41 samples, 0.06%)</title><rect x="215.1" y="485" width="0.7" height="15.0" fill="rgb(208,154,164)" rx="2" ry="2" />
<text x="218.07" y="495.5" ></text>
</g>
<g >
<title>alloc_skb_with_frags (417 samples, 0.59%)</title><rect x="645.5" y="261" width="7.0" height="15.0" fill="rgb(241,128,39)" rx="2" ry="2" />
<text x="648.52" y="271.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (30 samples, 0.04%)</title><rect x="1162.4" y="421" width="0.5" height="15.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text x="1165.40" y="431.5" ></text>
</g>
<g >
<title>hash_any (18 samples, 0.03%)</title><rect x="421.3" y="357" width="0.3" height="15.0" fill="rgb(147,107,143)" rx="2" ry="2" />
<text x="424.34" y="367.5" ></text>
</g>
<g >
<title>_int_malloc (160 samples, 0.23%)</title><rect x="115.1" y="437" width="2.7" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="118.07" y="447.5" ></text>
</g>
<g >
<title>MemoryContextAllocZeroAligned (24 samples, 0.03%)</title><rect x="571.5" y="357" width="0.4" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="574.47" y="367.5" ></text>
</g>
<g >
<title>FreeExprContext (177 samples, 0.25%)</title><rect x="745.5" y="325" width="3.0" height="15.0" fill="rgb(81,87,413214)" rx="2" ry="2" />
<text x="748.52" y="335.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (68 samples, 0.10%)</title><rect x="189.6" y="373" width="1.1" height="15.0" fill="rgb(236,167,34)" rx="2" ry="2" />
<text x="192.57" y="383.5" ></text>
</g>
<g >
<title>hash_search (29 samples, 0.04%)</title><rect x="608.3" y="325" width="0.5" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="611.34" y="335.5" ></text>
</g>
<g >
<title>do_sys_poll (241 samples, 0.34%)</title><rect x="310.7" y="501" width="4.1" height="15.0" fill="rgb(229,189,26)" rx="2" ry="2" />
<text x="313.72" y="511.5" ></text>
</g>
<g >
<title>pq_getbyte (8,306 samples, 11.79%)</title><rect x="800.8" y="453" width="139.1" height="15.0" fill="rgb(88,173,191)" rx="2" ry="2" />
<text x="803.78" y="463.5" >pq_getbyte</text>
</g>
<g >
<title>ReleaseCatCache (14 samples, 0.02%)</title><rect x="571.9" y="373" width="0.2" height="15.0" fill="rgb(142,62,202)" rx="2" ry="2" />
<text x="574.87" y="383.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly.part.1 (23 samples, 0.03%)</title><rect x="717.3" y="373" width="0.4" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="720.34" y="383.5" ></text>
</g>
<g >
<title>deactivate_task (320 samples, 0.45%)</title><rect x="847.2" y="245" width="5.4" height="15.0" fill="rgb(236,216,34)" rx="2" ry="2" />
<text x="850.24" y="255.5" ></text>
</g>
<g >
<title>parseInput (32 samples, 0.05%)</title><rect x="98.8" y="485" width="0.5" height="15.0" fill="rgb(241,90,177)" rx="2" ry="2" />
<text x="101.75" y="495.5" ></text>
</g>
<g >
<title>MemoryContextReset (9 samples, 0.01%)</title><rect x="509.9" y="389" width="0.1" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="512.87" y="399.5" ></text>
</g>
<g >
<title>palloc (11 samples, 0.02%)</title><rect x="613.4" y="405" width="0.2" height="15.0" fill="rgb(3537,90,-354911973014429)" rx="2" ry="2" />
<text x="616.40" y="415.5" ></text>
</g>
<g >
<title>ResourceArrayEnlarge.part.4 (35 samples, 0.05%)</title><rect x="532.1" y="405" width="0.6" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="535.11" y="415.5" ></text>
</g>
<g >
<title>ttwu_do_wakeup (56 samples, 0.08%)</title><rect x="300.6" y="133" width="0.9" height="15.0" fill="rgb(240,116,38)" rx="2" ry="2" />
<text x="303.57" y="143.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,504 samples, 4.98%)</title><rect x="132.6" y="389" width="58.7" height="15.0" fill="rgb(232,189,30)" rx="2" ry="2" />
<text x="135.60" y="399.5" >do_sys..</text>
</g>
<g >
<title>vmstat (7 samples, 0.01%)</title><rect x="1189.6" y="565" width="0.1" height="15.0" fill="rgb(229,92,26)" rx="2" ry="2" />
<text x="1192.60" y="575.5" ></text>
</g>
<g >
<title>skb_copy_datagram_from_iter (157 samples, 0.22%)</title><rect x="640.4" y="277" width="2.7" height="15.0" fill="rgb(240,143,38)" rx="2" ry="2" />
<text x="643.43" y="287.5" ></text>
</g>
<g >
<title>GetPortalByName (107 samples, 0.15%)</title><rect x="408.9" y="437" width="1.8" height="15.0" fill="rgb(197,173,137)" rx="2" ry="2" />
<text x="411.94" y="447.5" ></text>
</g>
<g >
<title>iomap_write_end (14 samples, 0.02%)</title><rect x="12.5" y="357" width="0.2" height="15.0" fill="rgb(251,181,51)" rx="2" ry="2" />
<text x="15.46" y="367.5" ></text>
</g>
<g >
<title>unix_destruct_scm (374 samples, 0.53%)</title><rect x="63.4" y="277" width="6.2" height="15.0" fill="rgb(234,145,32)" rx="2" ry="2" />
<text x="66.37" y="287.5" ></text>
</g>
<g >
<title>syscall_trace_enter (25 samples, 0.04%)</title><rect x="272.8" y="453" width="0.5" height="15.0" fill="rgb(240,167,38)" rx="2" ry="2" />
<text x="275.84" y="463.5" ></text>
</g>
<g >
<title>finish_task_switch (12 samples, 0.02%)</title><rect x="308.1" y="325" width="0.2" height="15.0" fill="rgb(242,177,41)" rx="2" ry="2" />
<text x="311.12" y="335.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (117 samples, 0.17%)</title><rect x="354.3" y="325" width="1.9" height="15.0" fill="rgb(145,11509185,31898427440)" rx="2" ry="2" />
<text x="357.25" y="335.5" ></text>
</g>
<g >
<title>PQsendQueryPrepared (439 samples, 0.62%)</title><rect x="296.2" y="485" width="7.4" height="15.0" fill="rgb(241,90,192)" rx="2" ry="2" />
<text x="299.23" y="495.5" ></text>
</g>
<g >
<title>IncrBufferRefCount (15 samples, 0.02%)</title><rect x="491.4" y="309" width="0.2" height="15.0" fill="rgb(121,61,147)" rx="2" ry="2" />
<text x="494.39" y="319.5" ></text>
</g>
<g >
<title>__libc_send (146 samples, 0.21%)</title><rect x="16.8" y="469" width="2.4" height="15.0" fill="rgb(251,154,51)" rx="2" ry="2" />
<text x="19.80" y="479.5" ></text>
</g>
<g >
<title>__perf_event_enable (132 samples, 0.19%)</title><rect x="1013.2" y="325" width="2.2" height="15.0" fill="rgb(241,141,40)" rx="2" ry="2" />
<text x="1016.18" y="335.5" ></text>
</g>
<g >
<title>lapic_next_deadline (6 samples, 0.01%)</title><rect x="1152.4" y="373" width="0.1" height="15.0" fill="rgb(246,107,46)" rx="2" ry="2" />
<text x="1155.43" y="383.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,928 samples, 5.58%)</title><rect x="628.3" y="357" width="65.8" height="15.0" fill="rgb(232,189,30)" rx="2" ry="2" />
<text x="631.32" y="367.5" >do_sysc..</text>
</g>
<g >
<title>sock_alloc_send_pskb (39 samples, 0.06%)</title><rect x="298.3" y="293" width="0.6" height="15.0" fill="rgb(227,175,24)" rx="2" ry="2" />
<text x="301.26" y="303.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (70 samples, 0.10%)</title><rect x="259.6" y="325" width="1.2" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="262.60" y="335.5" ></text>
</g>
<g >
<title>palloc (13 samples, 0.02%)</title><rect x="591.3" y="341" width="0.2" height="15.0" fill="rgb(3537,90,-354911973014429)" rx="2" ry="2" />
<text x="594.27" y="351.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly.part.1 (142 samples, 0.20%)</title><rect x="446.8" y="453" width="2.3" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="449.76" y="463.5" ></text>
</g>
<g >
<title>dopr.constprop.2 (28 samples, 0.04%)</title><rect x="304.2" y="437" width="0.5" height="15.0" fill="rgb(54790,201,82)" rx="2" ry="2" />
<text x="307.20" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (9 samples, 0.01%)</title><rect x="792.5" y="421" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="795.52" y="431.5" ></text>
</g>
<g >
<title>_bt_fix_scankey_strategy (23 samples, 0.03%)</title><rect x="340.6" y="357" width="0.4" height="15.0" fill="rgb(63,133,62)" rx="2" ry="2" />
<text x="343.58" y="367.5" ></text>
</g>
<g >
<title>do_sys_poll (7 samples, 0.01%)</title><rect x="237.5" y="453" width="0.1" height="15.0" fill="rgb(229,189,26)" rx="2" ry="2" />
<text x="240.50" y="463.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (48 samples, 0.07%)</title><rect x="1138.8" y="469" width="0.8" height="15.0" fill="rgb(236,134,34)" rx="2" ry="2" />
<text x="1141.76" y="479.5" ></text>
</g>
<g >
<title>kvm_steal_clock (6 samples, 0.01%)</title><rect x="262.9" y="325" width="0.1" height="15.0" fill="rgb(240,130,39)" rx="2" ry="2" />
<text x="265.92" y="335.5" ></text>
</g>
<g >
<title>BufTableHashCode (11 samples, 0.02%)</title><rect x="358.9" y="293" width="0.2" height="15.0" fill="rgb(121,61,64)" rx="2" ry="2" />
<text x="361.93" y="303.5" ></text>
</g>
<g >
<title>evalStandardFunc (21 samples, 0.03%)</title><rect x="303.8" y="469" width="0.3" height="15.0" fill="rgb(208,154,89)" rx="2" ry="2" />
<text x="306.77" y="479.5" ></text>
</g>
<g >
<title>selinux_socket_recvmsg (149 samples, 0.21%)</title><rect x="889.2" y="293" width="2.5" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="892.18" y="303.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (13 samples, 0.02%)</title><rect x="380.4" y="293" width="0.2" height="15.0" fill="rgb(121,61,137)" rx="2" ry="2" />
<text x="383.37" y="303.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (1,036 samples, 1.47%)</title><rect x="247.4" y="405" width="17.3" height="15.0" fill="rgb(247,164,46)" rx="2" ry="2" />
<text x="250.39" y="415.5" ></text>
</g>
<g >
<title>flush_smp_call_function_queue (132 samples, 0.19%)</title><rect x="1013.2" y="373" width="2.2" height="15.0" fill="rgb(242,139,40)" rx="2" ry="2" />
<text x="1016.18" y="383.5" ></text>
</g>
<g >
<title>sys_epoll_wait (236 samples, 0.34%)</title><rect x="971.7" y="517" width="3.9" height="15.0" fill="rgb(237,167,35)" rx="2" ry="2" />
<text x="974.68" y="527.5" ></text>
</g>
<g >
<title>rb_erase_cached (25 samples, 0.04%)</title><rect x="1065.7" y="421" width="0.4" height="15.0" fill="rgb(247,112,46)" rx="2" ry="2" />
<text x="1068.66" y="431.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (22 samples, 0.03%)</title><rect x="190.9" y="357" width="0.4" height="15.0" fill="rgb(243,151,42)" rx="2" ry="2" />
<text x="193.94" y="367.5" ></text>
</g>
<g >
<title>_bt_heapkeyspace (26 samples, 0.04%)</title><rect x="338.6" y="373" width="0.5" height="15.0" fill="rgb(63,132,62)" rx="2" ry="2" />
<text x="341.64" y="383.5" ></text>
</g>
<g >
<title>avc_has_perm (8 samples, 0.01%)</title><rect x="289.5" y="293" width="0.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="292.46" y="303.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (7 samples, 0.01%)</title><rect x="1061.5" y="389" width="0.1" height="15.0" fill="rgb(237,128,36)" rx="2" ry="2" />
<text x="1064.52" y="399.5" ></text>
</g>
<g >
<title>trigger_load_balance (8 samples, 0.01%)</title><rect x="187.3" y="117" width="0.1" height="15.0" fill="rgb(251,132,51)" rx="2" ry="2" />
<text x="190.30" y="127.5" ></text>
</g>
<g >
<title>ExecInitExprSlots (135 samples, 0.19%)</title><rect x="585.3" y="373" width="2.2" height="15.0" fill="rgb(81,84,91)" rx="2" ry="2" />
<text x="588.26" y="383.5" ></text>
</g>
<g >
<title>sys_epoll_wait (2,508 samples, 3.56%)</title><rect x="818.9" y="341" width="42.0" height="15.0" fill="rgb(237,167,35)" rx="2" ry="2" />
<text x="821.87" y="351.5" >sys..</text>
</g>
<g >
<title>AtEOXact_MultiXact (31 samples, 0.04%)</title><rect x="723.0" y="405" width="0.5" height="15.0" fill="rgb(71,130,56)" rx="2" ry="2" />
<text x="726.00" y="415.5" ></text>
</g>
<g >
<title>ExecIndexScan (597 samples, 0.85%)</title><rect x="462.3" y="405" width="10.0" height="15.0" fill="rgb(81,138,91)" rx="2" ry="2" />
<text x="465.32" y="415.5" ></text>
</g>
<g >
<title>PyEval_EvalCodeEx (9 samples, 0.01%)</title><rect x="11.6" y="389" width="0.1" height="15.0" fill="rgb(248,201,47)" rx="2" ry="2" />
<text x="14.56" y="399.5" ></text>
</g>
<g >
<title>ttwu_do_activate (987 samples, 1.40%)</title><rect x="668.7" y="165" width="16.6" height="15.0" fill="rgb(245,116,45)" rx="2" ry="2" />
<text x="671.75" y="175.5" ></text>
</g>
<g >
<title>generic_write_end (13 samples, 0.02%)</title><rect x="12.5" y="341" width="0.2" height="15.0" fill="rgb(251,189,51)" rx="2" ry="2" />
<text x="15.46" y="351.5" ></text>
</g>
<g >
<title>default_idle_call (2,620 samples, 3.72%)</title><rect x="999.8" y="485" width="43.9" height="15.0" fill="rgb(230,200,28)" rx="2" ry="2" />
<text x="1002.83" y="495.5" >defa..</text>
</g>
<g >
<title>ResourceArrayAdd (6 samples, 0.01%)</title><rect x="575.9" y="341" width="0.1" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="578.94" y="351.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetSnapshot (35 samples, 0.05%)</title><rect x="749.3" y="325" width="0.6" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="752.34" y="335.5" ></text>
</g>
<g >
<title>enlargeStringInfo (13 samples, 0.02%)</title><rect x="516.1" y="389" width="0.2" height="15.0" fill="rgb(86,215,86)" rx="2" ry="2" />
<text x="519.06" y="399.5" ></text>
</g>
<g >
<title>ExecPushExprSlots (15 samples, 0.02%)</title><rect x="570.2" y="341" width="0.2" height="15.0" fill="rgb(81,84,92)" rx="2" ry="2" />
<text x="573.18" y="351.5" ></text>
</g>
<g >
<title>alloc_skb_with_frags (14 samples, 0.02%)</title><rect x="639.1" y="277" width="0.2" height="15.0" fill="rgb(241,128,39)" rx="2" ry="2" />
<text x="642.09" y="287.5" ></text>
</g>
<g >
<title>pollwake (1,875 samples, 2.66%)</title><rect x="656.7" y="213" width="31.4" height="15.0" fill="rgb(243,208,42)" rx="2" ry="2" />
<text x="659.67" y="223.5" >po..</text>
</g>
<g >
<title>AllocSetAlloc (24 samples, 0.03%)</title><rect x="583.8" y="325" width="0.4" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="586.83" y="335.5" ></text>
</g>
<g >
<title>compareVariableNames (44 samples, 0.06%)</title><rect x="213.9" y="389" width="0.7" height="15.0" fill="rgb(208,154,71)" rx="2" ry="2" />
<text x="216.91" y="399.5" ></text>
</g>
<g >
<title>PQsendQueryPrepared (4,969 samples, 7.06%)</title><rect x="123.1" y="501" width="83.3" height="15.0" fill="rgb(241,90,192)" rx="2" ry="2" />
<text x="126.15" y="511.5" >PQsendQue..</text>
</g>
<g >
<title>sched_clock_cpu (56 samples, 0.08%)</title><rect x="263.0" y="325" width="1.0" height="15.0" fill="rgb(238,164,36)" rx="2" ry="2" />
<text x="266.02" y="335.5" ></text>
</g>
<g >
<title>pick_next_task_fair (19 samples, 0.03%)</title><rect x="261.0" y="341" width="0.3" height="15.0" fill="rgb(240,174,39)" rx="2" ry="2" />
<text x="263.98" y="351.5" ></text>
</g>
<g >
<title>PortalRunSelect (3,942 samples, 5.60%)</title><rect x="458.2" y="437" width="66.0" height="15.0" fill="rgb(135,175,189)" rx="2" ry="2" />
<text x="461.18" y="447.5" >PortalR..</text>
</g>
<g >
<title>GrantLockLocal (6 samples, 0.01%)</title><rect x="607.4" y="325" width="0.1" height="15.0" fill="rgb(129,24381895395797,141)" rx="2" ry="2" />
<text x="610.36" y="335.5" ></text>
</g>
<g >
<title>ResourceArrayRemove (25 samples, 0.04%)</title><rect x="738.9" y="293" width="0.5" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="741.93" y="303.5" ></text>
</g>
<g >
<title>ExecInitExprRec (129 samples, 0.18%)</title><rect x="580.1" y="341" width="2.2" height="15.0" fill="rgb(81,84,91)" rx="2" ry="2" />
<text x="583.13" y="351.5" ></text>
</g>
<g >
<title>jit_compile_expr (8 samples, 0.01%)</title><rect x="587.5" y="357" width="0.2" height="15.0" fill="rgb(84,118,153)" rx="2" ry="2" />
<text x="590.53" y="367.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (69 samples, 0.10%)</title><rect x="243.6" y="389" width="1.1" height="15.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text x="246.58" y="399.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBuffer (11 samples, 0.02%)</title><rect x="337.9" y="341" width="0.2" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="340.93" y="351.5" ></text>
</g>
<g >
<title>unix_stream_read_actor (181 samples, 0.26%)</title><rect x="74.1" y="325" width="3.0" height="15.0" fill="rgb(241,145,39)" rx="2" ry="2" />
<text x="77.09" y="335.5" ></text>
</g>
<g >
<title>ScanKeyEntryInitializeWithInfo (10 samples, 0.01%)</title><rect x="327.1" y="373" width="0.2" height="15.0" fill="rgb(53,194,218)" rx="2" ry="2" />
<text x="330.13" y="383.5" ></text>
</g>
<g >
<title>rb_next (21 samples, 0.03%)</title><rect x="1127.6" y="389" width="0.3" height="15.0" fill="rgb(230,112,27)" rx="2" ry="2" />
<text x="1130.55" y="399.5" ></text>
</g>
<g >
<title>pqCheckOutBufferSpace (6 samples, 0.01%)</title><rect x="315.0" y="533" width="0.1" height="15.0" fill="rgb(241,90,190)" rx="2" ry="2" />
<text x="317.98" y="543.5" ></text>
</g>
<g >
<title>_int_malloc (50 samples, 0.07%)</title><rect x="104.4" y="437" width="0.9" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="107.42" y="447.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (11 samples, 0.02%)</title><rect x="1001.7" y="437" width="0.2" height="15.0" fill="rgb(236,134,34)" rx="2" ry="2" />
<text x="1004.67" y="447.5" ></text>
</g>
<g >
<title>pqResultStrdup (92 samples, 0.13%)</title><rect x="117.8" y="469" width="1.5" height="15.0" fill="rgb(241,90,192)" rx="2" ry="2" />
<text x="120.75" y="479.5" ></text>
</g>
<g >
<title>__strlen_sse2_pminub (20 samples, 0.03%)</title><rect x="118.6" y="453" width="0.4" height="15.0" fill="rgb(231,132,29)" rx="2" ry="2" />
<text x="121.64" y="463.5" ></text>
</g>
<g >
<title>__libc_recv (348 samples, 0.49%)</title><rect x="287.8" y="437" width="5.8" height="15.0" fill="rgb(237,154,35)" rx="2" ry="2" />
<text x="290.78" y="447.5" ></text>
</g>
<g >
<title>pick_next_entity (114 samples, 0.16%)</title><rect x="1062.4" y="437" width="2.0" height="15.0" fill="rgb(240,174,38)" rx="2" ry="2" />
<text x="1065.44" y="447.5" ></text>
</g>
<g >
<title>task_of (6 samples, 0.01%)</title><rect x="850.8" y="181" width="0.1" height="15.0" fill="rgb(242,114,41)" rx="2" ry="2" />
<text x="853.81" y="191.5" ></text>
</g>
<g >
<title>PQmakeEmptyPGresult (193 samples, 0.27%)</title><rect x="102.2" y="469" width="3.2" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="105.15" y="479.5" ></text>
</g>
<g >
<title>__vfs_read (6 samples, 0.01%)</title><rect x="10.1" y="485" width="0.1" height="15.0" fill="rgb(241,122,40)" rx="2" ry="2" />
<text x="13.10" y="495.5" ></text>
</g>
<g >
<title>AtCommit_Memory (65 samples, 0.09%)</title><rect x="717.0" y="405" width="1.1" height="15.0" fill="rgb(71,807901,56)" rx="2" ry="2" />
<text x="719.97" y="415.5" ></text>
</g>
<g >
<title>ret_from_fork (7 samples, 0.01%)</title><rect x="1189.9" y="549" width="0.1" height="15.0" fill="rgb(236,162,34)" rx="2" ry="2" />
<text x="1192.88" y="559.5" ></text>
</g>
<g >
<title>switch_mm_irqs_off (134 samples, 0.19%)</title><rect x="853.1" y="213" width="2.2" height="15.0" fill="rgb(246,115,45)" rx="2" ry="2" />
<text x="856.09" y="223.5" ></text>
</g>
<g >
<title>ep_poll_callback (135 samples, 0.19%)</title><rect x="66.2" y="181" width="2.3" height="15.0" fill="rgb(242,176,40)" rx="2" ry="2" />
<text x="69.20" y="191.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (63 samples, 0.09%)</title><rect x="413.3" y="437" width="1.0" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="416.26" y="447.5" ></text>
</g>
<g >
<title>__strlen_sse2_pminub (20 samples, 0.03%)</title><rect x="414.6" y="437" width="0.3" height="15.0" fill="rgb(231,132,29)" rx="2" ry="2" />
<text x="417.57" y="447.5" ></text>
</g>
<g >
<title>systrim.isra.2 (45 samples, 0.06%)</title><rect x="736.6" y="277" width="0.7" height="15.0" fill="rgb(252,167,51)" rx="2" ry="2" />
<text x="739.55" y="287.5" ></text>
</g>
<g >
<title>ResourceOwnerNewParent (29 samples, 0.04%)</title><rect x="760.1" y="373" width="0.5" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="763.15" y="383.5" ></text>
</g>
<g >
<title>syscall_trace_enter (64 samples, 0.09%)</title><rect x="693.1" y="341" width="1.0" height="15.0" fill="rgb(240,167,38)" rx="2" ry="2" />
<text x="696.06" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (10 samples, 0.01%)</title><rect x="952.2" y="421" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="955.21" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (7 samples, 0.01%)</title><rect x="602.4" y="261" width="0.1" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="605.36" y="271.5" ></text>
</g>
<g >
<title>default_idle_call (143 samples, 0.20%)</title><rect x="1180.1" y="437" width="2.4" height="15.0" fill="rgb(230,200,28)" rx="2" ry="2" />
<text x="1183.10" y="447.5" ></text>
</g>
<g >
<title>systemd (15 samples, 0.02%)</title><rect x="1189.3" y="565" width="0.3" height="15.0" fill="rgb(240,167,39)" rx="2" ry="2" />
<text x="1192.33" y="575.5" ></text>
</g>
<g >
<title>hrtimer_try_to_cancel (359 samples, 0.51%)</title><rect x="1150.6" y="437" width="6.0" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" />
<text x="1153.63" y="447.5" ></text>
</g>
<g >
<title>seq_read (6 samples, 0.01%)</title><rect x="10.1" y="453" width="0.1" height="15.0" fill="rgb(241,163,40)" rx="2" ry="2" />
<text x="13.10" y="463.5" ></text>
</g>
<g >
<title>pqGetInt (6 samples, 0.01%)</title><rect x="294.9" y="453" width="0.1" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="297.91" y="463.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (26 samples, 0.04%)</title><rect x="268.8" y="357" width="0.4" height="15.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text x="271.78" y="367.5" ></text>
</g>
<g >
<title>unix_destruct_scm (45 samples, 0.06%)</title><rect x="290.5" y="261" width="0.7" height="15.0" fill="rgb(234,145,32)" rx="2" ry="2" />
<text x="293.46" y="271.5" ></text>
</g>
<g >
<title>__wake_up_locked (150 samples, 0.21%)</title><rect x="299.2" y="213" width="2.6" height="15.0" fill="rgb(245,119,44)" rx="2" ry="2" />
<text x="302.24" y="223.5" ></text>
</g>
<g >
<title>skb_unlink (135 samples, 0.19%)</title><rect x="71.8" y="325" width="2.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="74.83" y="335.5" ></text>
</g>
<g >
<title>ExecPushExprSlots (46 samples, 0.07%)</title><rect x="585.4" y="357" width="0.8" height="15.0" fill="rgb(81,84,92)" rx="2" ry="2" />
<text x="588.42" y="367.5" ></text>
</g>
<g >
<title>LockAcquireExtended (348 samples, 0.49%)</title><rect x="425.8" y="373" width="5.8" height="15.0" fill="rgb(129,24381895395797,161)" rx="2" ry="2" />
<text x="428.80" y="383.5" ></text>
</g>
<g >
<title>pqsecure_raw_read (119 samples, 0.17%)</title><rect x="273.6" y="485" width="2.0" height="15.0" fill="rgb(241,91,192)" rx="2" ry="2" />
<text x="276.58" y="495.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (50 samples, 0.07%)</title><rect x="688.9" y="197" width="0.8" height="15.0" fill="rgb(236,126,34)" rx="2" ry="2" />
<text x="691.89" y="207.5" ></text>
</g>
<g >
<title>ResourceArrayAdd (6 samples, 0.01%)</title><rect x="364.7" y="277" width="0.1" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="367.71" y="287.5" ></text>
</g>
<g >
<title>smp_reschedule_interrupt (15 samples, 0.02%)</title><rect x="1189.1" y="549" width="0.2" height="15.0" fill="rgb(236,126,34)" rx="2" ry="2" />
<text x="1192.06" y="559.5" ></text>
</g>
<g >
<title>ExecutorStart (34 samples, 0.05%)</title><rect x="534.2" y="437" width="0.6" height="15.0" fill="rgb(81,84,4443743)" rx="2" ry="2" />
<text x="537.22" y="447.5" ></text>
</g>
<g >
<title>LWLockAcquire (38 samples, 0.05%)</title><rect x="357.0" y="325" width="0.6" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="359.98" y="335.5" ></text>
</g>
<g >
<title>update_load_avg (72 samples, 0.10%)</title><rect x="673.0" y="101" width="1.2" height="15.0" fill="rgb(240,150,38)" rx="2" ry="2" />
<text x="676.02" y="111.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (55 samples, 0.08%)</title><rect x="263.0" y="293" width="1.0" height="15.0" fill="rgb(241,130,40)" rx="2" ry="2" />
<text x="266.04" y="303.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (9 samples, 0.01%)</title><rect x="1061.5" y="405" width="0.2" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" />
<text x="1064.52" y="415.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (6 samples, 0.01%)</title><rect x="855.9" y="229" width="0.1" height="15.0" fill="rgb(236,134,34)" rx="2" ry="2" />
<text x="858.94" y="239.5" ></text>
</g>
<g >
<title>pqGets_internal (234 samples, 0.33%)</title><rect x="110.2" y="453" width="4.0" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="113.23" y="463.5" ></text>
</g>
<g >
<title>deactivate_task (27 samples, 0.04%)</title><rect x="307.4" y="325" width="0.4" height="15.0" fill="rgb(236,216,34)" rx="2" ry="2" />
<text x="310.37" y="335.5" ></text>
</g>
<g >
<title>pqPutc (14 samples, 0.02%)</title><rect x="203.4" y="469" width="0.2" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="206.35" y="479.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (98 samples, 0.14%)</title><rect x="1141.0" y="437" width="1.6" height="15.0" fill="rgb(241,163,40)" rx="2" ry="2" />
<text x="1143.99" y="447.5" ></text>
</g>
<g >
<title>pfree (9 samples, 0.01%)</title><rect x="734.3" y="357" width="0.1" height="15.0" fill="rgb(3537,90,12881895)" rx="2" ry="2" />
<text x="737.28" y="367.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (14 samples, 0.02%)</title><rect x="187.2" y="197" width="0.2" height="15.0" fill="rgb(237,128,36)" rx="2" ry="2" />
<text x="190.20" y="207.5" ></text>
</g>
<g >
<title>ExecInitExprRec (56 samples, 0.08%)</title><rect x="569.1" y="357" width="0.9" height="15.0" fill="rgb(81,84,91)" rx="2" ry="2" />
<text x="572.09" y="367.5" ></text>
</g>
<g >
<title>ReadBuffer (7 samples, 0.01%)</title><rect x="357.7" y="325" width="0.1" height="15.0" fill="rgb(121,61,14820569)" rx="2" ry="2" />
<text x="360.70" y="335.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetSnapshot (17 samples, 0.02%)</title><rect x="733.2" y="325" width="0.2" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="736.15" y="335.5" ></text>
</g>
<g >
<title>__x2apic_send_IPI_dest.constprop.4 (14 samples, 0.02%)</title><rect x="679.2" y="85" width="0.2" height="15.0" fill="rgb(246,154,45)" rx="2" ry="2" />
<text x="682.15" y="95.5" ></text>
</g>
<g >
<title>fmgr_info (12 samples, 0.02%)</title><rect x="582.4" y="341" width="0.2" height="15.0" fill="rgb(145,11509185,99)" rx="2" ry="2" />
<text x="585.44" y="351.5" ></text>
</g>
<g >
<title>skb_copy_datagram_from_iter (140 samples, 0.20%)</title><rect x="142.1" y="309" width="2.3" height="15.0" fill="rgb(240,143,38)" rx="2" ry="2" />
<text x="145.08" y="319.5" ></text>
</g>
<g >
<title>btbeginscan (476 samples, 0.68%)</title><rect x="481.9" y="341" width="8.0" height="15.0" fill="rgb(63,51424,62)" rx="2" ry="2" />
<text x="484.91" y="351.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (12 samples, 0.02%)</title><rect x="306.7" y="373" width="0.2" height="15.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text x="309.70" y="383.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.01%)</title><rect x="11.8" y="517" width="0.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" />
<text x="14.84" y="527.5" ></text>
</g>
<g >
<title>sched_ttwu_pending (6 samples, 0.01%)</title><rect x="1182.8" y="437" width="0.1" height="15.0" fill="rgb(243,164,42)" rx="2" ry="2" />
<text x="1185.81" y="447.5" ></text>
</g>
<g >
<title>find_next_bit (6 samples, 0.01%)</title><rect x="1184.8" y="373" width="0.1" height="15.0" fill="rgb(236,177,34)" rx="2" ry="2" />
<text x="1187.82" y="383.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (25 samples, 0.04%)</title><rect x="702.9" y="437" width="0.4" height="15.0" fill="rgb(242,151,40)" rx="2" ry="2" />
<text x="705.86" y="447.5" ></text>
</g>
<g >
<title>hash_search (67 samples, 0.10%)</title><rect x="415.8" y="437" width="1.1" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="418.79" y="447.5" ></text>
</g>
<g >
<title>_find_next_bit (105 samples, 0.15%)</title><rect x="1100.5" y="389" width="1.8" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="1103.51" y="399.5" ></text>
</g>
<g >
<title>unix_poll (152 samples, 0.22%)</title><rect x="266.8" y="405" width="2.5" height="15.0" fill="rgb(229,145,26)" rx="2" ry="2" />
<text x="269.77" y="415.5" ></text>
</g>
<g >
<title>__next_timer_interrupt (20 samples, 0.03%)</title><rect x="1184.4" y="373" width="0.4" height="15.0" fill="rgb(236,148,34)" rx="2" ry="2" />
<text x="1187.44" y="383.5" ></text>
</g>
<g >
<title>MemoryContextDelete (27 samples, 0.04%)</title><rect x="746.1" y="309" width="0.4" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="749.07" y="319.5" ></text>
</g>
<g >
<title>_copy_from_user (12 samples, 0.02%)</title><rect x="241.8" y="421" width="0.2" height="15.0" fill="rgb(240,180,39)" rx="2" ry="2" />
<text x="244.81" y="431.5" ></text>
</g>
<g >
<title>clockevents_program_event (30 samples, 0.04%)</title><rect x="1188.4" y="373" width="0.5" height="15.0" fill="rgb(241,102,39)" rx="2" ry="2" />
<text x="1191.39" y="383.5" ></text>
</g>
<g >
<title>palloc0 (24 samples, 0.03%)</title><rect x="565.7" y="325" width="0.4" height="15.0" fill="rgb(3537,90,177)" rx="2" ry="2" />
<text x="568.74" y="335.5" ></text>
</g>
<g >
<title>pqsecure_raw_write (146 samples, 0.21%)</title><rect x="16.8" y="485" width="2.4" height="15.0" fill="rgb(241,91,192)" rx="2" ry="2" />
<text x="19.80" y="495.5" ></text>
</g>
<g >
<title>tick_nohz_restart_sched_tick (1,826 samples, 2.59%)</title><rect x="1146.4" y="469" width="30.6" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="1149.37" y="479.5" >ti..</text>
</g>
<g >
<title>ExecEndIndexScan (343 samples, 0.49%)</title><rect x="737.5" y="341" width="5.7" height="15.0" fill="rgb(81,138,90)" rx="2" ry="2" />
<text x="740.46" y="351.5" ></text>
</g>
<g >
<title>ep_send_events_proc (25 samples, 0.04%)</title><rect x="841.0" y="309" width="0.4" height="15.0" fill="rgb(234,176,31)" rx="2" ry="2" />
<text x="843.96" y="319.5" ></text>
</g>
<g >
<title>schedule_idle (62 samples, 0.09%)</title><rect x="1182.9" y="437" width="1.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="1185.91" y="447.5" ></text>
</g>
<g >
<title>__fdget (83 samples, 0.12%)</title><rect x="77.2" y="357" width="1.3" height="15.0" fill="rgb(237,135,35)" rx="2" ry="2" />
<text x="80.15" y="367.5" ></text>
</g>
<g >
<title>__scalbn (27 samples, 0.04%)</title><rect x="210.1" y="453" width="0.4" height="15.0" fill="rgb(244,132,42)" rx="2" ry="2" />
<text x="213.07" y="463.5" ></text>
</g>
<g >
<title>sock_wfree (6 samples, 0.01%)</title><rect x="63.3" y="277" width="0.1" height="15.0" fill="rgb(246,175,46)" rx="2" ry="2" />
<text x="66.26" y="287.5" ></text>
</g>
<g >
<title>sock_wfree (500 samples, 0.71%)</title><rect x="905.1" y="213" width="8.4" height="15.0" fill="rgb(246,175,46)" rx="2" ry="2" />
<text x="908.09" y="223.5" ></text>
</g>
<g >
<title>GrantLockLocal (6 samples, 0.01%)</title><rect x="421.2" y="389" width="0.1" height="15.0" fill="rgb(129,24381895395797,141)" rx="2" ry="2" />
<text x="424.19" y="399.5" ></text>
</g>
<g >
<title>sys_recvfrom (46 samples, 0.07%)</title><rect x="82.6" y="421" width="0.8" height="15.0" fill="rgb(234,167,31)" rx="2" ry="2" />
<text x="85.58" y="431.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (141 samples, 0.20%)</title><rect x="860.9" y="341" width="2.4" height="15.0" fill="rgb(236,167,34)" rx="2" ry="2" />
<text x="863.89" y="351.5" ></text>
</g>
<g >
<title>__wake_up_common (145 samples, 0.21%)</title><rect x="299.3" y="197" width="2.4" height="15.0" fill="rgb(253,119,53)" rx="2" ry="2" />
<text x="302.29" y="207.5" ></text>
</g>
<g >
<title>unix_write_space (266 samples, 0.38%)</title><rect x="65.1" y="245" width="4.5" height="15.0" fill="rgb(252,145,52)" rx="2" ry="2" />
<text x="68.14" y="255.5" ></text>
</g>
<g >
<title>hrtick_update (7 samples, 0.01%)</title><rect x="674.4" y="133" width="0.1" height="15.0" fill="rgb(245,152,45)" rx="2" ry="2" />
<text x="677.38" y="143.5" ></text>
</g>
<g >
<title>ExecAllocTableSlot (228 samples, 0.32%)</title><rect x="596.4" y="373" width="3.8" height="15.0" fill="rgb(81,86,89)" rx="2" ry="2" />
<text x="599.38" y="383.5" ></text>
</g>
<g >
<title>unix_poll (15 samples, 0.02%)</title><rect x="839.0" y="277" width="0.3" height="15.0" fill="rgb(229,145,26)" rx="2" ry="2" />
<text x="842.03" y="287.5" ></text>
</g>
<g >
<title>select_idle_sibling (130 samples, 0.18%)</title><rect x="666.6" y="149" width="2.1" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="669.55" y="159.5" ></text>
</g>
<g >
<title>reschedule_interrupt (66 samples, 0.09%)</title><rect x="1180.8" y="373" width="1.1" height="15.0" fill="rgb(236,165,34)" rx="2" ry="2" />
<text x="1183.77" y="383.5" ></text>
</g>
<g >
<title>instancemethod_call (11 samples, 0.02%)</title><rect x="11.6" y="501" width="0.1" height="15.0" fill="rgb(230,167,28)" rx="2" ry="2" />
<text x="14.56" y="511.5" ></text>
</g>
<g >
<title>update_rq_clock (75 samples, 0.11%)</title><rect x="858.6" y="245" width="1.3" height="15.0" fill="rgb(240,150,39)" rx="2" ry="2" />
<text x="861.65" y="255.5" ></text>
</g>
<g >
<title>PortalDrop (1,402 samples, 1.99%)</title><rect x="729.4" y="389" width="23.5" height="15.0" fill="rgb(197,173,189)" rx="2" ry="2" />
<text x="732.43" y="399.5" >P..</text>
</g>
<g >
<title>alloc_skb_with_frags (349 samples, 0.50%)</title><rect x="146.5" y="293" width="5.9" height="15.0" fill="rgb(241,128,39)" rx="2" ry="2" />
<text x="149.50" y="303.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (703 samples, 1.00%)</title><rect x="83.4" y="437" width="11.8" height="15.0" fill="rgb(238,167,36)" rx="2" ry="2" />
<text x="86.42" y="447.5" ></text>
</g>
<g >
<title>PyEval_EvalCodeEx (11 samples, 0.02%)</title><rect x="11.6" y="453" width="0.1" height="15.0" fill="rgb(248,201,47)" rx="2" ry="2" />
<text x="14.56" y="463.5" ></text>
</g>
<g >
<title>pqGets_internal (14 samples, 0.02%)</title><rect x="295.1" y="437" width="0.2" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="298.09" y="447.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (95 samples, 0.13%)</title><rect x="911.2" y="149" width="1.6" height="15.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text x="914.16" y="159.5" ></text>
</g>
<g >
<title>tick_sched_handle (26 samples, 0.04%)</title><rect x="1012.1" y="341" width="0.4" height="15.0" fill="rgb(240,142,39)" rx="2" ry="2" />
<text x="1015.06" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (15 samples, 0.02%)</title><rect x="520.2" y="357" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="523.18" y="367.5" ></text>
</g>
<g >
<title>hash_any (36 samples, 0.05%)</title><rect x="380.7" y="293" width="0.6" height="15.0" fill="rgb(147,107,143)" rx="2" ry="2" />
<text x="383.74" y="303.5" ></text>
</g>
<g >
<title>hash_any (23 samples, 0.03%)</title><rect x="435.4" y="405" width="0.4" height="15.0" fill="rgb(147,107,143)" rx="2" ry="2" />
<text x="438.40" y="415.5" ></text>
</g>
<g >
<title>PQmakeEmptyPGresult (41 samples, 0.06%)</title><rect x="294.2" y="453" width="0.7" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="297.22" y="463.5" ></text>
</g>
<g >
<title>pairingheap_add (49 samples, 0.07%)</title><rect x="533.1" y="405" width="0.8" height="15.0" fill="rgb(86,145,177)" rx="2" ry="2" />
<text x="536.06" y="415.5" ></text>
</g>
<g >
<title>switch_mm_irqs_off (171 samples, 0.24%)</title><rect x="311.8" y="373" width="2.9" height="15.0" fill="rgb(246,115,45)" rx="2" ry="2" />
<text x="314.84" y="383.5" ></text>
</g>
<g >
<title>AtStart_GUC (21 samples, 0.03%)</title><rect x="963.4" y="405" width="0.3" height="15.0" fill="rgb(195,106,57)" rx="2" ry="2" />
<text x="966.35" y="415.5" ></text>
</g>
<g >
<title>target_load (6 samples, 0.01%)</title><rect x="168.5" y="149" width="0.1" height="15.0" fill="rgb(243,117,41)" rx="2" ry="2" />
<text x="171.52" y="159.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (102 samples, 0.14%)</title><rect x="75.3" y="277" width="1.7" height="15.0" fill="rgb(243,140,42)" rx="2" ry="2" />
<text x="78.31" y="287.5" ></text>
</g>
<g >
<title>__fdget (43 samples, 0.06%)</title><rect x="188.2" y="325" width="0.7" height="15.0" fill="rgb(237,135,35)" rx="2" ry="2" />
<text x="191.16" y="335.5" ></text>
</g>
<g >
<title>tick_sched_handle (7 samples, 0.01%)</title><rect x="1061.5" y="357" width="0.1" height="15.0" fill="rgb(240,142,39)" rx="2" ry="2" />
<text x="1064.52" y="367.5" ></text>
</g>
<g >
<title>PortalRun (4,359 samples, 6.19%)</title><rect x="456.2" y="453" width="73.0" height="15.0" fill="rgb(135,175,189)" rx="2" ry="2" />
<text x="459.16" y="463.5" >PortalRun</text>
</g>
<g >
<title>heap_page_prune_opt (186 samples, 0.26%)</title><rect x="500.9" y="325" width="3.1" height="15.0" fill="rgb(59,178,9574824)" rx="2" ry="2" />
<text x="503.88" y="335.5" ></text>
</g>
<g >
<title>table_open (221 samples, 0.31%)</title><rect x="600.5" y="357" width="3.7" height="15.0" fill="rgb(68,12086,232)" rx="2" ry="2" />
<text x="603.50" y="367.5" ></text>
</g>
<g >
<title>[unknown] (146 samples, 0.21%)</title><rect x="16.8" y="453" width="2.4" height="15.0" fill="rgb(242,180,40)" rx="2" ry="2" />
<text x="19.80" y="463.5" ></text>
</g>
<g >
<title>pollwake (9 samples, 0.01%)</title><rect x="690.0" y="229" width="0.2" height="15.0" fill="rgb(243,208,42)" rx="2" ry="2" />
<text x="693.01" y="239.5" ></text>
</g>
<g >
<title>__strlen_sse2_pminub (22 samples, 0.03%)</title><rect x="514.9" y="389" width="0.4" height="15.0" fill="rgb(231,132,29)" rx="2" ry="2" />
<text x="517.90" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (14 samples, 0.02%)</title><rect x="529.5" y="421" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="532.49" y="431.5" ></text>
</g>
<g >
<title>__wake_up_common (168 samples, 0.24%)</title><rect x="299.0" y="245" width="2.9" height="15.0" fill="rgb(253,119,53)" rx="2" ry="2" />
<text x="302.04" y="255.5" ></text>
</g>
<g >
<title>index_open (393 samples, 0.56%)</title><rect x="605.1" y="389" width="6.6" height="15.0" fill="rgb(61,111,147)" rx="2" ry="2" />
<text x="608.13" y="399.5" ></text>
</g>
<g >
<title>ExecStoreBufferHeapTuple (26 samples, 0.04%)</title><rect x="491.3" y="325" width="0.4" height="15.0" fill="rgb(81,86,93)" rx="2" ry="2" />
<text x="494.31" y="335.5" ></text>
</g>
<g >
<title>pg_strdup (153 samples, 0.22%)</title><rect x="221.0" y="485" width="2.5" height="15.0" fill="rgb(3537,90,3576938)" rx="2" ry="2" />
<text x="223.96" y="495.5" ></text>
</g>
<g >
<title>lapic_next_deadline (100 samples, 0.14%)</title><rect x="1167.3" y="405" width="1.7" height="15.0" fill="rgb(246,107,46)" rx="2" ry="2" />
<text x="1170.30" y="415.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.01%)</title><rect x="10.1" y="549" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" />
<text x="13.05" y="559.5" ></text>
</g>
<g >
<title>sys_ioctl (7 samples, 0.01%)</title><rect x="12.0" y="485" width="0.1" height="15.0" fill="rgb(232,167,30)" rx="2" ry="2" />
<text x="14.96" y="495.5" ></text>
</g>
<g >
<title>PyEval_EvalFrameEx (9 samples, 0.01%)</title><rect x="11.6" y="373" width="0.1" height="15.0" fill="rgb(248,201,47)" rx="2" ry="2" />
<text x="14.56" y="383.5" ></text>
</g>
<g >
<title>check_stack_depth (8 samples, 0.01%)</title><rect x="586.9" y="325" width="0.1" height="15.0" fill="rgb(135,173,68)" rx="2" ry="2" />
<text x="589.86" y="335.5" ></text>
</g>
<g >
<title>compareVariableNames (7 samples, 0.01%)</title><rect x="215.6" y="453" width="0.2" height="15.0" fill="rgb(208,154,71)" rx="2" ry="2" />
<text x="218.64" y="463.5" ></text>
</g>
<g >
<title>ResourceArrayEnlarge.part.4 (46 samples, 0.07%)</title><rect x="788.4" y="421" width="0.7" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="791.38" y="431.5" ></text>
</g>
<g >
<title>finish_task_switch (18 samples, 0.03%)</title><rect x="1079.7" y="469" width="0.3" height="15.0" fill="rgb(242,177,41)" rx="2" ry="2" />
<text x="1082.68" y="479.5" ></text>
</g>
<g >
<title>try_to_wake_up (12 samples, 0.02%)</title><rect x="687.9" y="197" width="0.2" height="15.0" fill="rgb(236,158,34)" rx="2" ry="2" />
<text x="690.88" y="207.5" ></text>
</g>
<g >
<title>__GI___ioctl (7 samples, 0.01%)</title><rect x="12.0" y="533" width="0.1" height="15.0" fill="rgb(232,119,30)" rx="2" ry="2" />
<text x="14.96" y="543.5" ></text>
</g>
<g >
<title>cpus_share_cache (9 samples, 0.01%)</title><rect x="666.8" y="133" width="0.2" height="15.0" fill="rgb(245,118,44)" rx="2" ry="2" />
<text x="669.80" y="143.5" ></text>
</g>
<g >
<title>skb_unlink (138 samples, 0.20%)</title><rect x="915.1" y="277" width="2.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="918.13" y="287.5" ></text>
</g>
<g >
<title>default_idle (19 samples, 0.03%)</title><rect x="1043.4" y="469" width="0.3" height="15.0" fill="rgb(240,200,39)" rx="2" ry="2" />
<text x="1046.41" y="479.5" ></text>
</g>
<g >
<title>native_apic_msr_eoi_write (28 samples, 0.04%)</title><rect x="1024.2" y="389" width="0.5" height="15.0" fill="rgb(240,158,38)" rx="2" ry="2" />
<text x="1027.21" y="399.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (100 samples, 0.14%)</title><rect x="162.9" y="165" width="1.7" height="15.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text x="165.91" y="175.5" ></text>
</g>
<g >
<title>index_rescan (36 samples, 0.05%)</title><rect x="508.3" y="373" width="0.6" height="15.0" fill="rgb(61,111,147)" rx="2" ry="2" />
<text x="511.28" y="383.5" ></text>
</g>
<g >
<title>mntput (6 samples, 0.01%)</title><rect x="924.9" y="325" width="0.1" height="15.0" fill="rgb(234,132,31)" rx="2" ry="2" />
<text x="927.87" y="335.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (12 samples, 0.02%)</title><rect x="637.1" y="277" width="0.2" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="640.06" y="287.5" ></text>
</g>
<g >
<title>_raw_spin_lock (11 samples, 0.02%)</title><rect x="290.0" y="309" width="0.2" height="15.0" fill="rgb(240,166,39)" rx="2" ry="2" />
<text x="293.00" y="319.5" ></text>
</g>
<g >
<title>select_task_rq_fair (18 samples, 0.03%)</title><rect x="658.2" y="181" width="0.3" height="15.0" fill="rgb(240,179,39)" rx="2" ry="2" />
<text x="661.21" y="191.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (345 samples, 0.49%)</title><rect x="296.5" y="389" width="5.8" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" />
<text x="299.55" y="399.5" ></text>
</g>
<g >
<title>CheckExprStillValid (32 samples, 0.05%)</title><rect x="474.4" y="373" width="0.6" height="15.0" fill="rgb(81,83,67)" rx="2" ry="2" />
<text x="477.44" y="383.5" ></text>
</g>
<g >
<title>malloc (24 samples, 0.03%)</title><rect x="295.4" y="437" width="0.4" height="15.0" fill="rgb(238,112,36)" rx="2" ry="2" />
<text x="298.36" y="447.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (107 samples, 0.15%)</title><rect x="1185.0" y="389" width="1.8" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="1187.97" y="399.5" ></text>
</g>
<g >
<title>table_slot_callbacks (29 samples, 0.04%)</title><rect x="611.7" y="389" width="0.5" height="15.0" fill="rgb(68,220,232)" rx="2" ry="2" />
<text x="614.71" y="399.5" ></text>
</g>
<g >
<title>AtEOXact_SMgr (26 samples, 0.04%)</title><rect x="725.4" y="405" width="0.5" height="15.0" fill="rgb(132,200,56)" rx="2" ry="2" />
<text x="728.43" y="415.5" ></text>
</g>
<g >
<title>rcu_idle_enter (30 samples, 0.04%)</title><rect x="1178.3" y="501" width="0.5" height="15.0" fill="rgb(240,169,38)" rx="2" ry="2" />
<text x="1181.29" y="511.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (52 samples, 0.07%)</title><rect x="752.1" y="373" width="0.8" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="755.05" y="383.5" ></text>
</g>
<g >
<title>pq_copymsgbytes (109 samples, 0.15%)</title><rect x="947.6" y="437" width="1.8" height="15.0" fill="rgb(88,174,190)" rx="2" ry="2" />
<text x="950.57" y="447.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (1,198 samples, 1.70%)</title><rect x="1156.7" y="453" width="20.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="1159.71" y="463.5" ></text>
</g>
<g >
<title>avc_has_perm (37 samples, 0.05%)</title><rect x="634.0" y="245" width="0.6" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="636.98" y="255.5" ></text>
</g>
<g >
<title>pick_next_task_fair (18 samples, 0.03%)</title><rect x="1183.3" y="405" width="0.3" height="15.0" fill="rgb(240,174,39)" rx="2" ry="2" />
<text x="1186.30" y="415.5" ></text>
</g>
<g >
<title>fmtint (196 samples, 0.28%)</title><rect x="217.7" y="437" width="3.3" height="15.0" fill="rgb(54790,201,99)" rx="2" ry="2" />
<text x="220.68" y="447.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (17 samples, 0.02%)</title><rect x="186.3" y="213" width="0.3" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="189.35" y="223.5" ></text>
</g>
<g >
<title>__switch_to (82 samples, 0.12%)</title><rect x="284.4" y="549" width="1.4" height="15.0" fill="rgb(238,132,37)" rx="2" ry="2" />
<text x="287.38" y="559.5" ></text>
</g>
<g >
<title>PyObject_Call (11 samples, 0.02%)</title><rect x="11.6" y="485" width="0.1" height="15.0" fill="rgb(230,207,28)" rx="2" ry="2" />
<text x="14.56" y="495.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (52 samples, 0.07%)</title><rect x="948.5" y="421" width="0.9" height="15.0" fill="rgb(242,151,40)" rx="2" ry="2" />
<text x="951.52" y="431.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (6 samples, 0.01%)</title><rect x="298.1" y="277" width="0.1" height="15.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text x="301.07" y="287.5" ></text>
</g>
<g >
<title>sock_alloc_send_pskb (534 samples, 0.76%)</title><rect x="645.2" y="277" width="8.9" height="15.0" fill="rgb(227,175,24)" rx="2" ry="2" />
<text x="648.19" y="287.5" ></text>
</g>
<g >
<title>AllocSetFree (8 samples, 0.01%)</title><rect x="729.3" y="389" width="0.1" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="732.30" y="399.5" ></text>
</g>
<g >
<title>lock_hrtimer_base.isra.21 (48 samples, 0.07%)</title><rect x="1130.8" y="421" width="0.8" height="15.0" fill="rgb(225,151,22)" rx="2" ry="2" />
<text x="1133.77" y="431.5" ></text>
</g>
<g >
<title>update_load_avg (53 samples, 0.08%)</title><rect x="173.1" y="101" width="0.8" height="15.0" fill="rgb(240,150,38)" rx="2" ry="2" />
<text x="176.06" y="111.5" ></text>
</g>
<g >
<title>MemoryContextDelete (17 samples, 0.02%)</title><rect x="730.8" y="373" width="0.3" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="733.82" y="383.5" ></text>
</g>
<g >
<title>start_thread (11 samples, 0.02%)</title><rect x="1189.3" y="533" width="0.2" height="15.0" fill="rgb(241,156,40)" rx="2" ry="2" />
<text x="1192.35" y="543.5" ></text>
</g>
<g >
<title>GetTransactionSnapshot (476 samples, 0.68%)</title><rect x="437.2" y="453" width="7.9" height="15.0" fill="rgb(202,201,139)" rx="2" ry="2" />
<text x="440.17" y="463.5" ></text>
</g>
<g >
<title>task_of (9 samples, 0.01%)</title><rect x="849.6" y="197" width="0.2" height="15.0" fill="rgb(242,114,41)" rx="2" ry="2" />
<text x="852.62" y="207.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (12 samples, 0.02%)</title><rect x="291.7" y="261" width="0.2" height="15.0" fill="rgb(243,140,42)" rx="2" ry="2" />
<text x="294.69" y="271.5" ></text>
</g>
<g >
<title>AllocSetReset (108 samples, 0.15%)</title><rect x="447.3" y="437" width="1.8" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="450.33" y="447.5" ></text>
</g>
<g >
<title>__kmalloc_reserve.isra.40 (106 samples, 0.15%)</title><rect x="147.4" y="261" width="1.8" height="15.0" fill="rgb(225,119,22)" rx="2" ry="2" />
<text x="150.43" y="271.5" ></text>
</g>
<g >
<title>x86_pmu_enable (132 samples, 0.19%)</title><rect x="1013.2" y="277" width="2.2" height="15.0" fill="rgb(241,205,40)" rx="2" ry="2" />
<text x="1016.18" y="287.5" ></text>
</g>
<g >
<title>enqueue_task_fair (265 samples, 0.38%)</title><rect x="169.6" y="133" width="4.4" height="15.0" fill="rgb(240,205,39)" rx="2" ry="2" />
<text x="172.58" y="143.5" ></text>
</g>
<g >
<title>conditional_active (18 samples, 0.03%)</title><rect x="208.4" y="501" width="0.3" height="15.0" fill="rgb(233,67,71)" rx="2" ry="2" />
<text x="211.43" y="511.5" ></text>
</g>
<g >
<title>__errno_location (7 samples, 0.01%)</title><rect x="871.0" y="405" width="0.1" height="15.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text x="874.01" y="415.5" ></text>
</g>
<g >
<title>update_rq_clock (71 samples, 0.10%)</title><rect x="262.8" y="341" width="1.2" height="15.0" fill="rgb(240,150,39)" rx="2" ry="2" />
<text x="265.77" y="351.5" ></text>
</g>
<g >
<title>PostmasterMain (34,306 samples, 48.71%)</title><rect x="396.6" y="501" width="574.8" height="15.0" fill="rgb(106,173,190)" rx="2" ry="2" />
<text x="399.61" y="511.5" >PostmasterMain</text>
</g>
<g >
<title>[unknown] (451 samples, 0.64%)</title><rect x="385.2" y="549" width="7.5" height="15.0" fill="rgb(242,180,40)" rx="2" ry="2" />
<text x="388.17" y="559.5" ></text>
</g>
<g >
<title>internal_flush (147 samples, 0.21%)</title><rect x="390.2" y="533" width="2.5" height="15.0" fill="rgb(88,173,151)" rx="2" ry="2" />
<text x="393.23" y="543.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (10 samples, 0.01%)</title><rect x="68.3" y="149" width="0.2" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="71.29" y="159.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (27 samples, 0.04%)</title><rect x="68.0" y="165" width="0.5" height="15.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text x="71.01" y="175.5" ></text>
</g>
<g >
<title>pg_server_to_client (36 samples, 0.05%)</title><rect x="516.9" y="373" width="0.6" height="15.0" fill="rgb(150,128,184)" rx="2" ry="2" />
<text x="519.91" y="383.5" ></text>
</g>
<g >
<title>lapic_next_deadline (95 samples, 0.13%)</title><rect x="1116.8" y="373" width="1.6" height="15.0" fill="rgb(246,107,46)" rx="2" ry="2" />
<text x="1119.80" y="383.5" ></text>
</g>
<g >
<title>LWLockAcquire (21 samples, 0.03%)</title><rect x="771.7" y="357" width="0.4" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="774.74" y="367.5" ></text>
</g>
<g >
<title>__pollwait (78 samples, 0.11%)</title><rect x="267.9" y="389" width="1.3" height="15.0" fill="rgb(237,141,35)" rx="2" ry="2" />
<text x="270.91" y="399.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (3,782 samples, 5.37%)</title><rect x="460.9" y="421" width="63.3" height="15.0" fill="rgb(81,84,229)" rx="2" ry="2" />
<text x="463.87" y="431.5" >standa..</text>
</g>
<g >
<title>getVariable (46 samples, 0.07%)</title><rect x="304.1" y="485" width="0.8" height="15.0" fill="rgb(208,154,139)" rx="2" ry="2" />
<text x="307.12" y="495.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (266 samples, 0.38%)</title><rect x="288.0" y="421" width="4.5" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" />
<text x="291.04" y="431.5" ></text>
</g>
<g >
<title>_raw_spin_lock (88 samples, 0.12%)</title><rect x="637.6" y="277" width="1.4" height="15.0" fill="rgb(240,166,39)" rx="2" ry="2" />
<text x="640.57" y="287.5" ></text>
</g>
<g >
<title>CreateDestReceiver (13 samples, 0.02%)</title><rect x="407.4" y="453" width="0.3" height="15.0" fill="rgb(135,75,76)" rx="2" ry="2" />
<text x="410.45" y="463.5" ></text>
</g>
<g >
<title>MakeTupleTableSlot (40 samples, 0.06%)</title><rect x="565.5" y="341" width="0.7" height="15.0" fill="rgb(81,86,166)" rx="2" ry="2" />
<text x="568.48" y="351.5" ></text>
</g>
<g >
<title>ExecReadyExpr (19 samples, 0.03%)</title><rect x="562.0" y="357" width="0.4" height="15.0" fill="rgb(81,84,92)" rx="2" ry="2" />
<text x="565.03" y="367.5" ></text>
</g>
<g >
<title>int4out (72 samples, 0.10%)</title><rect x="513.1" y="373" width="1.2" height="15.0" fill="rgb(140,570645941054194,150)" rx="2" ry="2" />
<text x="516.06" y="383.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (83 samples, 0.12%)</title><rect x="435.8" y="437" width="1.4" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="438.78" y="447.5" ></text>
</g>
<g >
<title>put_pid (8 samples, 0.01%)</title><rect x="632.7" y="293" width="0.1" height="15.0" fill="rgb(245,152,44)" rx="2" ry="2" />
<text x="635.66" y="303.5" ></text>
</g>
<g >
<title>PyEval_CallObjectWithKeywords (11 samples, 0.02%)</title><rect x="11.6" y="533" width="0.1" height="15.0" fill="rgb(241,201,39)" rx="2" ry="2" />
<text x="14.56" y="543.5" ></text>
</g>
<g >
<title>printtup_startup (78 samples, 0.11%)</title><rect x="522.9" y="405" width="1.3" height="15.0" fill="rgb(53,177,194)" rx="2" ry="2" />
<text x="525.93" y="415.5" ></text>
</g>
<g >
<title>LWLockRelease (47 samples, 0.07%)</title><rect x="964.7" y="405" width="0.8" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="967.71" y="415.5" ></text>
</g>
<g >
<title>sys_poll (7 samples, 0.01%)</title><rect x="11.8" y="485" width="0.2" height="15.0" fill="rgb(229,167,26)" rx="2" ry="2" />
<text x="14.84" y="495.5" ></text>
</g>
<g >
<title>AllocSetAlloc (45 samples, 0.06%)</title><rect x="968.1" y="373" width="0.8" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="971.14" y="383.5" ></text>
</g>
<g >
<title>pqPutnchar (24 samples, 0.03%)</title><rect x="203.6" y="469" width="0.4" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="206.59" y="479.5" ></text>
</g>
<g >
<title>SYSC_recvfrom (171 samples, 0.24%)</title><rect x="289.2" y="373" width="2.8" height="15.0" fill="rgb(234,165,31)" rx="2" ry="2" />
<text x="292.17" y="383.5" ></text>
</g>
<g >
<title>__strlen_sse2_pminub (7 samples, 0.01%)</title><rect x="98.1" y="453" width="0.1" height="15.0" fill="rgb(231,132,29)" rx="2" ry="2" />
<text x="101.08" y="463.5" ></text>
</g>
<g >
<title>PyEval_EvalFrameEx (11 samples, 0.02%)</title><rect x="11.6" y="437" width="0.1" height="15.0" fill="rgb(248,201,47)" rx="2" ry="2" />
<text x="14.56" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (46 samples, 0.07%)</title><rect x="449.8" y="421" width="0.8" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="452.81" y="431.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (16 samples, 0.02%)</title><rect x="143.2" y="277" width="0.3" height="15.0" fill="rgb(243,140,42)" rx="2" ry="2" />
<text x="146.24" y="287.5" ></text>
</g>
<g >
<title>_start (34,306 samples, 48.71%)</title><rect x="396.6" y="549" width="574.8" height="15.0" fill="rgb(239,139,37)" rx="2" ry="2" />
<text x="399.61" y="559.5" >_start</text>
</g>
<g >
<title>sched_ttwu_pending (96 samples, 0.14%)</title><rect x="1052.0" y="485" width="1.6" height="15.0" fill="rgb(243,164,42)" rx="2" ry="2" />
<text x="1054.97" y="495.5" ></text>
</g>
<g >
<title>pqsecure_raw_write (4,339 samples, 6.16%)</title><rect x="125.2" y="437" width="72.7" height="15.0" fill="rgb(241,91,192)" rx="2" ry="2" />
<text x="128.19" y="447.5" >pqsecure..</text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (24 samples, 0.03%)</title><rect x="68.9" y="197" width="0.4" height="15.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text x="71.88" y="207.5" ></text>
</g>
<g >
<title>LWLockRelease (25 samples, 0.04%)</title><rect x="362.6" y="293" width="0.4" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="365.60" y="303.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (20 samples, 0.03%)</title><rect x="200.1" y="437" width="0.3" height="15.0" fill="rgb(242,151,40)" rx="2" ry="2" />
<text x="203.10" y="447.5" ></text>
</g>
<g >
<title>ExecShutdownNode (66 samples, 0.09%)</title><rect x="510.6" y="405" width="1.1" height="15.0" fill="rgb(81,85,93)" rx="2" ry="2" />
<text x="513.56" y="415.5" ></text>
</g>
<g >
<title>pqSendSome (4,387 samples, 6.23%)</title><rect x="124.5" y="453" width="73.5" height="15.0" fill="rgb(241,90,192)" rx="2" ry="2" />
<text x="127.50" y="463.5" >pqSendSome</text>
</g>
<g >
<title>CommitTransactionCommand (4,321 samples, 6.14%)</title><rect x="712.2" y="437" width="72.4" height="15.0" fill="rgb(71,807901,70)" rx="2" ry="2" />
<text x="715.21" y="447.5" >CommitTr..</text>
</g>
<g >
<title>enqueue_task_fair (21 samples, 0.03%)</title><rect x="300.2" y="117" width="0.4" height="15.0" fill="rgb(240,205,39)" rx="2" ry="2" />
<text x="303.20" y="127.5" ></text>
</g>
<g >
<title>selinux_socket_recvmsg (14 samples, 0.02%)</title><rect x="54.0" y="357" width="0.3" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="57.02" y="367.5" ></text>
</g>
<g >
<title>scheduler_ipi (46 samples, 0.07%)</title><rect x="1181.1" y="341" width="0.8" height="15.0" fill="rgb(237,164,36)" rx="2" ry="2" />
<text x="1184.10" y="351.5" ></text>
</g>
<g >
<title>SYSC_sendto (16 samples, 0.02%)</title><rect x="629.9" y="341" width="0.3" height="15.0" fill="rgb(243,165,42)" rx="2" ry="2" />
<text x="632.92" y="351.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (33 samples, 0.05%)</title><rect x="618.1" y="389" width="0.5" height="15.0" fill="rgb(242,151,40)" rx="2" ry="2" />
<text x="621.08" y="399.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (6 samples, 0.01%)</title><rect x="302.1" y="341" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="305.11" y="351.5" ></text>
</g>
<g >
<title>pq_startmsgread (19 samples, 0.03%)</title><rect x="951.4" y="453" width="0.3" height="15.0" fill="rgb(88,173,192)" rx="2" ry="2" />
<text x="954.39" y="463.5" ></text>
</g>
<g >
<title>pq_beginmessage (29 samples, 0.04%)</title><rect x="616.5" y="437" width="0.5" height="15.0" fill="rgb(88,174,190)" rx="2" ry="2" />
<text x="619.52" y="447.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (228 samples, 0.32%)</title><rect x="305.7" y="469" width="3.8" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" />
<text x="308.66" y="479.5" ></text>
</g>
<g >
<title>put_prev_task_fair (13 samples, 0.02%)</title><rect x="262.5" y="341" width="0.2" height="15.0" fill="rgb(240,152,39)" rx="2" ry="2" />
<text x="265.45" y="351.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (9 samples, 0.01%)</title><rect x="38.1" y="421" width="0.2" height="15.0" fill="rgb(236,126,34)" rx="2" ry="2" />
<text x="41.13" y="431.5" ></text>
</g>
<g >
<title>sched_clock (49 samples, 0.07%)</title><rect x="686.9" y="133" width="0.9" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="689.94" y="143.5" ></text>
</g>
<g >
<title>sys_recvfrom (1,770 samples, 2.51%)</title><rect x="49.6" y="405" width="29.7" height="15.0" fill="rgb(234,167,31)" rx="2" ry="2" />
<text x="52.63" y="415.5" >sy..</text>
</g>
<g >
<title>getBaseTypeAndTypmod (75 samples, 0.11%)</title><rect x="703.6" y="437" width="1.2" height="15.0" fill="rgb(142,126,134)" rx="2" ry="2" />
<text x="706.58" y="447.5" ></text>
</g>
<g >
<title>unix_destruct_scm (15 samples, 0.02%)</title><rect x="69.6" y="293" width="0.3" height="15.0" fill="rgb(234,145,32)" rx="2" ry="2" />
<text x="72.63" y="303.5" ></text>
</g>
<g >
<title>ep_poll_callback (6 samples, 0.01%)</title><rect x="187.6" y="261" width="0.1" height="15.0" fill="rgb(242,176,40)" rx="2" ry="2" />
<text x="190.62" y="271.5" ></text>
</g>
<g >
<title>AllocSetAlloc (91 samples, 0.13%)</title><rect x="488.4" y="309" width="1.5" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="491.36" y="319.5" ></text>
</g>
<g >
<title>mutex_lock (38 samples, 0.05%)</title><rect x="914.0" y="277" width="0.7" height="15.0" fill="rgb(240,96,39)" rx="2" ry="2" />
<text x="917.04" y="287.5" ></text>
</g>
<g >
<title>schedule (241 samples, 0.34%)</title><rect x="310.7" y="437" width="4.1" height="15.0" fill="rgb(237,164,35)" rx="2" ry="2" />
<text x="313.72" y="447.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (10 samples, 0.01%)</title><rect x="69.1" y="181" width="0.2" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="72.11" y="191.5" ></text>
</g>
<g >
<title>RelationGetIndexScan (345 samples, 0.49%)</title><rect x="482.4" y="325" width="5.8" height="15.0" fill="rgb(61,97,201)" rx="2" ry="2" />
<text x="485.43" y="335.5" ></text>
</g>
<g >
<title>syscall_trace_enter (36 samples, 0.05%)</title><rect x="190.7" y="373" width="0.6" height="15.0" fill="rgb(240,167,38)" rx="2" ry="2" />
<text x="193.70" y="383.5" ></text>
</g>
<g >
<title>malloc_consolidate (18 samples, 0.03%)</title><rect x="295.5" y="405" width="0.3" height="15.0" fill="rgb(245,112,45)" rx="2" ry="2" />
<text x="298.46" y="415.5" ></text>
</g>
<g >
<title>rcu_dynticks_eqs_exit (24 samples, 0.03%)</title><rect x="1051.6" y="453" width="0.4" height="15.0" fill="rgb(237,169,36)" rx="2" ry="2" />
<text x="1054.55" y="463.5" ></text>
</g>
<g >
<title>AllocSetAlloc (10 samples, 0.01%)</title><rect x="566.0" y="309" width="0.1" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="568.97" y="319.5" ></text>
</g>
<g >
<title>arch_cpu_idle (2,553 samples, 3.63%)</title><rect x="1000.6" y="469" width="42.8" height="15.0" fill="rgb(240,144,39)" rx="2" ry="2" />
<text x="1003.63" y="479.5" >arch..</text>
</g>
<g >
<title>rebalance_domains (35 samples, 0.05%)</title><rect x="1181.2" y="277" width="0.6" height="15.0" fill="rgb(240,181,38)" rx="2" ry="2" />
<text x="1184.22" y="287.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (46 samples, 0.07%)</title><rect x="687.0" y="101" width="0.7" height="15.0" fill="rgb(241,163,40)" rx="2" ry="2" />
<text x="689.96" y="111.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (1,148 samples, 1.63%)</title><rect x="841.5" y="309" width="19.2" height="15.0" fill="rgb(247,164,46)" rx="2" ry="2" />
<text x="844.48" y="319.5" ></text>
</g>
<g >
<title>__schedule (8 samples, 0.01%)</title><rect x="998.9" y="485" width="0.1" height="15.0" fill="rgb(237,132,35)" rx="2" ry="2" />
<text x="1001.87" y="495.5" ></text>
</g>
<g >
<title>UnregisterSnapshot (7 samples, 0.01%)</title><rect x="748.8" y="341" width="0.1" height="15.0" fill="rgb(202,201,242)" rx="2" ry="2" />
<text x="751.80" y="351.5" ></text>
</g>
<g >
<title>evalStandardFunc (221 samples, 0.31%)</title><rect x="211.0" y="453" width="3.7" height="15.0" fill="rgb(208,154,89)" rx="2" ry="2" />
<text x="213.96" y="463.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (938 samples, 1.33%)</title><rect x="368.2" y="357" width="15.7" height="15.0" fill="rgb(63,132,63)" rx="2" ry="2" />
<text x="371.23" y="367.5" ></text>
</g>
<g >
<title>switch_mm (146 samples, 0.21%)</title><rect x="852.9" y="229" width="2.4" height="15.0" fill="rgb(220,115,17)" rx="2" ry="2" />
<text x="855.89" y="239.5" ></text>
</g>
<g >
<title>AllocSetAlloc (10 samples, 0.01%)</title><rect x="532.5" y="373" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="535.53" y="383.5" ></text>
</g>
<g >
<title>sys_sendto (3,331 samples, 4.73%)</title><rect x="133.8" y="373" width="55.8" height="15.0" fill="rgb(243,167,42)" rx="2" ry="2" />
<text x="136.75" y="383.5" >sys_s..</text>
</g>
<g >
<title>__strlen_sse2_pminub (22 samples, 0.03%)</title><rect x="451.2" y="437" width="0.4" height="15.0" fill="rgb(231,132,29)" rx="2" ry="2" />
<text x="454.21" y="447.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (13 samples, 0.02%)</title><rect x="690.2" y="245" width="0.2" height="15.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text x="693.16" y="255.5" ></text>
</g>
<g >
<title>__strchrnul (6 samples, 0.01%)</title><rect x="526.8" y="389" width="0.1" height="15.0" fill="rgb(231,132,29)" rx="2" ry="2" />
<text x="529.83" y="399.5" ></text>
</g>
<g >
<title>_raw_spin_lock (9 samples, 0.01%)</title><rect x="892.6" y="293" width="0.2" height="15.0" fill="rgb(240,166,39)" rx="2" ry="2" />
<text x="895.65" y="303.5" ></text>
</g>
<g >
<title>__wake_up_common (13 samples, 0.02%)</title><rect x="291.0" y="181" width="0.2" height="15.0" fill="rgb(253,119,53)" rx="2" ry="2" />
<text x="293.95" y="191.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (9 samples, 0.01%)</title><rect x="428.6" y="341" width="0.1" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="431.56" y="351.5" ></text>
</g>
<g >
<title>strncpy@plt (8 samples, 0.01%)</title><rect x="595.0" y="325" width="0.1" height="15.0" fill="rgb(231,140,29)" rx="2" ry="2" />
<text x="597.97" y="335.5" ></text>
</g>
<g >
<title>load_new_mm_cr3 (123 samples, 0.17%)</title><rect x="973.5" y="373" width="2.0" height="15.0" fill="rgb(246,157,45)" rx="2" ry="2" />
<text x="976.47" y="383.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (72 samples, 0.10%)</title><rect x="610.4" y="357" width="1.2" height="15.0" fill="rgb(142,187,201)" rx="2" ry="2" />
<text x="613.35" y="367.5" ></text>
</g>
<g >
<title>update_process_times (14 samples, 0.02%)</title><rect x="187.2" y="149" width="0.2" height="15.0" fill="rgb(243,150,42)" rx="2" ry="2" />
<text x="190.20" y="159.5" ></text>
</g>
<g >
<title>tick_sched_timer (16 samples, 0.02%)</title><rect x="1138.9" y="405" width="0.3" height="15.0" fill="rgb(245,142,44)" rx="2" ry="2" />
<text x="1141.90" y="415.5" ></text>
</g>
<g >
<title>syscall_trace_enter (64 samples, 0.09%)</title><rect x="81.5" y="405" width="1.1" height="15.0" fill="rgb(240,167,38)" rx="2" ry="2" />
<text x="84.51" y="415.5" ></text>
</g>
<g >
<title>__pthread_disable_asynccancel (28 samples, 0.04%)</title><rect x="126.6" y="405" width="0.4" height="15.0" fill="rgb(236,141,34)" rx="2" ry="2" />
<text x="129.57" y="415.5" ></text>
</g>
<g >
<title>__fget (6 samples, 0.01%)</title><rect x="306.5" y="373" width="0.2" height="15.0" fill="rgb(237,135,35)" rx="2" ry="2" />
<text x="309.55" y="383.5" ></text>
</g>
<g >
<title>internal_putbytes (24 samples, 0.03%)</title><rect x="706.0" y="421" width="0.4" height="15.0" fill="rgb(88,173,151)" rx="2" ry="2" />
<text x="708.99" y="431.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (20 samples, 0.03%)</title><rect x="540.8" y="405" width="0.3" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="543.79" y="415.5" ></text>
</g>
<g >
<title>___slab_alloc (11 samples, 0.02%)</title><rect x="647.8" y="181" width="0.2" height="15.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text x="650.77" y="191.5" ></text>
</g>
<g >
<title>PushActiveSnapshot (50 samples, 0.07%)</title><rect x="459.1" y="421" width="0.9" height="15.0" fill="rgb(202,201,196)" rx="2" ry="2" />
<text x="462.14" y="431.5" ></text>
</g>
<g >
<title>rcu_idle_enter (7 samples, 0.01%)</title><rect x="1182.6" y="437" width="0.2" height="15.0" fill="rgb(240,169,38)" rx="2" ry="2" />
<text x="1185.64" y="447.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (7 samples, 0.01%)</title><rect x="575.2" y="341" width="0.2" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="578.24" y="351.5" ></text>
</g>
<g >
<title>__dta_xfs_file_buffered_aio_write_3295 (43 samples, 0.06%)</title><rect x="12.1" y="421" width="0.7" height="15.0" fill="rgb(246,141,45)" rx="2" ry="2" />
<text x="15.11" y="431.5" ></text>
</g>
<g >
<title>PyEval_EvalFrameEx (11 samples, 0.02%)</title><rect x="11.6" y="405" width="0.1" height="15.0" fill="rgb(248,201,47)" rx="2" ry="2" />
<text x="14.56" y="415.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (132 samples, 0.19%)</title><rect x="1013.2" y="261" width="2.2" height="15.0" fill="rgb(230,164,28)" rx="2" ry="2" />
<text x="1016.18" y="271.5" ></text>
</g>
<g >
<title>__memcpy_sse2 (16 samples, 0.02%)</title><rect x="221.2" y="469" width="0.2" height="15.0" fill="rgb(247,151,47)" rx="2" ry="2" />
<text x="224.17" y="479.5" ></text>
</g>
<g >
<title>process_one_work (15 samples, 0.02%)</title><rect x="10.5" y="501" width="0.3" height="15.0" fill="rgb(236,184,34)" rx="2" ry="2" />
<text x="13.50" y="511.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (298 samples, 0.42%)</title><rect x="372.4" y="293" width="5.0" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="375.36" y="303.5" ></text>
</g>
<g >
<title>pfree (18 samples, 0.03%)</title><rect x="793.4" y="453" width="0.3" height="15.0" fill="rgb(3537,90,12881895)" rx="2" ry="2" />
<text x="796.35" y="463.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.01%)</title><rect x="1189.4" y="485" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" />
<text x="1192.40" y="495.5" ></text>
</g>
<g >
<title>AllocSetAlloc (13 samples, 0.02%)</title><rect x="564.2" y="341" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="567.18" y="351.5" ></text>
</g>
<g >
<title>__memset_sse2 (17 samples, 0.02%)</title><rect x="953.9" y="437" width="0.3" height="15.0" fill="rgb(247,151,47)" rx="2" ry="2" />
<text x="956.90" y="447.5" ></text>
</g>
<g >
<title>clockevents_program_event (13 samples, 0.02%)</title><rect x="1187.6" y="341" width="0.2" height="15.0" fill="rgb(241,102,39)" rx="2" ry="2" />
<text x="1190.59" y="351.5" ></text>
</g>
<g >
<title>ResourceArrayAdd (9 samples, 0.01%)</title><rect x="481.8" y="341" width="0.1" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="484.76" y="351.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (55 samples, 0.08%)</title><rect x="421.6" y="389" width="1.0" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="424.64" y="399.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,051 samples, 2.91%)</title><rect x="48.2" y="421" width="34.4" height="15.0" fill="rgb(232,189,30)" rx="2" ry="2" />
<text x="51.22" y="431.5" >do..</text>
</g>
<g >
<title>GetCurrentStatementStartTimestamp (6 samples, 0.01%)</title><rect x="797.7" y="437" width="0.1" height="15.0" fill="rgb(71,807901,135)" rx="2" ry="2" />
<text x="800.74" y="447.5" ></text>
</g>
<g >
<title>enqueue_entity (14 samples, 0.02%)</title><rect x="300.3" y="101" width="0.3" height="15.0" fill="rgb(240,205,38)" rx="2" ry="2" />
<text x="303.32" y="111.5" ></text>
</g>
<g >
<title>perf_event_for_each_child (7 samples, 0.01%)</title><rect x="12.0" y="437" width="0.1" height="15.0" fill="rgb(238,184,37)" rx="2" ry="2" />
<text x="14.96" y="447.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (10 samples, 0.01%)</title><rect x="422.4" y="373" width="0.2" height="15.0" fill="rgb(228,151,26)" rx="2" ry="2" />
<text x="425.40" y="383.5" ></text>
</g>
<g >
<title>LWLockRelease (40 samples, 0.06%)</title><rect x="377.4" y="309" width="0.6" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="380.36" y="319.5" ></text>
</g>
<g >
<title>find_next_bit (14 samples, 0.02%)</title><rect x="1046.5" y="421" width="0.3" height="15.0" fill="rgb(236,177,34)" rx="2" ry="2" />
<text x="1049.54" y="431.5" ></text>
</g>
<g >
<title>merge_children (13 samples, 0.02%)</title><rect x="733.9" y="309" width="0.3" height="15.0" fill="rgb(86,145,168)" rx="2" ry="2" />
<text x="736.94" y="319.5" ></text>
</g>
<g >
<title>__strlen_sse2_pminub (46 samples, 0.07%)</title><rect x="954.2" y="437" width="0.8" height="15.0" fill="rgb(231,132,29)" rx="2" ry="2" />
<text x="957.19" y="447.5" ></text>
</g>
<g >
<title>bsearch (143 samples, 0.20%)</title><rect x="212.3" y="405" width="2.3" height="15.0" fill="rgb(243,124,42)" rx="2" ry="2" />
<text x="215.25" y="415.5" ></text>
</g>
<g >
<title>ExecReadyInterpretedExpr (53 samples, 0.08%)</title><rect x="562.4" y="357" width="0.8" height="15.0" fill="rgb(81,83,92)" rx="2" ry="2" />
<text x="565.35" y="367.5" ></text>
</g>
<g >
<title>heap_trim (7 samples, 0.01%)</title><rect x="208.3" y="485" width="0.1" height="15.0" fill="rgb(228,184,25)" rx="2" ry="2" />
<text x="211.26" y="495.5" ></text>
</g>
<g >
<title>pqGets (15 samples, 0.02%)</title><rect x="295.1" y="453" width="0.2" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="298.07" y="463.5" ></text>
</g>
<g >
<title>load_new_mm_cr3 (17 samples, 0.02%)</title><rect x="311.6" y="373" width="0.2" height="15.0" fill="rgb(246,157,45)" rx="2" ry="2" />
<text x="314.56" y="383.5" ></text>
</g>
<g >
<title>AllocSetAlloc (10 samples, 0.01%)</title><rect x="365.1" y="261" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="368.09" y="271.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (73 samples, 0.10%)</title><rect x="1011.9" y="405" width="1.2" height="15.0" fill="rgb(236,126,34)" rx="2" ry="2" />
<text x="1014.91" y="415.5" ></text>
</g>
<g >
<title>new_list (39 samples, 0.06%)</title><rect x="589.2" y="357" width="0.7" height="15.0" fill="rgb(91,1623125281314712,171)" rx="2" ry="2" />
<text x="592.24" y="367.5" ></text>
</g>
<g >
<title>native_safe_halt (34 samples, 0.05%)</title><rect x="1042.8" y="453" width="0.6" height="15.0" fill="rgb(233,158,31)" rx="2" ry="2" />
<text x="1045.84" y="463.5" ></text>
</g>
<g >
<title>socket_putmessage (49 samples, 0.07%)</title><rect x="705.6" y="437" width="0.8" height="15.0" fill="rgb(88,173,225)" rx="2" ry="2" />
<text x="708.57" y="447.5" ></text>
</g>
<g >
<title>security_socket_sendmsg (9 samples, 0.01%)</title><rect x="297.2" y="309" width="0.1" height="15.0" fill="rgb(243,170,42)" rx="2" ry="2" />
<text x="300.15" y="319.5" ></text>
</g>
<g >
<title>LockAcquireExtended (99 samples, 0.14%)</title><rect x="420.9" y="405" width="1.7" height="15.0" fill="rgb(129,24381895395797,161)" rx="2" ry="2" />
<text x="423.90" y="415.5" ></text>
</g>
<g >
<title>update_process_times (7 samples, 0.01%)</title><rect x="1061.5" y="341" width="0.1" height="15.0" fill="rgb(243,150,42)" rx="2" ry="2" />
<text x="1064.52" y="351.5" ></text>
</g>
<g >
<title>pollwake (61 samples, 0.09%)</title><rect x="910.1" y="133" width="1.1" height="15.0" fill="rgb(243,208,42)" rx="2" ry="2" />
<text x="913.14" y="143.5" ></text>
</g>
<g >
<title>SearchCatCache1 (194 samples, 0.28%)</title><rect x="786.0" y="437" width="3.2" height="15.0" fill="rgb(142,62,219)" rx="2" ry="2" />
<text x="788.98" y="447.5" ></text>
</g>
<g >
<title>palloc0 (23 samples, 0.03%)</title><rect x="598.6" y="341" width="0.4" height="15.0" fill="rgb(3537,90,177)" rx="2" ry="2" />
<text x="601.58" y="351.5" ></text>
</g>
<g >
<title>sockfd_lookup_light (108 samples, 0.15%)</title><rect x="77.1" y="373" width="1.8" height="15.0" fill="rgb(234,175,32)" rx="2" ry="2" />
<text x="80.12" y="383.5" ></text>
</g>
<g >
<title>PopActiveSnapshot (22 samples, 0.03%)</title><rect x="458.8" y="421" width="0.3" height="15.0" fill="rgb(202,201,189)" rx="2" ry="2" />
<text x="461.77" y="431.5" ></text>
</g>
<g >
<title>kthread (7 samples, 0.01%)</title><rect x="10.8" y="533" width="0.1" height="15.0" fill="rgb(241,117,40)" rx="2" ry="2" />
<text x="13.75" y="543.5" ></text>
</g>
<g >
<title>autofs_dev_ioctl (7 samples, 0.01%)</title><rect x="1189.4" y="421" width="0.1" height="15.0" fill="rgb(232,112,30)" rx="2" ry="2" />
<text x="1192.40" y="431.5" ></text>
</g>
<g >
<title>__libc_recv (119 samples, 0.17%)</title><rect x="273.6" y="469" width="2.0" height="15.0" fill="rgb(237,154,35)" rx="2" ry="2" />
<text x="276.58" y="479.5" ></text>
</g>
<g >
<title>unroll_tree_refs (12 samples, 0.02%)</title><rect x="692.9" y="325" width="0.2" height="15.0" fill="rgb(239,154,37)" rx="2" ry="2" />
<text x="695.86" y="335.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (6 samples, 0.01%)</title><rect x="887.0" y="341" width="0.1" height="15.0" fill="rgb(236,126,34)" rx="2" ry="2" />
<text x="890.03" y="351.5" ></text>
</g>
<g >
<title>PQsocket (48 samples, 0.07%)</title><rect x="206.4" y="501" width="0.8" height="15.0" fill="rgb(241,90,192)" rx="2" ry="2" />
<text x="209.40" y="511.5" ></text>
</g>
<g >
<title>__fget_light (11 samples, 0.02%)</title><rect x="188.9" y="325" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="191.88" y="335.5" ></text>
</g>
<g >
<title>ttwu_do_activate (79 samples, 0.11%)</title><rect x="300.2" y="149" width="1.3" height="15.0" fill="rgb(245,116,45)" rx="2" ry="2" />
<text x="303.18" y="159.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (15 samples, 0.02%)</title><rect x="532.4" y="389" width="0.3" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="535.44" y="399.5" ></text>
</g>
<g >
<title>_int_free (135 samples, 0.19%)</title><rect x="29.6" y="485" width="2.3" height="15.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text x="32.62" y="495.5" ></text>
</g>
<g >
<title>enter_lazy_tlb (151 samples, 0.21%)</title><rect x="852.9" y="245" width="2.5" height="15.0" fill="rgb(225,196,22)" rx="2" ry="2" />
<text x="855.85" y="255.5" ></text>
</g>
<g >
<title>_bt_getroot (585 samples, 0.83%)</title><rect x="356.2" y="357" width="9.8" height="15.0" fill="rgb(63,132,62)" rx="2" ry="2" />
<text x="359.23" y="367.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (93 samples, 0.13%)</title><rect x="1088.0" y="389" width="1.6" height="15.0" fill="rgb(241,163,40)" rx="2" ry="2" />
<text x="1091.03" y="399.5" ></text>
</g>
<g >
<title>update_cfs_rq_h_load (31 samples, 0.04%)</title><rect x="168.6" y="149" width="0.5" height="15.0" fill="rgb(243,150,41)" rx="2" ry="2" />
<text x="171.62" y="159.5" ></text>
</g>
<g >
<title>AllocSetFree (30 samples, 0.04%)</title><rect x="759.6" y="373" width="0.5" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="762.64" y="383.5" ></text>
</g>
<g >
<title>clockevents_program_event (705 samples, 1.00%)</title><rect x="1164.3" y="421" width="11.8" height="15.0" fill="rgb(241,102,39)" rx="2" ry="2" />
<text x="1167.31" y="431.5" ></text>
</g>
<g >
<title>update_load_avg (63 samples, 0.09%)</title><rect x="255.2" y="293" width="1.1" height="15.0" fill="rgb(240,150,38)" rx="2" ry="2" />
<text x="258.25" y="303.5" ></text>
</g>
<g >
<title>namestrcpy (122 samples, 0.17%)</title><rect x="593.1" y="341" width="2.0" height="15.0" fill="rgb(140,81521574,170)" rx="2" ry="2" />
<text x="596.06" y="351.5" ></text>
</g>
<g >
<title>__strlen_sse2_pminub (55 samples, 0.08%)</title><rect x="949.7" y="437" width="0.9" height="15.0" fill="rgb(231,132,29)" rx="2" ry="2" />
<text x="952.71" y="447.5" ></text>
</g>
<g >
<title>tts_buffer_heap_clear (40 samples, 0.06%)</title><rect x="471.2" y="357" width="0.6" height="15.0" fill="rgb(81,86,239)" rx="2" ry="2" />
<text x="474.15" y="367.5" ></text>
</g>
<g >
<title>heapam_index_fetch_reset (72 samples, 0.10%)</title><rect x="507.1" y="341" width="1.2" height="15.0" fill="rgb(59,595463,145)" rx="2" ry="2" />
<text x="510.08" y="351.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (21 samples, 0.03%)</title><rect x="961.1" y="405" width="0.4" height="15.0" fill="rgb(142,66419,50)" rx="2" ry="2" />
<text x="964.11" y="415.5" ></text>
</g>
<g >
<title>palloc0 (33 samples, 0.05%)</title><rect x="576.5" y="373" width="0.5" height="15.0" fill="rgb(3537,90,177)" rx="2" ry="2" />
<text x="579.46" y="383.5" ></text>
</g>
<g >
<title>native_write_msr (64 samples, 0.09%)</title><rect x="1132.6" y="389" width="1.1" height="15.0" fill="rgb(241,158,40)" rx="2" ry="2" />
<text x="1135.61" y="399.5" ></text>
</g>
<g >
<title>skb_copy_datagram_iter (177 samples, 0.25%)</title><rect x="74.2" y="309" width="2.9" height="15.0" fill="rgb(240,143,38)" rx="2" ry="2" />
<text x="77.16" y="319.5" ></text>
</g>
<g >
<title>poll_freewait (136 samples, 0.19%)</title><rect x="243.0" y="421" width="2.3" height="15.0" fill="rgb(237,208,35)" rx="2" ry="2" />
<text x="246.03" y="431.5" ></text>
</g>
<g >
<title>schedule_timeout (6 samples, 0.01%)</title><rect x="976.1" y="501" width="0.1" height="15.0" fill="rgb(234,164,32)" rx="2" ry="2" />
<text x="979.07" y="511.5" ></text>
</g>
<g >
<title>rcu_eqs_enter.isra.40 (7 samples, 0.01%)</title><rect x="1182.6" y="421" width="0.2" height="15.0" fill="rgb(225,169,22)" rx="2" ry="2" />
<text x="1185.64" y="431.5" ></text>
</g>
<g >
<title>ReleaseCachedPlan (16 samples, 0.02%)</title><rect x="751.5" y="373" width="0.3" height="15.0" fill="rgb(142,170,202)" rx="2" ry="2" />
<text x="754.50" y="383.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (230 samples, 0.33%)</title><rect x="65.7" y="229" width="3.9" height="15.0" fill="rgb(243,119,42)" rx="2" ry="2" />
<text x="68.71" y="239.5" ></text>
</g>
<g >
<title>AllocSetReset (104 samples, 0.15%)</title><rect x="735.7" y="309" width="1.7" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="738.70" y="319.5" ></text>
</g>
<g >
<title>PortalStart (5,041 samples, 7.16%)</title><rect x="529.7" y="453" width="84.5" height="15.0" fill="rgb(135,175,189)" rx="2" ry="2" />
<text x="532.73" y="463.5" >PortalStart</text>
</g>
<g >
<title>__schedule (1,059 samples, 1.50%)</title><rect x="842.2" y="261" width="17.7" height="15.0" fill="rgb(237,132,35)" rx="2" ry="2" />
<text x="845.16" y="271.5" ></text>
</g>
<g >
<title>select_idle_sibling (19 samples, 0.03%)</title><rect x="167.2" y="149" width="0.3" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="170.21" y="159.5" ></text>
</g>
<g >
<title>__switch_to (23 samples, 0.03%)</title><rect x="1058.8" y="453" width="0.4" height="15.0" fill="rgb(238,132,37)" rx="2" ry="2" />
<text x="1061.82" y="463.5" ></text>
</g>
<g >
<title>timerqueue_del (60 samples, 0.09%)</title><rect x="1126.9" y="405" width="1.0" height="15.0" fill="rgb(236,148,34)" rx="2" ry="2" />
<text x="1129.90" y="415.5" ></text>
</g>
<g >
<title>ReleaseCatCache (9 samples, 0.01%)</title><rect x="575.2" y="357" width="0.2" height="15.0" fill="rgb(142,62,202)" rx="2" ry="2" />
<text x="578.20" y="367.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (1,964 samples, 2.79%)</title><rect x="154.9" y="293" width="32.9" height="15.0" fill="rgb(243,119,42)" rx="2" ry="2" />
<text x="157.87" y="303.5" >__..</text>
</g>
<g >
<title>[unknown] (150 samples, 0.21%)</title><rect x="19.2" y="533" width="2.6" height="15.0" fill="rgb(242,180,40)" rx="2" ry="2" />
<text x="22.25" y="543.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBuffer (25 samples, 0.04%)</title><rect x="382.8" y="309" width="0.4" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="385.77" y="319.5" ></text>
</g>
<g >
<title>pick_next_task_idle (6 samples, 0.01%)</title><rect x="308.4" y="325" width="0.1" height="15.0" fill="rgb(240,174,39)" rx="2" ry="2" />
<text x="311.43" y="335.5" ></text>
</g>
<g >
<title>ResourceArrayAdd (7 samples, 0.01%)</title><rect x="532.0" y="405" width="0.1" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="534.99" y="415.5" ></text>
</g>
<g >
<title>need_update (156 samples, 0.22%)</title><rect x="1044.2" y="469" width="2.6" height="15.0" fill="rgb(245,203,45)" rx="2" ry="2" />
<text x="1047.16" y="479.5" ></text>
</g>
<g >
<title>pick_next_task_idle (69 samples, 0.10%)</title><rect x="261.3" y="341" width="1.2" height="15.0" fill="rgb(240,174,39)" rx="2" ry="2" />
<text x="264.29" y="351.5" ></text>
</g>
<g >
<title>__fget_light (40 samples, 0.06%)</title><rect x="188.2" y="309" width="0.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="191.21" y="319.5" ></text>
</g>
<g >
<title>CleanupTempFiles (33 samples, 0.05%)</title><rect x="720.8" y="389" width="0.5" height="15.0" fill="rgb(122,89,69)" rx="2" ry="2" />
<text x="723.77" y="399.5" ></text>
</g>
<g >
<title>_raw_spin_lock (31 samples, 0.04%)</title><rect x="1102.8" y="421" width="0.5" height="15.0" fill="rgb(240,166,39)" rx="2" ry="2" />
<text x="1105.81" y="431.5" ></text>
</g>
<g >
<title>pg_snprintf (29 samples, 0.04%)</title><rect x="304.2" y="469" width="0.5" height="15.0" fill="rgb(54790,201,184)" rx="2" ry="2" />
<text x="307.19" y="479.5" ></text>
</g>
<g >
<title>remote_function (8 samples, 0.01%)</title><rect x="1135.7" y="405" width="0.2" height="15.0" fill="rgb(247,184,46)" rx="2" ry="2" />
<text x="1138.75" y="415.5" ></text>
</g>
<g >
<title>security_socket_recvmsg (155 samples, 0.22%)</title><rect x="51.4" y="357" width="2.6" height="15.0" fill="rgb(243,170,42)" rx="2" ry="2" />
<text x="54.42" y="367.5" ></text>
</g>
<g >
<title>_raw_spin_lock (13 samples, 0.02%)</title><rect x="251.9" y="341" width="0.2" height="15.0" fill="rgb(240,166,39)" rx="2" ry="2" />
<text x="254.88" y="351.5" ></text>
</g>
<g >
<title>rcu_eqs_exit.isra.32 (28 samples, 0.04%)</title><rect x="1051.5" y="469" width="0.5" height="15.0" fill="rgb(240,169,38)" rx="2" ry="2" />
<text x="1054.48" y="479.5" ></text>
</g>
<g >
<title>LockRelationOid (123 samples, 0.17%)</title><rect x="420.5" y="421" width="2.1" height="15.0" fill="rgb(129,124,2160785)" rx="2" ry="2" />
<text x="423.52" y="431.5" ></text>
</g>
<g >
<title>pg_verify_mbstr (81 samples, 0.12%)</title><rect x="794.0" y="437" width="1.3" height="15.0" fill="rgb(150,244,187)" rx="2" ry="2" />
<text x="796.96" y="447.5" ></text>
</g>
<g >
<title>hash_search (41 samples, 0.06%)</title><rect x="773.1" y="341" width="0.7" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="776.15" y="351.5" ></text>
</g>
<g >
<title>lapic_next_deadline (17 samples, 0.02%)</title><rect x="1132.3" y="389" width="0.3" height="15.0" fill="rgb(246,107,46)" rx="2" ry="2" />
<text x="1135.33" y="399.5" ></text>
</g>
<g >
<title>do_syscall_64 (9 samples, 0.01%)</title><rect x="10.1" y="533" width="0.1" height="15.0" fill="rgb(232,189,30)" rx="2" ry="2" />
<text x="13.05" y="543.5" ></text>
</g>
<g >
<title>rcu_note_context_switch (6 samples, 0.01%)</title><rect x="858.5" y="245" width="0.1" height="15.0" fill="rgb(242,169,41)" rx="2" ry="2" />
<text x="861.50" y="255.5" ></text>
</g>
<g >
<title>get_hash_value (14 samples, 0.02%)</title><rect x="365.3" y="293" width="0.3" height="15.0" fill="rgb(147,79,136)" rx="2" ry="2" />
<text x="368.34" y="303.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (11 samples, 0.02%)</title><rect x="774.5" y="325" width="0.2" height="15.0" fill="rgb(228,151,26)" rx="2" ry="2" />
<text x="777.47" y="335.5" ></text>
</g>
<g >
<title>pairingheap_remove (6 samples, 0.01%)</title><rect x="733.4" y="325" width="0.1" height="15.0" fill="rgb(86,145,177)" rx="2" ry="2" />
<text x="736.44" y="335.5" ></text>
</g>
<g >
<title>kfree (7 samples, 0.01%)</title><rect x="924.7" y="325" width="0.2" height="15.0" fill="rgb(246,139,46)" rx="2" ry="2" />
<text x="927.75" y="335.5" ></text>
</g>
<g >
<title>IsSharedRelation (12 samples, 0.02%)</title><rect x="606.3" y="341" width="0.2" height="15.0" fill="rgb(78,62,153)" rx="2" ry="2" />
<text x="609.32" y="351.5" ></text>
</g>
<g >
<title>index_beginscan (584 samples, 0.83%)</title><rect x="480.1" y="373" width="9.8" height="15.0" fill="rgb(61,111,147)" rx="2" ry="2" />
<text x="483.10" y="383.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (224 samples, 0.32%)</title><rect x="909.7" y="181" width="3.7" height="15.0" fill="rgb(243,119,42)" rx="2" ry="2" />
<text x="912.69" y="191.5" ></text>
</g>
<g >
<title>ResourceOwnerCreate (120 samples, 0.17%)</title><rect x="966.9" y="405" width="2.0" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="969.89" y="415.5" ></text>
</g>
<g >
<title>try_to_wake_up (1,485 samples, 2.11%)</title><rect x="160.2" y="181" width="24.9" height="15.0" fill="rgb(236,158,34)" rx="2" ry="2" />
<text x="163.19" y="191.5" >t..</text>
</g>
<g >
<title>AfterTriggerBeginXact (27 samples, 0.04%)</title><rect x="961.5" y="405" width="0.4" height="15.0" fill="rgb(79,33335,52)" rx="2" ry="2" />
<text x="964.46" y="415.5" ></text>
</g>
<g >
<title>pgbench (18,067 samples, 25.65%)</title><rect x="12.8" y="565" width="302.8" height="15.0" fill="rgb(246,187,45)" rx="2" ry="2" />
<text x="15.85" y="575.5" >pgbench</text>
</g>
<g >
<title>SetCurrentStatementStartTimestamp (133 samples, 0.19%)</title><rect x="706.4" y="453" width="2.2" height="15.0" fill="rgb(71,807901,220)" rx="2" ry="2" />
<text x="709.40" y="463.5" ></text>
</g>
<g >
<title>IsInParallelMode (12 samples, 0.02%)</title><rect x="444.9" y="437" width="0.2" height="15.0" fill="rgb(71,807901,152)" rx="2" ry="2" />
<text x="447.93" y="447.5" ></text>
</g>
<g >
<title>try_to_wake_up (13 samples, 0.02%)</title><rect x="185.2" y="197" width="0.2" height="15.0" fill="rgb(236,158,34)" rx="2" ry="2" />
<text x="188.19" y="207.5" ></text>
</g>
<g >
<title>tick_sched_handle (14 samples, 0.02%)</title><rect x="1138.9" y="389" width="0.3" height="15.0" fill="rgb(240,142,39)" rx="2" ry="2" />
<text x="1141.93" y="399.5" ></text>
</g>
<g >
<title>x2apic_send_IPI (10 samples, 0.01%)</title><rect x="684.3" y="101" width="0.2" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" />
<text x="687.31" y="111.5" ></text>
</g>
<g >
<title>SnapshotResetXmin (66 samples, 0.09%)</title><rect x="541.4" y="437" width="1.1" height="15.0" fill="rgb(202,201,225)" rx="2" ry="2" />
<text x="544.41" y="447.5" ></text>
</g>
<g >
<title>__libc_recv (10 samples, 0.01%)</title><rect x="309.5" y="453" width="0.1" height="15.0" fill="rgb(237,154,35)" rx="2" ry="2" />
<text x="312.48" y="463.5" ></text>
</g>
<g >
<title>skb_release_all (59 samples, 0.08%)</title><rect x="290.2" y="293" width="1.0" height="15.0" fill="rgb(230,143,28)" rx="2" ry="2" />
<text x="293.25" y="303.5" ></text>
</g>
<g >
<title>do_vfs_ioctl (7 samples, 0.01%)</title><rect x="1189.4" y="437" width="0.1" height="15.0" fill="rgb(232,189,30)" rx="2" ry="2" />
<text x="1192.40" y="447.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (8 samples, 0.01%)</title><rect x="390.1" y="517" width="0.1" height="15.0" fill="rgb(236,134,34)" rx="2" ry="2" />
<text x="393.06" y="527.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (51 samples, 0.07%)</title><rect x="1115.5" y="341" width="0.8" height="15.0" fill="rgb(241,163,40)" rx="2" ry="2" />
<text x="1118.49" y="351.5" ></text>
</g>
<g >
<title>SIGetDataEntries (36 samples, 0.05%)</title><rect x="965.9" y="389" width="0.6" height="15.0" fill="rgb(126,199,223)" rx="2" ry="2" />
<text x="968.90" y="399.5" ></text>
</g>
<g >
<title>check_log_duration (46 samples, 0.07%)</title><rect x="709.2" y="453" width="0.7" height="15.0" fill="rgb(135,173,67)" rx="2" ry="2" />
<text x="712.16" y="463.5" ></text>
</g>
<g >
<title>PQclear@plt (12 samples, 0.02%)</title><rect x="32.2" y="501" width="0.2" height="15.0" fill="rgb(231,200,29)" rx="2" ry="2" />
<text x="35.15" y="511.5" ></text>
</g>
<g >
<title>ResourceArrayAdd (6 samples, 0.01%)</title><rect x="497.3" y="277" width="0.1" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="500.32" y="287.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly.part.1 (105 samples, 0.15%)</title><rect x="735.7" y="325" width="1.7" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="738.68" y="335.5" ></text>
</g>
<g >
<title>__x86_indirect_thunk_rax (10 samples, 0.01%)</title><rect x="628.1" y="357" width="0.2" height="15.0" fill="rgb(240,154,39)" rx="2" ry="2" />
<text x="631.15" y="367.5" ></text>
</g>
<g >
<title>kvm_steal_clock (14 samples, 0.02%)</title><rect x="858.9" y="229" width="0.2" height="15.0" fill="rgb(240,130,39)" rx="2" ry="2" />
<text x="861.85" y="239.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (99 samples, 0.14%)</title><rect x="661.5" y="165" width="1.6" height="15.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text x="664.47" y="175.5" ></text>
</g>
<g >
<title>ExecutorRun (10 samples, 0.01%)</title><rect x="458.6" y="421" width="0.2" height="15.0" fill="rgb(81,84,4442068)" rx="2" ry="2" />
<text x="461.60" y="431.5" ></text>
</g>
<g >
<title>iscsi_sw_tcp_pdu_init (6 samples, 0.01%)</title><rect x="10.5" y="437" width="0.1" height="15.0" fill="rgb(236,155,34)" rx="2" ry="2" />
<text x="13.54" y="447.5" ></text>
</g>
<g >
<title>printtup (578 samples, 0.82%)</title><rect x="511.7" y="405" width="9.7" height="15.0" fill="rgb(53,177,14401030)" rx="2" ry="2" />
<text x="514.70" y="415.5" ></text>
</g>
<g >
<title>tick_nohz_idle_enter (14 samples, 0.02%)</title><rect x="1179.1" y="501" width="0.2" height="15.0" fill="rgb(240,142,38)" rx="2" ry="2" />
<text x="1182.08" y="511.5" ></text>
</g>
<g >
<title>__slab_alloc (12 samples, 0.02%)</title><rect x="148.5" y="229" width="0.2" height="15.0" fill="rgb(238,132,36)" rx="2" ry="2" />
<text x="151.46" y="239.5" ></text>
</g>
<g >
<title>standard_ExecutorEnd (1,003 samples, 1.42%)</title><rect x="734.4" y="357" width="16.8" height="15.0" fill="rgb(81,84,229)" rx="2" ry="2" />
<text x="737.43" y="367.5" ></text>
</g>
<g >
<title>__fget_light (6 samples, 0.01%)</title><rect x="306.5" y="389" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="309.55" y="399.5" ></text>
</g>
<g >
<title>import_single_range (24 samples, 0.03%)</title><rect x="888.4" y="325" width="0.4" height="15.0" fill="rgb(247,126,46)" rx="2" ry="2" />
<text x="891.44" y="335.5" ></text>
</g>
<g >
<title>pqsecure_raw_read (3,625 samples, 5.15%)</title><rect x="34.5" y="469" width="60.7" height="15.0" fill="rgb(241,91,192)" rx="2" ry="2" />
<text x="37.48" y="479.5" >pqsecu..</text>
</g>
<g >
<title>enter_lazy_tlb (13 samples, 0.02%)</title><rect x="307.9" y="325" width="0.2" height="15.0" fill="rgb(225,196,22)" rx="2" ry="2" />
<text x="310.91" y="335.5" ></text>
</g>
<g >
<title>syscall_trace_enter (72 samples, 0.10%)</title><rect x="925.7" y="357" width="1.2" height="15.0" fill="rgb(240,167,38)" rx="2" ry="2" />
<text x="928.70" y="367.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (20 samples, 0.03%)</title><rect x="735.3" y="325" width="0.4" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="738.35" y="335.5" ></text>
</g>
<g >
<title>__libc_disable_asynccancel (41 samples, 0.06%)</title><rect x="230.9" y="485" width="0.7" height="15.0" fill="rgb(236,154,34)" rx="2" ry="2" />
<text x="233.88" y="495.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (14 samples, 0.02%)</title><rect x="1167.1" y="405" width="0.2" height="15.0" fill="rgb(244,130,43)" rx="2" ry="2" />
<text x="1170.06" y="415.5" ></text>
</g>
<g >
<title>hash_any (14 samples, 0.02%)</title><rect x="431.4" y="341" width="0.2" height="15.0" fill="rgb(147,107,143)" rx="2" ry="2" />
<text x="434.39" y="351.5" ></text>
</g>
<g >
<title>ReadyForQuery (5,070 samples, 7.20%)</title><rect x="615.9" y="453" width="84.9" height="15.0" fill="rgb(135,75,8797620)" rx="2" ry="2" />
<text x="618.87" y="463.5" >ReadyForQ..</text>
</g>
<g >
<title>source_load (59 samples, 0.08%)</title><rect x="167.5" y="149" width="1.0" height="15.0" fill="rgb(243,155,41)" rx="2" ry="2" />
<text x="170.53" y="159.5" ></text>
</g>
<g >
<title>malloc (37 samples, 0.05%)</title><rect x="294.3" y="437" width="0.6" height="15.0" fill="rgb(238,112,36)" rx="2" ry="2" />
<text x="297.25" y="447.5" ></text>
</g>
<g >
<title>ExecScanReScan (73 samples, 0.10%)</title><rect x="470.6" y="373" width="1.2" height="15.0" fill="rgb(81,85,93)" rx="2" ry="2" />
<text x="473.60" y="383.5" ></text>
</g>
<g >
<title>MemoryContextSetParent (15 samples, 0.02%)</title><rect x="717.8" y="373" width="0.3" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="720.81" y="383.5" ></text>
</g>
<g >
<title>kvm_steal_clock (51 samples, 0.07%)</title><rect x="686.0" y="149" width="0.9" height="15.0" fill="rgb(240,130,39)" rx="2" ry="2" />
<text x="689.04" y="159.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (6 samples, 0.01%)</title><rect x="887.0" y="357" width="0.1" height="15.0" fill="rgb(236,134,34)" rx="2" ry="2" />
<text x="890.03" y="367.5" ></text>
</g>
<g >
<title>cpuacct_charge (13 samples, 0.02%)</title><rect x="253.9" y="293" width="0.2" height="15.0" fill="rgb(244,118,43)" rx="2" ry="2" />
<text x="256.89" y="303.5" ></text>
</g>
<g >
<title>GetUserIdAndSecContext (29 samples, 0.04%)</title><rect x="964.2" y="405" width="0.5" height="15.0" fill="rgb(149,130,139)" rx="2" ry="2" />
<text x="967.22" y="415.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (6 samples, 0.01%)</title><rect x="38.1" y="405" width="0.1" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" />
<text x="41.13" y="415.5" ></text>
</g>
<g >
<title>__check_heap_object (25 samples, 0.04%)</title><rect x="74.6" y="277" width="0.4" height="15.0" fill="rgb(241,144,39)" rx="2" ry="2" />
<text x="77.59" y="287.5" ></text>
</g>
<g >
<title>pfree (28 samples, 0.04%)</title><rect x="760.6" y="373" width="0.5" height="15.0" fill="rgb(3537,90,12881895)" rx="2" ry="2" />
<text x="763.63" y="383.5" ></text>
</g>
<g >
<title>cmpxchg_double_slab.isra.64 (22 samples, 0.03%)</title><rect x="62.8" y="229" width="0.4" height="15.0" fill="rgb(233,94,31)" rx="2" ry="2" />
<text x="65.85" y="239.5" ></text>
</g>
<g >
<title>ttwu_do_activate (833 samples, 1.18%)</title><rect x="169.2" y="165" width="14.0" height="15.0" fill="rgb(245,116,45)" rx="2" ry="2" />
<text x="172.21" y="175.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (23 samples, 0.03%)</title><rect x="187.2" y="245" width="0.4" height="15.0" fill="rgb(236,134,34)" rx="2" ry="2" />
<text x="190.20" y="255.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (21 samples, 0.03%)</title><rect x="161.4" y="165" width="0.4" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="164.43" y="175.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (35 samples, 0.05%)</title><rect x="184.5" y="117" width="0.6" height="15.0" fill="rgb(241,130,40)" rx="2" ry="2" />
<text x="187.49" y="127.5" ></text>
</g>
<g >
<title>ExecInitExprRec (381 samples, 0.54%)</title><rect x="578.9" y="373" width="6.4" height="15.0" fill="rgb(81,84,91)" rx="2" ry="2" />
<text x="581.87" y="383.5" ></text>
</g>
<g >
<title>ProcessClientReadInterrupt (119 samples, 0.17%)</title><rect x="804.4" y="405" width="2.0" height="15.0" fill="rgb(135,173,194)" rx="2" ry="2" />
<text x="807.45" y="415.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (61 samples, 0.09%)</title><rect x="826.5" y="293" width="1.1" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="829.53" y="303.5" ></text>
</g>
<g >
<title>__strcmp_sse42 (6 samples, 0.01%)</title><rect x="304.0" y="373" width="0.1" height="15.0" fill="rgb(242,132,41)" rx="2" ry="2" />
<text x="306.99" y="383.5" ></text>
</g>
<g >
<title>BufTableLookup (55 samples, 0.08%)</title><rect x="371.2" y="309" width="0.9" height="15.0" fill="rgb(121,61,64)" rx="2" ry="2" />
<text x="374.22" y="319.5" ></text>
</g>
<g >
<title>clockevents_program_event (77 samples, 0.11%)</title><rect x="1152.0" y="389" width="1.3" height="15.0" fill="rgb(241,102,39)" rx="2" ry="2" />
<text x="1155.05" y="399.5" ></text>
</g>
<g >
<title>CheckExprStillValid (259 samples, 0.37%)</title><rect x="466.1" y="325" width="4.3" height="15.0" fill="rgb(81,83,67)" rx="2" ry="2" />
<text x="469.11" y="335.5" ></text>
</g>
<g >
<title>smgrGetPendingDeletes (27 samples, 0.04%)</title><rect x="783.8" y="405" width="0.5" height="15.0" fill="rgb(78,214,224)" rx="2" ry="2" />
<text x="786.82" y="415.5" ></text>
</g>
<g >
<title>PopActiveSnapshot (37 samples, 0.05%)</title><rect x="539.8" y="437" width="0.6" height="15.0" fill="rgb(202,201,189)" rx="2" ry="2" />
<text x="542.80" y="447.5" ></text>
</g>
<g >
<title>palloc (23 samples, 0.03%)</title><rect x="566.2" y="325" width="0.4" height="15.0" fill="rgb(3537,90,-354911973014429)" rx="2" ry="2" />
<text x="569.20" y="335.5" ></text>
</g>
<g >
<title>__errno_location (6 samples, 0.01%)</title><rect x="125.8" y="421" width="0.1" height="15.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text x="128.80" y="431.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (7 samples, 0.01%)</title><rect x="431.2" y="341" width="0.2" height="15.0" fill="rgb(242,151,40)" rx="2" ry="2" />
<text x="434.24" y="351.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (18 samples, 0.03%)</title><rect x="1061.5" y="421" width="0.3" height="15.0" fill="rgb(236,126,34)" rx="2" ry="2" />
<text x="1064.52" y="431.5" ></text>
</g>
<g >
<title>exprTypmod (23 samples, 0.03%)</title><rect x="595.5" y="357" width="0.4" height="15.0" fill="rgb(91,136,95)" rx="2" ry="2" />
<text x="598.49" y="367.5" ></text>
</g>
<g >
<title>pg_proc_aclcheck (52 samples, 0.07%)</title><rect x="584.2" y="341" width="0.9" height="15.0" fill="rgb(78,50,183)" rx="2" ry="2" />
<text x="587.23" y="351.5" ></text>
</g>
<g >
<title>SearchCatCache1 (52 samples, 0.07%)</title><rect x="518.9" y="357" width="0.9" height="15.0" fill="rgb(142,62,219)" rx="2" ry="2" />
<text x="521.90" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (11 samples, 0.02%)</title><rect x="591.3" y="325" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="594.30" y="335.5" ></text>
</g>
<g >
<title>ExecInitFunc (340 samples, 0.48%)</title><rect x="579.4" y="357" width="5.7" height="15.0" fill="rgb(81,84,91)" rx="2" ry="2" />
<text x="582.41" y="367.5" ></text>
</g>
<g >
<title>GetCurrentTransactionNestLevel (7 samples, 0.01%)</title><rect x="784.2" y="389" width="0.1" height="15.0" fill="rgb(71,807901,135)" rx="2" ry="2" />
<text x="787.16" y="399.5" ></text>
</g>
<g >
<title>pfree (22 samples, 0.03%)</title><rect x="774.7" y="341" width="0.3" height="15.0" fill="rgb(3537,90,12881895)" rx="2" ry="2" />
<text x="777.66" y="351.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (18 samples, 0.03%)</title><rect x="529.4" y="437" width="0.3" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="532.43" y="447.5" ></text>
</g>
<g >
<title>_int_malloc (12 samples, 0.02%)</title><rect x="121.4" y="421" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="124.44" y="431.5" ></text>
</g>
<g >
<title>switch_mm (199 samples, 0.28%)</title><rect x="311.4" y="389" width="3.3" height="15.0" fill="rgb(220,115,17)" rx="2" ry="2" />
<text x="314.38" y="399.5" ></text>
</g>
<g >
<title>pq_getmsgbytes (21 samples, 0.03%)</title><rect x="946.0" y="453" width="0.4" height="15.0" fill="rgb(88,174,191)" rx="2" ry="2" />
<text x="949.04" y="463.5" ></text>
</g>
<g >
<title>errstart (55 samples, 0.08%)</title><rect x="710.9" y="453" width="0.9" height="15.0" fill="rgb(144,30423,88)" rx="2" ry="2" />
<text x="713.92" y="463.5" ></text>
</g>
<g >
<title>rcu_eqs_enter_common.isra.39 (7 samples, 0.01%)</title><rect x="1182.6" y="405" width="0.2" height="15.0" fill="rgb(228,169,25)" rx="2" ry="2" />
<text x="1185.64" y="415.5" ></text>
</g>
<g >
<title>kfree (6 samples, 0.01%)</title><rect x="81.3" y="389" width="0.1" height="15.0" fill="rgb(246,139,46)" rx="2" ry="2" />
<text x="84.33" y="399.5" ></text>
</g>
<g >
<title>pqSendSome (146 samples, 0.21%)</title><rect x="16.8" y="501" width="2.4" height="15.0" fill="rgb(241,90,192)" rx="2" ry="2" />
<text x="19.80" y="511.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (252 samples, 0.36%)</title><rect x="310.5" y="549" width="4.3" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" />
<text x="313.54" y="559.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (107 samples, 0.15%)</title><rect x="831.4" y="277" width="1.8" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="834.44" y="287.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (39 samples, 0.06%)</title><rect x="897.2" y="277" width="0.7" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="900.20" y="287.5" ></text>
</g>
<g >
<title>do_idle (557 samples, 0.79%)</title><rect x="1179.6" y="453" width="9.3" height="15.0" fill="rgb(240,189,39)" rx="2" ry="2" />
<text x="1182.60" y="463.5" ></text>
</g>
<g >
<title>RemoveLocalLock (148 samples, 0.21%)</title><rect x="772.5" y="357" width="2.5" height="15.0" fill="rgb(129,24381895395797,202)" rx="2" ry="2" />
<text x="775.54" y="367.5" ></text>
</g>
<g >
<title>_find_next_bit (10 samples, 0.01%)</title><rect x="1046.4" y="421" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="1049.37" y="431.5" ></text>
</g>
<g >
<title>resetStringInfo (45 samples, 0.06%)</title><rect x="945.3" y="437" width="0.7" height="15.0" fill="rgb(86,215,205)" rx="2" ry="2" />
<text x="948.29" y="447.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (26 samples, 0.04%)</title><rect x="1116.4" y="373" width="0.4" height="15.0" fill="rgb(244,130,43)" rx="2" ry="2" />
<text x="1119.36" y="383.5" ></text>
</g>
<g >
<title>gettimeofday@plt (6 samples, 0.01%)</title><rect x="798.0" y="421" width="0.1" height="15.0" fill="rgb(231,170,29)" rx="2" ry="2" />
<text x="801.03" y="431.5" ></text>
</g>
<g >
<title>LockReleaseAll (832 samples, 1.18%)</title><rect x="766.6" y="373" width="13.9" height="15.0" fill="rgb(129,24381895395797,11213631)" rx="2" ry="2" />
<text x="769.58" y="383.5" ></text>
</g>
<g >
<title>selinux_socket_getpeersec_dgram (16 samples, 0.02%)</title><rect x="640.2" y="277" width="0.2" height="15.0" fill="rgb(225,179,22)" rx="2" ry="2" />
<text x="643.16" y="287.5" ></text>
</g>
<g >
<title>palloc (317 samples, 0.45%)</title><rect x="482.9" y="309" width="5.3" height="15.0" fill="rgb(3537,90,-354911973014429)" rx="2" ry="2" />
<text x="485.90" y="319.5" ></text>
</g>
<g >
<title>slot_getsomeattrs_int (141 samples, 0.20%)</title><rect x="475.1" y="373" width="2.4" height="15.0" fill="rgb(81,86,224)" rx="2" ry="2" />
<text x="478.11" y="383.5" ></text>
</g>
<g >
<title>GetSnapshotData (412 samples, 0.59%)</title><rect x="437.9" y="437" width="6.9" height="15.0" fill="rgb(126,177,138)" rx="2" ry="2" />
<text x="440.86" y="447.5" ></text>
</g>
<g >
<title>RegisterSnapshotOnOwner (133 samples, 0.19%)</title><rect x="531.7" y="421" width="2.2" height="15.0" fill="rgb(202,201,201)" rx="2" ry="2" />
<text x="534.66" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (22 samples, 0.03%)</title><rect x="793.0" y="437" width="0.4" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="795.99" y="447.5" ></text>
</g>
<g >
<title>sock_has_perm (9 samples, 0.01%)</title><rect x="136.8" y="309" width="0.2" height="15.0" fill="rgb(231,175,29)" rx="2" ry="2" />
<text x="139.84" y="319.5" ></text>
</g>
<g >
<title>pg_erand48 (8 samples, 0.01%)</title><rect x="214.7" y="469" width="0.1" height="15.0" fill="rgb(54790,81,180)" rx="2" ry="2" />
<text x="217.66" y="479.5" ></text>
</g>
<g >
<title>standard_ExecutorFinish (16 samples, 0.02%)</title><rect x="751.2" y="357" width="0.3" height="15.0" fill="rgb(81,84,229)" rx="2" ry="2" />
<text x="754.23" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (10 samples, 0.01%)</title><rect x="586.0" y="309" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="589.03" y="319.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (371 samples, 0.53%)</title><rect x="864.3" y="373" width="6.2" height="15.0" fill="rgb(238,167,36)" rx="2" ry="2" />
<text x="867.26" y="383.5" ></text>
</g>
<g >
<title>AllocSetAlloc (10 samples, 0.01%)</title><rect x="616.8" y="389" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="619.84" y="399.5" ></text>
</g>
<g >
<title>enter_lazy_tlb (193 samples, 0.27%)</title><rect x="972.3" y="421" width="3.2" height="15.0" fill="rgb(225,196,22)" rx="2" ry="2" />
<text x="975.30" y="431.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (107 samples, 0.15%)</title><rect x="923.8" y="341" width="1.8" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="926.78" y="351.5" ></text>
</g>
<g >
<title>ExecEvalParamExtern (35 samples, 0.05%)</title><rect x="465.3" y="325" width="0.6" height="15.0" fill="rgb(81,83,91)" rx="2" ry="2" />
<text x="468.27" y="335.5" ></text>
</g>
<g >
<title>__libc_enable_asynccancel (19 samples, 0.03%)</title><rect x="231.6" y="485" width="0.3" height="15.0" fill="rgb(236,154,34)" rx="2" ry="2" />
<text x="234.57" y="495.5" ></text>
</g>
<g >
<title>__update_idle_core (39 samples, 0.06%)</title><rect x="856.6" y="229" width="0.7" height="15.0" fill="rgb(246,125,45)" rx="2" ry="2" />
<text x="859.61" y="239.5" ></text>
</g>
<g >
<title>import_single_range (6 samples, 0.01%)</title><rect x="134.9" y="341" width="0.1" height="15.0" fill="rgb(247,126,46)" rx="2" ry="2" />
<text x="137.91" y="351.5" ></text>
</g>
<g >
<title>idle_cpu (16 samples, 0.02%)</title><rect x="167.3" y="133" width="0.2" height="15.0" fill="rgb(238,184,36)" rx="2" ry="2" />
<text x="170.26" y="143.5" ></text>
</g>
<g >
<title>hash_any (22 samples, 0.03%)</title><rect x="416.5" y="405" width="0.4" height="15.0" fill="rgb(147,107,143)" rx="2" ry="2" />
<text x="419.53" y="415.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (180 samples, 0.26%)</title><rect x="359.6" y="277" width="3.0" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="362.58" y="287.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (12 samples, 0.02%)</title><rect x="800.4" y="437" width="0.2" height="15.0" fill="rgb(140,223,4617001)" rx="2" ry="2" />
<text x="803.36" y="447.5" ></text>
</g>
<g >
<title>_copy_from_iter (82 samples, 0.12%)</title><rect x="142.9" y="293" width="1.4" height="15.0" fill="rgb(240,180,38)" rx="2" ry="2" />
<text x="145.90" y="303.5" ></text>
</g>
<g >
<title>PQclear (13 samples, 0.02%)</title><rect x="287.2" y="485" width="0.2" height="15.0" fill="rgb(241,90,190)" rx="2" ry="2" />
<text x="290.21" y="495.5" ></text>
</g>
<g >
<title>ExecInterpExprStillValid (43 samples, 0.06%)</title><rect x="474.3" y="389" width="0.7" height="15.0" fill="rgb(81,83,92)" rx="2" ry="2" />
<text x="477.25" y="399.5" ></text>
</g>
<g >
<title>sock_poll (54 samples, 0.08%)</title><rect x="840.1" y="293" width="0.9" height="15.0" fill="rgb(229,175,26)" rx="2" ry="2" />
<text x="843.05" y="303.5" ></text>
</g>
<g >
<title>string_hash (52 samples, 0.07%)</title><rect x="434.9" y="421" width="0.9" height="15.0" fill="rgb(147,107,230)" rx="2" ry="2" />
<text x="437.91" y="431.5" ></text>
</g>
<g >
<title>MemoryContextReset (7 samples, 0.01%)</title><rect x="514.3" y="389" width="0.1" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="517.26" y="399.5" ></text>
</g>
<g >
<title>tag_hash (34 samples, 0.05%)</title><rect x="773.3" y="325" width="0.5" height="15.0" fill="rgb(147,107,232)" rx="2" ry="2" />
<text x="776.27" y="335.5" ></text>
</g>
<g >
<title>ksize (112 samples, 0.16%)</title><rect x="150.4" y="261" width="1.9" height="15.0" fill="rgb(245,119,44)" rx="2" ry="2" />
<text x="153.41" y="271.5" ></text>
</g>
<g >
<title>_bt_freestack (31 samples, 0.04%)</title><rect x="338.1" y="373" width="0.5" height="15.0" fill="rgb(63,133,62)" rx="2" ry="2" />
<text x="341.12" y="383.5" ></text>
</g>
<g >
<title>unix_poll (41 samples, 0.06%)</title><rect x="838.3" y="261" width="0.7" height="15.0" fill="rgb(229,145,26)" rx="2" ry="2" />
<text x="841.34" y="271.5" ></text>
</g>
<g >
<title>sock_has_perm (15 samples, 0.02%)</title><rect x="634.6" y="277" width="0.3" height="15.0" fill="rgb(231,175,29)" rx="2" ry="2" />
<text x="637.60" y="287.5" ></text>
</g>
<g >
<title>tag_hash (36 samples, 0.05%)</title><rect x="380.7" y="309" width="0.6" height="15.0" fill="rgb(147,107,232)" rx="2" ry="2" />
<text x="383.74" y="319.5" ></text>
</g>
<g >
<title>AtEOXact_Buffers (8 samples, 0.01%)</title><rect x="719.2" y="405" width="0.1" height="15.0" fill="rgb(121,61,56)" rx="2" ry="2" />
<text x="722.21" y="415.5" ></text>
</g>
<g >
<title>do_syscall_64 (7 samples, 0.01%)</title><rect x="12.0" y="501" width="0.1" height="15.0" fill="rgb(232,189,30)" rx="2" ry="2" />
<text x="14.96" y="511.5" ></text>
</g>
<g >
<title>consume_skb (848 samples, 1.20%)</title><rect x="899.8" y="277" width="14.2" height="15.0" fill="rgb(227,146,24)" rx="2" ry="2" />
<text x="902.80" y="287.5" ></text>
</g>
<g >
<title>ktime_get (95 samples, 0.13%)</title><rect x="1165.5" y="405" width="1.6" height="15.0" fill="rgb(237,114,35)" rx="2" ry="2" />
<text x="1168.47" y="415.5" ></text>
</g>
<g >
<title>pg_class_aclmask (172 samples, 0.24%)</title><rect x="548.3" y="405" width="2.9" height="15.0" fill="rgb(78,50,179)" rx="2" ry="2" />
<text x="551.28" y="415.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (12 samples, 0.02%)</title><rect x="187.0" y="245" width="0.2" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="190.00" y="255.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (32 samples, 0.05%)</title><rect x="1102.3" y="421" width="0.5" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="1105.27" y="431.5" ></text>
</g>
<g >
<title>dostr (56 samples, 0.08%)</title><rect x="220.0" y="421" width="0.9" height="15.0" fill="rgb(54790,201,83)" rx="2" ry="2" />
<text x="222.96" y="431.5" ></text>
</g>
<g >
<title>quiet_vmstat (179 samples, 0.25%)</title><rect x="1044.0" y="485" width="3.0" height="15.0" fill="rgb(229,141,26)" rx="2" ry="2" />
<text x="1047.00" y="495.5" ></text>
</g>
<g >
<title>__fget_light (75 samples, 0.11%)</title><rect x="240.4" y="405" width="1.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="243.37" y="415.5" ></text>
</g>
<g >
<title>hash_seq_init (16 samples, 0.02%)</title><rect x="779.1" y="357" width="0.2" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="782.08" y="367.5" ></text>
</g>
<g >
<title>kmalloc_slab (15 samples, 0.02%)</title><rect x="648.6" y="213" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="651.56" y="223.5" ></text>
</g>
<g >
<title>ReadBuffer_common (463 samples, 0.66%)</title><rect x="358.2" y="309" width="7.8" height="15.0" fill="rgb(121,61,198)" rx="2" ry="2" />
<text x="361.22" y="319.5" ></text>
</g>
<g >
<title>poll_schedule_timeout (1,160 samples, 1.65%)</title><rect x="245.3" y="421" width="19.4" height="15.0" fill="rgb(234,208,32)" rx="2" ry="2" />
<text x="248.31" y="431.5" ></text>
</g>
<g >
<title>kfree_skbmem (55 samples, 0.08%)</title><rect x="59.9" y="309" width="0.9" height="15.0" fill="rgb(236,139,34)" rx="2" ry="2" />
<text x="62.86" y="319.5" ></text>
</g>
<g >
<title>pfree (10 samples, 0.01%)</title><rect x="338.5" y="357" width="0.1" height="15.0" fill="rgb(3537,90,12881895)" rx="2" ry="2" />
<text x="341.47" y="367.5" ></text>
</g>
<g >
<title>x86_64_start_kernel (566 samples, 0.80%)</title><rect x="1179.6" y="533" width="9.5" height="15.0" fill="rgb(237,205,35)" rx="2" ry="2" />
<text x="1182.58" y="543.5" ></text>
</g>
<g >
<title>generic_smp_call_function_single_interrupt (12 samples, 0.02%)</title><rect x="689.7" y="181" width="0.2" height="15.0" fill="rgb(236,189,34)" rx="2" ry="2" />
<text x="692.72" y="191.5" ></text>
</g>
<g >
<title>__slab_alloc (12 samples, 0.02%)</title><rect x="647.8" y="197" width="0.2" height="15.0" fill="rgb(238,132,36)" rx="2" ry="2" />
<text x="650.75" y="207.5" ></text>
</g>
<g >
<title>ExecInitRangeTable (58 samples, 0.08%)</title><rect x="612.6" y="421" width="1.0" height="15.0" fill="rgb(81,87,92)" rx="2" ry="2" />
<text x="615.62" y="431.5" ></text>
</g>
<g >
<title>x86_pmu_enable (8 samples, 0.01%)</title><rect x="1135.7" y="325" width="0.2" height="15.0" fill="rgb(241,205,40)" rx="2" ry="2" />
<text x="1138.75" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (18 samples, 0.03%)</title><rect x="788.8" y="389" width="0.3" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="791.85" y="399.5" ></text>
</g>
<g >
<title>AllocSetFree (14 samples, 0.02%)</title><rect x="338.2" y="357" width="0.3" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="341.23" y="367.5" ></text>
</g>
<g >
<title>ProcessCompletedNotifies (11 samples, 0.02%)</title><rect x="614.2" y="453" width="0.2" height="15.0" fill="rgb(79,54,194)" rx="2" ry="2" />
<text x="617.19" y="463.5" ></text>
</g>
<g >
<title>alloc_skb_with_frags (28 samples, 0.04%)</title><rect x="298.3" y="277" width="0.5" height="15.0" fill="rgb(241,128,39)" rx="2" ry="2" />
<text x="301.31" y="287.5" ></text>
</g>
<g >
<title>trigger_load_balance (8 samples, 0.01%)</title><rect x="1139.0" y="341" width="0.2" height="15.0" fill="rgb(251,132,51)" rx="2" ry="2" />
<text x="1142.03" y="351.5" ></text>
</g>
<g >
<title>int4eq (12 samples, 0.02%)</title><rect x="344.0" y="325" width="0.2" height="15.0" fill="rgb(140,570645941054194,150)" rx="2" ry="2" />
<text x="346.98" y="335.5" ></text>
</g>
<g >
<title>palloc0 (25 samples, 0.04%)</title><rect x="520.0" y="373" width="0.4" height="15.0" fill="rgb(3537,90,177)" rx="2" ry="2" />
<text x="523.01" y="383.5" ></text>
</g>
<g >
<title>_bt_checkpage (44 samples, 0.06%)</title><rect x="383.2" y="341" width="0.7" height="15.0" fill="rgb(63,132,62)" rx="2" ry="2" />
<text x="386.20" y="351.5" ></text>
</g>
<g >
<title>lappend_int (49 samples, 0.07%)</title><rect x="589.1" y="373" width="0.8" height="15.0" fill="rgb(91,1623125281314712,156)" rx="2" ry="2" />
<text x="592.08" y="383.5" ></text>
</g>
<g >
<title>pqsecure_raw_read (350 samples, 0.50%)</title><rect x="287.8" y="453" width="5.8" height="15.0" fill="rgb(241,91,192)" rx="2" ry="2" />
<text x="290.75" y="463.5" ></text>
</g>
<g >
<title>CreateQueryDesc (189 samples, 0.27%)</title><rect x="531.1" y="437" width="3.1" height="15.0" fill="rgb(135,175,76)" rx="2" ry="2" />
<text x="534.05" y="447.5" ></text>
</g>
<g >
<title>pg_vsnprintf (282 samples, 0.40%)</title><rect x="216.2" y="469" width="4.8" height="15.0" fill="rgb(54790,201,187)" rx="2" ry="2" />
<text x="219.24" y="479.5" ></text>
</g>
<g >
<title>put_prev_entity (22 samples, 0.03%)</title><rect x="857.9" y="213" width="0.3" height="15.0" fill="rgb(240,152,38)" rx="2" ry="2" />
<text x="860.86" y="223.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (22 samples, 0.03%)</title><rect x="585.8" y="341" width="0.4" height="15.0" fill="rgb(81,84,95)" rx="2" ry="2" />
<text x="588.83" y="351.5" ></text>
</g>
<g >
<title>ResourceArrayRemove (19 samples, 0.03%)</title><rect x="701.1" y="421" width="0.3" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="704.08" y="431.5" ></text>
</g>
<g >
<title>__strdup (123 samples, 0.17%)</title><rect x="221.4" y="469" width="2.1" height="15.0" fill="rgb(241,132,39)" rx="2" ry="2" />
<text x="224.43" y="479.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (8 samples, 0.01%)</title><rect x="382.6" y="309" width="0.2" height="15.0" fill="rgb(121,61,137)" rx="2" ry="2" />
<text x="385.64" y="319.5" ></text>
</g>
<g >
<title>__schedule (238 samples, 0.34%)</title><rect x="310.7" y="421" width="4.0" height="15.0" fill="rgb(237,132,35)" rx="2" ry="2" />
<text x="313.72" y="431.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (94 samples, 0.13%)</title><rect x="943.7" y="421" width="1.6" height="15.0" fill="rgb(242,151,40)" rx="2" ry="2" />
<text x="946.68" y="431.5" ></text>
</g>
<g >
<title>__libc_send (386 samples, 0.55%)</title><rect x="296.4" y="405" width="6.5" height="15.0" fill="rgb(251,154,51)" rx="2" ry="2" />
<text x="299.41" y="415.5" ></text>
</g>
<g >
<title>skb_release_data (11 samples, 0.02%)</title><rect x="290.2" y="277" width="0.2" height="15.0" fill="rgb(235,143,33)" rx="2" ry="2" />
<text x="293.25" y="287.5" ></text>
</g>
<g >
<title>SYSC_recvfrom (7 samples, 0.01%)</title><rect x="49.4" y="405" width="0.1" height="15.0" fill="rgb(234,165,31)" rx="2" ry="2" />
<text x="52.41" y="415.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (2,097 samples, 2.98%)</title><rect x="655.2" y="261" width="35.2" height="15.0" fill="rgb(243,119,42)" rx="2" ry="2" />
<text x="658.24" y="271.5" >__..</text>
</g>
<g >
<title>load_new_mm_cr3 (7 samples, 0.01%)</title><rect x="1183.8" y="389" width="0.1" height="15.0" fill="rgb(246,157,45)" rx="2" ry="2" />
<text x="1186.77" y="399.5" ></text>
</g>
<g >
<title>poll_schedule_timeout (106 samples, 0.15%)</title><rect x="306.9" y="405" width="1.8" height="15.0" fill="rgb(234,208,32)" rx="2" ry="2" />
<text x="309.92" y="415.5" ></text>
</g>
<g >
<title>UnregisterSnapshot (11 samples, 0.02%)</title><rect x="732.6" y="341" width="0.1" height="15.0" fill="rgb(202,201,242)" rx="2" ry="2" />
<text x="735.55" y="351.5" ></text>
</g>
<g >
<title>_bt_saveitem (12 samples, 0.02%)</title><rect x="344.2" y="357" width="0.2" height="15.0" fill="rgb(63,132,63)" rx="2" ry="2" />
<text x="347.18" y="367.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (148 samples, 0.21%)</title><rect x="823.0" y="309" width="2.4" height="15.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text x="825.96" y="319.5" ></text>
</g>
<g >
<title>load_new_mm_cr3 (13 samples, 0.02%)</title><rect x="972.5" y="389" width="0.2" height="15.0" fill="rgb(246,157,45)" rx="2" ry="2" />
<text x="975.52" y="399.5" ></text>
</g>
<g >
<title>_bt_first (35 samples, 0.05%)</title><rect x="505.2" y="325" width="0.6" height="15.0" fill="rgb(63,132,62)" rx="2" ry="2" />
<text x="508.22" y="335.5" ></text>
</g>
<g >
<title>lapic_next_deadline (39 samples, 0.06%)</title><rect x="1126.2" y="389" width="0.7" height="15.0" fill="rgb(246,107,46)" rx="2" ry="2" />
<text x="1129.25" y="399.5" ></text>
</g>
<g >
<title>perf_evsel__enable (7 samples, 0.01%)</title><rect x="12.0" y="549" width="0.1" height="15.0" fill="rgb(241,184,40)" rx="2" ry="2" />
<text x="14.96" y="559.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (132 samples, 0.19%)</title><rect x="1013.2" y="421" width="2.2" height="15.0" fill="rgb(236,112,34)" rx="2" ry="2" />
<text x="1016.18" y="431.5" ></text>
</g>
<g >
<title>LWLockRelease (64 samples, 0.09%)</title><rect x="443.6" y="421" width="1.1" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="446.59" y="431.5" ></text>
</g>
<g >
<title>first_online_pgdat (11 samples, 0.02%)</title><rect x="1045.1" y="453" width="0.2" height="15.0" fill="rgb(231,164,29)" rx="2" ry="2" />
<text x="1048.13" y="463.5" ></text>
</g>
<g >
<title>perf_ioctl (7 samples, 0.01%)</title><rect x="12.0" y="453" width="0.1" height="15.0" fill="rgb(232,184,30)" rx="2" ry="2" />
<text x="14.96" y="463.5" ></text>
</g>
<g >
<title>AllocSetAlloc (10 samples, 0.01%)</title><rect x="615.2" y="405" width="0.1" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="618.18" y="415.5" ></text>
</g>
<g >
<title>cpu_load_update (6 samples, 0.01%)</title><rect x="1150.1" y="437" width="0.1" height="15.0" fill="rgb(245,118,45)" rx="2" ry="2" />
<text x="1153.06" y="447.5" ></text>
</g>
<g >
<title>resetPQExpBuffer (19 samples, 0.03%)</title><rect x="113.8" y="437" width="0.4" height="15.0" fill="rgb(241,174,205)" rx="2" ry="2" />
<text x="116.83" y="447.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBuffer (11 samples, 0.02%)</title><rect x="508.1" y="309" width="0.2" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="511.08" y="319.5" ></text>
</g>
<g >
<title>sock_def_readable (184 samples, 0.26%)</title><rect x="298.9" y="293" width="3.1" height="15.0" fill="rgb(241,175,40)" rx="2" ry="2" />
<text x="301.91" y="303.5" ></text>
</g>
<g >
<title>ResourceArrayEnlarge.part.4 (46 samples, 0.07%)</title><rect x="597.5" y="325" width="0.7" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="600.47" y="335.5" ></text>
</g>
<g >
<title>cmpxchg_double_slab.isra.64 (15 samples, 0.02%)</title><rect x="60.5" y="261" width="0.3" height="15.0" fill="rgb(233,94,31)" rx="2" ry="2" />
<text x="63.53" y="271.5" ></text>
</g>
<g >
<title>AllocSetAlloc (15 samples, 0.02%)</title><rect x="384.1" y="341" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="387.09" y="351.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (7 samples, 0.01%)</title><rect x="260.8" y="309" width="0.1" height="15.0" fill="rgb(236,126,34)" rx="2" ry="2" />
<text x="263.77" y="319.5" ></text>
</g>
<g >
<title>tick_check_broadcast_expired (13 samples, 0.02%)</title><rect x="1178.9" y="501" width="0.2" height="15.0" fill="rgb(248,142,47)" rx="2" ry="2" />
<text x="1181.86" y="511.5" ></text>
</g>
<g >
<title>AllocSetAlloc (13 samples, 0.02%)</title><rect x="411.3" y="421" width="0.3" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="414.34" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (9 samples, 0.01%)</title><rect x="608.1" y="309" width="0.1" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="611.09" y="319.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (38 samples, 0.05%)</title><rect x="450.6" y="437" width="0.6" height="15.0" fill="rgb(242,151,40)" rx="2" ry="2" />
<text x="453.58" y="447.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (189 samples, 0.27%)</title><rect x="830.2" y="293" width="3.1" height="15.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text x="833.17" y="303.5" ></text>
</g>
<g >
<title>update_rq_clock (145 samples, 0.21%)</title><rect x="685.3" y="165" width="2.5" height="15.0" fill="rgb(240,150,39)" rx="2" ry="2" />
<text x="688.33" y="175.5" ></text>
</g>
<g >
<title>leading_pad (8 samples, 0.01%)</title><rect x="226.6" y="437" width="0.1" height="15.0" fill="rgb(54790,201,158)" rx="2" ry="2" />
<text x="229.61" y="447.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount.part.10 (13 samples, 0.02%)</title><rect x="738.5" y="309" width="0.3" height="15.0" fill="rgb(142,187,201)" rx="2" ry="2" />
<text x="741.55" y="319.5" ></text>
</g>
<g >
<title>do_idle (11,367 samples, 16.14%)</title><rect x="987.3" y="501" width="190.4" height="15.0" fill="rgb(240,189,39)" rx="2" ry="2" />
<text x="990.26" y="511.5" >do_idle</text>
</g>
<g >
<title>malloc_consolidate (145 samples, 0.21%)</title><rect x="115.3" y="421" width="2.5" height="15.0" fill="rgb(245,112,45)" rx="2" ry="2" />
<text x="118.32" y="431.5" ></text>
</g>
<g >
<title>__switch_to (146 samples, 0.21%)</title><rect x="976.5" y="549" width="2.4" height="15.0" fill="rgb(238,132,37)" rx="2" ry="2" />
<text x="979.47" y="559.5" ></text>
</g>
<g >
<title>native_safe_halt (101 samples, 0.14%)</title><rect x="1180.2" y="389" width="1.7" height="15.0" fill="rgb(233,158,31)" rx="2" ry="2" />
<text x="1183.18" y="399.5" ></text>
</g>
<g >
<title>path_put (12 samples, 0.02%)</title><rect x="80.9" y="373" width="0.2" height="15.0" fill="rgb(234,142,31)" rx="2" ry="2" />
<text x="83.94" y="383.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (7 samples, 0.01%)</title><rect x="260.8" y="325" width="0.1" height="15.0" fill="rgb(236,134,34)" rx="2" ry="2" />
<text x="263.77" y="335.5" ></text>
</g>
<g >
<title>fput (16 samples, 0.02%)</title><rect x="134.6" y="341" width="0.3" height="15.0" fill="rgb(234,174,31)" rx="2" ry="2" />
<text x="137.64" y="351.5" ></text>
</g>
<g >
<title>update_load_avg (10 samples, 0.01%)</title><rect x="1069.9" y="437" width="0.1" height="15.0" fill="rgb(240,150,38)" rx="2" ry="2" />
<text x="1072.88" y="447.5" ></text>
</g>
<g >
<title>set_next_entity (326 samples, 0.46%)</title><rect x="1064.4" y="437" width="5.4" height="15.0" fill="rgb(240,154,38)" rx="2" ry="2" />
<text x="1067.37" y="447.5" ></text>
</g>
<g >
<title>ktime_get (11 samples, 0.02%)</title><rect x="1152.2" y="373" width="0.2" height="15.0" fill="rgb(237,114,35)" rx="2" ry="2" />
<text x="1155.23" y="383.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (72 samples, 0.10%)</title><rect x="1165.9" y="389" width="1.2" height="15.0" fill="rgb(244,130,43)" rx="2" ry="2" />
<text x="1168.86" y="399.5" ></text>
</g>
<g >
<title>add_wait_queue (8 samples, 0.01%)</title><rect x="309.0" y="357" width="0.1" height="15.0" fill="rgb(242,156,40)" rx="2" ry="2" />
<text x="311.96" y="367.5" ></text>
</g>
<g >
<title>__update_idle_core (22 samples, 0.03%)</title><rect x="251.5" y="341" width="0.4" height="15.0" fill="rgb(246,125,45)" rx="2" ry="2" />
<text x="254.51" y="351.5" ></text>
</g>
<g >
<title>iomap_file_buffered_write (43 samples, 0.06%)</title><rect x="12.1" y="405" width="0.7" height="15.0" fill="rgb(240,181,38)" rx="2" ry="2" />
<text x="15.11" y="415.5" ></text>
</g>
<g >
<title>kvm_guest_apic_eoi_write (118 samples, 0.17%)</title><rect x="1015.4" y="405" width="2.0" height="15.0" fill="rgb(240,130,38)" rx="2" ry="2" />
<text x="1018.43" y="415.5" ></text>
</g>
<g >
<title>_bt_moveright (131 samples, 0.19%)</title><rect x="366.0" y="357" width="2.2" height="15.0" fill="rgb(63,132,63)" rx="2" ry="2" />
<text x="369.03" y="367.5" ></text>
</g>
<g >
<title>resched_curr (48 samples, 0.07%)</title><rect x="684.5" y="133" width="0.8" height="15.0" fill="rgb(237,165,35)" rx="2" ry="2" />
<text x="687.48" y="143.5" ></text>
</g>
<g >
<title>hash_search (30 samples, 0.04%)</title><rect x="412.8" y="437" width="0.5" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="415.76" y="447.5" ></text>
</g>
<g >
<title>index_endscan (296 samples, 0.42%)</title><rect x="737.8" y="325" width="5.0" height="15.0" fill="rgb(61,111,147)" rx="2" ry="2" />
<text x="740.84" y="335.5" ></text>
</g>
<g >
<title>index_getnext_tid (256 samples, 0.36%)</title><rect x="504.0" y="357" width="4.3" height="15.0" fill="rgb(61,111,147)" rx="2" ry="2" />
<text x="506.99" y="367.5" ></text>
</g>
<g >
<title>mutex_lock (66 samples, 0.09%)</title><rect x="70.4" y="325" width="1.1" height="15.0" fill="rgb(240,96,39)" rx="2" ry="2" />
<text x="73.35" y="335.5" ></text>
</g>
<g >
<title>__restore_rt (9 samples, 0.01%)</title><rect x="971.3" y="453" width="0.1" height="15.0" fill="rgb(232,135,30)" rx="2" ry="2" />
<text x="974.26" y="463.5" ></text>
</g>
<g >
<title>skb_set_owner_w (97 samples, 0.14%)</title><rect x="652.5" y="261" width="1.6" height="15.0" fill="rgb(227,143,24)" rx="2" ry="2" />
<text x="655.51" y="271.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (8 samples, 0.01%)</title><rect x="703.8" y="405" width="0.2" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="706.85" y="415.5" ></text>
</g>
<g >
<title>__switch_to_asm (27 samples, 0.04%)</title><rect x="1079.2" y="469" width="0.5" height="15.0" fill="rgb(233,132,30)" rx="2" ry="2" />
<text x="1082.21" y="479.5" ></text>
</g>
<g >
<title>MemoryContextSetParent (6 samples, 0.01%)</title><rect x="748.7" y="325" width="0.1" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="751.70" y="335.5" ></text>
</g>
<g >
<title>AtCommit_Notify (29 samples, 0.04%)</title><rect x="718.1" y="405" width="0.4" height="15.0" fill="rgb(79,54,56)" rx="2" ry="2" />
<text x="721.06" y="415.5" ></text>
</g>
<g >
<title>sock_sendmsg (295 samples, 0.42%)</title><rect x="297.1" y="325" width="4.9" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="300.07" y="335.5" ></text>
</g>
<g >
<title>tick_sched_timer (28 samples, 0.04%)</title><rect x="689.0" y="149" width="0.4" height="15.0" fill="rgb(245,142,44)" rx="2" ry="2" />
<text x="691.97" y="159.5" ></text>
</g>
<g >
<title>tag_hash (19 samples, 0.03%)</title><rect x="421.3" y="373" width="0.3" height="15.0" fill="rgb(147,107,232)" rx="2" ry="2" />
<text x="424.32" y="383.5" ></text>
</g>
<g >
<title>PyObject_Call (11 samples, 0.02%)</title><rect x="11.6" y="517" width="0.1" height="15.0" fill="rgb(230,207,28)" rx="2" ry="2" />
<text x="14.56" y="527.5" ></text>
</g>
<g >
<title>ExecInterpExpr (90 samples, 0.13%)</title><rect x="464.4" y="341" width="1.5" height="15.0" fill="rgb(81,83,92)" rx="2" ry="2" />
<text x="467.35" y="351.5" ></text>
</g>
<g >
<title>__remove_hrtimer (15 samples, 0.02%)</title><rect x="1187.6" y="373" width="0.2" height="15.0" fill="rgb(245,135,44)" rx="2" ry="2" />
<text x="1190.57" y="383.5" ></text>
</g>
<g >
<title>tick_program_event (127 samples, 0.18%)</title><rect x="1131.6" y="421" width="2.1" height="15.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text x="1134.57" y="431.5" ></text>
</g>
<g >
<title>sched_clock_cpu (49 samples, 0.07%)</title><rect x="859.1" y="229" width="0.8" height="15.0" fill="rgb(238,164,36)" rx="2" ry="2" />
<text x="862.09" y="239.5" ></text>
</g>
<g >
<title>__fget_light (39 samples, 0.06%)</title><rect x="819.8" y="325" width="0.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="822.81" y="335.5" ></text>
</g>
<g >
<title>check_stack_depth (8 samples, 0.01%)</title><rect x="511.5" y="373" width="0.2" height="15.0" fill="rgb(135,173,68)" rx="2" ry="2" />
<text x="514.53" y="383.5" ></text>
</g>
<g >
<title>tag_hash (14 samples, 0.02%)</title><rect x="431.4" y="357" width="0.2" height="15.0" fill="rgb(147,107,232)" rx="2" ry="2" />
<text x="434.39" y="367.5" ></text>
</g>
<g >
<title>__wake_up_common (1,871 samples, 2.66%)</title><rect x="155.3" y="261" width="31.3" height="15.0" fill="rgb(253,119,53)" rx="2" ry="2" />
<text x="158.28" y="271.5" >__..</text>
</g>
<g >
<title>ExecGetRangeTableRelation (236 samples, 0.34%)</title><rect x="600.3" y="373" width="3.9" height="15.0" fill="rgb(81,87,91)" rx="2" ry="2" />
<text x="603.25" y="383.5" ></text>
</g>
<g >
<title>pqPuts (9 samples, 0.01%)</title><rect x="315.2" y="549" width="0.1" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="318.20" y="559.5" ></text>
</g>
<g >
<title>pfree (16 samples, 0.02%)</title><rect x="761.2" y="389" width="0.2" height="15.0" fill="rgb(3537,90,12881895)" rx="2" ry="2" />
<text x="764.15" y="399.5" ></text>
</g>
<g >
<title>PQsendQueryGuts (146 samples, 0.21%)</title><rect x="16.8" y="533" width="2.4" height="15.0" fill="rgb(241,90,192)" rx="2" ry="2" />
<text x="19.80" y="543.5" ></text>
</g>
<g >
<title>ShowTransactionState (22 samples, 0.03%)</title><rect x="782.3" y="405" width="0.4" height="15.0" fill="rgb(71,807901,223)" rx="2" ry="2" />
<text x="785.31" y="415.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (19 samples, 0.03%)</title><rect x="1139.9" y="469" width="0.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="1142.89" y="479.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (23 samples, 0.03%)</title><rect x="187.2" y="229" width="0.4" height="15.0" fill="rgb(236,126,34)" rx="2" ry="2" />
<text x="190.20" y="239.5" ></text>
</g>
<g >
<title>MemoryContextSetParent (13 samples, 0.02%)</title><rect x="746.3" y="293" width="0.2" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="749.29" y="303.5" ></text>
</g>
<g >
<title>ExecAssignProjectionInfo (400 samples, 0.57%)</title><rect x="557.7" y="389" width="6.7" height="15.0" fill="rgb(81,87,89)" rx="2" ry="2" />
<text x="560.69" y="399.5" ></text>
</g>
<g >
<title>remove_wait_queue (113 samples, 0.16%)</title><rect x="243.4" y="405" width="1.9" height="15.0" fill="rgb(242,184,40)" rx="2" ry="2" />
<text x="246.42" y="415.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_node (67 samples, 0.10%)</title><rect x="149.3" y="261" width="1.1" height="15.0" fill="rgb(250,107,49)" rx="2" ry="2" />
<text x="152.29" y="271.5" ></text>
</g>
<g >
<title>ktime_get (13 samples, 0.02%)</title><rect x="1132.0" y="389" width="0.2" height="15.0" fill="rgb(237,114,35)" rx="2" ry="2" />
<text x="1135.03" y="399.5" ></text>
</g>
<g >
<title>selinux_socket_recvmsg (138 samples, 0.20%)</title><rect x="51.5" y="341" width="2.3" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="54.54" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (7 samples, 0.01%)</title><rect x="459.9" y="389" width="0.1" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="462.86" y="399.5" ></text>
</g>
<g >
<title>LockRelationOid (418 samples, 0.59%)</title><rect x="425.0" y="389" width="7.0" height="15.0" fill="rgb(129,124,2160785)" rx="2" ry="2" />
<text x="428.01" y="399.5" ></text>
</g>
<g >
<title>ResourceArrayAdd (19 samples, 0.03%)</title><rect x="788.1" y="421" width="0.3" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="791.06" y="431.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (10 samples, 0.01%)</title><rect x="1147.3" y="453" width="0.2" height="15.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text x="1150.34" y="463.5" ></text>
</g>
<g >
<title>initStringInfo (19 samples, 0.03%)</title><rect x="616.7" y="421" width="0.3" height="15.0" fill="rgb(86,215,148)" rx="2" ry="2" />
<text x="619.69" y="431.5" ></text>
</g>
<g >
<title>__do_softirq (41 samples, 0.06%)</title><rect x="1181.2" y="309" width="0.7" height="15.0" fill="rgb(239,141,37)" rx="2" ry="2" />
<text x="1184.19" y="319.5" ></text>
</g>
<g >
<title>sockfd_lookup_light (57 samples, 0.08%)</title><rect x="188.1" y="341" width="1.0" height="15.0" fill="rgb(234,175,32)" rx="2" ry="2" />
<text x="191.11" y="351.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (28 samples, 0.04%)</title><rect x="1083.4" y="453" width="0.5" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="1086.39" y="463.5" ></text>
</g>
<g >
<title>ExecOpenScanRelation (239 samples, 0.34%)</title><rect x="600.2" y="389" width="4.0" height="15.0" fill="rgb(81,87,92)" rx="2" ry="2" />
<text x="603.20" y="399.5" ></text>
</g>
<g >
<title>pqResultAlloc (24 samples, 0.03%)</title><rect x="121.7" y="453" width="0.4" height="15.0" fill="rgb(241,90,192)" rx="2" ry="2" />
<text x="124.67" y="463.5" ></text>
</g>
<g >
<title>[unknown] (150 samples, 0.21%)</title><rect x="19.2" y="501" width="2.6" height="15.0" fill="rgb(242,180,40)" rx="2" ry="2" />
<text x="22.25" y="511.5" ></text>
</g>
<g >
<title>string_hash (21 samples, 0.03%)</title><rect x="409.7" y="405" width="0.4" height="15.0" fill="rgb(147,107,230)" rx="2" ry="2" />
<text x="412.71" y="415.5" ></text>
</g>
<g >
<title>_bt_binsrch (574 samples, 0.82%)</title><rect x="327.3" y="373" width="9.6" height="15.0" fill="rgb(63,132,62)" rx="2" ry="2" />
<text x="330.29" y="383.5" ></text>
</g>
<g >
<title>fmtint (71 samples, 0.10%)</title><rect x="225.6" y="453" width="1.1" height="15.0" fill="rgb(54790,201,99)" rx="2" ry="2" />
<text x="228.56" y="463.5" ></text>
</g>
<g >
<title>sys_recvfrom (174 samples, 0.25%)</title><rect x="289.2" y="389" width="2.9" height="15.0" fill="rgb(234,167,31)" rx="2" ry="2" />
<text x="292.17" y="399.5" ></text>
</g>
<g >
<title>RelationIncrementReferenceCount (16 samples, 0.02%)</title><rect x="481.5" y="341" width="0.3" height="15.0" fill="rgb(142,187,202)" rx="2" ry="2" />
<text x="484.49" y="351.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (216 samples, 0.31%)</title><rect x="909.8" y="165" width="3.6" height="15.0" fill="rgb(240,119,39)" rx="2" ry="2" />
<text x="912.75" y="175.5" ></text>
</g>
<g >
<title>BufTableLookup (33 samples, 0.05%)</title><rect x="493.2" y="293" width="0.5" height="15.0" fill="rgb(121,61,64)" rx="2" ry="2" />
<text x="496.19" y="303.5" ></text>
</g>
<g >
<title>__do_softirq (6 samples, 0.01%)</title><rect x="1061.7" y="389" width="0.1" height="15.0" fill="rgb(239,141,37)" rx="2" ry="2" />
<text x="1064.69" y="399.5" ></text>
</g>
<g >
<title>AllocSetFree (11 samples, 0.02%)</title><rect x="745.3" y="325" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="748.33" y="335.5" ></text>
</g>
<g >
<title>pqPutMsgBytes (6 samples, 0.01%)</title><rect x="315.0" y="549" width="0.1" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="317.98" y="559.5" ></text>
</g>
<g >
<title>__tick_nohz_idle_enter (169 samples, 0.24%)</title><rect x="1184.0" y="421" width="2.9" height="15.0" fill="rgb(240,128,38)" rx="2" ry="2" />
<text x="1187.02" y="431.5" ></text>
</g>
<g >
<title>copy_user_generic_unrolled (41 samples, 0.06%)</title><rect x="143.5" y="277" width="0.7" height="15.0" fill="rgb(252,140,52)" rx="2" ry="2" />
<text x="146.51" y="287.5" ></text>
</g>
<g >
<title>finish_task_switch (6 samples, 0.01%)</title><rect x="1183.2" y="405" width="0.1" height="15.0" fill="rgb(242,177,41)" rx="2" ry="2" />
<text x="1186.20" y="415.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (31 samples, 0.04%)</title><rect x="454.4" y="437" width="0.5" height="15.0" fill="rgb(145,11509185,99)" rx="2" ry="2" />
<text x="457.38" y="447.5" ></text>
</g>
<g >
<title>_bt_preprocess_keys (136 samples, 0.19%)</title><rect x="339.1" y="373" width="2.3" height="15.0" fill="rgb(63,133,63)" rx="2" ry="2" />
<text x="342.07" y="383.5" ></text>
</g>
<g >
<title>coerceToInt.isra.5 (8 samples, 0.01%)</title><rect x="210.5" y="469" width="0.2" height="15.0" fill="rgb(208,154,70)" rx="2" ry="2" />
<text x="213.53" y="479.5" ></text>
</g>
<g >
<title>pfree (8 samples, 0.01%)</title><rect x="748.5" y="325" width="0.1" height="15.0" fill="rgb(3537,90,12881895)" rx="2" ry="2" />
<text x="751.48" y="335.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (82 samples, 0.12%)</title><rect x="828.8" y="293" width="1.4" height="15.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text x="831.79" y="303.5" ></text>
</g>
<g >
<title>tts_buffer_heap_init (11 samples, 0.02%)</title><rect x="599.0" y="341" width="0.1" height="15.0" fill="rgb(81,86,239)" rx="2" ry="2" />
<text x="601.96" y="351.5" ></text>
</g>
<g >
<title>AllocSetFree (9 samples, 0.01%)</title><rect x="738.2" y="309" width="0.1" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="741.18" y="319.5" ></text>
</g>
<g >
<title>account_entity_enqueue (37 samples, 0.05%)</title><rect x="671.5" y="101" width="0.7" height="15.0" fill="rgb(242,164,40)" rx="2" ry="2" />
<text x="674.54" y="111.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (28 samples, 0.04%)</title><rect x="912.8" y="149" width="0.4" height="15.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text x="915.75" y="159.5" ></text>
</g>
<g >
<title>sock_def_readable (2,163 samples, 3.07%)</title><rect x="654.1" y="277" width="36.3" height="15.0" fill="rgb(241,175,40)" rx="2" ry="2" />
<text x="657.14" y="287.5" >soc..</text>
</g>
<g >
<title>__libc_start_main (1,409 samples, 2.00%)</title><rect x="286.8" y="533" width="23.6" height="15.0" fill="rgb(247,154,46)" rx="2" ry="2" />
<text x="289.83" y="543.5" >_..</text>
</g>
<g >
<title>ResourceArrayRemove (14 samples, 0.02%)</title><rect x="383.0" y="293" width="0.2" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="385.95" y="303.5" ></text>
</g>
<g >
<title>__memmove_ssse3_back (28 samples, 0.04%)</title><rect x="527.1" y="373" width="0.5" height="15.0" fill="rgb(242,151,40)" rx="2" ry="2" />
<text x="530.08" y="383.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (48 samples, 0.07%)</title><rect x="1138.8" y="453" width="0.8" height="15.0" fill="rgb(236,126,34)" rx="2" ry="2" />
<text x="1141.76" y="463.5" ></text>
</g>
<g >
<title>PQsendQueryGuts (434 samples, 0.62%)</title><rect x="296.3" y="469" width="7.2" height="15.0" fill="rgb(241,90,192)" rx="2" ry="2" />
<text x="299.26" y="479.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (37 samples, 0.05%)</title><rect x="57.8" y="325" width="0.6" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="60.80" y="335.5" ></text>
</g>
<g >
<title>LockAcquireExtended (220 samples, 0.31%)</title><rect x="606.5" y="341" width="3.7" height="15.0" fill="rgb(129,24381895395797,161)" rx="2" ry="2" />
<text x="609.52" y="351.5" ></text>
</g>
<g >
<title>__wake_up_common (149 samples, 0.21%)</title><rect x="66.0" y="197" width="2.5" height="15.0" fill="rgb(253,119,53)" rx="2" ry="2" />
<text x="68.96" y="207.5" ></text>
</g>
<g >
<title>PQgetResult (180 samples, 0.26%)</title><rect x="95.2" y="501" width="3.0" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="98.23" y="511.5" ></text>
</g>
<g >
<title>iomap_apply (43 samples, 0.06%)</title><rect x="12.1" y="389" width="0.7" height="15.0" fill="rgb(240,181,39)" rx="2" ry="2" />
<text x="15.11" y="399.5" ></text>
</g>
<g >
<title>pgstat_report_activity (199 samples, 0.28%)</title><rect x="796.2" y="453" width="3.4" height="15.0" fill="rgb(106,166,185)" rx="2" ry="2" />
<text x="799.24" y="463.5" ></text>
</g>
<g >
<title>TupleDescInitEntryCollation (15 samples, 0.02%)</title><rect x="595.1" y="357" width="0.3" height="15.0" fill="rgb(53,229,240)" rx="2" ry="2" />
<text x="598.11" y="367.5" ></text>
</g>
<g >
<title>path_put (6 samples, 0.01%)</title><rect x="190.3" y="341" width="0.1" height="15.0" fill="rgb(234,142,31)" rx="2" ry="2" />
<text x="193.27" y="351.5" ></text>
</g>
<g >
<title>__perf_event_enable (12 samples, 0.02%)</title><rect x="689.7" y="117" width="0.2" height="15.0" fill="rgb(241,141,40)" rx="2" ry="2" />
<text x="692.72" y="127.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (226 samples, 0.32%)</title><rect x="65.8" y="213" width="3.8" height="15.0" fill="rgb(240,119,39)" rx="2" ry="2" />
<text x="68.78" y="223.5" ></text>
</g>
<g >
<title>ExecConditionalAssignProjectionInfo (106 samples, 0.15%)</title><rect x="564.8" y="389" width="1.8" height="15.0" fill="rgb(81,87,90)" rx="2" ry="2" />
<text x="567.83" y="399.5" ></text>
</g>
<g >
<title>appendBinaryPQExpBuffer (145 samples, 0.21%)</title><rect x="111.4" y="437" width="2.4" height="15.0" fill="rgb(241,174,54)" rx="2" ry="2" />
<text x="114.40" y="447.5" ></text>
</g>
<g >
<title>lookupVariable (9 samples, 0.01%)</title><rect x="304.0" y="405" width="0.1" height="15.0" fill="rgb(208,154,164)" rx="2" ry="2" />
<text x="306.97" y="415.5" ></text>
</g>
<g >
<title>check_stack_depth (14 samples, 0.02%)</title><rect x="510.8" y="389" width="0.2" height="15.0" fill="rgb(135,173,68)" rx="2" ry="2" />
<text x="513.81" y="399.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (49 samples, 0.07%)</title><rect x="559.8" y="325" width="0.8" height="15.0" fill="rgb(81,84,95)" rx="2" ry="2" />
<text x="562.82" y="335.5" ></text>
</g>
<g >
<title>makeParamList (59 samples, 0.08%)</title><rect x="791.7" y="453" width="1.0" height="15.0" fill="rgb(91,146,166)" rx="2" ry="2" />
<text x="794.68" y="463.5" ></text>
</g>
<g >
<title>UnregisterSnapshotFromOwner (60 samples, 0.09%)</title><rect x="748.9" y="341" width="1.0" height="15.0" fill="rgb(202,201,242)" rx="2" ry="2" />
<text x="751.92" y="351.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (6 samples, 0.01%)</title><rect x="971.4" y="549" width="0.1" height="15.0" fill="rgb(236,134,34)" rx="2" ry="2" />
<text x="974.41" y="559.5" ></text>
</g>
<g >
<title>TransactionStartedDuringRecovery (8 samples, 0.01%)</title><rect x="482.7" y="309" width="0.2" height="15.0" fill="rgb(71,807901,237)" rx="2" ry="2" />
<text x="485.75" y="319.5" ></text>
</g>
<g >
<title>sock_poll (25 samples, 0.04%)</title><rect x="308.7" y="405" width="0.4" height="15.0" fill="rgb(229,175,26)" rx="2" ry="2" />
<text x="311.69" y="415.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (32 samples, 0.05%)</title><rect x="688.9" y="165" width="0.6" height="15.0" fill="rgb(237,128,36)" rx="2" ry="2" />
<text x="691.92" y="175.5" ></text>
</g>
<g >
<title>ResourceOwnerEnlargeSnapshots (22 samples, 0.03%)</title><rect x="532.7" y="405" width="0.4" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="535.69" y="415.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (32 samples, 0.05%)</title><rect x="1154.4" y="405" width="0.5" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="1157.41" y="415.5" ></text>
</g>
<g >
<title>disable_timeout (59 samples, 0.08%)</title><rect x="709.9" y="453" width="1.0" height="15.0" fill="rgb(195,223,82)" rx="2" ry="2" />
<text x="712.93" y="463.5" ></text>
</g>
<g >
<title>sockfd_lookup_light (45 samples, 0.06%)</title><rect x="690.6" y="309" width="0.8" height="15.0" fill="rgb(234,175,32)" rx="2" ry="2" />
<text x="693.63" y="319.5" ></text>
</g>
<g >
<title>InputFunctionCall (138 samples, 0.20%)</title><rect x="452.1" y="437" width="2.3" height="15.0" fill="rgb(145,11509185,9913916)" rx="2" ry="2" />
<text x="455.07" y="447.5" ></text>
</g>
<g >
<title>schedule (1,027 samples, 1.46%)</title><rect x="247.5" y="373" width="17.2" height="15.0" fill="rgb(237,164,35)" rx="2" ry="2" />
<text x="250.54" y="383.5" ></text>
</g>
<g >
<title>__select (9 samples, 0.01%)</title><rect x="971.3" y="469" width="0.1" height="15.0" fill="rgb(241,132,39)" rx="2" ry="2" />
<text x="974.26" y="479.5" ></text>
</g>
<g >
<title>[libc-2.17.so] (7 samples, 0.01%)</title><rect x="14.9" y="549" width="0.1" height="15.0" fill="rgb(243,147,42)" rx="2" ry="2" />
<text x="17.89" y="559.5" ></text>
</g>
<g >
<title>SearchCatCache1 (38 samples, 0.05%)</title><rect x="592.4" y="341" width="0.6" height="15.0" fill="rgb(142,62,219)" rx="2" ry="2" />
<text x="595.39" y="351.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (58 samples, 0.08%)</title><rect x="608.8" y="325" width="1.0" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="611.83" y="335.5" ></text>
</g>
<g >
<title>calc_load_nohz_start (12 samples, 0.02%)</title><rect x="1082.9" y="453" width="0.2" height="15.0" fill="rgb(239,112,37)" rx="2" ry="2" />
<text x="1085.93" y="463.5" ></text>
</g>
<g >
<title>skb_release_data (142 samples, 0.20%)</title><rect x="60.8" y="293" width="2.4" height="15.0" fill="rgb(235,143,33)" rx="2" ry="2" />
<text x="63.84" y="303.5" ></text>
</g>
<g >
<title>pfree (7 samples, 0.01%)</title><rect x="741.3" y="293" width="0.1" height="15.0" fill="rgb(3537,90,12881895)" rx="2" ry="2" />
<text x="744.33" y="303.5" ></text>
</g>
<g >
<title>ttwu_do_wakeup (643 samples, 0.91%)</title><rect x="674.5" y="149" width="10.8" height="15.0" fill="rgb(240,116,38)" rx="2" ry="2" />
<text x="677.51" y="159.5" ></text>
</g>
<g >
<title>__switch_to_asm (64 samples, 0.09%)</title><rect x="285.8" y="549" width="1.0" height="15.0" fill="rgb(233,132,30)" rx="2" ry="2" />
<text x="288.76" y="559.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,691 samples, 3.82%)</title><rect x="38.3" y="437" width="45.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" />
<text x="41.32" y="447.5" >entr..</text>
</g>
<g >
<title>skb_set_owner_w (8 samples, 0.01%)</title><rect x="298.8" y="277" width="0.1" height="15.0" fill="rgb(227,143,24)" rx="2" ry="2" />
<text x="301.78" y="287.5" ></text>
</g>
<g >
<title>ExecIndexEvalRuntimeKeys (391 samples, 0.56%)</title><rect x="463.9" y="357" width="6.6" height="15.0" fill="rgb(81,138,91)" rx="2" ry="2" />
<text x="466.93" y="367.5" ></text>
</g>
<g >
<title>update_ts_time_stats (25 samples, 0.04%)</title><rect x="1177.1" y="469" width="0.4" height="15.0" fill="rgb(239,150,37)" rx="2" ry="2" />
<text x="1180.07" y="479.5" ></text>
</g>
<g >
<title>internal_putbytes (37 samples, 0.05%)</title><rect x="520.7" y="373" width="0.7" height="15.0" fill="rgb(88,173,151)" rx="2" ry="2" />
<text x="523.73" y="383.5" ></text>
</g>
<g >
<title>pfree (11 samples, 0.02%)</title><rect x="742.6" y="309" width="0.2" height="15.0" fill="rgb(3537,90,12881895)" rx="2" ry="2" />
<text x="745.62" y="319.5" ></text>
</g>
<g >
<title>pqParseInput3 (9 samples, 0.01%)</title><rect x="293.6" y="469" width="0.2" height="15.0" fill="rgb(241,91,191)" rx="2" ry="2" />
<text x="296.65" y="479.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (31 samples, 0.04%)</title><rect x="1160.3" y="421" width="0.5" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="1163.26" y="431.5" ></text>
</g>
<g >
<title>LWLockAcquire (56 samples, 0.08%)</title><rect x="777.4" y="341" width="0.9" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="780.37" y="351.5" ></text>
</g>
<g >
<title>ctx_resched (132 samples, 0.19%)</title><rect x="1013.2" y="309" width="2.2" height="15.0" fill="rgb(247,127,46)" rx="2" ry="2" />
<text x="1016.18" y="319.5" ></text>
</g>
<g >
<title>finish_task_switch (85 samples, 0.12%)</title><rect x="1060.4" y="453" width="1.4" height="15.0" fill="rgb(242,177,41)" rx="2" ry="2" />
<text x="1063.42" y="463.5" ></text>
</g>
<g >
<title>AllocSetReset (21 samples, 0.03%)</title><rect x="717.4" y="357" width="0.3" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="720.37" y="367.5" ></text>
</g>
<g >
<title>__pollwait (19 samples, 0.03%)</title><rect x="266.4" y="405" width="0.4" height="15.0" fill="rgb(237,141,35)" rx="2" ry="2" />
<text x="269.44" y="415.5" ></text>
</g>
<g >
<title>x2apic_send_IPI (265 samples, 0.38%)</title><rect x="178.1" y="85" width="4.5" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" />
<text x="181.14" y="95.5" ></text>
</g>
<g >
<title>processXactStats (78 samples, 0.11%)</title><rect x="281.3" y="501" width="1.3" height="15.0" fill="rgb(208,154,194)" rx="2" ry="2" />
<text x="284.27" y="511.5" ></text>
</g>
<g >
<title>flush_smp_call_function_queue (12 samples, 0.02%)</title><rect x="689.7" y="165" width="0.2" height="15.0" fill="rgb(242,139,40)" rx="2" ry="2" />
<text x="692.72" y="175.5" ></text>
</g>
<g >
<title>unix_stream_sendmsg (20 samples, 0.03%)</title><rect x="189.1" y="341" width="0.3" height="15.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text x="192.06" y="351.5" ></text>
</g>
<g >
<title>native_apic_msr_eoi_write (14 samples, 0.02%)</title><rect x="1180.9" y="325" width="0.2" height="15.0" fill="rgb(240,158,38)" rx="2" ry="2" />
<text x="1183.85" y="335.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (28 samples, 0.04%)</title><rect x="700.9" y="437" width="0.5" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="703.93" y="447.5" ></text>
</g>
<g >
<title>_raw_spin_lock (8 samples, 0.01%)</title><rect x="297.5" y="293" width="0.2" height="15.0" fill="rgb(240,166,39)" rx="2" ry="2" />
<text x="300.52" y="303.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (29 samples, 0.04%)</title><rect x="915.2" y="261" width="0.5" height="15.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text x="918.25" y="271.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (8 samples, 0.01%)</title><rect x="1135.7" y="469" width="0.2" height="15.0" fill="rgb(236,112,34)" rx="2" ry="2" />
<text x="1138.75" y="479.5" ></text>
</g>
<g >
<title>xfs_file_write_iter (44 samples, 0.06%)</title><rect x="12.1" y="437" width="0.7" height="15.0" fill="rgb(240,192,38)" rx="2" ry="2" />
<text x="15.09" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (18 samples, 0.03%)</title><rect x="576.7" y="357" width="0.3" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="579.71" y="367.5" ></text>
</g>
<g >
<title>__strdup (9 samples, 0.01%)</title><rect x="304.7" y="453" width="0.2" height="15.0" fill="rgb(241,132,39)" rx="2" ry="2" />
<text x="307.72" y="463.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (236 samples, 0.34%)</title><rect x="971.7" y="485" width="3.9" height="15.0" fill="rgb(247,164,46)" rx="2" ry="2" />
<text x="974.68" y="495.5" ></text>
</g>
<g >
<title>AllocSetAlloc (19 samples, 0.03%)</title><rect x="560.3" y="293" width="0.3" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="563.32" y="303.5" ></text>
</g>
<g >
<title>skb_set_owner_w (6 samples, 0.01%)</title><rect x="645.1" y="277" width="0.1" height="15.0" fill="rgb(227,143,24)" rx="2" ry="2" />
<text x="648.09" y="287.5" ></text>
</g>
<g >
<title>CreatePortal (397 samples, 0.56%)</title><rect x="407.7" y="453" width="6.6" height="15.0" fill="rgb(197,173,76)" rx="2" ry="2" />
<text x="410.67" y="463.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (67 samples, 0.10%)</title><rect x="1165.9" y="373" width="1.2" height="15.0" fill="rgb(241,163,40)" rx="2" ry="2" />
<text x="1168.94" y="383.5" ></text>
</g>
<g >
<title>ktime_get (111 samples, 0.16%)</title><rect x="1084.0" y="453" width="1.9" height="15.0" fill="rgb(237,114,35)" rx="2" ry="2" />
<text x="1087.02" y="463.5" ></text>
</g>
<g >
<title>heap_hot_search_buffer (181 samples, 0.26%)</title><rect x="497.8" y="325" width="3.1" height="15.0" fill="rgb(59,597377,145)" rx="2" ry="2" />
<text x="500.84" y="335.5" ></text>
</g>
<g >
<title>InvalidateCatalogSnapshotConditionally (9 samples, 0.01%)</title><rect x="445.1" y="453" width="0.2" height="15.0" fill="rgb(202,201,152)" rx="2" ry="2" />
<text x="448.15" y="463.5" ></text>
</g>
<g >
<title>rcu_sched (12 samples, 0.02%)</title><rect x="976.0" y="565" width="0.2" height="15.0" fill="rgb(247,169,46)" rx="2" ry="2" />
<text x="978.97" y="575.5" ></text>
</g>
<g >
<title>string_hash (20 samples, 0.03%)</title><rect x="412.9" y="421" width="0.4" height="15.0" fill="rgb(147,107,230)" rx="2" ry="2" />
<text x="415.93" y="431.5" ></text>
</g>
<g >
<title>update_curr (9 samples, 0.01%)</title><rect x="672.9" y="101" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="675.87" y="111.5" ></text>
</g>
<g >
<title>_raw_spin_lock (18 samples, 0.03%)</title><rect x="846.9" y="245" width="0.3" height="15.0" fill="rgb(240,166,39)" rx="2" ry="2" />
<text x="849.94" y="255.5" ></text>
</g>
<g >
<title>cpuacct_charge (15 samples, 0.02%)</title><rect x="849.4" y="197" width="0.2" height="15.0" fill="rgb(244,118,43)" rx="2" ry="2" />
<text x="852.37" y="207.5" ></text>
</g>
<g >
<title>__kmalloc_node_track_caller (103 samples, 0.15%)</title><rect x="646.7" y="213" width="1.8" height="15.0" fill="rgb(245,119,44)" rx="2" ry="2" />
<text x="649.75" y="223.5" ></text>
</g>
<g >
<title>unix_stream_read_actor (17 samples, 0.02%)</title><rect x="291.6" y="309" width="0.3" height="15.0" fill="rgb(241,145,39)" rx="2" ry="2" />
<text x="294.60" y="319.5" ></text>
</g>
<g >
<title>ktime_get (147 samples, 0.21%)</title><rect x="1140.2" y="469" width="2.5" height="15.0" fill="rgb(237,114,35)" rx="2" ry="2" />
<text x="1143.20" y="479.5" ></text>
</g>
<g >
<title>pg_strtoint32 (113 samples, 0.16%)</title><rect x="452.5" y="405" width="1.9" height="15.0" fill="rgb(140,143,186)" rx="2" ry="2" />
<text x="455.49" y="415.5" ></text>
</g>
<g >
<title>ExecInitExpr (191 samples, 0.27%)</title><rect x="568.7" y="373" width="3.2" height="15.0" fill="rgb(81,84,91)" rx="2" ry="2" />
<text x="571.67" y="383.5" ></text>
</g>
<g >
<title>ResourceArrayRemove (9 samples, 0.01%)</title><rect x="750.8" y="309" width="0.1" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="753.80" y="319.5" ></text>
</g>
<g >
<title>getTypeOutputInfo (89 samples, 0.13%)</title><rect x="518.5" y="373" width="1.5" height="15.0" fill="rgb(142,126,139)" rx="2" ry="2" />
<text x="521.52" y="383.5" ></text>
</g>
<g >
<title>next_online_pgdat (14 samples, 0.02%)</title><rect x="1046.0" y="453" width="0.2" height="15.0" fill="rgb(231,219,29)" rx="2" ry="2" />
<text x="1048.97" y="463.5" ></text>
</g>
<g >
<title>remote_function (132 samples, 0.19%)</title><rect x="1013.2" y="357" width="2.2" height="15.0" fill="rgb(247,184,46)" rx="2" ry="2" />
<text x="1016.18" y="367.5" ></text>
</g>
<g >
<title>putVariableValue (14 samples, 0.02%)</title><rect x="310.2" y="485" width="0.2" height="15.0" fill="rgb(208,154,196)" rx="2" ry="2" />
<text x="313.20" y="495.5" ></text>
</g>
<g >
<title>pfree (12 samples, 0.02%)</title><rect x="747.9" y="277" width="0.2" height="15.0" fill="rgb(3537,90,12881895)" rx="2" ry="2" />
<text x="750.91" y="287.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (51 samples, 0.07%)</title><rect x="263.1" y="277" width="0.9" height="15.0" fill="rgb(241,163,40)" rx="2" ry="2" />
<text x="266.10" y="287.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (15 samples, 0.02%)</title><rect x="918.7" y="229" width="0.3" height="15.0" fill="rgb(243,140,42)" rx="2" ry="2" />
<text x="921.70" y="239.5" ></text>
</g>
<g >
<title>kmem_cache_free (53 samples, 0.08%)</title><rect x="59.9" y="293" width="0.9" height="15.0" fill="rgb(246,107,46)" rx="2" ry="2" />
<text x="62.90" y="303.5" ></text>
</g>
<g >
<title>LWLockAcquire (183 samples, 0.26%)</title><rect x="440.5" y="421" width="3.1" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="443.52" y="431.5" ></text>
</g>
<g >
<title>ExecInitExprSlots (190 samples, 0.27%)</title><rect x="558.8" y="357" width="3.2" height="15.0" fill="rgb(81,84,91)" rx="2" ry="2" />
<text x="561.85" y="367.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (21 samples, 0.03%)</title><rect x="268.4" y="357" width="0.4" height="15.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text x="271.43" y="367.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (7 samples, 0.01%)</title><rect x="315.4" y="549" width="0.2" height="15.0" fill="rgb(238,167,36)" rx="2" ry="2" />
<text x="318.45" y="559.5" ></text>
</g>
<g >
<title>smp_reschedule_interrupt (62 samples, 0.09%)</title><rect x="1180.8" y="357" width="1.1" height="15.0" fill="rgb(236,126,34)" rx="2" ry="2" />
<text x="1183.83" y="367.5" ></text>
</g>
<g >
<title>SendRowDescriptionMessage (298 samples, 0.42%)</title><rect x="701.4" y="453" width="5.0" height="15.0" fill="rgb(53,177,219)" rx="2" ry="2" />
<text x="704.40" y="463.5" ></text>
</g>
<g >
<title>ExecAssignScanProjectionInfo (26 samples, 0.04%)</title><rect x="564.4" y="389" width="0.4" height="15.0" fill="rgb(81,85,89)" rx="2" ry="2" />
<text x="567.40" y="399.5" ></text>
</g>
<g >
<title>generic_smp_call_function_single_interrupt (132 samples, 0.19%)</title><rect x="1013.2" y="389" width="2.2" height="15.0" fill="rgb(236,189,34)" rx="2" ry="2" />
<text x="1016.18" y="399.5" ></text>
</g>
<g >
<title>_bt_first (3,654 samples, 5.19%)</title><rect x="323.9" y="389" width="61.2" height="15.0" fill="rgb(63,132,62)" rx="2" ry="2" />
<text x="326.91" y="399.5" >_bt_fi..</text>
</g>
<g >
<title>do_syscall_64 (2,765 samples, 3.93%)</title><rect x="817.6" y="357" width="46.3" height="15.0" fill="rgb(232,189,30)" rx="2" ry="2" />
<text x="820.58" y="367.5" >do_s..</text>
</g>
<g >
<title>SearchCatCache1 (88 samples, 0.12%)</title><rect x="549.0" y="389" width="1.5" height="15.0" fill="rgb(142,62,219)" rx="2" ry="2" />
<text x="552.05" y="399.5" ></text>
</g>
<g >
<title>selinux_socket_sendmsg (61 samples, 0.09%)</title><rect x="135.8" y="309" width="1.0" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="138.81" y="319.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (55 samples, 0.08%)</title><rect x="1127.9" y="421" width="1.0" height="15.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text x="1130.94" y="431.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,136 samples, 4.45%)</title><rect x="811.7" y="373" width="52.6" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" />
<text x="814.72" y="383.5" >entry..</text>
</g>
<g >
<title>string_hash (33 samples, 0.05%)</title><rect x="416.4" y="421" width="0.5" height="15.0" fill="rgb(147,107,230)" rx="2" ry="2" />
<text x="419.36" y="431.5" ></text>
</g>
<g >
<title>tts_buffer_heap_getsomeattrs (119 samples, 0.17%)</title><rect x="475.5" y="357" width="2.0" height="15.0" fill="rgb(81,86,239)" rx="2" ry="2" />
<text x="478.48" y="367.5" ></text>
</g>
<g >
<title>ExecReScan (569 samples, 0.81%)</title><rect x="462.8" y="389" width="9.5" height="15.0" fill="rgb(81,83,93)" rx="2" ry="2" />
<text x="465.78" y="399.5" ></text>
</g>
<g >
<title>start_secondary (11,588 samples, 16.45%)</title><rect x="985.4" y="533" width="194.2" height="15.0" fill="rgb(248,156,47)" rx="2" ry="2" />
<text x="988.42" y="543.5" >start_secondary</text>
</g>
<g >
<title>event_function_call (7 samples, 0.01%)</title><rect x="12.0" y="405" width="0.1" height="15.0" fill="rgb(230,165,28)" rx="2" ry="2" />
<text x="14.96" y="415.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (11 samples, 0.02%)</title><rect x="1150.4" y="437" width="0.2" height="15.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text x="1153.37" y="447.5" ></text>
</g>
<g >
<title>__strlen_sse2_pminub (23 samples, 0.03%)</title><rect x="204.3" y="453" width="0.4" height="15.0" fill="rgb(231,132,29)" rx="2" ry="2" />
<text x="207.33" y="463.5" ></text>
</g>
<g >
<title>lock_hrtimer_base.isra.21 (15 samples, 0.02%)</title><rect x="1134.1" y="437" width="0.3" height="15.0" fill="rgb(225,151,22)" rx="2" ry="2" />
<text x="1137.14" y="447.5" ></text>
</g>
<g >
<title>pqPuts (12 samples, 0.02%)</title><rect x="303.3" y="453" width="0.2" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="306.33" y="463.5" ></text>
</g>
<g >
<title>palloc0 (23 samples, 0.03%)</title><rect x="480.8" y="341" width="0.4" height="15.0" fill="rgb(3537,90,177)" rx="2" ry="2" />
<text x="483.77" y="351.5" ></text>
</g>
<g >
<title>ExecInitResultSlot (79 samples, 0.11%)</title><rect x="565.3" y="373" width="1.3" height="15.0" fill="rgb(81,86,92)" rx="2" ry="2" />
<text x="568.27" y="383.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (31 samples, 0.04%)</title><rect x="357.1" y="309" width="0.5" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="360.10" y="319.5" ></text>
</g>
<g >
<title>palloc (100 samples, 0.14%)</title><rect x="488.2" y="325" width="1.7" height="15.0" fill="rgb(3537,90,-354911973014429)" rx="2" ry="2" />
<text x="491.21" y="335.5" ></text>
</g>
<g >
<title>pick_next_entity (8 samples, 0.01%)</title><rect x="1183.3" y="389" width="0.1" height="15.0" fill="rgb(240,174,38)" rx="2" ry="2" />
<text x="1186.31" y="399.5" ></text>
</g>
<g >
<title>_bt_checkkeys (69 samples, 0.10%)</title><rect x="343.0" y="357" width="1.2" height="15.0" fill="rgb(63,133,62)" rx="2" ry="2" />
<text x="346.03" y="367.5" ></text>
</g>
<g >
<title>pq_putemptymessage (38 samples, 0.05%)</title><rect x="950.8" y="453" width="0.6" height="15.0" fill="rgb(88,174,191)" rx="2" ry="2" />
<text x="953.75" y="463.5" ></text>
</g>
<g >
<title>check_stack_depth (7 samples, 0.01%)</title><rect x="743.5" y="325" width="0.1" height="15.0" fill="rgb(135,173,68)" rx="2" ry="2" />
<text x="746.47" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (30 samples, 0.04%)</title><rect x="577.0" y="357" width="0.5" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="580.01" y="367.5" ></text>
</g>
<g >
<title>switch_mm (193 samples, 0.27%)</title><rect x="972.3" y="405" width="3.2" height="15.0" fill="rgb(220,115,17)" rx="2" ry="2" />
<text x="975.30" y="415.5" ></text>
</g>
<g >
<title>__check_object_size (38 samples, 0.05%)</title><rect x="917.8" y="245" width="0.6" height="15.0" fill="rgb(245,144,44)" rx="2" ry="2" />
<text x="920.78" y="255.5" ></text>
</g>
<g >
<title>enlargeStringInfo (15 samples, 0.02%)</title><rect x="616.3" y="437" width="0.2" height="15.0" fill="rgb(86,215,86)" rx="2" ry="2" />
<text x="619.27" y="447.5" ></text>
</g>
<g >
<title>__ldexp (56 samples, 0.08%)</title><rect x="209.6" y="469" width="0.9" height="15.0" fill="rgb(237,154,35)" rx="2" ry="2" />
<text x="212.59" y="479.5" ></text>
</g>
<g >
<title>pqPutInt (182 samples, 0.26%)</title><rect x="198.0" y="469" width="3.1" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="201.01" y="479.5" ></text>
</g>
<g >
<title>CopySnapshot (25 samples, 0.04%)</title><rect x="540.7" y="421" width="0.4" height="15.0" fill="rgb(202,201,75)" rx="2" ry="2" />
<text x="543.70" y="431.5" ></text>
</g>
<g >
<title>list_free_private (34 samples, 0.05%)</title><rect x="747.5" y="293" width="0.6" height="15.0" fill="rgb(91,1623125281314712,161)" rx="2" ry="2" />
<text x="750.55" y="303.5" ></text>
</g>
<g >
<title>hash_any (22 samples, 0.03%)</title><rect x="609.8" y="309" width="0.4" height="15.0" fill="rgb(147,107,143)" rx="2" ry="2" />
<text x="612.84" y="319.5" ></text>
</g>
<g >
<title>__libc_start_main (34,306 samples, 48.71%)</title><rect x="396.6" y="533" width="574.8" height="15.0" fill="rgb(247,154,46)" rx="2" ry="2" />
<text x="399.61" y="543.5" >__libc_start_main</text>
</g>
<g >
<title>ExecScan (3,654 samples, 5.19%)</title><rect x="323.9" y="469" width="61.2" height="15.0" fill="rgb(81,85,93)" rx="2" ry="2" />
<text x="326.91" y="479.5" >ExecScan</text>
</g>
<g >
<title>path_put (17 samples, 0.02%)</title><rect x="925.0" y="325" width="0.3" height="15.0" fill="rgb(234,142,31)" rx="2" ry="2" />
<text x="927.97" y="335.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (29 samples, 0.04%)</title><rect x="515.4" y="373" width="0.5" height="15.0" fill="rgb(242,151,40)" rx="2" ry="2" />
<text x="518.44" y="383.5" ></text>
</g>
<g >
<title>AtEOXact_HashTables (17 samples, 0.02%)</title><rect x="721.9" y="405" width="0.2" height="15.0" fill="rgb(147,79,56)" rx="2" ry="2" />
<text x="724.86" y="415.5" ></text>
</g>
<g >
<title>AfterTriggerFireDeferred (57 samples, 0.08%)</title><rect x="715.9" y="405" width="0.9" height="15.0" fill="rgb(79,33335,52)" rx="2" ry="2" />
<text x="718.86" y="415.5" ></text>
</g>
<g >
<title>ReadBufferExtended (662 samples, 0.94%)</title><rect x="370.3" y="341" width="11.0" height="15.0" fill="rgb(121,61,14823127)" rx="2" ry="2" />
<text x="373.25" y="351.5" ></text>
</g>
<g >
<title>__errno_location (8 samples, 0.01%)</title><rect x="217.5" y="437" width="0.1" height="15.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text x="220.48" y="447.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (76 samples, 0.11%)</title><rect x="643.1" y="261" width="1.3" height="15.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text x="646.13" y="271.5" ></text>
</g>
<g >
<title>enlargeStringInfo (7 samples, 0.01%)</title><rect x="515.9" y="373" width="0.1" height="15.0" fill="rgb(86,215,86)" rx="2" ry="2" />
<text x="518.92" y="383.5" ></text>
</g>
<g >
<title>wait_for_unix_gc (13 samples, 0.02%)</title><rect x="187.8" y="309" width="0.3" height="15.0" fill="rgb(227,83,24)" rx="2" ry="2" />
<text x="190.84" y="319.5" ></text>
</g>
<g >
<title>_bt_compare (48 samples, 0.07%)</title><rect x="367.4" y="341" width="0.8" height="15.0" fill="rgb(63,132,62)" rx="2" ry="2" />
<text x="370.42" y="351.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (50 samples, 0.07%)</title><rect x="554.3" y="357" width="0.9" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="557.33" y="367.5" ></text>
</g>
<g >
<title>rcu_needs_cpu (76 samples, 0.11%)</title><rect x="1134.4" y="437" width="1.3" height="15.0" fill="rgb(238,169,36)" rx="2" ry="2" />
<text x="1137.39" y="447.5" ></text>
</g>
<g >
<title>main (1,409 samples, 2.00%)</title><rect x="286.8" y="517" width="23.6" height="15.0" fill="rgb(250,248,175070962044235)" rx="2" ry="2" />
<text x="289.83" y="527.5" >m..</text>
</g>
<g >
<title>pqsecure_write (7 samples, 0.01%)</title><rect x="197.9" y="437" width="0.1" height="15.0" fill="rgb(241,91,192)" rx="2" ry="2" />
<text x="200.89" y="447.5" ></text>
</g>
<g >
<title>SnapshotResetXmin (12 samples, 0.02%)</title><rect x="732.3" y="341" width="0.3" height="15.0" fill="rgb(202,201,225)" rx="2" ry="2" />
<text x="735.35" y="351.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (17 samples, 0.02%)</title><rect x="146.0" y="277" width="0.3" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="148.99" y="287.5" ></text>
</g>
<g >
<title>AllocSetFree (7 samples, 0.01%)</title><rect x="540.3" y="421" width="0.1" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="543.27" y="431.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (94 samples, 0.13%)</title><rect x="66.4" y="165" width="1.6" height="15.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text x="69.43" y="175.5" ></text>
</g>
<g >
<title>sockfd_lookup_light (131 samples, 0.19%)</title><rect x="920.8" y="325" width="2.2" height="15.0" fill="rgb(234,175,32)" rx="2" ry="2" />
<text x="923.84" y="335.5" ></text>
</g>
<g >
<title>put_prev_task_fair (31 samples, 0.04%)</title><rect x="261.9" y="325" width="0.6" height="15.0" fill="rgb(240,152,39)" rx="2" ry="2" />
<text x="264.93" y="335.5" ></text>
</g>
<g >
<title>set_ps_display (207 samples, 0.29%)</title><rect x="952.8" y="453" width="3.5" height="15.0" fill="rgb(195,180,221)" rx="2" ry="2" />
<text x="955.81" y="463.5" ></text>
</g>
<g >
<title>__sigsetjmp (22 samples, 0.03%)</title><rect x="542.5" y="437" width="0.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="545.55" y="447.5" ></text>
</g>
<g >
<title>_bt_steppage (54 samples, 0.08%)</title><rect x="506.2" y="309" width="0.9" height="15.0" fill="rgb(63,132,63)" rx="2" ry="2" />
<text x="509.17" y="319.5" ></text>
</g>
<g >
<title>unix_poll (12 samples, 0.02%)</title><rect x="308.9" y="389" width="0.2" height="15.0" fill="rgb(229,145,26)" rx="2" ry="2" />
<text x="311.91" y="399.5" ></text>
</g>
<g >
<title>__fget (75 samples, 0.11%)</title><rect x="240.4" y="389" width="1.2" height="15.0" fill="rgb(237,135,35)" rx="2" ry="2" />
<text x="243.37" y="399.5" ></text>
</g>
<g >
<title>reschedule_interrupt (862 samples, 1.22%)</title><rect x="1028.3" y="437" width="14.4" height="15.0" fill="rgb(236,165,34)" rx="2" ry="2" />
<text x="1031.26" y="447.5" ></text>
</g>
<g >
<title>check_cfs_rq_runtime (12 samples, 0.02%)</title><rect x="857.5" y="213" width="0.2" height="15.0" fill="rgb(236,116,34)" rx="2" ry="2" />
<text x="860.53" y="223.5" ></text>
</g>
<g >
<title>LockBuffer (18 samples, 0.03%)</title><rect x="370.0" y="341" width="0.3" height="15.0" fill="rgb(121,61,2156597)" rx="2" ry="2" />
<text x="372.95" y="351.5" ></text>
</g>
<g >
<title>memchr_inv (39 samples, 0.06%)</title><rect x="1045.3" y="453" width="0.7" height="15.0" fill="rgb(234,144,32)" rx="2" ry="2" />
<text x="1048.32" y="463.5" ></text>
</g>
<g >
<title>update_curr (12 samples, 0.02%)</title><rect x="852.3" y="213" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="855.35" y="223.5" ></text>
</g>
<g >
<title>free (37 samples, 0.05%)</title><rect x="741.4" y="309" width="0.7" height="15.0" fill="rgb(246,177,46)" rx="2" ry="2" />
<text x="744.45" y="319.5" ></text>
</g>
<g >
<title>remote_function (12 samples, 0.02%)</title><rect x="689.7" y="149" width="0.2" height="15.0" fill="rgb(247,184,46)" rx="2" ry="2" />
<text x="692.72" y="159.5" ></text>
</g>
<g >
<title>skb_copy_datagram_from_iter (12 samples, 0.02%)</title><rect x="297.9" y="293" width="0.2" height="15.0" fill="rgb(240,143,38)" rx="2" ry="2" />
<text x="300.85" y="303.5" ></text>
</g>
<g >
<title>getReadyForQuery (36 samples, 0.05%)</title><rect x="96.5" y="469" width="0.6" height="15.0" fill="rgb(241,91,137)" rx="2" ry="2" />
<text x="99.46" y="479.5" ></text>
</g>
<g >
<title>pgstat_report_xact_timestamp (22 samples, 0.03%)</title><rect x="783.0" y="405" width="0.4" height="15.0" fill="rgb(106,166,186)" rx="2" ry="2" />
<text x="786.02" y="415.5" ></text>
</g>
<g >
<title>[unknown] (147 samples, 0.21%)</title><rect x="390.2" y="485" width="2.5" height="15.0" fill="rgb(242,180,40)" rx="2" ry="2" />
<text x="393.23" y="495.5" ></text>
</g>
<g >
<title>tick_sched_timer (7 samples, 0.01%)</title><rect x="1061.5" y="373" width="0.1" height="15.0" fill="rgb(245,142,44)" rx="2" ry="2" />
<text x="1064.52" y="383.5" ></text>
</g>
<g >
<title>scheduler_tick (10 samples, 0.01%)</title><rect x="1139.0" y="357" width="0.2" height="15.0" fill="rgb(236,164,34)" rx="2" ry="2" />
<text x="1142.00" y="367.5" ></text>
</g>
<g >
<title>PreCommit_CheckForSerializationFailure (26 samples, 0.04%)</title><rect x="727.3" y="405" width="0.4" height="15.0" fill="rgb(129,175,192)" rx="2" ry="2" />
<text x="730.26" y="415.5" ></text>
</g>
<g >
<title>pqRowProcessor (166 samples, 0.24%)</title><rect x="119.3" y="469" width="2.8" height="15.0" fill="rgb(241,90,192)" rx="2" ry="2" />
<text x="122.29" y="479.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (10 samples, 0.01%)</title><rect x="309.2" y="437" width="0.2" height="15.0" fill="rgb(236,167,34)" rx="2" ry="2" />
<text x="312.20" y="447.5" ></text>
</g>
<g >
<title>unix_destruct_scm (529 samples, 0.75%)</title><rect x="904.7" y="229" width="8.9" height="15.0" fill="rgb(234,145,32)" rx="2" ry="2" />
<text x="907.69" y="239.5" ></text>
</g>
<g >
<title>__libc_send (4,747 samples, 6.74%)</title><rect x="621.3" y="389" width="79.5" height="15.0" fill="rgb(251,154,51)" rx="2" ry="2" />
<text x="624.28" y="399.5" >__libc_send</text>
</g>
<g >
<title>__pthread_enable_asynccancel (12 samples, 0.02%)</title><rect x="127.0" y="405" width="0.2" height="15.0" fill="rgb(236,141,34)" rx="2" ry="2" />
<text x="130.03" y="415.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (8 samples, 0.01%)</title><rect x="1132.1" y="357" width="0.1" height="15.0" fill="rgb(241,163,40)" rx="2" ry="2" />
<text x="1135.11" y="367.5" ></text>
</g>
<g >
<title>[unknown] (150 samples, 0.21%)</title><rect x="809.0" y="373" width="2.5" height="15.0" fill="rgb(242,180,40)" rx="2" ry="2" />
<text x="812.02" y="383.5" ></text>
</g>
<g >
<title>fput (6 samples, 0.01%)</title><rect x="189.4" y="357" width="0.1" height="15.0" fill="rgb(234,174,31)" rx="2" ry="2" />
<text x="192.40" y="367.5" ></text>
</g>
<g >
<title>mutex_unlock (27 samples, 0.04%)</title><rect x="892.9" y="293" width="0.4" height="15.0" fill="rgb(240,96,39)" rx="2" ry="2" />
<text x="895.86" y="303.5" ></text>
</g>
<g >
<title>kmalloc_slab (8 samples, 0.01%)</title><rect x="149.1" y="245" width="0.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="152.07" y="255.5" ></text>
</g>
<g >
<title>pqPutMsgBytes (7 samples, 0.01%)</title><rect x="203.5" y="453" width="0.1" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="206.47" y="463.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (49 samples, 0.07%)</title><rect x="610.7" y="341" width="0.9" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="613.74" y="351.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (8 samples, 0.01%)</title><rect x="609.7" y="309" width="0.1" height="15.0" fill="rgb(242,151,40)" rx="2" ry="2" />
<text x="612.65" y="319.5" ></text>
</g>
<g >
<title>hash_search (46 samples, 0.07%)</title><rect x="409.3" y="421" width="0.8" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="412.29" y="431.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (42 samples, 0.06%)</title><rect x="1011.9" y="389" width="0.7" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" />
<text x="1014.93" y="399.5" ></text>
</g>
<g >
<title>ReadBufferExtended (310 samples, 0.44%)</title><rect x="492.5" y="325" width="5.2" height="15.0" fill="rgb(121,61,14823127)" rx="2" ry="2" />
<text x="495.55" y="335.5" ></text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.01%)</title><rect x="11.4" y="533" width="0.1" height="15.0" fill="rgb(232,189,30)" rx="2" ry="2" />
<text x="14.39" y="543.5" ></text>
</g>
<g >
<title>expression_tree_walker (13 samples, 0.02%)</title><rect x="570.4" y="341" width="0.2" height="15.0" fill="rgb(91,136,452238107559)" rx="2" ry="2" />
<text x="573.43" y="351.5" ></text>
</g>
<g >
<title>event_function (12 samples, 0.02%)</title><rect x="689.7" y="133" width="0.2" height="15.0" fill="rgb(247,165,46)" rx="2" ry="2" />
<text x="692.72" y="143.5" ></text>
</g>
<g >
<title>hrtimer_active (43 samples, 0.06%)</title><rect x="1154.9" y="421" width="0.8" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="1157.95" y="431.5" ></text>
</g>
<g >
<title>run_timer_softirq (7 samples, 0.01%)</title><rect x="1139.4" y="405" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="1142.42" y="415.5" ></text>
</g>
<g >
<title>deactivate_task (7 samples, 0.01%)</title><rect x="264.0" y="357" width="0.1" height="15.0" fill="rgb(236,216,34)" rx="2" ry="2" />
<text x="267.01" y="367.5" ></text>
</g>
<g >
<title>skb_release_head_state (383 samples, 0.54%)</title><rect x="63.2" y="293" width="6.4" height="15.0" fill="rgb(245,143,45)" rx="2" ry="2" />
<text x="66.21" y="303.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (18 samples, 0.03%)</title><rect x="615.5" y="437" width="0.4" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="618.55" y="447.5" ></text>
</g>
<g >
<title>pqGetInt (195 samples, 0.28%)</title><rect x="105.5" y="469" width="3.2" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="108.45" y="479.5" ></text>
</g>
<g >
<title>sys_recvfrom (2,158 samples, 3.06%)</title><rect x="887.1" y="357" width="36.2" height="15.0" fill="rgb(234,167,31)" rx="2" ry="2" />
<text x="890.13" y="367.5" >sys..</text>
</g>
<g >
<title>threadRun (1,409 samples, 2.00%)</title><rect x="286.8" y="501" width="23.6" height="15.0" fill="rgb(208,154,234)" rx="2" ry="2" />
<text x="289.83" y="511.5" >t..</text>
</g>
<g >
<title>__do_softirq (13 samples, 0.02%)</title><rect x="1012.8" y="373" width="0.2" height="15.0" fill="rgb(239,141,37)" rx="2" ry="2" />
<text x="1015.76" y="383.5" ></text>
</g>
<g >
<title>__check_heap_object (16 samples, 0.02%)</title><rect x="640.9" y="245" width="0.3" height="15.0" fill="rgb(241,144,39)" rx="2" ry="2" />
<text x="643.93" y="255.5" ></text>
</g>
<g >
<title>pqGetc (16 samples, 0.02%)</title><rect x="96.8" y="453" width="0.3" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="99.79" y="463.5" ></text>
</g>
<g >
<title>cpu_load_update_nohz_start (10 samples, 0.01%)</title><rect x="1083.1" y="453" width="0.2" height="15.0" fill="rgb(239,118,37)" rx="2" ry="2" />
<text x="1086.14" y="463.5" ></text>
</g>
<g >
<title>tag_hash (23 samples, 0.03%)</title><rect x="365.6" y="293" width="0.4" height="15.0" fill="rgb(147,107,232)" rx="2" ry="2" />
<text x="368.60" y="303.5" ></text>
</g>
<g >
<title>ExecInitQual (717 samples, 1.02%)</title><rect x="577.9" y="389" width="12.0" height="15.0" fill="rgb(81,84,92)" rx="2" ry="2" />
<text x="580.88" y="399.5" ></text>
</g>
<g >
<title>compareVariableNames (6 samples, 0.01%)</title><rect x="284.3" y="437" width="0.1" height="15.0" fill="rgb(208,154,71)" rx="2" ry="2" />
<text x="287.28" y="447.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (86 samples, 0.12%)</title><rect x="961.9" y="405" width="1.5" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="964.91" y="415.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (60 samples, 0.09%)</title><rect x="787.1" y="421" width="1.0" height="15.0" fill="rgb(142,62,66)" rx="2" ry="2" />
<text x="790.05" y="431.5" ></text>
</g>
<g >
<title>PyEval_EvalFrameEx (9 samples, 0.01%)</title><rect x="11.6" y="341" width="0.1" height="15.0" fill="rgb(248,201,47)" rx="2" ry="2" />
<text x="14.56" y="351.5" ></text>
</g>
<g >
<title>get_last_attnums_walker (16 samples, 0.02%)</title><rect x="561.7" y="325" width="0.3" height="15.0" fill="rgb(81,84,136)" rx="2" ry="2" />
<text x="564.70" y="335.5" ></text>
</g>
<g >
<title>charhashfast (19 samples, 0.03%)</title><rect x="574.2" y="325" width="0.3" height="15.0" fill="rgb(142,62,66)" rx="2" ry="2" />
<text x="577.16" y="335.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (11 samples, 0.02%)</title><rect x="913.0" y="133" width="0.2" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="915.99" y="143.5" ></text>
</g>
<g >
<title>dopr.constprop.2 (173 samples, 0.25%)</title><rect x="223.9" y="469" width="2.9" height="15.0" fill="rgb(54790,201,82)" rx="2" ry="2" />
<text x="226.86" y="479.5" ></text>
</g>
<g >
<title>palloc (24 samples, 0.03%)</title><rect x="383.9" y="357" width="0.4" height="15.0" fill="rgb(3537,90,-354911973014429)" rx="2" ry="2" />
<text x="386.94" y="367.5" ></text>
</g>
<g >
<title>__sigsetjmp (29 samples, 0.04%)</title><rect x="941.8" y="437" width="0.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="944.76" y="447.5" ></text>
</g>
<g >
<title>RegisterSnapshotOnOwner (21 samples, 0.03%)</title><rect x="613.8" y="421" width="0.4" height="15.0" fill="rgb(202,201,201)" rx="2" ry="2" />
<text x="616.82" y="431.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (6 samples, 0.01%)</title><rect x="611.4" y="325" width="0.1" height="15.0" fill="rgb(228,151,26)" rx="2" ry="2" />
<text x="614.44" y="335.5" ></text>
</g>
<g >
<title>index_getnext_slot (3,654 samples, 5.19%)</title><rect x="323.9" y="437" width="61.2" height="15.0" fill="rgb(61,111,147)" rx="2" ry="2" />
<text x="326.91" y="447.5" >index_..</text>
</g>
<g >
<title>ExprEvalPushStep (22 samples, 0.03%)</title><rect x="588.1" y="373" width="0.3" height="15.0" fill="rgb(81,84,95)" rx="2" ry="2" />
<text x="591.07" y="383.5" ></text>
</g>
<g >
<title>__alloc_skb (338 samples, 0.48%)</title><rect x="146.6" y="277" width="5.7" height="15.0" fill="rgb(227,151,24)" rx="2" ry="2" />
<text x="149.64" y="287.5" ></text>
</g>
<g >
<title>_copy_from_iter (6 samples, 0.01%)</title><rect x="139.3" y="309" width="0.1" height="15.0" fill="rgb(240,180,38)" rx="2" ry="2" />
<text x="142.27" y="319.5" ></text>
</g>
<g >
<title>pfree (6 samples, 0.01%)</title><rect x="748.1" y="293" width="0.1" height="15.0" fill="rgb(3537,90,12881895)" rx="2" ry="2" />
<text x="751.12" y="303.5" ></text>
</g>
<g >
<title>cpu_load_update_nohz_stop (8 samples, 0.01%)</title><rect x="1139.6" y="469" width="0.2" height="15.0" fill="rgb(244,118,43)" rx="2" ry="2" />
<text x="1142.62" y="479.5" ></text>
</g>
<g >
<title>evaluateExpr (9 samples, 0.01%)</title><rect x="304.0" y="421" width="0.1" height="15.0" fill="rgb(208,154,89)" rx="2" ry="2" />
<text x="306.97" y="431.5" ></text>
</g>
<g >
<title>sock_sendmsg (3,163 samples, 4.49%)</title><rect x="135.1" y="341" width="53.0" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="138.11" y="351.5" >sock_..</text>
</g>
<g >
<title>LWLockRelease (43 samples, 0.06%)</title><rect x="539.0" y="405" width="0.7" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="541.98" y="415.5" ></text>
</g>
<g >
<title>pick_next_task_idle (23 samples, 0.03%)</title><rect x="860.3" y="261" width="0.4" height="15.0" fill="rgb(240,174,39)" rx="2" ry="2" />
<text x="863.27" y="271.5" ></text>
</g>
<g >
<title>PushActiveSnapshot (89 samples, 0.13%)</title><rect x="614.4" y="453" width="1.5" height="15.0" fill="rgb(202,201,196)" rx="2" ry="2" />
<text x="617.38" y="463.5" ></text>
</g>
<g >
<title>__fget_light (82 samples, 0.12%)</title><rect x="77.2" y="341" width="1.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="80.17" y="351.5" ></text>
</g>
<g >
<title>TupleDescInitEntry (184 samples, 0.26%)</title><rect x="592.0" y="357" width="3.1" height="15.0" fill="rgb(53,229,240)" rx="2" ry="2" />
<text x="595.02" y="367.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (7 samples, 0.01%)</title><rect x="12.7" y="341" width="0.1" height="15.0" fill="rgb(243,140,42)" rx="2" ry="2" />
<text x="15.70" y="351.5" ></text>
</g>
<g >
<title>start_thread (15,674 samples, 22.26%)</title><rect x="21.8" y="533" width="262.6" height="15.0" fill="rgb(241,156,40)" rx="2" ry="2" />
<text x="24.76" y="543.5" >start_thread</text>
</g>
<g >
<title>hrtimer_get_next_event (121 samples, 0.17%)</title><rect x="1104.4" y="421" width="2.0" height="15.0" fill="rgb(241,152,39)" rx="2" ry="2" />
<text x="1107.41" y="431.5" ></text>
</g>
<g >
<title>strlcpy (39 samples, 0.06%)</title><rect x="122.4" y="469" width="0.7" height="15.0" fill="rgb(54790,217,578071)" rx="2" ry="2" />
<text x="125.41" y="479.5" ></text>
</g>
<g >
<title>processXactStats (7 samples, 0.01%)</title><rect x="310.1" y="485" width="0.1" height="15.0" fill="rgb(208,154,194)" rx="2" ry="2" />
<text x="313.09" y="495.5" ></text>
</g>
<g >
<title>LWLockRelease (17 samples, 0.02%)</title><rect x="607.8" y="325" width="0.3" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="610.79" y="335.5" ></text>
</g>
<g >
<title>import_single_range (23 samples, 0.03%)</title><rect x="50.8" y="373" width="0.4" height="15.0" fill="rgb(247,126,46)" rx="2" ry="2" />
<text x="53.78" y="383.5" ></text>
</g>
<g >
<title>native_write_msr (469 samples, 0.67%)</title><rect x="1118.4" y="373" width="7.8" height="15.0" fill="rgb(241,158,40)" rx="2" ry="2" />
<text x="1121.39" y="383.5" ></text>
</g>
<g >
<title>AcquireExecutorLocks (174 samples, 0.25%)</title><rect x="419.7" y="437" width="2.9" height="15.0" fill="rgb(142,170,50)" rx="2" ry="2" />
<text x="422.68" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (14 samples, 0.02%)</title><rect x="540.9" y="389" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="543.89" y="399.5" ></text>
</g>
<g >
<title>__fget_light (114 samples, 0.16%)</title><rect x="921.1" y="309" width="1.9" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="924.13" y="319.5" ></text>
</g>
<g >
<title>try_to_wake_up (133 samples, 0.19%)</title><rect x="299.5" y="165" width="2.2" height="15.0" fill="rgb(236,158,34)" rx="2" ry="2" />
<text x="302.48" y="175.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (47 samples, 0.07%)</title><rect x="1155.8" y="405" width="0.8" height="15.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text x="1158.80" y="415.5" ></text>
</g>
<g >
<title>PinBuffer (159 samples, 0.23%)</title><rect x="378.0" y="309" width="2.7" height="15.0" fill="rgb(121,61,187)" rx="2" ry="2" />
<text x="381.03" y="319.5" ></text>
</g>
<g >
<title>find_first_bit (7 samples, 0.01%)</title><rect x="1045.2" y="437" width="0.1" height="15.0" fill="rgb(236,177,34)" rx="2" ry="2" />
<text x="1048.20" y="447.5" ></text>
</g>
<g >
<title>AllocSetDelete (134 samples, 0.19%)</title><rect x="735.2" y="341" width="2.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="738.20" y="351.5" ></text>
</g>
<g >
<title>schedule_idle (1,582 samples, 2.25%)</title><rect x="1053.6" y="485" width="26.5" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="1056.58" y="495.5" >s..</text>
</g>
<g >
<title>heapam_index_fetch_tuple (798 samples, 1.13%)</title><rect x="490.6" y="341" width="13.4" height="15.0" fill="rgb(59,595463,9518714)" rx="2" ry="2" />
<text x="493.62" y="351.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (8 samples, 0.01%)</title><rect x="302.1" y="357" width="0.1" height="15.0" fill="rgb(236,167,34)" rx="2" ry="2" />
<text x="305.09" y="367.5" ></text>
</g>
<g >
<title>pg_proc_aclmask (25 samples, 0.04%)</title><rect x="584.7" y="325" width="0.4" height="15.0" fill="rgb(78,50,183)" rx="2" ry="2" />
<text x="587.69" y="335.5" ></text>
</g>
<g >
<title>skb_release_head_state (540 samples, 0.77%)</title><rect x="904.5" y="245" width="9.1" height="15.0" fill="rgb(245,143,45)" rx="2" ry="2" />
<text x="907.51" y="255.5" ></text>
</g>
<g >
<title>__write_nocancel (46 samples, 0.07%)</title><rect x="12.1" y="533" width="0.7" height="15.0" fill="rgb(236,119,34)" rx="2" ry="2" />
<text x="15.08" y="543.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (15 samples, 0.02%)</title><rect x="367.9" y="325" width="0.3" height="15.0" fill="rgb(145,11509185,31898427440)" rx="2" ry="2" />
<text x="370.94" y="335.5" ></text>
</g>
<g >
<title>EndCommand (35 samples, 0.05%)</title><rect x="414.3" y="453" width="0.6" height="15.0" fill="rgb(135,75,3645623)" rx="2" ry="2" />
<text x="417.32" y="463.5" ></text>
</g>
<g >
<title>BufTableLookup (22 samples, 0.03%)</title><rect x="359.1" y="293" width="0.4" height="15.0" fill="rgb(121,61,64)" rx="2" ry="2" />
<text x="362.11" y="303.5" ></text>
</g>
<g >
<title>scheduler_ipi (209 samples, 0.30%)</title><rect x="1024.7" y="389" width="3.5" height="15.0" fill="rgb(237,164,36)" rx="2" ry="2" />
<text x="1027.68" y="399.5" ></text>
</g>
<g >
<title>__kmalloc_reserve.isra.40 (6 samples, 0.01%)</title><rect x="298.4" y="245" width="0.1" height="15.0" fill="rgb(225,119,22)" rx="2" ry="2" />
<text x="301.41" y="255.5" ></text>
</g>
<g >
<title>[unknown] (160 samples, 0.23%)</title><rect x="387.4" y="517" width="2.7" height="15.0" fill="rgb(242,180,40)" rx="2" ry="2" />
<text x="390.38" y="527.5" ></text>
</g>
<g >
<title>__schedule (96 samples, 0.14%)</title><rect x="307.1" y="341" width="1.6" height="15.0" fill="rgb(237,132,35)" rx="2" ry="2" />
<text x="310.05" y="351.5" ></text>
</g>
<g >
<title>sys_sendto (32 samples, 0.05%)</title><rect x="694.1" y="357" width="0.6" height="15.0" fill="rgb(243,167,42)" rx="2" ry="2" />
<text x="697.13" y="367.5" ></text>
</g>
<g >
<title>place_entity (6 samples, 0.01%)</title><rect x="674.2" y="117" width="0.1" height="15.0" fill="rgb(240,165,38)" rx="2" ry="2" />
<text x="677.23" y="127.5" ></text>
</g>
<g >
<title>pq_recvbuf (8,253 samples, 11.72%)</title><rect x="801.7" y="437" width="138.2" height="15.0" fill="rgb(88,173,191)" rx="2" ry="2" />
<text x="804.67" y="447.5" >pq_recvbuf</text>
</g>
<g >
<title>AllocSetAlloc (9 samples, 0.01%)</title><rect x="569.8" y="309" width="0.1" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="572.79" y="319.5" ></text>
</g>
<g >
<title>palloc0 (30 samples, 0.04%)</title><rect x="951.9" y="437" width="0.5" height="15.0" fill="rgb(3537,90,177)" rx="2" ry="2" />
<text x="954.88" y="447.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (31 samples, 0.04%)</title><rect x="408.3" y="437" width="0.5" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="411.25" y="447.5" ></text>
</g>
<g >
<title>free (16 samples, 0.02%)</title><rect x="31.9" y="485" width="0.3" height="15.0" fill="rgb(246,177,46)" rx="2" ry="2" />
<text x="34.88" y="495.5" ></text>
</g>
<g >
<title>__pthread_disable_asynccancel (35 samples, 0.05%)</title><rect x="37.2" y="437" width="0.6" height="15.0" fill="rgb(236,141,34)" rx="2" ry="2" />
<text x="40.18" y="447.5" ></text>
</g>
<g >
<title>palloc (6 samples, 0.01%)</title><rect x="613.0" y="405" width="0.1" height="15.0" fill="rgb(3537,90,-354911973014429)" rx="2" ry="2" />
<text x="615.99" y="415.5" ></text>
</g>
<g >
<title>sched_clock (55 samples, 0.08%)</title><rect x="263.0" y="309" width="1.0" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="266.04" y="319.5" ></text>
</g>
<g >
<title>_copy_to_iter (143 samples, 0.20%)</title><rect x="918.4" y="245" width="2.4" height="15.0" fill="rgb(240,180,38)" rx="2" ry="2" />
<text x="921.43" y="255.5" ></text>
</g>
<g >
<title>PreCommit_Notify (57 samples, 0.08%)</title><rect x="727.7" y="405" width="0.9" height="15.0" fill="rgb(79,54,192)" rx="2" ry="2" />
<text x="730.69" y="415.5" ></text>
</g>
<g >
<title>ExecReScanIndexScan (420 samples, 0.60%)</title><rect x="463.6" y="373" width="7.0" height="15.0" fill="rgb(81,138,93)" rx="2" ry="2" />
<text x="466.56" y="383.5" ></text>
</g>
<g >
<title>swapper (12,703 samples, 18.04%)</title><rect x="976.5" y="565" width="212.8" height="15.0" fill="rgb(243,141,41)" rx="2" ry="2" />
<text x="979.47" y="575.5" >swapper</text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (21 samples, 0.03%)</title><rect x="663.4" y="149" width="0.4" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="666.40" y="159.5" ></text>
</g>
<g >
<title>tick_nohz_restart_sched_tick (98 samples, 0.14%)</title><rect x="1187.3" y="421" width="1.6" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="1190.25" y="431.5" ></text>
</g>
<g >
<title>timerqueue_add (77 samples, 0.11%)</title><rect x="1161.0" y="421" width="1.3" height="15.0" fill="rgb(253,148,53)" rx="2" ry="2" />
<text x="1164.01" y="431.5" ></text>
</g>
<g >
<title>MemoryContextDelete (15 samples, 0.02%)</title><rect x="522.6" y="389" width="0.2" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="525.59" y="399.5" ></text>
</g>
<g >
<title>unix_stream_recvmsg (135 samples, 0.19%)</title><rect x="289.6" y="341" width="2.3" height="15.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text x="292.63" y="351.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (75 samples, 0.11%)</title><rect x="271.5" y="437" width="1.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="274.53" y="447.5" ></text>
</g>
<g >
<title>get_next_timer_interrupt (824 samples, 1.17%)</title><rect x="1092.6" y="437" width="13.8" height="15.0" fill="rgb(236,170,34)" rx="2" ry="2" />
<text x="1095.64" y="447.5" ></text>
</g>
<g >
<title>security_socket_recvmsg (16 samples, 0.02%)</title><rect x="289.3" y="341" width="0.3" height="15.0" fill="rgb(243,170,42)" rx="2" ry="2" />
<text x="292.33" y="351.5" ></text>
</g>
<g >
<title>sock_wfree (41 samples, 0.06%)</title><rect x="290.5" y="245" width="0.7" height="15.0" fill="rgb(246,175,46)" rx="2" ry="2" />
<text x="293.53" y="255.5" ></text>
</g>
<g >
<title>__errno_location (21 samples, 0.03%)</title><rect x="35.1" y="453" width="0.4" height="15.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text x="38.15" y="463.5" ></text>
</g>
<g >
<title>IsInParallelMode (11 samples, 0.02%)</title><rect x="613.6" y="421" width="0.2" height="15.0" fill="rgb(71,807901,152)" rx="2" ry="2" />
<text x="616.59" y="431.5" ></text>
</g>
<g >
<title>printtup_shutdown (92 samples, 0.13%)</title><rect x="521.4" y="405" width="1.5" height="15.0" fill="rgb(53,177,194)" rx="2" ry="2" />
<text x="524.38" y="415.5" ></text>
</g>
<g >
<title>[unknown] (157 samples, 0.22%)</title><rect x="228.3" y="485" width="2.6" height="15.0" fill="rgb(242,180,40)" rx="2" ry="2" />
<text x="231.25" y="495.5" ></text>
</g>
<g >
<title>GetCurrentTransactionNestLevel (23 samples, 0.03%)</title><rect x="754.1" y="373" width="0.4" height="15.0" fill="rgb(71,807901,135)" rx="2" ry="2" />
<text x="757.11" y="383.5" ></text>
</g>
<g >
<title>AllocSetReset (27 samples, 0.04%)</title><rect x="514.4" y="373" width="0.5" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="517.41" y="383.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,846 samples, 5.46%)</title><rect x="127.4" y="405" width="64.4" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" />
<text x="130.35" y="415.5" >entry_S..</text>
</g>
<g >
<title>sys_recvfrom (34 samples, 0.05%)</title><rect x="926.9" y="373" width="0.6" height="15.0" fill="rgb(234,167,31)" rx="2" ry="2" />
<text x="929.91" y="383.5" ></text>
</g>
<g >
<title>__do_softirq (9 samples, 0.01%)</title><rect x="1028.0" y="357" width="0.2" height="15.0" fill="rgb(239,141,37)" rx="2" ry="2" />
<text x="1031.01" y="367.5" ></text>
</g>
<g >
<title>find_busiest_group (21 samples, 0.03%)</title><rect x="1181.3" y="245" width="0.4" height="15.0" fill="rgb(241,177,40)" rx="2" ry="2" />
<text x="1184.32" y="255.5" ></text>
</g>
<g >
<title>LWLockAcquire (25 samples, 0.04%)</title><rect x="491.7" y="325" width="0.5" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="494.74" y="335.5" ></text>
</g>
<g >
<title>ReleaseCatCache (12 samples, 0.02%)</title><rect x="591.8" y="357" width="0.2" height="15.0" fill="rgb(142,62,202)" rx="2" ry="2" />
<text x="594.81" y="367.5" ></text>
</g>
<g >
<title>ResourceOwnerEnlargeTupleDescs (11 samples, 0.02%)</title><rect x="598.2" y="325" width="0.2" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="601.24" y="335.5" ></text>
</g>
<g >
<title>selinux_socket_getpeersec_dgram (24 samples, 0.03%)</title><rect x="141.7" y="309" width="0.4" height="15.0" fill="rgb(225,179,22)" rx="2" ry="2" />
<text x="144.68" y="319.5" ></text>
</g>
<g >
<title>set_cpu_sd_state_idle (37 samples, 0.05%)</title><rect x="1136.3" y="469" width="0.6" height="15.0" fill="rgb(240,154,39)" rx="2" ry="2" />
<text x="1139.32" y="479.5" ></text>
</g>
<g >
<title>exprCollation (7 samples, 0.01%)</title><rect x="595.4" y="357" width="0.1" height="15.0" fill="rgb(91,136,95)" rx="2" ry="2" />
<text x="598.36" y="367.5" ></text>
</g>
<g >
<title>AtEOXact_Enum (18 samples, 0.03%)</title><rect x="720.0" y="405" width="0.3" height="15.0" fill="rgb(78,159,56)" rx="2" ry="2" />
<text x="723.00" y="415.5" ></text>
</g>
<g >
<title>__do_softirq (14 samples, 0.02%)</title><rect x="1139.3" y="421" width="0.2" height="15.0" fill="rgb(239,141,37)" rx="2" ry="2" />
<text x="1142.30" y="431.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (59 samples, 0.08%)</title><rect x="707.6" y="437" width="1.0" height="15.0" fill="rgb(140,223,4617001)" rx="2" ry="2" />
<text x="710.64" y="447.5" ></text>
</g>
<g >
<title>__x86_indirect_thunk_r14 (8 samples, 0.01%)</title><rect x="822.8" y="309" width="0.2" height="15.0" fill="rgb(241,154,40)" rx="2" ry="2" />
<text x="825.83" y="319.5" ></text>
</g>
<g >
<title>native_write_msr (248 samples, 0.35%)</title><rect x="680.2" y="69" width="4.1" height="15.0" fill="rgb(241,158,40)" rx="2" ry="2" />
<text x="683.16" y="79.5" ></text>
</g>
<g >
<title>ReleaseCatCache (35 samples, 0.05%)</title><rect x="700.8" y="453" width="0.6" height="15.0" fill="rgb(142,62,202)" rx="2" ry="2" />
<text x="703.82" y="463.5" ></text>
</g>
<g >
<title>__list_del_entry_valid (10 samples, 0.01%)</title><rect x="836.2" y="277" width="0.1" height="15.0" fill="rgb(248,154,47)" rx="2" ry="2" />
<text x="839.18" y="287.5" ></text>
</g>
<g >
<title>dequeue_task_fair (15 samples, 0.02%)</title><rect x="852.6" y="245" width="0.3" height="15.0" fill="rgb(240,203,39)" rx="2" ry="2" />
<text x="855.60" y="255.5" ></text>
</g>
<g >
<title>AtEOXact_on_commit_actions (13 samples, 0.02%)</title><rect x="727.0" y="405" width="0.3" height="15.0" fill="rgb(79,220,56)" rx="2" ry="2" />
<text x="730.04" y="415.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (175 samples, 0.25%)</title><rect x="299.0" y="261" width="3.0" height="15.0" fill="rgb(240,119,39)" rx="2" ry="2" />
<text x="302.03" y="271.5" ></text>
</g>
<g >
<title>path_put (9 samples, 0.01%)</title><rect x="692.5" y="309" width="0.1" height="15.0" fill="rgb(234,142,31)" rx="2" ry="2" />
<text x="695.47" y="319.5" ></text>
</g>
<g >
<title>default_wake_function (1,797 samples, 2.55%)</title><rect x="657.8" y="197" width="30.1" height="15.0" fill="rgb(247,200,46)" rx="2" ry="2" />
<text x="660.77" y="207.5" >de..</text>
</g>
<g >
<title>ctx_resched (8 samples, 0.01%)</title><rect x="1135.7" y="357" width="0.2" height="15.0" fill="rgb(247,127,46)" rx="2" ry="2" />
<text x="1138.75" y="367.5" ></text>
</g>
<g >
<title>dispatch_compare_ptr (73 samples, 0.10%)</title><rect x="469.2" y="277" width="1.2" height="15.0" fill="rgb(81,83,82)" rx="2" ry="2" />
<text x="472.19" y="287.5" ></text>
</g>
<g >
<title>iomap_write_actor (42 samples, 0.06%)</title><rect x="12.1" y="373" width="0.7" height="15.0" fill="rgb(241,181,39)" rx="2" ry="2" />
<text x="15.13" y="383.5" ></text>
</g>
<g >
<title>place_entity (41 samples, 0.06%)</title><rect x="172.3" y="101" width="0.7" height="15.0" fill="rgb(240,165,38)" rx="2" ry="2" />
<text x="175.31" y="111.5" ></text>
</g>
<g >
<title>pgstat_initstats (9 samples, 0.01%)</title><rect x="611.6" y="357" width="0.1" height="15.0" fill="rgb(106,166,185)" rx="2" ry="2" />
<text x="614.56" y="367.5" ></text>
</g>
<g >
<title>tag_hash (17 samples, 0.02%)</title><rect x="497.4" y="293" width="0.3" height="15.0" fill="rgb(147,107,232)" rx="2" ry="2" />
<text x="500.44" y="303.5" ></text>
</g>
<g >
<title>hash_any (10 samples, 0.01%)</title><rect x="409.9" y="389" width="0.1" height="15.0" fill="rgb(147,107,143)" rx="2" ry="2" />
<text x="412.88" y="399.5" ></text>
</g>
<g >
<title>[unknown] (403 samples, 0.57%)</title><rect x="15.0" y="549" width="6.8" height="15.0" fill="rgb(242,180,40)" rx="2" ry="2" />
<text x="18.01" y="559.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetLock (28 samples, 0.04%)</title><rect x="775.0" y="357" width="0.5" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="778.02" y="367.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBuffer (8 samples, 0.01%)</title><rect x="509.7" y="341" width="0.2" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="512.74" y="351.5" ></text>
</g>
<g >
<title>__errno_location (41 samples, 0.06%)</title><rect x="620.5" y="373" width="0.7" height="15.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text x="623.53" y="383.5" ></text>
</g>
<g >
<title>ResourceArrayRemove (6 samples, 0.01%)</title><rect x="572.0" y="341" width="0.1" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="575.00" y="351.5" ></text>
</g>
<g >
<title>lookupVariable (147 samples, 0.21%)</title><rect x="212.2" y="421" width="2.5" height="15.0" fill="rgb(208,154,164)" rx="2" ry="2" />
<text x="215.20" y="431.5" ></text>
</g>
<g >
<title>bsearch (38 samples, 0.05%)</title><rect x="215.1" y="469" width="0.7" height="15.0" fill="rgb(243,124,42)" rx="2" ry="2" />
<text x="218.12" y="479.5" ></text>
</g>
<g >
<title>MemoryContextAllocZeroAligned (54 samples, 0.08%)</title><rect x="555.2" y="357" width="0.9" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="558.16" y="367.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (19 samples, 0.03%)</title><rect x="345.9" y="357" width="0.4" height="15.0" fill="rgb(121,61,63)" rx="2" ry="2" />
<text x="348.94" y="367.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (12 samples, 0.02%)</title><rect x="689.7" y="213" width="0.2" height="15.0" fill="rgb(236,112,34)" rx="2" ry="2" />
<text x="692.72" y="223.5" ></text>
</g>
<g >
<title>SIGetDataEntries (13 samples, 0.02%)</title><rect x="431.8" y="357" width="0.2" height="15.0" fill="rgb(126,199,223)" rx="2" ry="2" />
<text x="434.79" y="367.5" ></text>
</g>
<g >
<title>AtEOXact_SPI (38 samples, 0.05%)</title><rect x="725.9" y="405" width="0.6" height="15.0" fill="rgb(81,205,56)" rx="2" ry="2" />
<text x="728.86" y="415.5" ></text>
</g>
<g >
<title>x2apic_send_IPI (7 samples, 0.01%)</title><rect x="182.6" y="101" width="0.1" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" />
<text x="185.58" y="111.5" ></text>
</g>
<g >
<title>__strncmp_sse42 (39 samples, 0.06%)</title><rect x="418.0" y="421" width="0.6" height="15.0" fill="rgb(242,132,41)" rx="2" ry="2" />
<text x="420.99" y="431.5" ></text>
</g>
<g >
<title>SetRemoteDestReceiverParams (9 samples, 0.01%)</title><rect x="708.6" y="453" width="0.2" height="15.0" fill="rgb(53,177,221)" rx="2" ry="2" />
<text x="711.62" y="463.5" ></text>
</g>
<g >
<title>__remove_hrtimer (156 samples, 0.22%)</title><rect x="1151.4" y="421" width="2.6" height="15.0" fill="rgb(245,135,44)" rx="2" ry="2" />
<text x="1154.41" y="431.5" ></text>
</g>
<g >
<title>check_stack_depth (6 samples, 0.01%)</title><rect x="561.6" y="309" width="0.1" height="15.0" fill="rgb(135,173,68)" rx="2" ry="2" />
<text x="564.60" y="319.5" ></text>
</g>
<g >
<title>skb_free_head (73 samples, 0.10%)</title><rect x="62.0" y="277" width="1.2" height="15.0" fill="rgb(241,143,40)" rx="2" ry="2" />
<text x="64.99" y="287.5" ></text>
</g>
<g >
<title>internal_putbytes (80 samples, 0.11%)</title><rect x="957.1" y="437" width="1.3" height="15.0" fill="rgb(88,173,151)" rx="2" ry="2" />
<text x="960.05" y="447.5" ></text>
</g>
<g >
<title>sock_has_perm (94 samples, 0.13%)</title><rect x="633.0" y="261" width="1.6" height="15.0" fill="rgb(231,175,29)" rx="2" ry="2" />
<text x="636.02" y="271.5" ></text>
</g>
<g >
<title>AllocSetAlloc (19 samples, 0.03%)</title><rect x="523.9" y="357" width="0.3" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="526.91" y="367.5" ></text>
</g>
<g >
<title>sock_def_readable (10 samples, 0.01%)</title><rect x="137.5" y="325" width="0.2" height="15.0" fill="rgb(241,175,40)" rx="2" ry="2" />
<text x="140.51" y="335.5" ></text>
</g>
<g >
<title>tick_program_event (89 samples, 0.13%)</title><rect x="1151.9" y="405" width="1.5" height="15.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text x="1154.93" y="415.5" ></text>
</g>
<g >
<title>dopr.constprop.2 (12 samples, 0.02%)</title><rect x="304.9" y="453" width="0.2" height="15.0" fill="rgb(54790,201,82)" rx="2" ry="2" />
<text x="307.92" y="463.5" ></text>
</g>
<g >
<title>_copy_to_iter (115 samples, 0.16%)</title><rect x="75.2" y="293" width="1.9" height="15.0" fill="rgb(240,180,38)" rx="2" ry="2" />
<text x="78.18" y="303.5" ></text>
</g>
<g >
<title>__virt_addr_valid (9 samples, 0.01%)</title><rect x="75.0" y="277" width="0.2" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" />
<text x="78.01" y="287.5" ></text>
</g>
<g >
<title>hash_search (21 samples, 0.03%)</title><rect x="421.3" y="389" width="0.3" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="424.29" y="399.5" ></text>
</g>
<g >
<title>heapam_index_fetch_begin (46 samples, 0.07%)</title><rect x="480.4" y="357" width="0.8" height="15.0" fill="rgb(59,595463,145)" rx="2" ry="2" />
<text x="483.38" y="367.5" ></text>
</g>
<g >
<title>unroll_tree_refs (7 samples, 0.01%)</title><rect x="692.6" y="309" width="0.1" height="15.0" fill="rgb(239,154,37)" rx="2" ry="2" />
<text x="695.62" y="319.5" ></text>
</g>
<g >
<title>evaluateExpr (239 samples, 0.34%)</title><rect x="210.7" y="469" width="4.0" height="15.0" fill="rgb(208,154,89)" rx="2" ry="2" />
<text x="213.66" y="479.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (27 samples, 0.04%)</title><rect x="581.7" y="325" width="0.4" height="15.0" fill="rgb(81,84,95)" rx="2" ry="2" />
<text x="584.65" y="335.5" ></text>
</g>
<g >
<title>activate_task (22 samples, 0.03%)</title><rect x="300.2" y="133" width="0.4" height="15.0" fill="rgb(236,148,34)" rx="2" ry="2" />
<text x="303.18" y="143.5" ></text>
</g>
<g >
<title>ResourceArrayEnlarge.part.4 (27 samples, 0.04%)</title><rect x="364.8" y="293" width="0.5" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="367.82" y="303.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (46 samples, 0.07%)</title><rect x="970.3" y="373" width="0.8" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="973.29" y="383.5" ></text>
</g>
<g >
<title>native_load_tls (20 samples, 0.03%)</title><rect x="981.2" y="549" width="0.4" height="15.0" fill="rgb(230,158,28)" rx="2" ry="2" />
<text x="984.25" y="559.5" ></text>
</g>
<g >
<title>update_rq_clock (11 samples, 0.02%)</title><rect x="301.5" y="149" width="0.2" height="15.0" fill="rgb(240,150,39)" rx="2" ry="2" />
<text x="304.52" y="159.5" ></text>
</g>
<g >
<title>pq_getmsgend (26 samples, 0.04%)</title><rect x="946.4" y="453" width="0.4" height="15.0" fill="rgb(88,174,191)" rx="2" ry="2" />
<text x="949.40" y="463.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (49 samples, 0.07%)</title><rect x="410.7" y="437" width="0.9" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="413.73" y="447.5" ></text>
</g>
<g >
<title>pstrdup (18 samples, 0.03%)</title><rect x="952.5" y="453" width="0.3" height="15.0" fill="rgb(3537,90,2608855)" rx="2" ry="2" />
<text x="955.51" y="463.5" ></text>
</g>
<g >
<title>fput (14 samples, 0.02%)</title><rect x="243.2" y="405" width="0.2" height="15.0" fill="rgb(234,174,31)" rx="2" ry="2" />
<text x="246.18" y="415.5" ></text>
</g>
<g >
<title>__libc_recv (170 samples, 0.24%)</title><rect x="387.4" y="533" width="2.8" height="15.0" fill="rgb(237,154,35)" rx="2" ry="2" />
<text x="390.38" y="543.5" ></text>
</g>
<g >
<title>xfsaild/sdb (7 samples, 0.01%)</title><rect x="1189.9" y="565" width="0.1" height="15.0" fill="rgb(235,192,33)" rx="2" ry="2" />
<text x="1192.88" y="575.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (84 samples, 0.12%)</title><rect x="691.7" y="341" width="1.4" height="15.0" fill="rgb(236,167,34)" rx="2" ry="2" />
<text x="694.65" y="351.5" ></text>
</g>
<g >
<title>dostr (40 samples, 0.06%)</title><rect x="526.9" y="389" width="0.7" height="15.0" fill="rgb(54790,201,83)" rx="2" ry="2" />
<text x="529.95" y="399.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (15 samples, 0.02%)</title><rect x="607.5" y="309" width="0.3" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="610.54" y="319.5" ></text>
</g>
<g >
<title>malloc (185 samples, 0.26%)</title><rect x="485.0" y="277" width="3.1" height="15.0" fill="rgb(238,112,36)" rx="2" ry="2" />
<text x="487.96" y="287.5" ></text>
</g>
<g >
<title>pqResultAlloc (14 samples, 0.02%)</title><rect x="119.0" y="453" width="0.2" height="15.0" fill="rgb(241,90,192)" rx="2" ry="2" />
<text x="121.98" y="463.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (1,951 samples, 2.77%)</title><rect x="155.0" y="277" width="32.7" height="15.0" fill="rgb(240,119,39)" rx="2" ry="2" />
<text x="158.03" y="287.5" >__..</text>
</g>
<g >
<title>ReleaseAndReadBuffer (6 samples, 0.01%)</title><rect x="497.7" y="325" width="0.1" height="15.0" fill="rgb(121,61,202)" rx="2" ry="2" />
<text x="500.74" y="335.5" ></text>
</g>
<g >
<title>pq_getmsgstring (81 samples, 0.12%)</title><rect x="949.4" y="453" width="1.4" height="15.0" fill="rgb(88,174,191)" rx="2" ry="2" />
<text x="952.40" y="463.5" ></text>
</g>
<g >
<title>PopActiveSnapshot (59 samples, 0.08%)</title><rect x="454.9" y="453" width="1.0" height="15.0" fill="rgb(202,201,189)" rx="2" ry="2" />
<text x="457.90" y="463.5" ></text>
</g>
<g >
<title>irq_exit (41 samples, 0.06%)</title><rect x="1181.2" y="325" width="0.7" height="15.0" fill="rgb(237,153,36)" rx="2" ry="2" />
<text x="1184.19" y="335.5" ></text>
</g>
<g >
<title>__check_heap_object (19 samples, 0.03%)</title><rect x="918.0" y="229" width="0.4" height="15.0" fill="rgb(241,144,39)" rx="2" ry="2" />
<text x="921.05" y="239.5" ></text>
</g>
<g >
<title>iscsi_xmitworker (15 samples, 0.02%)</title><rect x="10.5" y="485" width="0.3" height="15.0" fill="rgb(238,155,36)" rx="2" ry="2" />
<text x="13.50" y="495.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (9 samples, 0.01%)</title><rect x="308.2" y="309" width="0.1" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="311.18" y="319.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (51 samples, 0.07%)</title><rect x="371.3" y="293" width="0.8" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="374.29" y="303.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (30 samples, 0.04%)</title><rect x="798.1" y="437" width="0.5" height="15.0" fill="rgb(242,151,40)" rx="2" ry="2" />
<text x="801.13" y="447.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (52 samples, 0.07%)</title><rect x="189.8" y="357" width="0.8" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="192.77" y="367.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (35 samples, 0.05%)</title><rect x="1011.9" y="373" width="0.6" height="15.0" fill="rgb(237,128,36)" rx="2" ry="2" />
<text x="1014.94" y="383.5" ></text>
</g>
<g >
<title>__remove_hrtimer (60 samples, 0.09%)</title><rect x="1185.1" y="373" width="1.0" height="15.0" fill="rgb(245,135,44)" rx="2" ry="2" />
<text x="1188.09" y="383.5" ></text>
</g>
<g >
<title>skb_release_head_state (47 samples, 0.07%)</title><rect x="290.4" y="277" width="0.8" height="15.0" fill="rgb(245,143,45)" rx="2" ry="2" />
<text x="293.43" y="287.5" ></text>
</g>
<g >
<title>palloc (37 samples, 0.05%)</title><rect x="792.0" y="437" width="0.7" height="15.0" fill="rgb(3537,90,-354911973014429)" rx="2" ry="2" />
<text x="795.05" y="447.5" ></text>
</g>
<g >
<title>dostr (8 samples, 0.01%)</title><rect x="529.0" y="373" width="0.1" height="15.0" fill="rgb(54790,201,83)" rx="2" ry="2" />
<text x="531.99" y="383.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (39 samples, 0.06%)</title><rect x="688.9" y="181" width="0.7" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" />
<text x="691.92" y="191.5" ></text>
</g>
<g >
<title>__pm_relax (13 samples, 0.02%)</title><rect x="822.6" y="309" width="0.2" height="15.0" fill="rgb(245,141,44)" rx="2" ry="2" />
<text x="825.61" y="319.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (1,636 samples, 2.32%)</title><rect x="1106.5" y="437" width="27.4" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="1109.49" y="447.5" >h..</text>
</g>
<g >
<title>native_write_msr (48 samples, 0.07%)</title><rect x="1152.5" y="373" width="0.8" height="15.0" fill="rgb(241,158,40)" rx="2" ry="2" />
<text x="1155.54" y="383.5" ></text>
</g>
<g >
<title>GetSnapshotData (291 samples, 0.41%)</title><rect x="534.9" y="421" width="4.8" height="15.0" fill="rgb(126,177,138)" rx="2" ry="2" />
<text x="537.87" y="431.5" ></text>
</g>
<g >
<title>ResourceArrayAdd (7 samples, 0.01%)</title><rect x="574.7" y="341" width="0.1" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="577.72" y="351.5" ></text>
</g>
<g >
<title>__strncpy_sse2_unaligned (90 samples, 0.13%)</title><rect x="593.5" y="325" width="1.5" height="15.0" fill="rgb(251,132,51)" rx="2" ry="2" />
<text x="596.47" y="335.5" ></text>
</g>
<g >
<title>skb_queue_tail (111 samples, 0.16%)</title><rect x="144.4" y="309" width="1.9" height="15.0" fill="rgb(233,143,31)" rx="2" ry="2" />
<text x="147.43" y="319.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (132 samples, 0.19%)</title><rect x="1013.2" y="405" width="2.2" height="15.0" fill="rgb(236,126,34)" rx="2" ry="2" />
<text x="1016.18" y="415.5" ></text>
</g>
<g >
<title>new_list (61 samples, 0.09%)</title><rect x="556.5" y="341" width="1.0" height="15.0" fill="rgb(91,1623125281314712,171)" rx="2" ry="2" />
<text x="559.49" y="351.5" ></text>
</g>
<g >
<title>cpu_startup_entry (566 samples, 0.80%)</title><rect x="1179.6" y="469" width="9.5" height="15.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text x="1182.58" y="479.5" ></text>
</g>
<g >
<title>GetCachedPlan (918 samples, 1.30%)</title><rect x="418.9" y="453" width="15.3" height="15.0" fill="rgb(142,170,134)" rx="2" ry="2" />
<text x="421.86" y="463.5" ></text>
</g>
<g >
<title>quiet_vmstat (34 samples, 0.05%)</title><rect x="1177.7" y="501" width="0.6" height="15.0" fill="rgb(229,141,26)" rx="2" ry="2" />
<text x="1180.72" y="511.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesVisibility (15 samples, 0.02%)</title><rect x="500.5" y="309" width="0.3" height="15.0" fill="rgb(59,599291,145)" rx="2" ry="2" />
<text x="503.52" y="319.5" ></text>
</g>
<g >
<title>__list_del_entry_valid (6 samples, 0.01%)</title><rect x="828.5" y="293" width="0.1" height="15.0" fill="rgb(248,154,47)" rx="2" ry="2" />
<text x="831.51" y="303.5" ></text>
</g>
<g >
<title>sys_sendto (28 samples, 0.04%)</title><rect x="191.3" y="389" width="0.5" height="15.0" fill="rgb(243,167,42)" rx="2" ry="2" />
<text x="194.31" y="399.5" ></text>
</g>
<g >
<title>MemoryContextSetParent (7 samples, 0.01%)</title><rect x="731.0" y="357" width="0.1" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="733.99" y="367.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetRelationRef (8 samples, 0.01%)</title><rect x="750.1" y="325" width="0.1" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="753.09" y="335.5" ></text>
</g>
<g >
<title>x86_64_start_reservations (566 samples, 0.80%)</title><rect x="1179.6" y="517" width="9.5" height="15.0" fill="rgb(244,205,43)" rx="2" ry="2" />
<text x="1182.58" y="527.5" ></text>
</g>
<g >
<title>perf_pmu_enable (132 samples, 0.19%)</title><rect x="1013.2" y="293" width="2.2" height="15.0" fill="rgb(241,184,40)" rx="2" ry="2" />
<text x="1016.18" y="303.5" ></text>
</g>
<g >
<title>_int_free (38 samples, 0.05%)</title><rect x="207.7" y="501" width="0.7" height="15.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text x="210.74" y="511.5" ></text>
</g>
<g >
<title>tts_buffer_heap_clear (59 samples, 0.08%)</title><rect x="508.9" y="373" width="1.0" height="15.0" fill="rgb(81,86,239)" rx="2" ry="2" />
<text x="511.89" y="383.5" ></text>
</g>
<g >
<title>sock_def_readable (15 samples, 0.02%)</title><rect x="635.3" y="293" width="0.2" height="15.0" fill="rgb(241,175,40)" rx="2" ry="2" />
<text x="638.25" y="303.5" ></text>
</g>
<g >
<title>__pollwait (11 samples, 0.02%)</title><rect x="308.9" y="373" width="0.2" height="15.0" fill="rgb(237,141,35)" rx="2" ry="2" />
<text x="311.91" y="383.5" ></text>
</g>
<g >
<title>pqParseInput3 (1,419 samples, 2.01%)</title><rect x="99.3" y="485" width="23.8" height="15.0" fill="rgb(241,91,191)" rx="2" ry="2" />
<text x="102.29" y="495.5" >p..</text>
</g>
<g >
<title>security_socket_sendmsg (122 samples, 0.17%)</title><rect x="632.8" y="293" width="2.1" height="15.0" fill="rgb(243,170,42)" rx="2" ry="2" />
<text x="635.81" y="303.5" ></text>
</g>
<g >
<title>AllocSetAlloc (11 samples, 0.02%)</title><rect x="534.0" y="405" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="537.03" y="415.5" ></text>
</g>
<g >
<title>fdarray__poll (7 samples, 0.01%)</title><rect x="11.8" y="549" width="0.2" height="15.0" fill="rgb(229,205,26)" rx="2" ry="2" />
<text x="14.84" y="559.5" ></text>
</g>
<g >
<title>ExecJustAssignScanVar (149 samples, 0.21%)</title><rect x="475.0" y="389" width="2.5" height="15.0" fill="rgb(81,83,92)" rx="2" ry="2" />
<text x="477.97" y="399.5" ></text>
</g>
<g >
<title>_raw_spin_lock (74 samples, 0.11%)</title><rect x="139.4" y="309" width="1.2" height="15.0" fill="rgb(240,166,39)" rx="2" ry="2" />
<text x="142.37" y="319.5" ></text>
</g>
<g >
<title>local_touch_nmi (16 samples, 0.02%)</title><rect x="1043.7" y="485" width="0.3" height="15.0" fill="rgb(233,151,31)" rx="2" ry="2" />
<text x="1046.73" y="495.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (95 samples, 0.13%)</title><rect x="967.3" y="389" width="1.6" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="970.31" y="399.5" ></text>
</g>
<g >
<title>__slab_free (38 samples, 0.05%)</title><rect x="60.1" y="277" width="0.7" height="15.0" fill="rgb(246,132,46)" rx="2" ry="2" />
<text x="63.15" y="287.5" ></text>
</g>
<g >
<title>check_spread.isra.40 (7 samples, 0.01%)</title><rect x="858.1" y="197" width="0.1" height="15.0" fill="rgb(225,116,22)" rx="2" ry="2" />
<text x="861.11" y="207.5" ></text>
</g>
<g >
<title>do_idle (14 samples, 0.02%)</title><rect x="1179.3" y="517" width="0.3" height="15.0" fill="rgb(240,189,39)" rx="2" ry="2" />
<text x="1182.34" y="527.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (8 samples, 0.01%)</title><rect x="1135.7" y="309" width="0.2" height="15.0" fill="rgb(230,164,28)" rx="2" ry="2" />
<text x="1138.75" y="319.5" ></text>
</g>
<g >
<title>scheduler_tick (8 samples, 0.01%)</title><rect x="1012.4" y="309" width="0.1" height="15.0" fill="rgb(236,164,34)" rx="2" ry="2" />
<text x="1015.36" y="319.5" ></text>
</g>
<g >
<title>FetchPreparedStatement (215 samples, 0.31%)</title><rect x="415.2" y="453" width="3.6" height="15.0" fill="rgb(79,175,96)" rx="2" ry="2" />
<text x="418.16" y="463.5" ></text>
</g>
<g >
<title>reschedule_interrupt (763 samples, 1.08%)</title><rect x="1015.4" y="421" width="12.8" height="15.0" fill="rgb(236,165,34)" rx="2" ry="2" />
<text x="1018.39" y="431.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.01%)</title><rect x="976.4" y="549" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" />
<text x="979.35" y="559.5" ></text>
</g>
<g >
<title>enter_lazy_tlb (142 samples, 0.20%)</title><rect x="256.7" y="341" width="2.4" height="15.0" fill="rgb(225,196,22)" rx="2" ry="2" />
<text x="259.69" y="351.5" ></text>
</g>
<g >
<title>FetchStatementTargetList (6 samples, 0.01%)</title><rect x="418.8" y="453" width="0.1" height="15.0" fill="rgb(135,175,96)" rx="2" ry="2" />
<text x="421.76" y="463.5" ></text>
</g>
<g >
<title>unix_stream_sendmsg (281 samples, 0.40%)</title><rect x="297.3" y="309" width="4.7" height="15.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text x="300.30" y="319.5" ></text>
</g>
<g >
<title>__schedule (1,489 samples, 2.11%)</title><rect x="1054.3" y="469" width="24.9" height="15.0" fill="rgb(237,132,35)" rx="2" ry="2" />
<text x="1057.27" y="479.5" >_..</text>
</g>
<g >
<title>GetPrivateRefCountEntry (6 samples, 0.01%)</title><rect x="364.6" y="277" width="0.1" height="15.0" fill="rgb(121,61,137)" rx="2" ry="2" />
<text x="367.61" y="287.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (61 samples, 0.09%)</title><rect x="1159.8" y="437" width="1.0" height="15.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text x="1162.76" y="447.5" ></text>
</g>
<g >
<title>hash_search (17 samples, 0.02%)</title><rect x="751.8" y="373" width="0.3" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="754.77" y="383.5" ></text>
</g>
<g >
<title>PQsendQueryStart (24 samples, 0.03%)</title><rect x="206.0" y="485" width="0.4" height="15.0" fill="rgb(241,90,192)" rx="2" ry="2" />
<text x="209.00" y="495.5" ></text>
</g>
<g >
<title>poll_schedule_timeout (241 samples, 0.34%)</title><rect x="310.7" y="485" width="4.1" height="15.0" fill="rgb(234,208,32)" rx="2" ry="2" />
<text x="313.72" y="495.5" ></text>
</g>
<g >
<title>default_wake_function (1,523 samples, 2.16%)</title><rect x="159.7" y="197" width="25.5" height="15.0" fill="rgb(247,200,46)" rx="2" ry="2" />
<text x="162.67" y="207.5" >d..</text>
</g>
<g >
<title>__wake_up_sync_key (177 samples, 0.25%)</title><rect x="299.0" y="277" width="3.0" height="15.0" fill="rgb(243,119,42)" rx="2" ry="2" />
<text x="302.03" y="287.5" ></text>
</g>
<g >
<title>sys_write (45 samples, 0.06%)</title><rect x="12.1" y="485" width="0.7" height="15.0" fill="rgb(240,167,38)" rx="2" ry="2" />
<text x="15.08" y="495.5" ></text>
</g>
<g >
<title>tick_nohz_idle_exit (2,416 samples, 3.43%)</title><rect x="1137.0" y="485" width="40.5" height="15.0" fill="rgb(237,142,36)" rx="2" ry="2" />
<text x="1140.00" y="495.5" >tic..</text>
</g>
<g >
<title>ResourceOwnerEnlargeRelationRefs (7 samples, 0.01%)</title><rect x="481.6" y="325" width="0.1" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="484.62" y="335.5" ></text>
</g>
<g >
<title>AtEOXact_LargeObject (28 samples, 0.04%)</title><rect x="722.4" y="405" width="0.4" height="15.0" fill="rgb(88,56,56)" rx="2" ry="2" />
<text x="725.38" y="415.5" ></text>
</g>
<g >
<title>ktime_get (83 samples, 0.12%)</title><rect x="1115.0" y="373" width="1.4" height="15.0" fill="rgb(237,114,35)" rx="2" ry="2" />
<text x="1117.97" y="383.5" ></text>
</g>
<g >
<title>_int_malloc (41 samples, 0.06%)</title><rect x="489.2" y="277" width="0.7" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="492.20" y="287.5" ></text>
</g>
<g >
<title>sched_clock_idle_sleep_event (111 samples, 0.16%)</title><rect x="1087.8" y="453" width="1.9" height="15.0" fill="rgb(241,164,39)" rx="2" ry="2" />
<text x="1090.81" y="463.5" ></text>
</g>
<g >
<title>selinux_socket_sendmsg (100 samples, 0.14%)</title><rect x="632.9" y="277" width="1.7" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="635.92" y="287.5" ></text>
</g>
<g >
<title>skb_queue_tail (12 samples, 0.02%)</title><rect x="298.1" y="293" width="0.2" height="15.0" fill="rgb(233,143,31)" rx="2" ry="2" />
<text x="301.05" y="303.5" ></text>
</g>
<g >
<title>__block_write_begin_int (9 samples, 0.01%)</title><rect x="12.1" y="341" width="0.2" height="15.0" fill="rgb(238,148,36)" rx="2" ry="2" />
<text x="15.14" y="351.5" ></text>
</g>
<g >
<title>pq_endmessage (99 samples, 0.14%)</title><rect x="617.0" y="437" width="1.7" height="15.0" fill="rgb(88,174,190)" rx="2" ry="2" />
<text x="620.01" y="447.5" ></text>
</g>
<g >
<title>initStringInfo (114 samples, 0.16%)</title><rect x="789.8" y="453" width="1.9" height="15.0" fill="rgb(86,215,148)" rx="2" ry="2" />
<text x="792.77" y="463.5" ></text>
</g>
<g >
<title>strlen@plt (7 samples, 0.01%)</title><rect x="950.6" y="437" width="0.2" height="15.0" fill="rgb(231,140,29)" rx="2" ry="2" />
<text x="953.64" y="447.5" ></text>
</g>
<g >
<title>syscall_trace_enter (39 samples, 0.06%)</title><rect x="863.3" y="341" width="0.6" height="15.0" fill="rgb(240,167,38)" rx="2" ry="2" />
<text x="866.26" y="351.5" ></text>
</g>
<g >
<title>putVariableValue (108 samples, 0.15%)</title><rect x="282.6" y="501" width="1.8" height="15.0" fill="rgb(208,154,196)" rx="2" ry="2" />
<text x="285.57" y="511.5" ></text>
</g>
<g >
<title>AllocSetAlloc (27 samples, 0.04%)</title><rect x="513.8" y="341" width="0.4" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="516.78" y="351.5" ></text>
</g>
<g >
<title>_raw_spin_lock (8 samples, 0.01%)</title><rect x="299.6" y="149" width="0.1" height="15.0" fill="rgb(240,166,39)" rx="2" ry="2" />
<text x="302.58" y="159.5" ></text>
</g>
<g >
<title>find_first_bit (16 samples, 0.02%)</title><rect x="1044.9" y="453" width="0.2" height="15.0" fill="rgb(236,177,34)" rx="2" ry="2" />
<text x="1047.87" y="463.5" ></text>
</g>
<g >
<title>ExecInitExprSlots (39 samples, 0.06%)</title><rect x="570.0" y="357" width="0.7" height="15.0" fill="rgb(81,84,91)" rx="2" ry="2" />
<text x="573.02" y="367.5" ></text>
</g>
<g >
<title>index_beginscan_internal (521 samples, 0.74%)</title><rect x="481.2" y="357" width="8.7" height="15.0" fill="rgb(61,111,147)" rx="2" ry="2" />
<text x="484.16" y="367.5" ></text>
</g>
<g >
<title>MemoryContextAllocZeroAligned (52 samples, 0.07%)</title><rect x="604.2" y="389" width="0.9" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="607.21" y="399.5" ></text>
</g>
<g >
<title>update_load_avg (82 samples, 0.12%)</title><rect x="850.9" y="197" width="1.4" height="15.0" fill="rgb(240,150,38)" rx="2" ry="2" />
<text x="853.94" y="207.5" ></text>
</g>
<g >
<title>do_sys_poll (7 samples, 0.01%)</title><rect x="11.8" y="469" width="0.2" height="15.0" fill="rgb(229,189,26)" rx="2" ry="2" />
<text x="14.84" y="479.5" ></text>
</g>
<g >
<title>try_to_wake_up (1,746 samples, 2.48%)</title><rect x="658.5" y="181" width="29.3" height="15.0" fill="rgb(236,158,34)" rx="2" ry="2" />
<text x="661.51" y="191.5" >tr..</text>
</g>
<g >
<title>index_fetch_heap (809 samples, 1.15%)</title><rect x="490.4" y="357" width="13.6" height="15.0" fill="rgb(61,111,147)" rx="2" ry="2" />
<text x="493.44" y="367.5" ></text>
</g>
<g >
<title>schedule (1,121 samples, 1.59%)</title><rect x="841.9" y="277" width="18.8" height="15.0" fill="rgb(237,164,35)" rx="2" ry="2" />
<text x="844.93" y="287.5" ></text>
</g>
<g >
<title>activate_task (326 samples, 0.46%)</title><rect x="669.0" y="149" width="5.5" height="15.0" fill="rgb(236,148,34)" rx="2" ry="2" />
<text x="672.03" y="159.5" ></text>
</g>
<g >
<title>pq_getmsgint (153 samples, 0.22%)</title><rect x="946.8" y="453" width="2.6" height="15.0" fill="rgb(88,174,191)" rx="2" ry="2" />
<text x="949.83" y="463.5" ></text>
</g>
<g >
<title>_raw_spin_lock (76 samples, 0.11%)</title><rect x="58.5" y="325" width="1.3" height="15.0" fill="rgb(240,166,39)" rx="2" ry="2" />
<text x="61.49" y="335.5" ></text>
</g>
<g >
<title>perf_pmu_enable (12 samples, 0.02%)</title><rect x="689.7" y="85" width="0.2" height="15.0" fill="rgb(241,184,40)" rx="2" ry="2" />
<text x="692.72" y="95.5" ></text>
</g>
<g >
<title>ResourceOwnerRelease (9 samples, 0.01%)</title><rect x="761.4" y="405" width="0.2" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="764.42" y="415.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (108 samples, 0.15%)</title><rect x="72.3" y="309" width="1.8" height="15.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text x="75.28" y="319.5" ></text>
</g>
<g >
<title>CanPerformUndoActions (31 samples, 0.04%)</title><rect x="762.7" y="389" width="0.6" height="15.0" fill="rgb(71,807901,65)" rx="2" ry="2" />
<text x="765.74" y="399.5" ></text>
</g>
<g >
<title>IndexNext (3,654 samples, 5.19%)</title><rect x="323.9" y="453" width="61.2" height="15.0" fill="rgb(81,138,147)" rx="2" ry="2" />
<text x="326.91" y="463.5" >IndexN..</text>
</g>
<g >
<title>tick_check_broadcast_expired (35 samples, 0.05%)</title><rect x="1080.5" y="485" width="0.6" height="15.0" fill="rgb(248,142,47)" rx="2" ry="2" />
<text x="1083.47" y="495.5" ></text>
</g>
<g >
<title>AtEOXact_RelationCache (41 samples, 0.06%)</title><rect x="724.4" y="405" width="0.7" height="15.0" fill="rgb(142,187,56)" rx="2" ry="2" />
<text x="727.42" y="415.5" ></text>
</g>
<g >
<title>ExecEvalStepOp (11 samples, 0.02%)</title><rect x="474.8" y="357" width="0.2" height="15.0" fill="rgb(81,83,91)" rx="2" ry="2" />
<text x="477.79" y="367.5" ></text>
</g>
<g >
<title>ReleasePredicateLocks (35 samples, 0.05%)</title><rect x="780.5" y="389" width="0.6" height="15.0" fill="rgb(129,175,202)" rx="2" ry="2" />
<text x="783.52" y="399.5" ></text>
</g>
<g >
<title>ktime_get (10 samples, 0.01%)</title><rect x="1135.9" y="469" width="0.1" height="15.0" fill="rgb(237,114,35)" rx="2" ry="2" />
<text x="1138.88" y="479.5" ></text>
</g>
<g >
<title>check_stack_depth (24 samples, 0.03%)</title><rect x="612.2" y="405" width="0.4" height="15.0" fill="rgb(135,173,68)" rx="2" ry="2" />
<text x="615.21" y="415.5" ></text>
</g>
<g >
<title>__libc_recv (150 samples, 0.21%)</title><rect x="19.2" y="517" width="2.6" height="15.0" fill="rgb(237,154,35)" rx="2" ry="2" />
<text x="22.25" y="527.5" ></text>
</g>
<g >
<title>idle_cpu (10 samples, 0.01%)</title><rect x="666.4" y="149" width="0.2" height="15.0" fill="rgb(238,184,36)" rx="2" ry="2" />
<text x="669.38" y="159.5" ></text>
</g>
<g >
<title>appendBinaryPQExpBuffer (15 samples, 0.02%)</title><rect x="97.8" y="469" width="0.2" height="15.0" fill="rgb(241,174,54)" rx="2" ry="2" />
<text x="100.80" y="479.5" ></text>
</g>
<g >
<title>BufferGetLSNAtomic (33 samples, 0.05%)</title><rect x="342.5" y="357" width="0.5" height="15.0" fill="rgb(121,61,64)" rx="2" ry="2" />
<text x="345.47" y="367.5" ></text>
</g>
<g >
<title>bsearch (52 samples, 0.07%)</title><rect x="283.5" y="453" width="0.9" height="15.0" fill="rgb(243,124,42)" rx="2" ry="2" />
<text x="286.51" y="463.5" ></text>
</g>
<g >
<title>native_write_msr (132 samples, 0.19%)</title><rect x="1013.2" y="245" width="2.2" height="15.0" fill="rgb(241,158,40)" rx="2" ry="2" />
<text x="1016.18" y="255.5" ></text>
</g>
<g >
<title>PushActiveSnapshot (59 samples, 0.08%)</title><rect x="540.4" y="437" width="1.0" height="15.0" fill="rgb(202,201,196)" rx="2" ry="2" />
<text x="543.42" y="447.5" ></text>
</g>
<g >
<title>native_load_tls (8 samples, 0.01%)</title><rect x="975.7" y="549" width="0.2" height="15.0" fill="rgb(230,158,28)" rx="2" ry="2" />
<text x="978.73" y="559.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (18 samples, 0.03%)</title><rect x="290.9" y="213" width="0.3" height="15.0" fill="rgb(243,119,42)" rx="2" ry="2" />
<text x="293.92" y="223.5" ></text>
</g>
<g >
<title>SYSC_sendto (3,320 samples, 4.71%)</title><rect x="133.8" y="357" width="55.6" height="15.0" fill="rgb(243,165,42)" rx="2" ry="2" />
<text x="136.77" y="367.5" >SYSC_..</text>
</g>
<g >
<title>do_sys_poll (1,849 samples, 2.63%)</title><rect x="238.8" y="437" width="31.0" height="15.0" fill="rgb(229,189,26)" rx="2" ry="2" />
<text x="241.78" y="447.5" >do..</text>
</g>
<g >
<title>dopr_outch (23 samples, 0.03%)</title><rect x="528.6" y="373" width="0.4" height="15.0" fill="rgb(54790,201,82)" rx="2" ry="2" />
<text x="531.61" y="383.5" ></text>
</g>
<g >
<title>PreCommit_on_commit_actions (33 samples, 0.05%)</title><rect x="757.5" y="405" width="0.6" height="15.0" fill="rgb(79,220,192)" rx="2" ry="2" />
<text x="760.52" y="415.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (41 samples, 0.06%)</title><rect x="644.4" y="261" width="0.7" height="15.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text x="647.40" y="271.5" ></text>
</g>
<g >
<title>skb_release_all (542 samples, 0.77%)</title><rect x="60.8" y="309" width="9.1" height="15.0" fill="rgb(230,143,28)" rx="2" ry="2" />
<text x="63.80" y="319.5" ></text>
</g>
<g >
<title>AllocSetAlloc (23 samples, 0.03%)</title><rect x="412.4" y="405" width="0.4" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="415.38" y="415.5" ></text>
</g>
<g >
<title>path_put (7 samples, 0.01%)</title><rect x="272.7" y="421" width="0.1" height="15.0" fill="rgb(234,142,31)" rx="2" ry="2" />
<text x="275.65" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (9 samples, 0.01%)</title><rect x="598.8" y="325" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="601.81" y="335.5" ></text>
</g>
<g >
<title>__x2apic_send_IPI_dest.constprop.4 (17 samples, 0.02%)</title><rect x="177.9" y="85" width="0.2" height="15.0" fill="rgb(246,154,45)" rx="2" ry="2" />
<text x="180.85" y="95.5" ></text>
</g>
<g >
<title>_int_free (75 samples, 0.11%)</title><rect x="736.1" y="293" width="1.2" height="15.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text x="739.05" y="303.5" ></text>
</g>
<g >
<title>hash_any (21 samples, 0.03%)</title><rect x="365.6" y="277" width="0.4" height="15.0" fill="rgb(147,107,143)" rx="2" ry="2" />
<text x="368.63" y="287.5" ></text>
</g>
<g >
<title>__wake_up_common (1,938 samples, 2.75%)</title><rect x="655.6" y="229" width="32.5" height="15.0" fill="rgb(253,119,53)" rx="2" ry="2" />
<text x="658.61" y="239.5" >__..</text>
</g>
<g >
<title>__x2apic_send_IPI_dest.constprop.4 (28 samples, 0.04%)</title><rect x="178.5" y="69" width="0.5" height="15.0" fill="rgb(246,154,45)" rx="2" ry="2" />
<text x="181.54" y="79.5" ></text>
</g>
<g >
<title>__vfs_write (44 samples, 0.06%)</title><rect x="12.1" y="453" width="0.7" height="15.0" fill="rgb(240,122,38)" rx="2" ry="2" />
<text x="15.09" y="463.5" ></text>
</g>
<g >
<title>native_write_msr (31 samples, 0.04%)</title><rect x="1185.6" y="325" width="0.5" height="15.0" fill="rgb(241,158,40)" rx="2" ry="2" />
<text x="1188.56" y="335.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly.part.1 (30 samples, 0.04%)</title><rect x="730.3" y="357" width="0.5" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="733.32" y="367.5" ></text>
</g>
<g >
<title>UnpinBuffer.constprop.6 (31 samples, 0.04%)</title><rect x="337.6" y="357" width="0.5" height="15.0" fill="rgb(121,61,242)" rx="2" ry="2" />
<text x="340.60" y="367.5" ></text>
</g>
<g >
<title>get_last_attnums_walker (7 samples, 0.01%)</title><rect x="587.3" y="325" width="0.1" height="15.0" fill="rgb(81,84,136)" rx="2" ry="2" />
<text x="590.27" y="335.5" ></text>
</g>
<g >
<title>scheduler_tick (20 samples, 0.03%)</title><rect x="689.1" y="101" width="0.3" height="15.0" fill="rgb(236,164,34)" rx="2" ry="2" />
<text x="692.10" y="111.5" ></text>
</g>
<g >
<title>skb_release_all (739 samples, 1.05%)</title><rect x="901.3" y="261" width="12.4" height="15.0" fill="rgb(230,143,28)" rx="2" ry="2" />
<text x="904.31" y="271.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (8 samples, 0.01%)</title><rect x="186.6" y="261" width="0.2" height="15.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text x="189.63" y="271.5" ></text>
</g>
<g >
<title>update_ts_time_stats (7 samples, 0.01%)</title><rect x="1177.6" y="485" width="0.1" height="15.0" fill="rgb(239,150,37)" rx="2" ry="2" />
<text x="1180.60" y="495.5" ></text>
</g>
<g >
<title>index_getnext_slot (1,098 samples, 1.56%)</title><rect x="489.9" y="373" width="18.4" height="15.0" fill="rgb(61,111,147)" rx="2" ry="2" />
<text x="492.88" y="383.5" ></text>
</g>
<g >
<title>string_compare (6 samples, 0.01%)</title><rect x="418.6" y="421" width="0.1" height="15.0" fill="rgb(147,79,230)" rx="2" ry="2" />
<text x="421.64" y="431.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (33 samples, 0.05%)</title><rect x="302.3" y="389" width="0.6" height="15.0" fill="rgb(238,167,36)" rx="2" ry="2" />
<text x="305.33" y="399.5" ></text>
</g>
<g >
<title>pqPutMsgBytes (73 samples, 0.10%)</title><rect x="204.7" y="453" width="1.2" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="207.71" y="463.5" ></text>
</g>
<g >
<title>ExecCheckRTPerms (230 samples, 0.33%)</title><rect x="547.3" y="421" width="3.9" height="15.0" fill="rgb(81,84,90)" rx="2" ry="2" />
<text x="550.30" y="431.5" ></text>
</g>
<g >
<title>bsearch (193 samples, 0.27%)</title><rect x="467.2" y="293" width="3.2" height="15.0" fill="rgb(243,124,42)" rx="2" ry="2" />
<text x="470.18" y="303.5" ></text>
</g>
<g >
<title>PinBuffer (108 samples, 0.15%)</title><rect x="363.0" y="293" width="1.8" height="15.0" fill="rgb(121,61,187)" rx="2" ry="2" />
<text x="366.01" y="303.5" ></text>
</g>
<g >
<title>skb_unref.part.41 (12 samples, 0.02%)</title><rect x="70.1" y="309" width="0.2" height="15.0" fill="rgb(223,143,20)" rx="2" ry="2" />
<text x="73.12" y="319.5" ></text>
</g>
<g >
<title>irq_exit (16 samples, 0.02%)</title><rect x="1139.3" y="437" width="0.2" height="15.0" fill="rgb(237,153,36)" rx="2" ry="2" />
<text x="1142.27" y="447.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (92 samples, 0.13%)</title><rect x="1084.3" y="437" width="1.6" height="15.0" fill="rgb(244,130,43)" rx="2" ry="2" />
<text x="1087.34" y="447.5" ></text>
</g>
<g >
<title>pg_vsprintf (178 samples, 0.25%)</title><rect x="223.8" y="485" width="3.0" height="15.0" fill="rgb(54790,201,187)" rx="2" ry="2" />
<text x="226.78" y="495.5" ></text>
</g>
<g >
<title>pqPutMsgStart (9 samples, 0.01%)</title><rect x="303.1" y="453" width="0.2" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="306.12" y="463.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (96 samples, 0.14%)</title><rect x="688.3" y="229" width="1.6" height="15.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text x="691.33" y="239.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (63 samples, 0.09%)</title><rect x="1105.4" y="405" width="1.0" height="15.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text x="1108.39" y="415.5" ></text>
</g>
<g >
<title>__wake_up_locked (10 samples, 0.01%)</title><rect x="155.8" y="245" width="0.2" height="15.0" fill="rgb(245,119,44)" rx="2" ry="2" />
<text x="158.79" y="255.5" ></text>
</g>
<g >
<title>AllocSetAlloc (15 samples, 0.02%)</title><rect x="429.2" y="341" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="432.20" y="351.5" ></text>
</g>
<g >
<title>SYSC_sendto (3,646 samples, 5.18%)</title><rect x="630.5" y="325" width="61.1" height="15.0" fill="rgb(243,165,42)" rx="2" ry="2" />
<text x="633.53" y="335.5" >SYSC_s..</text>
</g>
<g >
<title>AcquirePlannerLocks (507 samples, 0.72%)</title><rect x="423.5" y="421" width="8.5" height="15.0" fill="rgb(142,170,50)" rx="2" ry="2" />
<text x="426.52" y="431.5" ></text>
</g>
<g >
<title>do_syscall_64 (205 samples, 0.29%)</title><rect x="289.0" y="405" width="3.4" height="15.0" fill="rgb(232,189,30)" rx="2" ry="2" />
<text x="291.99" y="415.5" ></text>
</g>
<g >
<title>get_hash_value (12 samples, 0.02%)</title><rect x="429.5" y="357" width="0.3" height="15.0" fill="rgb(147,79,136)" rx="2" ry="2" />
<text x="432.55" y="367.5" ></text>
</g>
<g >
<title>irq_work_needs_cpu (14 samples, 0.02%)</title><rect x="1133.9" y="437" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="1136.90" y="447.5" ></text>
</g>
<g >
<title>avc_has_perm (23 samples, 0.03%)</title><rect x="136.4" y="277" width="0.4" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="139.38" y="287.5" ></text>
</g>
<g >
<title>selinux_socket_sendmsg (7 samples, 0.01%)</title><rect x="297.2" y="293" width="0.1" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="300.18" y="303.5" ></text>
</g>
<g >
<title>heapam_index_fetch_reset (10 samples, 0.01%)</title><rect x="508.7" y="357" width="0.2" height="15.0" fill="rgb(59,595463,145)" rx="2" ry="2" />
<text x="511.72" y="367.5" ></text>
</g>
<g >
<title>IndexNext (1,934 samples, 2.75%)</title><rect x="477.5" y="389" width="32.4" height="15.0" fill="rgb(81,138,147)" rx="2" ry="2" />
<text x="480.47" y="399.5" >In..</text>
</g>
<g >
<title>_copy_from_iter (82 samples, 0.12%)</title><rect x="641.4" y="261" width="1.4" height="15.0" fill="rgb(240,180,38)" rx="2" ry="2" />
<text x="644.44" y="271.5" ></text>
</g>
<g >
<title>ExecComputeSlotInfo.isra.1 (19 samples, 0.03%)</title><rect x="559.5" y="325" width="0.3" height="15.0" fill="rgb(81,84,90)" rx="2" ry="2" />
<text x="562.50" y="335.5" ></text>
</g>
<g >
<title>pqGetc (22 samples, 0.03%)</title><rect x="97.2" y="469" width="0.4" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="100.23" y="479.5" ></text>
</g>
<g >
<title>event_function (8 samples, 0.01%)</title><rect x="1135.7" y="389" width="0.2" height="15.0" fill="rgb(247,165,46)" rx="2" ry="2" />
<text x="1138.75" y="399.5" ></text>
</g>
<g >
<title>do_syscall_64 (7 samples, 0.01%)</title><rect x="1189.4" y="469" width="0.1" height="15.0" fill="rgb(232,189,30)" rx="2" ry="2" />
<text x="1192.40" y="479.5" ></text>
</g>
<g >
<title>mutex_unlock (25 samples, 0.04%)</title><rect x="914.7" y="277" width="0.4" height="15.0" fill="rgb(240,96,39)" rx="2" ry="2" />
<text x="917.68" y="287.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,483 samples, 3.53%)</title><rect x="232.0" y="485" width="41.6" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" />
<text x="234.97" y="495.5" >ent..</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (247 samples, 0.35%)</title><rect x="971.5" y="549" width="4.2" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" />
<text x="974.51" y="559.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (45 samples, 0.06%)</title><rect x="574.0" y="341" width="0.7" height="15.0" fill="rgb(142,62,66)" rx="2" ry="2" />
<text x="576.96" y="351.5" ></text>
</g>
<g >
<title>getTypeInputInfo (272 samples, 0.39%)</title><rect x="785.2" y="453" width="4.6" height="15.0" fill="rgb(142,126,139)" rx="2" ry="2" />
<text x="788.21" y="463.5" ></text>
</g>
<g >
<title>__clock_gettime (32 samples, 0.05%)</title><rect x="207.2" y="501" width="0.5" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="210.21" y="511.5" ></text>
</g>
<g >
<title>ExecInitIndexScan (3,567 samples, 5.06%)</title><rect x="552.4" y="405" width="59.8" height="15.0" fill="rgb(81,138,92)" rx="2" ry="2" />
<text x="555.43" y="415.5" >ExecIn..</text>
</g>
<g >
<title>ReadBufferExtended (487 samples, 0.69%)</title><rect x="357.8" y="325" width="8.2" height="15.0" fill="rgb(121,61,14823127)" rx="2" ry="2" />
<text x="360.82" y="335.5" ></text>
</g>
<g >
<title>perf_event_task_tick (9 samples, 0.01%)</title><rect x="689.2" y="85" width="0.1" height="15.0" fill="rgb(236,184,34)" rx="2" ry="2" />
<text x="692.15" y="95.5" ></text>
</g>
<g >
<title>set_next_entity (9 samples, 0.01%)</title><rect x="1183.4" y="389" width="0.2" height="15.0" fill="rgb(240,154,38)" rx="2" ry="2" />
<text x="1186.45" y="399.5" ></text>
</g>
<g >
<title>__dta_iscsi_xmit_task_160 (15 samples, 0.02%)</title><rect x="10.5" y="469" width="0.3" height="15.0" fill="rgb(229,141,26)" rx="2" ry="2" />
<text x="13.50" y="479.5" ></text>
</g>
<g >
<title>pfree (20 samples, 0.03%)</title><rect x="577.5" y="373" width="0.3" height="15.0" fill="rgb(3537,90,12881895)" rx="2" ry="2" />
<text x="580.51" y="383.5" ></text>
</g>
<g >
<title>timerqueue_del (7 samples, 0.01%)</title><rect x="1133.8" y="421" width="0.1" height="15.0" fill="rgb(236,148,34)" rx="2" ry="2" />
<text x="1136.79" y="431.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (10 samples, 0.01%)</title><rect x="291.4" y="293" width="0.2" height="15.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text x="294.42" y="303.5" ></text>
</g>
<g >
<title>pqAddTuple (14 samples, 0.02%)</title><rect x="295.9" y="437" width="0.2" height="15.0" fill="rgb(241,90,190)" rx="2" ry="2" />
<text x="298.86" y="447.5" ></text>
</g>
<g >
<title>AtEOXact_Files (61 samples, 0.09%)</title><rect x="720.3" y="405" width="1.0" height="15.0" fill="rgb(122,89,56)" rx="2" ry="2" />
<text x="723.30" y="415.5" ></text>
</g>
<g >
<title>do_vfs_ioctl (7 samples, 0.01%)</title><rect x="12.0" y="469" width="0.1" height="15.0" fill="rgb(232,189,30)" rx="2" ry="2" />
<text x="14.96" y="479.5" ></text>
</g>
<g >
<title>LockRelationOid (282 samples, 0.40%)</title><rect x="605.6" y="357" width="4.8" height="15.0" fill="rgb(129,124,2160785)" rx="2" ry="2" />
<text x="608.63" y="367.5" ></text>
</g>
<g >
<title>native_write_msr (8 samples, 0.01%)</title><rect x="1135.7" y="293" width="0.2" height="15.0" fill="rgb(241,158,40)" rx="2" ry="2" />
<text x="1138.75" y="303.5" ></text>
</g>
<g >
<title>AbortStrongLockAcquire (19 samples, 0.03%)</title><rect x="766.3" y="357" width="0.3" height="15.0" fill="rgb(129,24381895395797,50)" rx="2" ry="2" />
<text x="769.26" y="367.5" ></text>
</g>
<g >
<title>FetchPortalTargetList (15 samples, 0.02%)</title><rect x="414.9" y="453" width="0.3" height="15.0" fill="rgb(135,175,96)" rx="2" ry="2" />
<text x="417.91" y="463.5" ></text>
</g>
<g >
<title>find_next_bit (62 samples, 0.09%)</title><rect x="1103.4" y="421" width="1.0" height="15.0" fill="rgb(236,177,34)" rx="2" ry="2" />
<text x="1106.38" y="431.5" ></text>
</g>
<g >
<title>switch_mm_irqs_off (12 samples, 0.02%)</title><rect x="307.9" y="293" width="0.2" height="15.0" fill="rgb(246,115,45)" rx="2" ry="2" />
<text x="310.92" y="303.5" ></text>
</g>
<g >
<title>__strcmp_sse42 (33 samples, 0.05%)</title><rect x="283.7" y="437" width="0.6" height="15.0" fill="rgb(242,132,41)" rx="2" ry="2" />
<text x="286.73" y="447.5" ></text>
</g>
<g >
<title>pqPutMsgBytes (8 samples, 0.01%)</title><rect x="303.0" y="437" width="0.1" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="305.96" y="447.5" ></text>
</g>
<g >
<title>fmtint (7 samples, 0.01%)</title><rect x="305.0" y="437" width="0.1" height="15.0" fill="rgb(54790,201,99)" rx="2" ry="2" />
<text x="308.01" y="447.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (47 samples, 0.07%)</title><rect x="859.1" y="197" width="0.8" height="15.0" fill="rgb(241,130,40)" rx="2" ry="2" />
<text x="862.12" y="207.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (26 samples, 0.04%)</title><rect x="205.1" y="437" width="0.4" height="15.0" fill="rgb(242,151,40)" rx="2" ry="2" />
<text x="208.11" y="447.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (149 samples, 0.21%)</title><rect x="493.8" y="277" width="2.5" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="496.79" y="287.5" ></text>
</g>
<g >
<title>pg_server_to_client (15 samples, 0.02%)</title><rect x="704.9" y="437" width="0.2" height="15.0" fill="rgb(150,128,184)" rx="2" ry="2" />
<text x="707.85" y="447.5" ></text>
</g>
<g >
<title>TransactionBlockStatusCode (7 samples, 0.01%)</title><rect x="616.2" y="437" width="0.1" height="15.0" fill="rgb(71,807901,237)" rx="2" ry="2" />
<text x="619.15" y="447.5" ></text>
</g>
<g >
<title>ExecutorEnd (15 samples, 0.02%)</title><rect x="731.7" y="357" width="0.2" height="15.0" fill="rgb(81,84,4437043)" rx="2" ry="2" />
<text x="734.70" y="367.5" ></text>
</g>
<g >
<title>pqsecure_raw_read (10 samples, 0.01%)</title><rect x="309.5" y="469" width="0.1" height="15.0" fill="rgb(241,91,192)" rx="2" ry="2" />
<text x="312.48" y="479.5" ></text>
</g>
<g >
<title>pqPutMsgBytes (7 samples, 0.01%)</title><rect x="303.4" y="437" width="0.1" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="306.42" y="447.5" ></text>
</g>
<g >
<title>tts_virtual_clear (29 samples, 0.04%)</title><rect x="510.1" y="389" width="0.5" height="15.0" fill="rgb(81,86,239)" rx="2" ry="2" />
<text x="513.07" y="399.5" ></text>
</g>
<g >
<title>_int_malloc (116 samples, 0.16%)</title><rect x="486.1" y="261" width="2.0" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="489.12" y="271.5" ></text>
</g>
<g >
<title>ResourceArrayRemove (18 samples, 0.03%)</title><rect x="744.5" y="293" width="0.3" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="747.48" y="303.5" ></text>
</g>
<g >
<title>AtEOXact_RelationMap (19 samples, 0.03%)</title><rect x="725.1" y="405" width="0.3" height="15.0" fill="rgb(142,187,56)" rx="2" ry="2" />
<text x="728.11" y="415.5" ></text>
</g>
<g >
<title>sock_sendmsg (3,498 samples, 4.97%)</title><rect x="632.0" y="309" width="58.6" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="635.02" y="319.5" >sock_s..</text>
</g>
<g >
<title>PortalSetResultFormat (32 samples, 0.05%)</title><rect x="529.2" y="453" width="0.5" height="15.0" fill="rgb(135,175,189)" rx="2" ry="2" />
<text x="532.19" y="463.5" ></text>
</g>
<g >
<title>ChoosePortalStrategy (11 samples, 0.02%)</title><rect x="530.9" y="437" width="0.2" height="15.0" fill="rgb(135,175,68)" rx="2" ry="2" />
<text x="533.87" y="447.5" ></text>
</g>
<g >
<title>_bt_preprocess_array_keys (31 samples, 0.04%)</title><rect x="478.4" y="373" width="0.6" height="15.0" fill="rgb(63,133,63)" rx="2" ry="2" />
<text x="481.44" y="383.5" ></text>
</g>
<g >
<title>SearchSysCache1 (14 samples, 0.02%)</title><rect x="519.8" y="357" width="0.2" height="15.0" fill="rgb(142,76965,219)" rx="2" ry="2" />
<text x="522.78" y="367.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (37 samples, 0.05%)</title><rect x="663.1" y="165" width="0.7" height="15.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text x="666.13" y="175.5" ></text>
</g>
<g >
<title>__kmalloc_reserve.isra.40 (133 samples, 0.19%)</title><rect x="646.6" y="229" width="2.2" height="15.0" fill="rgb(225,119,22)" rx="2" ry="2" />
<text x="649.61" y="239.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (23 samples, 0.03%)</title><rect x="431.6" y="373" width="0.4" height="15.0" fill="rgb(126,199,199)" rx="2" ry="2" />
<text x="434.63" y="383.5" ></text>
</g>
<g >
<title>mutex_lock (26 samples, 0.04%)</title><rect x="839.3" y="293" width="0.4" height="15.0" fill="rgb(240,96,39)" rx="2" ry="2" />
<text x="842.28" y="303.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (13 samples, 0.02%)</title><rect x="738.3" y="309" width="0.2" height="15.0" fill="rgb(142,187,201)" rx="2" ry="2" />
<text x="741.33" y="319.5" ></text>
</g>
<g >
<title>AllocSetAlloc (9 samples, 0.01%)</title><rect x="481.0" y="325" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="484.00" y="335.5" ></text>
</g>
<g >
<title>native_write_msr (213 samples, 0.30%)</title><rect x="179.0" y="69" width="3.6" height="15.0" fill="rgb(241,158,40)" rx="2" ry="2" />
<text x="182.01" y="79.5" ></text>
</g>
<g >
<title>hash_seq_term (13 samples, 0.02%)</title><rect x="757.2" y="389" width="0.2" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="760.23" y="399.5" ></text>
</g>
<g >
<title>ppoll (296 samples, 0.42%)</title><rect x="305.1" y="485" width="5.0" height="15.0" fill="rgb(229,194,26)" rx="2" ry="2" />
<text x="308.13" y="495.5" ></text>
</g>
<g >
<title>kworker/u96:0 (16 samples, 0.02%)</title><rect x="10.5" y="565" width="0.3" height="15.0" fill="rgb(233,118,31)" rx="2" ry="2" />
<text x="13.49" y="575.5" ></text>
</g>
<g >
<title>check_preempt_curr (480 samples, 0.68%)</title><rect x="174.7" y="133" width="8.0" height="15.0" fill="rgb(237,116,35)" rx="2" ry="2" />
<text x="177.65" y="143.5" ></text>
</g>
<g >
<title>update_load_avg (223 samples, 0.32%)</title><rect x="1066.1" y="421" width="3.7" height="15.0" fill="rgb(240,150,38)" rx="2" ry="2" />
<text x="1069.10" y="431.5" ></text>
</g>
<g >
<title>MemoryContextDelete (20 samples, 0.03%)</title><rect x="717.7" y="389" width="0.4" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="720.72" y="399.5" ></text>
</g>
<g >
<title>ExecReadyInterpretedExpr (24 samples, 0.03%)</title><rect x="587.7" y="373" width="0.4" height="15.0" fill="rgb(81,83,92)" rx="2" ry="2" />
<text x="590.67" y="383.5" ></text>
</g>
<g >
<title>ProcArrayEndTransaction (51 samples, 0.07%)</title><rect x="758.1" y="405" width="0.8" height="15.0" fill="rgb(126,177,194)" rx="2" ry="2" />
<text x="761.07" y="415.5" ></text>
</g>
<g >
<title>expression_tree_walker (76 samples, 0.11%)</title><rect x="586.2" y="357" width="1.3" height="15.0" fill="rgb(91,136,452238107559)" rx="2" ry="2" />
<text x="589.19" y="367.5" ></text>
</g>
<g >
<title>PQisBusy (1,481 samples, 2.10%)</title><rect x="98.2" y="501" width="24.9" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="101.25" y="511.5" >P..</text>
</g>
<g >
<title>timerqueue_del (36 samples, 0.05%)</title><rect x="1153.4" y="405" width="0.6" height="15.0" fill="rgb(236,148,34)" rx="2" ry="2" />
<text x="1156.42" y="415.5" ></text>
</g>
<g >
<title>AtEOXact_ApplyLauncher (40 samples, 0.06%)</title><rect x="718.5" y="405" width="0.7" height="15.0" fill="rgb(112,122,56)" rx="2" ry="2" />
<text x="721.54" y="415.5" ></text>
</g>
<g >
<title>unix_poll (26 samples, 0.04%)</title><rect x="269.3" y="421" width="0.5" height="15.0" fill="rgb(229,145,26)" rx="2" ry="2" />
<text x="272.32" y="431.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (367 samples, 0.52%)</title><rect x="694.7" y="373" width="6.1" height="15.0" fill="rgb(238,167,36)" rx="2" ry="2" />
<text x="697.67" y="383.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (12 samples, 0.02%)</title><rect x="689.7" y="53" width="0.2" height="15.0" fill="rgb(230,164,28)" rx="2" ry="2" />
<text x="692.72" y="63.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.01%)</title><rect x="11.4" y="549" width="0.1" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" />
<text x="14.36" y="559.5" ></text>
</g>
<g >
<title>get_typstorage (57 samples, 0.08%)</title><rect x="575.1" y="373" width="1.0" height="15.0" fill="rgb(142,126,139)" rx="2" ry="2" />
<text x="578.12" y="383.5" ></text>
</g>
<g >
<title>resetStringInfo (11 samples, 0.02%)</title><rect x="705.2" y="421" width="0.2" height="15.0" fill="rgb(86,215,205)" rx="2" ry="2" />
<text x="708.24" y="431.5" ></text>
</g>
<g >
<title>__pthread_enable_asynccancel (22 samples, 0.03%)</title><rect x="37.8" y="437" width="0.3" height="15.0" fill="rgb(236,141,34)" rx="2" ry="2" />
<text x="40.76" y="447.5" ></text>
</g>
<g >
<title>GetCurrentCommandId (6 samples, 0.01%)</title><rect x="440.4" y="421" width="0.1" height="15.0" fill="rgb(71,807901,134)" rx="2" ry="2" />
<text x="443.42" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (9 samples, 0.01%)</title><rect x="557.5" y="325" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="560.54" y="335.5" ></text>
</g>
<g >
<title>pq_endmessage_reuse (15 samples, 0.02%)</title><rect x="516.4" y="389" width="0.2" height="15.0" fill="rgb(88,174,190)" rx="2" ry="2" />
<text x="519.39" y="399.5" ></text>
</g>
<g >
<title>account_entity_dequeue (29 samples, 0.04%)</title><rect x="253.4" y="293" width="0.5" height="15.0" fill="rgb(242,164,40)" rx="2" ry="2" />
<text x="256.37" y="303.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (9 samples, 0.01%)</title><rect x="299.7" y="149" width="0.2" height="15.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text x="302.71" y="159.5" ></text>
</g>
<g >
<title>put_prev_entity (10 samples, 0.01%)</title><rect x="857.3" y="229" width="0.1" height="15.0" fill="rgb(240,152,38)" rx="2" ry="2" />
<text x="860.26" y="239.5" ></text>
</g>
<g >
<title>MemoryContextReset (8 samples, 0.01%)</title><rect x="471.8" y="373" width="0.2" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="474.82" y="383.5" ></text>
</g>
<g >
<title>__update_idle_core (23 samples, 0.03%)</title><rect x="261.4" y="325" width="0.4" height="15.0" fill="rgb(246,125,45)" rx="2" ry="2" />
<text x="264.44" y="335.5" ></text>
</g>
<g >
<title>AllocSetFree (18 samples, 0.03%)</title><rect x="522.3" y="389" width="0.3" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="525.29" y="399.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (87 samples, 0.12%)</title><rect x="72.6" y="293" width="1.5" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="75.63" y="303.5" ></text>
</g>
<g >
<title>AtEOXact_LocalBuffers (9 samples, 0.01%)</title><rect x="722.8" y="405" width="0.2" height="15.0" fill="rgb(121,124,56)" rx="2" ry="2" />
<text x="725.85" y="415.5" ></text>
</g>
<g >
<title>__pm_relax (8 samples, 0.01%)</title><rect x="828.6" y="293" width="0.1" height="15.0" fill="rgb(245,141,44)" rx="2" ry="2" />
<text x="831.61" y="303.5" ></text>
</g>
<g >
<title>skb_queue_tail (121 samples, 0.17%)</title><rect x="643.1" y="277" width="2.0" height="15.0" fill="rgb(233,143,31)" rx="2" ry="2" />
<text x="646.06" y="287.5" ></text>
</g>
<g >
<title>ret_from_fork (7 samples, 0.01%)</title><rect x="10.8" y="549" width="0.1" height="15.0" fill="rgb(236,162,34)" rx="2" ry="2" />
<text x="13.75" y="559.5" ></text>
</g>
<g >
<title>printtup_destroy (8 samples, 0.01%)</title><rect x="952.4" y="453" width="0.1" height="15.0" fill="rgb(53,177,194)" rx="2" ry="2" />
<text x="955.38" y="463.5" ></text>
</g>
<g >
<title>run_rebalance_domains (9 samples, 0.01%)</title><rect x="1028.0" y="341" width="0.2" height="15.0" fill="rgb(240,156,38)" rx="2" ry="2" />
<text x="1031.01" y="351.5" ></text>
</g>
<g >
<title>__slab_free (65 samples, 0.09%)</title><rect x="62.1" y="245" width="1.1" height="15.0" fill="rgb(246,132,46)" rx="2" ry="2" />
<text x="65.13" y="255.5" ></text>
</g>
<g >
<title>WaitEventSetWait (3,854 samples, 5.47%)</title><rect x="806.4" y="405" width="64.6" height="15.0" fill="rgb(126,122,244)" rx="2" ry="2" />
<text x="809.44" y="415.5" >WaitEve..</text>
</g>
<g >
<title>deactivate_task (9 samples, 0.01%)</title><rect x="859.9" y="261" width="0.2" height="15.0" fill="rgb(236,216,34)" rx="2" ry="2" />
<text x="862.94" y="271.5" ></text>
</g>
<g >
<title>arch_cpu_idle (140 samples, 0.20%)</title><rect x="1180.1" y="421" width="2.4" height="15.0" fill="rgb(240,144,39)" rx="2" ry="2" />
<text x="1183.15" y="431.5" ></text>
</g>
<g >
<title>sock_recvmsg (1,910 samples, 2.71%)</title><rect x="888.8" y="325" width="32.0" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="891.84" y="335.5" >so..</text>
</g>
<g >
<title>malloc (142 samples, 0.20%)</title><rect x="102.9" y="453" width="2.4" height="15.0" fill="rgb(238,112,36)" rx="2" ry="2" />
<text x="105.89" y="463.5" ></text>
</g>
<g >
<title>rcu_eqs_enter.isra.40 (52 samples, 0.07%)</title><rect x="1047.0" y="485" width="0.9" height="15.0" fill="rgb(225,169,22)" rx="2" ry="2" />
<text x="1049.99" y="495.5" ></text>
</g>
<g >
<title>consume_skb (65 samples, 0.09%)</title><rect x="290.2" y="309" width="1.1" height="15.0" fill="rgb(227,146,24)" rx="2" ry="2" />
<text x="293.18" y="319.5" ></text>
</g>
<g >
<title>IsAbortedTransactionBlockState (56 samples, 0.08%)</title><rect x="445.3" y="453" width="0.9" height="15.0" fill="rgb(71,807901,152)" rx="2" ry="2" />
<text x="448.30" y="463.5" ></text>
</g>
<g >
<title>account_entity_enqueue (50 samples, 0.07%)</title><rect x="171.4" y="101" width="0.8" height="15.0" fill="rgb(242,164,40)" rx="2" ry="2" />
<text x="174.40" y="111.5" ></text>
</g>
<g >
<title>tag_hash (24 samples, 0.03%)</title><rect x="609.8" y="325" width="0.4" height="15.0" fill="rgb(147,107,232)" rx="2" ry="2" />
<text x="612.80" y="335.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,131 samples, 4.45%)</title><rect x="875.1" y="389" width="52.4" height="15.0" fill="rgb(241,196,40)" rx="2" ry="2" />
<text x="878.07" y="399.5" >entry..</text>
</g>
<g >
<title>dequeue_task_fair (16 samples, 0.02%)</title><rect x="256.4" y="341" width="0.3" height="15.0" fill="rgb(240,203,39)" rx="2" ry="2" />
<text x="259.42" y="351.5" ></text>
</g>
<g >
<title>list_delete_ptr (16 samples, 0.02%)</title><rect x="748.2" y="309" width="0.3" height="15.0" fill="rgb(91,1623125281314712,160)" rx="2" ry="2" />
<text x="751.22" y="319.5" ></text>
</g>
<g >
<title>ReleaseCatCache (10 samples, 0.01%)</title><rect x="518.1" y="373" width="0.2" height="15.0" fill="rgb(142,62,202)" rx="2" ry="2" />
<text x="521.12" y="383.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (59 samples, 0.08%)</title><rect x="691.8" y="325" width="0.9" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="694.75" y="335.5" ></text>
</g>
<g >
<title>sys_ppoll (1,956 samples, 2.78%)</title><rect x="237.8" y="453" width="32.7" height="15.0" fill="rgb(229,167,26)" rx="2" ry="2" />
<text x="240.77" y="463.5" >sy..</text>
</g>
<g >
<title>next_zone (34 samples, 0.05%)</title><rect x="1046.2" y="453" width="0.6" height="15.0" fill="rgb(251,219,50)" rx="2" ry="2" />
<text x="1049.21" y="463.5" ></text>
</g>
<g >
<title>finish_task_switch (113 samples, 0.16%)</title><rect x="259.1" y="341" width="1.9" height="15.0" fill="rgb(242,177,41)" rx="2" ry="2" />
<text x="262.07" y="351.5" ></text>
</g>
<g >
<title>clockevents_program_event (732 samples, 1.04%)</title><rect x="1114.0" y="389" width="12.2" height="15.0" fill="rgb(241,102,39)" rx="2" ry="2" />
<text x="1116.98" y="399.5" ></text>
</g>
<g >
<title>pqSkipnchar (20 samples, 0.03%)</title><rect x="122.1" y="469" width="0.3" height="15.0" fill="rgb(241,90,192)" rx="2" ry="2" />
<text x="125.08" y="479.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (40 samples, 0.06%)</title><rect x="410.1" y="421" width="0.6" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="413.06" y="431.5" ></text>
</g>
<g >
<title>printtup_create_DR (40 samples, 0.06%)</title><rect x="951.7" y="453" width="0.7" height="15.0" fill="rgb(53,177,194)" rx="2" ry="2" />
<text x="954.71" y="463.5" ></text>
</g>
<g >
<title>sock_poll (272 samples, 0.39%)</title><rect x="264.8" y="421" width="4.5" height="15.0" fill="rgb(229,175,26)" rx="2" ry="2" />
<text x="267.76" y="431.5" ></text>
</g>
<g >
<title>pqPutInt (12 samples, 0.02%)</title><rect x="302.9" y="453" width="0.2" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="305.90" y="463.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (236 samples, 0.34%)</title><rect x="971.7" y="469" width="3.9" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="974.68" y="479.5" ></text>
</g>
<g >
<title>tag_hash (24 samples, 0.03%)</title><rect x="608.4" y="309" width="0.4" height="15.0" fill="rgb(147,107,232)" rx="2" ry="2" />
<text x="611.43" y="319.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (101 samples, 0.14%)</title><rect x="79.6" y="389" width="1.7" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="82.63" y="399.5" ></text>
</g>
<g >
<title>pagecache_get_page (8 samples, 0.01%)</title><rect x="12.3" y="325" width="0.1" height="15.0" fill="rgb(248,146,47)" rx="2" ry="2" />
<text x="15.30" y="335.5" ></text>
</g>
<g >
<title>next_zone (13 samples, 0.02%)</title><rect x="1046.8" y="469" width="0.2" height="15.0" fill="rgb(251,219,50)" rx="2" ry="2" />
<text x="1049.78" y="479.5" ></text>
</g>
<g >
<title>lcons (97 samples, 0.14%)</title><rect x="556.1" y="357" width="1.6" height="15.0" fill="rgb(91,1623125281314712,158)" rx="2" ry="2" />
<text x="559.07" y="367.5" ></text>
</g>
<g >
<title>ReleaseBuffer (18 samples, 0.03%)</title><rect x="507.6" y="325" width="0.3" height="15.0" fill="rgb(121,61,15235984)" rx="2" ry="2" />
<text x="510.58" y="335.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (144 samples, 0.20%)</title><rect x="923.3" y="357" width="2.4" height="15.0" fill="rgb(236,167,34)" rx="2" ry="2" />
<text x="926.29" y="367.5" ></text>
</g>
<g >
<title>__clone (11 samples, 0.02%)</title><rect x="1189.3" y="549" width="0.2" height="15.0" fill="rgb(251,144,50)" rx="2" ry="2" />
<text x="1192.35" y="559.5" ></text>
</g>
<g >
<title>GetCurrentTransactionStopTimestamp (10 samples, 0.01%)</title><rect x="800.6" y="437" width="0.1" height="15.0" fill="rgb(71,807901,135)" rx="2" ry="2" />
<text x="803.56" y="447.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (16 samples, 0.02%)</title><rect x="644.8" y="245" width="0.3" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="647.82" y="255.5" ></text>
</g>
<g >
<title>pqCheckOutBufferSpace (22 samples, 0.03%)</title><rect x="205.6" y="437" width="0.3" height="15.0" fill="rgb(241,90,190)" rx="2" ry="2" />
<text x="208.57" y="447.5" ></text>
</g>
<g >
<title>function_call (11 samples, 0.02%)</title><rect x="11.6" y="469" width="0.1" height="15.0" fill="rgb(230,172,28)" rx="2" ry="2" />
<text x="14.56" y="479.5" ></text>
</g>
<g >
<title>table_close (17 samples, 0.02%)</title><rect x="750.9" y="341" width="0.3" height="15.0" fill="rgb(68,12086,232)" rx="2" ry="2" />
<text x="753.95" y="351.5" ></text>
</g>
<g >
<title>load_new_mm_cr3 (17 samples, 0.02%)</title><rect x="1061.8" y="453" width="0.3" height="15.0" fill="rgb(246,157,45)" rx="2" ry="2" />
<text x="1064.84" y="463.5" ></text>
</g>
<g >
<title>GetUserId (11 samples, 0.02%)</title><rect x="433.6" y="389" width="0.2" height="15.0" fill="rgb(149,130,139)" rx="2" ry="2" />
<text x="436.64" y="399.5" ></text>
</g>
<g >
<title>MemoryContextSetParent (7 samples, 0.01%)</title><rect x="522.7" y="373" width="0.1" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="525.73" y="383.5" ></text>
</g>
<g >
<title>iov_iter_copy_from_user_atomic (7 samples, 0.01%)</title><rect x="12.7" y="357" width="0.1" height="15.0" fill="rgb(232,152,29)" rx="2" ry="2" />
<text x="15.70" y="367.5" ></text>
</g>
<g >
<title>_bt_compare (526 samples, 0.75%)</title><rect x="328.1" y="357" width="8.8" height="15.0" fill="rgb(63,132,62)" rx="2" ry="2" />
<text x="331.10" y="367.5" ></text>
</g>
<g >
<title>ResourceArrayEnlarge.part.4 (20 samples, 0.03%)</title><rect x="550.1" y="373" width="0.4" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="553.14" y="383.5" ></text>
</g>
<g >
<title>enqueue_task_fair (300 samples, 0.43%)</title><rect x="669.3" y="133" width="5.1" height="15.0" fill="rgb(240,205,39)" rx="2" ry="2" />
<text x="672.35" y="143.5" ></text>
</g>
<g >
<title>ScanKeyEntryInitialize (15 samples, 0.02%)</title><rect x="572.1" y="373" width="0.3" height="15.0" fill="rgb(53,194,218)" rx="2" ry="2" />
<text x="575.10" y="383.5" ></text>
</g>
<g >
<title>__errno_location (72 samples, 0.10%)</title><rect x="805.2" y="389" width="1.2" height="15.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text x="808.23" y="399.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (19 samples, 0.03%)</title><rect x="187.2" y="213" width="0.3" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" />
<text x="190.20" y="223.5" ></text>
</g>
<g >
<title>load_balance (25 samples, 0.04%)</title><rect x="1181.3" y="261" width="0.4" height="15.0" fill="rgb(251,157,51)" rx="2" ry="2" />
<text x="1184.27" y="271.5" ></text>
</g>
<g >
<title>idle_cpu (106 samples, 0.15%)</title><rect x="667.0" y="133" width="1.7" height="15.0" fill="rgb(238,184,36)" rx="2" ry="2" />
<text x="669.95" y="143.5" ></text>
</g>
<g >
<title>copy_user_generic_unrolled (106 samples, 0.15%)</title><rect x="919.0" y="229" width="1.7" height="15.0" fill="rgb(252,140,52)" rx="2" ry="2" />
<text x="921.95" y="239.5" ></text>
</g>
<g >
<title>__kmalloc_reserve.isra.40 (6 samples, 0.01%)</title><rect x="652.3" y="245" width="0.1" height="15.0" fill="rgb(225,119,22)" rx="2" ry="2" />
<text x="655.31" y="255.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (23 samples, 0.03%)</title><rect x="1138.8" y="421" width="0.4" height="15.0" fill="rgb(237,128,36)" rx="2" ry="2" />
<text x="1141.78" y="431.5" ></text>
</g>
<g >
<title>kthread (7 samples, 0.01%)</title><rect x="1189.9" y="533" width="0.1" height="15.0" fill="rgb(241,117,40)" rx="2" ry="2" />
<text x="1192.88" y="543.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (18 samples, 0.03%)</title><rect x="290.9" y="197" width="0.3" height="15.0" fill="rgb(240,119,39)" rx="2" ry="2" />
<text x="293.92" y="207.5" ></text>
</g>
<g >
<title>event_function (132 samples, 0.19%)</title><rect x="1013.2" y="341" width="2.2" height="15.0" fill="rgb(247,165,46)" rx="2" ry="2" />
<text x="1016.18" y="351.5" ></text>
</g>
<g >
<title>__fget (82 samples, 0.12%)</title><rect x="77.2" y="325" width="1.3" height="15.0" fill="rgb(237,135,35)" rx="2" ry="2" />
<text x="80.17" y="335.5" ></text>
</g>
<g >
<title>PredicateLockPage (18 samples, 0.03%)</title><rect x="326.8" y="373" width="0.3" height="15.0" fill="rgb(129,175,192)" rx="2" ry="2" />
<text x="329.82" y="383.5" ></text>
</g>
<g >
<title>mutex_lock (6 samples, 0.01%)</title><rect x="291.3" y="309" width="0.1" height="15.0" fill="rgb(240,96,39)" rx="2" ry="2" />
<text x="294.27" y="319.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (10 samples, 0.01%)</title><rect x="608.1" y="325" width="0.1" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="611.08" y="335.5" ></text>
</g>
<g >
<title>OverrideSearchPathMatchesCurrent (109 samples, 0.15%)</title><rect x="432.0" y="421" width="1.8" height="15.0" fill="rgb(78,81693,176)" rx="2" ry="2" />
<text x="435.01" y="431.5" ></text>
</g>
<g >
<title>SYSC_recvfrom (1,756 samples, 2.49%)</title><rect x="49.6" y="389" width="29.4" height="15.0" fill="rgb(234,165,31)" rx="2" ry="2" />
<text x="52.63" y="399.5" >SY..</text>
</g>
<g >
<title>hash_seq_init (75 samples, 0.11%)</title><rect x="753.3" y="389" width="1.2" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="756.26" y="399.5" ></text>
</g>
<g >
<title>tick_nohz_stop_sched_tick (2,748 samples, 3.90%)</title><rect x="1089.7" y="453" width="46.0" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="1092.67" y="463.5" >tick..</text>
</g>
<g >
<title>pqCheckOutBufferSpace (32 samples, 0.05%)</title><rect x="200.5" y="437" width="0.6" height="15.0" fill="rgb(241,90,190)" rx="2" ry="2" />
<text x="203.52" y="447.5" ></text>
</g>
<g >
<title>_raw_spin_lock (66 samples, 0.09%)</title><rect x="161.8" y="165" width="1.1" height="15.0" fill="rgb(240,166,39)" rx="2" ry="2" />
<text x="164.80" y="175.5" ></text>
</g>
<g >
<title>PortalRun (3,654 samples, 5.19%)</title><rect x="323.9" y="517" width="61.2" height="15.0" fill="rgb(135,175,189)" rx="2" ry="2" />
<text x="326.91" y="527.5" >Portal..</text>
</g>
<g >
<title>calc_load_nohz_start (18 samples, 0.03%)</title><rect x="1092.0" y="437" width="0.3" height="15.0" fill="rgb(239,112,37)" rx="2" ry="2" />
<text x="1094.97" y="447.5" ></text>
</g>
<g >
<title>socket_flush (4,903 samples, 6.96%)</title><rect x="618.7" y="437" width="82.1" height="15.0" fill="rgb(88,173,225)" rx="2" ry="2" />
<text x="621.67" y="447.5" >socket_fl..</text>
</g>
<g >
<title>__kmalloc_node_track_caller (82 samples, 0.12%)</title><rect x="147.6" y="245" width="1.4" height="15.0" fill="rgb(245,119,44)" rx="2" ry="2" />
<text x="150.64" y="255.5" ></text>
</g>
<g >
<title>security_socket_recvmsg (161 samples, 0.23%)</title><rect x="889.1" y="309" width="2.7" height="15.0" fill="rgb(243,170,42)" rx="2" ry="2" />
<text x="892.06" y="319.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (17 samples, 0.02%)</title><rect x="371.9" y="277" width="0.2" height="15.0" fill="rgb(228,151,26)" rx="2" ry="2" />
<text x="374.86" y="287.5" ></text>
</g>
<g >
<title>__errno_location (21 samples, 0.03%)</title><rect x="526.4" y="389" width="0.4" height="15.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text x="529.44" y="399.5" ></text>
</g>
<g >
<title>ExecAssignExprContext (249 samples, 0.35%)</title><rect x="553.5" y="389" width="4.2" height="15.0" fill="rgb(81,87,89)" rx="2" ry="2" />
<text x="556.52" y="399.5" ></text>
</g>
<g >
<title>sock_recvmsg (1,549 samples, 2.20%)</title><rect x="51.2" y="373" width="25.9" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="54.17" y="383.5" >s..</text>
</g>
<g >
<title>update_process_times (27 samples, 0.04%)</title><rect x="689.0" y="117" width="0.4" height="15.0" fill="rgb(243,150,42)" rx="2" ry="2" />
<text x="691.99" y="127.5" ></text>
</g>
<g >
<title>irq_exit (20 samples, 0.03%)</title><rect x="1012.7" y="389" width="0.4" height="15.0" fill="rgb(237,153,36)" rx="2" ry="2" />
<text x="1015.75" y="399.5" ></text>
</g>
<g >
<title>pqCheckOutBufferSpace (24 samples, 0.03%)</title><rect x="203.0" y="453" width="0.4" height="15.0" fill="rgb(241,90,190)" rx="2" ry="2" />
<text x="205.95" y="463.5" ></text>
</g>
<g >
<title>PQisBusy (140 samples, 0.20%)</title><rect x="293.8" y="485" width="2.4" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="296.85" y="495.5" ></text>
</g>
<g >
<title>pfree (12 samples, 0.02%)</title><rect x="455.7" y="437" width="0.2" height="15.0" fill="rgb(3537,90,12881895)" rx="2" ry="2" />
<text x="458.69" y="447.5" ></text>
</g>
<g >
<title>evaluateExpr (14 samples, 0.02%)</title><rect x="303.9" y="453" width="0.2" height="15.0" fill="rgb(208,154,89)" rx="2" ry="2" />
<text x="306.89" y="463.5" ></text>
</g>
<g >
<title>irq_work_needs_cpu (10 samples, 0.01%)</title><rect x="1083.9" y="453" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="1086.86" y="463.5" ></text>
</g>
<g >
<title>LWLockAcquire (40 samples, 0.06%)</title><rect x="428.0" y="357" width="0.7" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="431.04" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (9 samples, 0.01%)</title><rect x="604.9" y="373" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="607.93" y="383.5" ></text>
</g>
<g >
<title>___slab_alloc (10 samples, 0.01%)</title><rect x="148.5" y="213" width="0.1" height="15.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text x="151.48" y="223.5" ></text>
</g>
<g >
<title>FreeQueryDesc (121 samples, 0.17%)</title><rect x="732.2" y="357" width="2.1" height="15.0" fill="rgb(135,175,100)" rx="2" ry="2" />
<text x="735.25" y="367.5" ></text>
</g>
<g >
<title>ExecReadyInterpretedExpr (29 samples, 0.04%)</title><rect x="570.8" y="357" width="0.4" height="15.0" fill="rgb(81,83,92)" rx="2" ry="2" />
<text x="573.76" y="367.5" ></text>
</g>
<g >
<title>expression_tree_walker (24 samples, 0.03%)</title><rect x="561.3" y="325" width="0.4" height="15.0" fill="rgb(91,136,452238107559)" rx="2" ry="2" />
<text x="564.30" y="335.5" ></text>
</g>
<g >
<title>select_task_rq_fair (18 samples, 0.03%)</title><rect x="299.9" y="149" width="0.3" height="15.0" fill="rgb(240,179,39)" rx="2" ry="2" />
<text x="302.88" y="159.5" ></text>
</g>
<g >
<title>clockevents_program_event (26 samples, 0.04%)</title><rect x="1186.3" y="357" width="0.4" height="15.0" fill="rgb(241,102,39)" rx="2" ry="2" />
<text x="1189.31" y="367.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (9 samples, 0.01%)</title><rect x="497.2" y="277" width="0.1" height="15.0" fill="rgb(121,61,137)" rx="2" ry="2" />
<text x="500.17" y="287.5" ></text>
</g>
<g >
<title>ExecResetTupleTable (82 samples, 0.12%)</title><rect x="743.6" y="341" width="1.4" height="15.0" fill="rgb(81,86,93)" rx="2" ry="2" />
<text x="746.59" y="351.5" ></text>
</g>
<g >
<title>sock_has_perm (135 samples, 0.19%)</title><rect x="51.6" y="325" width="2.2" height="15.0" fill="rgb(231,175,29)" rx="2" ry="2" />
<text x="54.59" y="335.5" ></text>
</g>
<g >
<title>__epoll_wait_nocancel (3,705 samples, 5.26%)</title><rect x="808.4" y="389" width="62.1" height="15.0" fill="rgb(236,138,34)" rx="2" ry="2" />
<text x="811.40" y="399.5" >__epol..</text>
</g>
<g >
<title>update_rq_clock (6 samples, 0.01%)</title><rect x="308.6" y="325" width="0.1" height="15.0" fill="rgb(240,150,39)" rx="2" ry="2" />
<text x="311.56" y="335.5" ></text>
</g>
<g >
<title>perf_pmu_enable (8 samples, 0.01%)</title><rect x="1135.7" y="341" width="0.2" height="15.0" fill="rgb(241,184,40)" rx="2" ry="2" />
<text x="1138.75" y="351.5" ></text>
</g>
<g >
<title>AtEOXact_ComboCid (39 samples, 0.06%)</title><rect x="719.3" y="405" width="0.7" height="15.0" fill="rgb(202,65,56)" rx="2" ry="2" />
<text x="722.35" y="415.5" ></text>
</g>
<g >
<title>iostat (12 samples, 0.02%)</title><rect x="10.0" y="565" width="0.2" height="15.0" fill="rgb(229,162,26)" rx="2" ry="2" />
<text x="13.02" y="575.5" ></text>
</g>
<g >
<title>CreateTemplateTupleDesc (22 samples, 0.03%)</title><rect x="591.1" y="357" width="0.4" height="15.0" fill="rgb(53,229,77)" rx="2" ry="2" />
<text x="594.12" y="367.5" ></text>
</g>
<g >
<title>ret_from_fork (12 samples, 0.02%)</title><rect x="976.0" y="549" width="0.2" height="15.0" fill="rgb(236,162,34)" rx="2" ry="2" />
<text x="978.97" y="559.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (49 samples, 0.07%)</title><rect x="186.8" y="261" width="0.8" height="15.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text x="189.77" y="271.5" ></text>
</g>
<g >
<title>LWLockRelease (27 samples, 0.04%)</title><rect x="772.1" y="357" width="0.4" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="775.09" y="367.5" ></text>
</g>
<g >
<title>LWLockRelease (40 samples, 0.06%)</title><rect x="778.3" y="341" width="0.7" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="781.31" y="351.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (8 samples, 0.01%)</title><rect x="359.3" y="261" width="0.1" height="15.0" fill="rgb(228,151,26)" rx="2" ry="2" />
<text x="362.31" y="271.5" ></text>
</g>
<g >
<title>__switch_to (173 samples, 0.25%)</title><rect x="392.8" y="549" width="2.9" height="15.0" fill="rgb(238,132,37)" rx="2" ry="2" />
<text x="395.84" y="559.5" ></text>
</g>
<g >
<title>IsSharedRelation (12 samples, 0.02%)</title><rect x="420.7" y="405" width="0.2" height="15.0" fill="rgb(78,62,153)" rx="2" ry="2" />
<text x="423.70" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (11 samples, 0.02%)</title><rect x="571.7" y="341" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="574.68" y="351.5" ></text>
</g>
<g >
<title>cpu_load_update_nohz_stop (155 samples, 0.22%)</title><rect x="1147.6" y="453" width="2.6" height="15.0" fill="rgb(244,118,43)" rx="2" ry="2" />
<text x="1150.64" y="463.5" ></text>
</g>
<g >
<title>MemoryContextAllocZeroAligned (45 samples, 0.06%)</title><rect x="563.6" y="357" width="0.8" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="566.64" y="367.5" ></text>
</g>
<g >
<title>finish_task_switch (13 samples, 0.02%)</title><rect x="264.2" y="357" width="0.2" height="15.0" fill="rgb(242,177,41)" rx="2" ry="2" />
<text x="267.16" y="367.5" ></text>
</g>
<g >
<title>palloc (67 samples, 0.10%)</title><rect x="790.6" y="437" width="1.1" height="15.0" fill="rgb(3537,90,-354911973014429)" rx="2" ry="2" />
<text x="793.56" y="447.5" ></text>
</g>
<g >
<title>check_spread.isra.40 (6 samples, 0.01%)</title><rect x="262.3" y="293" width="0.2" height="15.0" fill="rgb(225,116,22)" rx="2" ry="2" />
<text x="265.35" y="303.5" ></text>
</g>
<g >
<title>ExecPushExprSlots (96 samples, 0.14%)</title><rect x="559.0" y="341" width="1.6" height="15.0" fill="rgb(81,84,92)" rx="2" ry="2" />
<text x="562.03" y="351.5" ></text>
</g>
<g >
<title>cpu_load_update_nohz_start (19 samples, 0.03%)</title><rect x="1092.3" y="437" width="0.3" height="15.0" fill="rgb(239,118,37)" rx="2" ry="2" />
<text x="1095.27" y="447.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (50 samples, 0.07%)</title><rect x="688.9" y="213" width="0.8" height="15.0" fill="rgb(236,134,34)" rx="2" ry="2" />
<text x="691.89" y="223.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (110 samples, 0.16%)</title><rect x="416.9" y="437" width="1.9" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="419.92" y="447.5" ></text>
</g>
<g >
<title>ScanQueryForLocks (461 samples, 0.65%)</title><rect x="424.3" y="405" width="7.7" height="15.0" fill="rgb(142,170,218)" rx="2" ry="2" />
<text x="427.29" y="415.5" ></text>
</g>
<g >
<title>kvm_guest_apic_eoi_write (14 samples, 0.02%)</title><rect x="1180.9" y="341" width="0.2" height="15.0" fill="rgb(240,130,38)" rx="2" ry="2" />
<text x="1183.85" y="351.5" ></text>
</g>
<g >
<title>ep_poll_callback (12 samples, 0.02%)</title><rect x="291.0" y="165" width="0.2" height="15.0" fill="rgb(242,176,40)" rx="2" ry="2" />
<text x="293.97" y="175.5" ></text>
</g>
<g >
<title>lookupVariable (55 samples, 0.08%)</title><rect x="283.5" y="469" width="0.9" height="15.0" fill="rgb(208,154,164)" rx="2" ry="2" />
<text x="286.46" y="479.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (65 samples, 0.09%)</title><rect x="411.7" y="421" width="1.1" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="414.67" y="431.5" ></text>
</g>
<g >
<title>AllocSetFree (9 samples, 0.01%)</title><rect x="716.8" y="405" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="719.82" y="415.5" ></text>
</g>
<g >
<title>pgstat_report_xact_timestamp (10 samples, 0.01%)</title><rect x="971.1" y="405" width="0.1" height="15.0" fill="rgb(106,166,186)" rx="2" ry="2" />
<text x="974.06" y="415.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (13 samples, 0.02%)</title><rect x="548.7" y="373" width="0.3" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="551.75" y="383.5" ></text>
</g>
<g >
<title>__memmove_ssse3_back (44 samples, 0.06%)</title><rect x="220.2" y="405" width="0.7" height="15.0" fill="rgb(242,151,40)" rx="2" ry="2" />
<text x="223.16" y="415.5" ></text>
</g>
<g >
<title>pq_getmessage (364 samples, 0.52%)</title><rect x="939.9" y="453" width="6.1" height="15.0" fill="rgb(88,173,191)" rx="2" ry="2" />
<text x="942.95" y="463.5" ></text>
</g>
<g >
<title>ShutdownExprContext.isra.2 (15 samples, 0.02%)</title><rect x="746.5" y="309" width="0.3" height="15.0" fill="rgb(81,87,223)" rx="2" ry="2" />
<text x="749.52" y="319.5" ></text>
</g>
<g >
<title>SearchCatCache1 (48 samples, 0.07%)</title><rect x="704.0" y="421" width="0.8" height="15.0" fill="rgb(142,62,219)" rx="2" ry="2" />
<text x="706.98" y="431.5" ></text>
</g>
<g >
<title>rcu_gp_kthread (12 samples, 0.02%)</title><rect x="976.0" y="517" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="978.97" y="527.5" ></text>
</g>
<g >
<title>ResourceOwnerDelete (149 samples, 0.21%)</title><rect x="758.9" y="405" width="2.5" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="761.92" y="415.5" ></text>
</g>
<g >
<title>__virt_addr_valid (8 samples, 0.01%)</title><rect x="142.8" y="277" width="0.1" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" />
<text x="145.75" y="287.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (25 samples, 0.04%)</title><rect x="68.5" y="197" width="0.4" height="15.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text x="71.46" y="207.5" ></text>
</g>
<g >
<title>selinux_socket_sendmsg (20 samples, 0.03%)</title><rect x="634.9" y="293" width="0.3" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="637.85" y="303.5" ></text>
</g>
<g >
<title>strlcpy (75 samples, 0.11%)</title><rect x="955.0" y="437" width="1.3" height="15.0" fill="rgb(54790,217,578071)" rx="2" ry="2" />
<text x="958.01" y="447.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (27 samples, 0.04%)</title><rect x="343.7" y="341" width="0.5" height="15.0" fill="rgb(145,11509185,31898427440)" rx="2" ry="2" />
<text x="346.73" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (297 samples, 0.42%)</title><rect x="483.2" y="293" width="5.0" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="486.23" y="303.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (16 samples, 0.02%)</title><rect x="541.1" y="421" width="0.3" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="544.14" y="431.5" ></text>
</g>
<g >
<title>ResourceOwnerEnlargeBuffers (6 samples, 0.01%)</title><rect x="491.5" y="293" width="0.1" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="494.54" y="303.5" ></text>
</g>
<g >
<title>GetUserId (9 samples, 0.01%)</title><rect x="582.3" y="341" width="0.1" height="15.0" fill="rgb(149,130,139)" rx="2" ry="2" />
<text x="585.29" y="351.5" ></text>
</g>
<g >
<title>_copy_from_user (11 samples, 0.02%)</title><rect x="238.6" y="437" width="0.2" height="15.0" fill="rgb(240,180,39)" rx="2" ry="2" />
<text x="241.57" y="447.5" ></text>
</g>
<g >
<title>PQclear (186 samples, 0.26%)</title><rect x="29.0" y="501" width="3.2" height="15.0" fill="rgb(241,90,190)" rx="2" ry="2" />
<text x="32.03" y="511.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (42 samples, 0.06%)</title><rect x="859.2" y="181" width="0.7" height="15.0" fill="rgb(241,163,40)" rx="2" ry="2" />
<text x="862.20" y="191.5" ></text>
</g>
<g >
<title>update_blocked_averages (7 samples, 0.01%)</title><rect x="1181.7" y="261" width="0.1" height="15.0" fill="rgb(239,150,37)" rx="2" ry="2" />
<text x="1184.69" y="271.5" ></text>
</g>
<g >
<title>tick_program_event (6 samples, 0.01%)</title><rect x="689.5" y="165" width="0.1" height="15.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text x="692.47" y="175.5" ></text>
</g>
<g >
<title>ep_poll_callback (165 samples, 0.23%)</title><rect x="299.1" y="229" width="2.8" height="15.0" fill="rgb(242,176,40)" rx="2" ry="2" />
<text x="302.09" y="239.5" ></text>
</g>
<g >
<title>LWLockAcquire (152 samples, 0.22%)</title><rect x="493.7" y="293" width="2.6" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="496.74" y="303.5" ></text>
</g>
<g >
<title>MemoryContextCreate (33 samples, 0.05%)</title><rect x="962.8" y="389" width="0.6" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="965.80" y="399.5" ></text>
</g>
<g >
<title>tick_program_event (826 samples, 1.17%)</title><rect x="1162.9" y="437" width="13.8" height="15.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text x="1165.91" y="447.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (13 samples, 0.02%)</title><rect x="615.1" y="421" width="0.2" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="618.13" y="431.5" ></text>
</g>
<g >
<title>PQsendQueryGuts (4,916 samples, 6.98%)</title><rect x="123.6" y="485" width="82.4" height="15.0" fill="rgb(241,90,192)" rx="2" ry="2" />
<text x="126.63" y="495.5" >PQsendQue..</text>
</g>
<g >
<title>AtEOXact_Namespace (25 samples, 0.04%)</title><rect x="723.5" y="405" width="0.4" height="15.0" fill="rgb(78,81693,56)" rx="2" ry="2" />
<text x="726.52" y="415.5" ></text>
</g>
<g >
<title>expression_tree_walker (79 samples, 0.11%)</title><rect x="560.6" y="341" width="1.4" height="15.0" fill="rgb(91,136,452238107559)" rx="2" ry="2" />
<text x="563.64" y="351.5" ></text>
</g>
<g >
<title>superuser_arg (24 samples, 0.03%)</title><rect x="550.8" y="389" width="0.4" height="15.0" fill="rgb(195,218,231)" rx="2" ry="2" />
<text x="553.76" y="399.5" ></text>
</g>
<g >
<title>iscsi_sw_tcp_xmit_segment (6 samples, 0.01%)</title><rect x="10.6" y="421" width="0.1" height="15.0" fill="rgb(241,155,39)" rx="2" ry="2" />
<text x="13.64" y="431.5" ></text>
</g>
<g >
<title>evaluateExpr (362 samples, 0.51%)</title><rect x="208.7" y="501" width="6.1" height="15.0" fill="rgb(208,154,89)" rx="2" ry="2" />
<text x="211.73" y="511.5" ></text>
</g>
<g >
<title>int4hashfast (28 samples, 0.04%)</title><rect x="787.6" y="405" width="0.5" height="15.0" fill="rgb(142,62,150)" rx="2" ry="2" />
<text x="790.59" y="415.5" ></text>
</g>
<g >
<title>ProcReleaseLocks (896 samples, 1.27%)</title><rect x="765.5" y="389" width="15.0" height="15.0" fill="rgb(129,-1752316548726970,194)" rx="2" ry="2" />
<text x="768.51" y="399.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (28 samples, 0.04%)</title><rect x="1138.8" y="437" width="0.4" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" />
<text x="1141.78" y="447.5" ></text>
</g>
<g >
<title>MemoryContextDelete (11 samples, 0.02%)</title><rect x="748.6" y="341" width="0.2" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="751.62" y="351.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (9 samples, 0.01%)</title><rect x="602.3" y="277" width="0.2" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="605.33" y="287.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (103 samples, 0.15%)</title><rect x="512.5" y="389" width="1.8" height="15.0" fill="rgb(145,11509185,31890052095)" rx="2" ry="2" />
<text x="515.54" y="399.5" ></text>
</g>
<g >
<title>__slab_free (51 samples, 0.07%)</title><rect x="900.5" y="229" width="0.8" height="15.0" fill="rgb(246,132,46)" rx="2" ry="2" />
<text x="903.45" y="239.5" ></text>
</g>
<g >
<title>proc_reg_read (6 samples, 0.01%)</title><rect x="10.1" y="469" width="0.1" height="15.0" fill="rgb(241,184,40)" rx="2" ry="2" />
<text x="13.10" y="479.5" ></text>
</g>
<g >
<title>do_syscall_64 (45 samples, 0.06%)</title><rect x="12.1" y="501" width="0.7" height="15.0" fill="rgb(232,189,30)" rx="2" ry="2" />
<text x="15.08" y="511.5" ></text>
</g>
<g >
<title>sock_poll (39 samples, 0.06%)</title><rect x="269.9" y="437" width="0.6" height="15.0" fill="rgb(229,175,26)" rx="2" ry="2" />
<text x="272.89" y="447.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (23 samples, 0.03%)</title><rect x="1128.5" y="405" width="0.4" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="1131.47" y="415.5" ></text>
</g>
<g >
<title>smp_call_function_single (7 samples, 0.01%)</title><rect x="12.0" y="373" width="0.1" height="15.0" fill="rgb(238,126,36)" rx="2" ry="2" />
<text x="14.96" y="383.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetTupleDesc (24 samples, 0.03%)</title><rect x="744.4" y="309" width="0.4" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="747.38" y="319.5" ></text>
</g>
<g >
<title>malloc (47 samples, 0.07%)</title><rect x="120.9" y="437" width="0.7" height="15.0" fill="rgb(238,112,36)" rx="2" ry="2" />
<text x="123.85" y="447.5" ></text>
</g>
<g >
<title>pg_client_to_server (55 samples, 0.08%)</title><rect x="795.3" y="453" width="0.9" height="15.0" fill="rgb(150,128,179)" rx="2" ry="2" />
<text x="798.32" y="463.5" ></text>
</g>
<g >
<title>ep_poll_callback (1,829 samples, 2.60%)</title><rect x="156.0" y="245" width="30.6" height="15.0" fill="rgb(242,176,40)" rx="2" ry="2" />
<text x="158.99" y="255.5" >ep..</text>
</g>
<g >
<title>vfs_read (6 samples, 0.01%)</title><rect x="10.1" y="501" width="0.1" height="15.0" fill="rgb(241,128,40)" rx="2" ry="2" />
<text x="13.10" y="511.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (10 samples, 0.01%)</title><rect x="550.0" y="373" width="0.1" height="15.0" fill="rgb(142,62,66)" rx="2" ry="2" />
<text x="552.97" y="383.5" ></text>
</g>
<g >
<title>_bt_binsrch (595 samples, 0.84%)</title><rect x="346.3" y="357" width="9.9" height="15.0" fill="rgb(63,132,62)" rx="2" ry="2" />
<text x="349.26" y="367.5" ></text>
</g>
<g >
<title>prefetch_freepointer.isra.60 (19 samples, 0.03%)</title><rect x="648.2" y="197" width="0.3" height="15.0" fill="rgb(223,177,19)" rx="2" ry="2" />
<text x="651.15" y="207.5" ></text>
</g>
<g >
<title>CommitTransaction (4,260 samples, 6.05%)</title><rect x="713.2" y="421" width="71.4" height="15.0" fill="rgb(216,152,70)" rx="2" ry="2" />
<text x="716.23" y="431.5" >CommitTr..</text>
</g>
<g >
<title>standard_ExecutorStart (4,252 samples, 6.04%)</title><rect x="542.9" y="437" width="71.3" height="15.0" fill="rgb(81,84,229)" rx="2" ry="2" />
<text x="545.95" y="447.5" >standard..</text>
</g>
<g >
<title>hash_search (29 samples, 0.04%)</title><rect x="429.8" y="357" width="0.4" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="432.75" y="367.5" ></text>
</g>
<g >
<title>TransactionIdLimitedForOldSnapshots (7 samples, 0.01%)</title><rect x="503.8" y="309" width="0.2" height="15.0" fill="rgb(202,201,237)" rx="2" ry="2" />
<text x="506.84" y="319.5" ></text>
</g>
<g >
<title>__slab_free (105 samples, 0.15%)</title><rect x="902.7" y="197" width="1.8" height="15.0" fill="rgb(246,132,46)" rx="2" ry="2" />
<text x="905.73" y="207.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (37 samples, 0.05%)</title><rect x="1142.7" y="469" width="0.6" height="15.0" fill="rgb(244,130,43)" rx="2" ry="2" />
<text x="1145.67" y="479.5" ></text>
</g>
<g >
<title>account_entity_dequeue (42 samples, 0.06%)</title><rect x="848.6" y="197" width="0.7" height="15.0" fill="rgb(242,164,40)" rx="2" ry="2" />
<text x="851.58" y="207.5" ></text>
</g>
<g >
<title>get_op_opfamily_properties (149 samples, 0.21%)</title><rect x="572.6" y="373" width="2.5" height="15.0" fill="rgb(142,126,137)" rx="2" ry="2" />
<text x="575.62" y="383.5" ></text>
</g>
<g >
<title>unix_destruct_scm (8 samples, 0.01%)</title><rect x="913.6" y="245" width="0.1" height="15.0" fill="rgb(234,145,32)" rx="2" ry="2" />
<text x="916.56" y="255.5" ></text>
</g>
<g >
<title>SHMQueueNext (70 samples, 0.10%)</title><rect x="775.5" y="357" width="1.2" height="15.0" fill="rgb(126,198,222)" rx="2" ry="2" />
<text x="778.49" y="367.5" ></text>
</g>
<g >
<title>PortalRunSelect (3,654 samples, 5.19%)</title><rect x="323.9" y="501" width="61.2" height="15.0" fill="rgb(135,175,189)" rx="2" ry="2" />
<text x="326.91" y="511.5" >Portal..</text>
</g>
<g >
<title>rcu_eqs_enter_common.isra.39 (155 samples, 0.22%)</title><rect x="1048.2" y="453" width="2.6" height="15.0" fill="rgb(228,169,25)" rx="2" ry="2" />
<text x="1051.18" y="463.5" ></text>
</g>
<g >
<title>ResourceArrayAdd (8 samples, 0.01%)</title><rect x="598.4" y="341" width="0.2" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="601.43" y="351.5" ></text>
</g>
<g >
<title>kmem_cache_free (87 samples, 0.12%)</title><rect x="899.9" y="245" width="1.4" height="15.0" fill="rgb(246,107,46)" rx="2" ry="2" />
<text x="902.85" y="255.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (17 samples, 0.02%)</title><rect x="797.8" y="437" width="0.3" height="15.0" fill="rgb(140,223,4617001)" rx="2" ry="2" />
<text x="800.85" y="447.5" ></text>
</g>
<g >
<title>wait_for_unix_gc (12 samples, 0.02%)</title><rect x="690.4" y="277" width="0.2" height="15.0" fill="rgb(227,83,24)" rx="2" ry="2" />
<text x="693.41" y="287.5" ></text>
</g>
<g >
<title>pqPutMsgEnd (42 samples, 0.06%)</title><rect x="201.1" y="469" width="0.7" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="204.06" y="479.5" ></text>
</g>
<g >
<title>AllocSetFree (8 samples, 0.01%)</title><rect x="617.2" y="421" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="620.24" y="431.5" ></text>
</g>
<g >
<title>tick_sched_handle (27 samples, 0.04%)</title><rect x="689.0" y="133" width="0.4" height="15.0" fill="rgb(240,142,39)" rx="2" ry="2" />
<text x="691.99" y="143.5" ></text>
</g>
<g >
<title>pqPutMsgStart (95 samples, 0.13%)</title><rect x="201.8" y="469" width="1.6" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="204.76" y="479.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,492 samples, 3.54%)</title><rect x="885.2" y="373" width="41.7" height="15.0" fill="rgb(232,189,30)" rx="2" ry="2" />
<text x="888.16" y="383.5" >do_..</text>
</g>
<g >
<title>tick_program_event (33 samples, 0.05%)</title><rect x="1186.2" y="373" width="0.6" height="15.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text x="1189.21" y="383.5" ></text>
</g>
<g >
<title>CopySnapshot (43 samples, 0.06%)</title><rect x="614.6" y="437" width="0.7" height="15.0" fill="rgb(202,201,75)" rx="2" ry="2" />
<text x="617.63" y="447.5" ></text>
</g>
<g >
<title>PortalCleanup (1,217 samples, 1.73%)</title><rect x="731.1" y="373" width="20.4" height="15.0" fill="rgb(79,172,189)" rx="2" ry="2" />
<text x="734.11" y="383.5" ></text>
</g>
<g >
<title>AtEOXact_PgStat (29 samples, 0.04%)</title><rect x="723.9" y="405" width="0.5" height="15.0" fill="rgb(106,166,56)" rx="2" ry="2" />
<text x="726.94" y="415.5" ></text>
</g>
<g >
<title>ResourceOwnerCreate (71 samples, 0.10%)</title><rect x="411.6" y="437" width="1.2" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="414.57" y="447.5" ></text>
</g>
<g >
<title>cpuacct_charge (37 samples, 0.05%)</title><rect x="254.6" y="277" width="0.6" height="15.0" fill="rgb(244,118,43)" rx="2" ry="2" />
<text x="257.58" y="287.5" ></text>
</g>
<g >
<title>malloc@plt (9 samples, 0.01%)</title><rect x="488.1" y="277" width="0.1" height="15.0" fill="rgb(231,112,29)" rx="2" ry="2" />
<text x="491.06" y="287.5" ></text>
</g>
<g >
<title>sys_epoll_wait (17 samples, 0.02%)</title><rect x="863.9" y="357" width="0.3" height="15.0" fill="rgb(237,167,35)" rx="2" ry="2" />
<text x="866.91" y="367.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (24 samples, 0.03%)</title><rect x="788.7" y="405" width="0.4" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="791.75" y="415.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (362 samples, 0.51%)</title><rect x="191.8" y="405" width="6.1" height="15.0" fill="rgb(238,167,36)" rx="2" ry="2" />
<text x="194.83" y="415.5" ></text>
</g>
<g >
<title>ExecInterpExprStillValid (275 samples, 0.39%)</title><rect x="465.9" y="341" width="4.6" height="15.0" fill="rgb(81,83,92)" rx="2" ry="2" />
<text x="468.86" y="351.5" ></text>
</g>
<g >
<title>pg_verify_mbstr_len (56 samples, 0.08%)</title><rect x="794.4" y="421" width="0.9" height="15.0" fill="rgb(150,244,187)" rx="2" ry="2" />
<text x="797.38" y="431.5" ></text>
</g>
<g >
<title>kfree (72 samples, 0.10%)</title><rect x="62.0" y="261" width="1.2" height="15.0" fill="rgb(246,139,46)" rx="2" ry="2" />
<text x="65.01" y="271.5" ></text>
</g>
<g >
<title>reschedule_interrupt (33 samples, 0.05%)</title><rect x="1181.9" y="389" width="0.5" height="15.0" fill="rgb(236,165,34)" rx="2" ry="2" />
<text x="1184.87" y="399.5" ></text>
</g>
<g >
<title>GetCurrentTransactionNestLevel (12 samples, 0.02%)</title><rect x="615.3" y="437" width="0.2" height="15.0" fill="rgb(71,807901,135)" rx="2" ry="2" />
<text x="618.35" y="447.5" ></text>
</g>
<g >
<title>_bt_readpage (181 samples, 0.26%)</title><rect x="341.4" y="373" width="3.0" height="15.0" fill="rgb(63,132,63)" rx="2" ry="2" />
<text x="344.35" y="383.5" ></text>
</g>
<g >
<title>_start (1,409 samples, 2.00%)</title><rect x="286.8" y="549" width="23.6" height="15.0" fill="rgb(239,139,37)" rx="2" ry="2" />
<text x="289.83" y="559.5" >_..</text>
</g>
<g >
<title>native_smp_send_reschedule (334 samples, 0.47%)</title><rect x="678.7" y="101" width="5.6" height="15.0" fill="rgb(237,158,35)" rx="2" ry="2" />
<text x="681.72" y="111.5" ></text>
</g>
<g >
<title>update_load_avg (7 samples, 0.01%)</title><rect x="307.7" y="277" width="0.1" height="15.0" fill="rgb(240,150,38)" rx="2" ry="2" />
<text x="310.66" y="287.5" ></text>
</g>
<g >
<title>ExecScan (2,245 samples, 3.19%)</title><rect x="472.9" y="405" width="37.7" height="15.0" fill="rgb(81,85,93)" rx="2" ry="2" />
<text x="475.95" y="415.5" >Exe..</text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (34 samples, 0.05%)</title><rect x="186.1" y="229" width="0.5" height="15.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text x="189.06" y="239.5" ></text>
</g>
<g >
<title>_int_free (25 samples, 0.04%)</title><rect x="282.7" y="485" width="0.4" height="15.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text x="285.66" y="495.5" ></text>
</g>
<g >
<title>malloc (202 samples, 0.29%)</title><rect x="114.4" y="453" width="3.4" height="15.0" fill="rgb(238,112,36)" rx="2" ry="2" />
<text x="117.37" y="463.5" ></text>
</g>
<g >
<title>hrtimer_cancel (383 samples, 0.54%)</title><rect x="1150.2" y="453" width="6.5" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" />
<text x="1153.24" y="463.5" ></text>
</g>
<g >
<title>PreCommit_Portals (1,723 samples, 2.45%)</title><rect x="728.6" y="405" width="28.9" height="15.0" fill="rgb(197,173,192)" rx="2" ry="2" />
<text x="731.65" y="415.5" >Pr..</text>
</g>
<g >
<title>resched_curr (418 samples, 0.59%)</title><rect x="175.7" y="117" width="7.0" height="15.0" fill="rgb(237,165,35)" rx="2" ry="2" />
<text x="178.69" y="127.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (54 samples, 0.08%)</title><rect x="862.3" y="325" width="0.9" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="865.32" y="335.5" ></text>
</g>
<g >
<title>SearchCatCache1 (43 samples, 0.06%)</title><rect x="575.4" y="357" width="0.7" height="15.0" fill="rgb(142,62,219)" rx="2" ry="2" />
<text x="578.35" y="367.5" ></text>
</g>
<g >
<title>ExecutorFinish (18 samples, 0.03%)</title><rect x="731.9" y="357" width="0.3" height="15.0" fill="rgb(81,84,4439556)" rx="2" ry="2" />
<text x="734.95" y="367.5" ></text>
</g>
<g >
<title>MemoryContextReset (24 samples, 0.03%)</title><rect x="446.4" y="453" width="0.4" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="449.36" y="463.5" ></text>
</g>
<g >
<title>ExecTypeFromTLInternal (339 samples, 0.48%)</title><rect x="590.2" y="373" width="5.7" height="15.0" fill="rgb(81,86,93)" rx="2" ry="2" />
<text x="593.20" y="383.5" ></text>
</g>
<g >
<title>_bt_drop_lock_and_maybe_pin.isra.1 (72 samples, 0.10%)</title><rect x="336.9" y="373" width="1.2" height="15.0" fill="rgb(63,132,62)" rx="2" ry="2" />
<text x="339.91" y="383.5" ></text>
</g>
<g >
<title>internal_putbytes (50 samples, 0.07%)</title><rect x="617.8" y="405" width="0.9" height="15.0" fill="rgb(88,173,151)" rx="2" ry="2" />
<text x="620.83" y="415.5" ></text>
</g>
<g >
<title>pg_snprintf (291 samples, 0.41%)</title><rect x="524.3" y="437" width="4.9" height="15.0" fill="rgb(54790,201,184)" rx="2" ry="2" />
<text x="527.32" y="447.5" ></text>
</g>
<g >
<title>pollwake (9 samples, 0.01%)</title><rect x="913.2" y="149" width="0.2" height="15.0" fill="rgb(243,208,42)" rx="2" ry="2" />
<text x="916.22" y="159.5" ></text>
</g>
<g >
<title>__libc_send (4,294 samples, 6.10%)</title><rect x="125.9" y="421" width="72.0" height="15.0" fill="rgb(251,154,51)" rx="2" ry="2" />
<text x="128.95" y="431.5" >__libc_s..</text>
</g>
<g >
<title>grab_cache_page_write_begin (8 samples, 0.01%)</title><rect x="12.3" y="341" width="0.1" height="15.0" fill="rgb(243,182,42)" rx="2" ry="2" />
<text x="15.30" y="351.5" ></text>
</g>
<g >
<title>sys_ioctl (7 samples, 0.01%)</title><rect x="1189.4" y="453" width="0.1" height="15.0" fill="rgb(232,167,30)" rx="2" ry="2" />
<text x="1192.40" y="463.5" ></text>
</g>
<g >
<title>import_single_range (17 samples, 0.02%)</title><rect x="631.7" y="309" width="0.3" height="15.0" fill="rgb(247,126,46)" rx="2" ry="2" />
<text x="634.72" y="319.5" ></text>
</g>
<g >
<title>ResourceArrayRemove (9 samples, 0.01%)</title><rect x="548.8" y="357" width="0.2" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="551.81" y="367.5" ></text>
</g>
<g >
<title>prefetch_freepointer.isra.60 (13 samples, 0.02%)</title><rect x="150.2" y="245" width="0.2" height="15.0" fill="rgb(223,177,19)" rx="2" ry="2" />
<text x="153.19" y="255.5" ></text>
</g>
<g >
<title>pgstat_initstats (13 samples, 0.02%)</title><rect x="604.0" y="325" width="0.2" height="15.0" fill="rgb(106,166,185)" rx="2" ry="2" />
<text x="606.99" y="335.5" ></text>
</g>
<g >
<title>__check_object_size (51 samples, 0.07%)</title><rect x="74.3" y="293" width="0.9" height="15.0" fill="rgb(245,144,44)" rx="2" ry="2" />
<text x="77.31" y="303.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (102 samples, 0.14%)</title><rect x="537.3" y="389" width="1.7" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="540.27" y="399.5" ></text>
</g>
<g >
<title>IndexScanEnd (6 samples, 0.01%)</title><rect x="737.7" y="325" width="0.1" height="15.0" fill="rgb(61,97,147)" rx="2" ry="2" />
<text x="740.74" y="335.5" ></text>
</g>
<g >
<title>palloc0 (19 samples, 0.03%)</title><rect x="613.1" y="405" width="0.3" height="15.0" fill="rgb(3537,90,177)" rx="2" ry="2" />
<text x="616.09" y="415.5" ></text>
</g>
<g >
<title>__alloc_skb (27 samples, 0.04%)</title><rect x="298.3" y="261" width="0.5" height="15.0" fill="rgb(227,151,24)" rx="2" ry="2" />
<text x="301.32" y="271.5" ></text>
</g>
<g >
<title>switch_mm_irqs_off (522 samples, 0.74%)</title><rect x="1070.4" y="453" width="8.7" height="15.0" fill="rgb(246,115,45)" rx="2" ry="2" />
<text x="1073.38" y="463.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (1,144 samples, 1.62%)</title><rect x="841.5" y="293" width="19.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="844.54" y="303.5" ></text>
</g>
<g >
<title>check_preempt_curr (50 samples, 0.07%)</title><rect x="300.6" y="117" width="0.8" height="15.0" fill="rgb(237,116,35)" rx="2" ry="2" />
<text x="303.60" y="127.5" ></text>
</g>
<g >
<title>int4in (122 samples, 0.17%)</title><rect x="452.3" y="421" width="2.1" height="15.0" fill="rgb(140,570645941054194,150)" rx="2" ry="2" />
<text x="455.34" y="431.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (37 samples, 0.05%)</title><rect x="472.3" y="405" width="0.6" height="15.0" fill="rgb(81,85,92)" rx="2" ry="2" />
<text x="475.33" y="415.5" ></text>
</g>
<g >
<title>clockevents_program_event (46 samples, 0.07%)</title><rect x="1185.3" y="341" width="0.8" height="15.0" fill="rgb(241,102,39)" rx="2" ry="2" />
<text x="1188.31" y="351.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (68 samples, 0.10%)</title><rect x="449.4" y="437" width="1.2" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="452.44" y="447.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (24 samples, 0.03%)</title><rect x="563.2" y="357" width="0.4" height="15.0" fill="rgb(81,84,95)" rx="2" ry="2" />
<text x="566.24" y="367.5" ></text>
</g>
<g >
<title>ResourceArrayRemove (16 samples, 0.02%)</title><rect x="733.2" y="309" width="0.2" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="736.17" y="319.5" ></text>
</g>
<g >
<title>__fget_light (23 samples, 0.03%)</title><rect x="78.5" y="357" width="0.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="81.55" y="367.5" ></text>
</g>
<g >
<title>unix_stream_read_generic (1,317 samples, 1.87%)</title><rect x="55.1" y="341" width="22.0" height="15.0" fill="rgb(228,145,25)" rx="2" ry="2" />
<text x="58.05" y="351.5" >u..</text>
</g>
<g >
<title>deregister_seq_scan (25 samples, 0.04%)</title><rect x="756.8" y="373" width="0.4" height="15.0" fill="rgb(147,79,81)" rx="2" ry="2" />
<text x="759.81" y="383.5" ></text>
</g>
<g >
<title>__check_object_size (34 samples, 0.05%)</title><rect x="142.3" y="293" width="0.6" height="15.0" fill="rgb(245,144,44)" rx="2" ry="2" />
<text x="145.32" y="303.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (175 samples, 0.25%)</title><rect x="440.7" y="405" width="2.9" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="443.66" y="415.5" ></text>
</g>
<g >
<title>skb_release_data (186 samples, 0.26%)</title><rect x="901.4" y="245" width="3.1" height="15.0" fill="rgb(235,143,33)" rx="2" ry="2" />
<text x="904.39" y="255.5" ></text>
</g>
<g >
<title>sys_ppoll (17 samples, 0.02%)</title><rect x="273.3" y="469" width="0.2" height="15.0" fill="rgb(229,167,26)" rx="2" ry="2" />
<text x="276.26" y="479.5" ></text>
</g>
<g >
<title>ResourceOwnerReleaseInternal (1,238 samples, 1.76%)</title><rect x="761.6" y="405" width="20.7" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="764.57" y="415.5" ></text>
</g>
<g >
<title>__strlen_sse2_pminub (11 samples, 0.02%)</title><rect x="435.2" y="405" width="0.2" height="15.0" fill="rgb(231,132,29)" rx="2" ry="2" />
<text x="438.21" y="415.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (137 samples, 0.19%)</title><rect x="270.5" y="453" width="2.3" height="15.0" fill="rgb(236,167,34)" rx="2" ry="2" />
<text x="273.54" y="463.5" ></text>
</g>
<g >
<title>poll_freewait (16 samples, 0.02%)</title><rect x="306.7" y="405" width="0.2" height="15.0" fill="rgb(237,208,35)" rx="2" ry="2" />
<text x="309.65" y="415.5" ></text>
</g>
<g >
<title>check_preempt_curr (572 samples, 0.81%)</title><rect x="674.9" y="133" width="9.6" height="15.0" fill="rgb(237,116,35)" rx="2" ry="2" />
<text x="677.90" y="143.5" ></text>
</g>
<g >
<title>palloc (20 samples, 0.03%)</title><rect x="533.9" y="421" width="0.3" height="15.0" fill="rgb(3537,90,-354911973014429)" rx="2" ry="2" />
<text x="536.88" y="431.5" ></text>
</g>
<g >
<title>LWLockAcquire (35 samples, 0.05%)</title><rect x="368.5" y="341" width="0.6" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="371.54" y="351.5" ></text>
</g>
<g >
<title>_bt_search (2,385 samples, 3.39%)</title><rect x="344.4" y="373" width="39.9" height="15.0" fill="rgb(63,132,63)" rx="2" ry="2" />
<text x="347.38" y="383.5" >_bt..</text>
</g>
<g >
<title>_int_free (93 samples, 0.13%)</title><rect x="739.4" y="309" width="1.5" height="15.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text x="742.35" y="319.5" ></text>
</g>
<g >
<title>tick_program_event (845 samples, 1.20%)</title><rect x="1112.7" y="405" width="14.2" height="15.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text x="1115.74" y="415.5" ></text>
</g>
<g >
<title>__block_commit_write.isra.32 (13 samples, 0.02%)</title><rect x="12.5" y="309" width="0.2" height="15.0" fill="rgb(240,148,38)" rx="2" ry="2" />
<text x="15.46" y="319.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (15 samples, 0.02%)</title><rect x="688.1" y="229" width="0.2" height="15.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text x="691.08" y="239.5" ></text>
</g>
<g >
<title>generic_smp_call_function_single_interrupt (8 samples, 0.01%)</title><rect x="1135.7" y="437" width="0.2" height="15.0" fill="rgb(236,189,34)" rx="2" ry="2" />
<text x="1138.75" y="447.5" ></text>
</g>
<g >
<title>calc_load_nohz_stop (7 samples, 0.01%)</title><rect x="1147.5" y="453" width="0.1" height="15.0" fill="rgb(244,112,43)" rx="2" ry="2" />
<text x="1150.51" y="463.5" ></text>
</g>
<g >
<title>hash_search (8 samples, 0.01%)</title><rect x="610.6" y="341" width="0.1" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="613.61" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (20 samples, 0.03%)</title><rect x="223.2" y="437" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="226.16" y="447.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (77 samples, 0.11%)</title><rect x="1011.8" y="421" width="1.3" height="15.0" fill="rgb(236,134,34)" rx="2" ry="2" />
<text x="1014.84" y="431.5" ></text>
</g>
<g >
<title>FreeExecutorState (218 samples, 0.31%)</title><rect x="745.0" y="341" width="3.6" height="15.0" fill="rgb(81,87,99)" rx="2" ry="2" />
<text x="747.97" y="351.5" ></text>
</g>
<g >
<title>unix_stream_sendmsg (3,287 samples, 4.67%)</title><rect x="635.5" y="293" width="55.1" height="15.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text x="638.54" y="303.5" >unix_..</text>
</g>
<g >
<title>irq_enter (7 samples, 0.01%)</title><rect x="1012.6" y="389" width="0.1" height="15.0" fill="rgb(240,153,38)" rx="2" ry="2" />
<text x="1015.63" y="399.5" ></text>
</g>
<g >
<title>LWLockAcquire (311 samples, 0.44%)</title><rect x="372.1" y="309" width="5.3" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="375.15" y="319.5" ></text>
</g>
<g >
<title>irq_exit (10 samples, 0.01%)</title><rect x="1028.0" y="373" width="0.2" height="15.0" fill="rgb(237,153,36)" rx="2" ry="2" />
<text x="1031.01" y="383.5" ></text>
</g>
<g >
<title>lookupCreateVariable (67 samples, 0.10%)</title><rect x="283.3" y="485" width="1.1" height="15.0" fill="rgb(208,154,164)" rx="2" ry="2" />
<text x="286.26" y="495.5" ></text>
</g>
<g >
<title>nr_iowait_cpu (180 samples, 0.26%)</title><rect x="1143.3" y="469" width="3.0" height="15.0" fill="rgb(238,174,36)" rx="2" ry="2" />
<text x="1146.30" y="479.5" ></text>
</g>
<g >
<title>pg_vsnprintf (282 samples, 0.40%)</title><rect x="524.5" y="421" width="4.7" height="15.0" fill="rgb(54790,201,187)" rx="2" ry="2" />
<text x="527.47" y="431.5" ></text>
</g>
<g >
<title>lapic_next_deadline (34 samples, 0.05%)</title><rect x="1176.2" y="421" width="0.5" height="15.0" fill="rgb(246,107,46)" rx="2" ry="2" />
<text x="1179.18" y="431.5" ></text>
</g>
<g >
<title>enlargeStringInfo (40 samples, 0.06%)</title><rect x="942.2" y="437" width="0.7" height="15.0" fill="rgb(86,215,86)" rx="2" ry="2" />
<text x="945.24" y="447.5" ></text>
</g>
<g >
<title>SearchSysCache1 (14 samples, 0.02%)</title><rect x="550.5" y="389" width="0.3" height="15.0" fill="rgb(142,76965,219)" rx="2" ry="2" />
<text x="553.52" y="399.5" ></text>
</g>
<g >
<title>__hrtimer_get_next_event (25 samples, 0.04%)</title><rect x="1109.4" y="421" width="0.5" height="15.0" fill="rgb(241,128,39)" rx="2" ry="2" />
<text x="1112.44" y="431.5" ></text>
</g>
<g >
<title>unroll_tree_refs (16 samples, 0.02%)</title><rect x="190.4" y="341" width="0.2" height="15.0" fill="rgb(239,154,37)" rx="2" ry="2" />
<text x="193.37" y="351.5" ></text>
</g>
<g >
<title>ReScanExprContext (20 samples, 0.03%)</title><rect x="472.0" y="373" width="0.3" height="15.0" fill="rgb(81,87,205)" rx="2" ry="2" />
<text x="474.96" y="383.5" ></text>
</g>
<g >
<title>cmpxchg_double_slab.isra.64 (28 samples, 0.04%)</title><rect x="904.0" y="181" width="0.5" height="15.0" fill="rgb(233,94,31)" rx="2" ry="2" />
<text x="907.02" y="191.5" ></text>
</g>
<g >
<title>AllocSetReset (29 samples, 0.04%)</title><rect x="730.3" y="341" width="0.5" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="733.34" y="351.5" ></text>
</g>
<g >
<title>IsCatalogClass (29 samples, 0.04%)</title><rect x="503.3" y="309" width="0.5" height="15.0" fill="rgb(78,62,152)" rx="2" ry="2" />
<text x="506.29" y="319.5" ></text>
</g>
<g >
<title>pq_beginmessage_reuse (7 samples, 0.01%)</title><rect x="516.3" y="389" width="0.1" height="15.0" fill="rgb(88,174,190)" rx="2" ry="2" />
<text x="519.27" y="399.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (9 samples, 0.01%)</title><rect x="704.5" y="405" width="0.2" height="15.0" fill="rgb(142,62,66)" rx="2" ry="2" />
<text x="707.54" y="415.5" ></text>
</g>
<g >
<title>LockReleaseAll (134 samples, 0.19%)</title><rect x="763.3" y="389" width="2.2" height="15.0" fill="rgb(129,24381895395797,11213631)" rx="2" ry="2" />
<text x="766.26" y="399.5" ></text>
</g>
<g >
<title>run_rebalance_domains (40 samples, 0.06%)</title><rect x="1181.2" y="293" width="0.7" height="15.0" fill="rgb(240,156,38)" rx="2" ry="2" />
<text x="1184.20" y="303.5" ></text>
</g>
<g >
<title>pg_sprintf (14 samples, 0.02%)</title><rect x="304.9" y="485" width="0.2" height="15.0" fill="rgb(54790,201,184)" rx="2" ry="2" />
<text x="307.89" y="495.5" ></text>
</g>
<g >
<title>relation_close (43 samples, 0.06%)</title><rect x="750.2" y="341" width="0.7" height="15.0" fill="rgb(53,98942,201)" rx="2" ry="2" />
<text x="753.23" y="351.5" ></text>
</g>
<g >
<title>native_write_msr (427 samples, 0.61%)</title><rect x="1169.0" y="405" width="7.1" height="15.0" fill="rgb(241,158,40)" rx="2" ry="2" />
<text x="1171.97" y="415.5" ></text>
</g>
<g >
<title>ReadBuffer_common (288 samples, 0.41%)</title><rect x="492.9" y="309" width="4.8" height="15.0" fill="rgb(121,61,198)" rx="2" ry="2" />
<text x="495.90" y="319.5" ></text>
</g>
<g >
<title>hash_any (22 samples, 0.03%)</title><rect x="608.5" y="293" width="0.3" height="15.0" fill="rgb(147,107,143)" rx="2" ry="2" />
<text x="611.46" y="303.5" ></text>
</g>
<g >
<title>malloc@plt (7 samples, 0.01%)</title><rect x="105.3" y="453" width="0.1" height="15.0" fill="rgb(231,112,29)" rx="2" ry="2" />
<text x="108.27" y="463.5" ></text>
</g>
<g >
<title>_autofs_dev_ioctl (6 samples, 0.01%)</title><rect x="1189.4" y="405" width="0.1" height="15.0" fill="rgb(232,115,30)" rx="2" ry="2" />
<text x="1192.40" y="415.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (74 samples, 0.11%)</title><rect x="1084.6" y="421" width="1.3" height="15.0" fill="rgb(241,163,40)" rx="2" ry="2" />
<text x="1087.64" y="431.5" ></text>
</g>
<g >
<title>cmpxchg_double_slab.isra.64 (19 samples, 0.03%)</title><rect x="901.0" y="213" width="0.3" height="15.0" fill="rgb(233,94,31)" rx="2" ry="2" />
<text x="903.99" y="223.5" ></text>
</g>
<g >
<title>ep_poll (236 samples, 0.34%)</title><rect x="971.7" y="501" width="3.9" height="15.0" fill="rgb(229,176,26)" rx="2" ry="2" />
<text x="974.68" y="511.5" ></text>
</g>
<g >
<title>do_syscall_64 (237 samples, 0.34%)</title><rect x="971.7" y="533" width="4.0" height="15.0" fill="rgb(232,189,30)" rx="2" ry="2" />
<text x="974.68" y="543.5" ></text>
</g>
<g >
<title>pick_next_task_fair (469 samples, 0.67%)</title><rect x="1062.2" y="453" width="7.8" height="15.0" fill="rgb(240,174,39)" rx="2" ry="2" />
<text x="1065.19" y="463.5" ></text>
</g>
<g >
<title>palloc (41 samples, 0.06%)</title><rect x="792.7" y="453" width="0.7" height="15.0" fill="rgb(3537,90,-354911973014429)" rx="2" ry="2" />
<text x="795.67" y="463.5" ></text>
</g>
<g >
<title>strlcpy (8 samples, 0.01%)</title><rect x="414.2" y="421" width="0.1" height="15.0" fill="rgb(54790,217,578071)" rx="2" ry="2" />
<text x="417.19" y="431.5" ></text>
</g>
<g >
<title>RegisterSnapshot (11 samples, 0.02%)</title><rect x="531.5" y="421" width="0.2" height="15.0" fill="rgb(202,201,201)" rx="2" ry="2" />
<text x="534.47" y="431.5" ></text>
</g>
<g >
<title>dostr (6 samples, 0.01%)</title><rect x="225.5" y="453" width="0.1" height="15.0" fill="rgb(54790,201,83)" rx="2" ry="2" />
<text x="228.45" y="463.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly.part.1 (29 samples, 0.04%)</title><rect x="514.4" y="389" width="0.5" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="517.38" y="399.5" ></text>
</g>
<g >
<title>deregister_seq_scan (20 samples, 0.03%)</title><rect x="752.9" y="389" width="0.4" height="15.0" fill="rgb(147,79,81)" rx="2" ry="2" />
<text x="755.92" y="399.5" ></text>
</g>
<g >
<title>ResourceArrayRemove (18 samples, 0.03%)</title><rect x="749.6" y="309" width="0.3" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="752.62" y="319.5" ></text>
</g>
<g >
<title>__clone (15,674 samples, 22.26%)</title><rect x="21.8" y="549" width="262.6" height="15.0" fill="rgb(251,144,50)" rx="2" ry="2" />
<text x="24.76" y="559.5" >__clone</text>
</g>
<g >
<title>kvm_clock_get_cycles (8 samples, 0.01%)</title><rect x="1152.3" y="357" width="0.1" height="15.0" fill="rgb(244,130,43)" rx="2" ry="2" />
<text x="1155.28" y="367.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (13 samples, 0.02%)</title><rect x="242.0" y="421" width="0.3" height="15.0" fill="rgb(243,140,42)" rx="2" ry="2" />
<text x="245.04" y="431.5" ></text>
</g>
<g >
<title>choose_custom_plan (24 samples, 0.03%)</title><rect x="433.8" y="437" width="0.4" height="15.0" fill="rgb(142,170,68)" rx="2" ry="2" />
<text x="436.84" y="447.5" ></text>
</g>
<g >
<title>MemoryContextAllocZeroAligned (58 samples, 0.08%)</title><rect x="546.3" y="405" width="1.0" height="15.0" fill="rgb(197,129,168)" rx="2" ry="2" />
<text x="549.33" y="415.5" ></text>
</g>
<g >
<title>sshd (18 samples, 0.03%)</title><rect x="976.2" y="565" width="0.3" height="15.0" fill="rgb(244,139,43)" rx="2" ry="2" />
<text x="979.17" y="575.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (66 samples, 0.09%)</title><rect x="335.7" y="341" width="1.1" height="15.0" fill="rgb(145,11509185,31898427440)" rx="2" ry="2" />
<text x="338.74" y="351.5" ></text>
</g>
<g >
<title>native_write_msr (9 samples, 0.01%)</title><rect x="1187.7" y="325" width="0.1" height="15.0" fill="rgb(241,158,40)" rx="2" ry="2" />
<text x="1190.65" y="335.5" ></text>
</g>
<g >
<title>kvm_guest_apic_eoi_write (354 samples, 0.50%)</title><rect x="1018.3" y="389" width="5.9" height="15.0" fill="rgb(240,130,38)" rx="2" ry="2" />
<text x="1021.28" y="399.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (10 samples, 0.01%)</title><rect x="519.5" y="341" width="0.2" height="15.0" fill="rgb(142,62,66)" rx="2" ry="2" />
<text x="522.51" y="351.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (9 samples, 0.01%)</title><rect x="572.0" y="357" width="0.1" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="574.95" y="367.5" ></text>
</g>
<g >
<title>bsearch (9 samples, 0.01%)</title><rect x="304.0" y="389" width="0.1" height="15.0" fill="rgb(243,124,42)" rx="2" ry="2" />
<text x="306.97" y="399.5" ></text>
</g>
<g >
<title>malloc (7 samples, 0.01%)</title><rect x="304.8" y="437" width="0.1" height="15.0" fill="rgb(238,112,36)" rx="2" ry="2" />
<text x="307.76" y="447.5" ></text>
</g>
<g >
<title>perf.4.14.35-18 (66 samples, 0.09%)</title><rect x="11.7" y="565" width="1.1" height="15.0" fill="rgb(232,184,30)" rx="2" ry="2" />
<text x="14.74" y="575.5" ></text>
</g>
<g >
<title>next_online_pgdat (29 samples, 0.04%)</title><rect x="1046.3" y="437" width="0.5" height="15.0" fill="rgb(231,219,29)" rx="2" ry="2" />
<text x="1049.29" y="447.5" ></text>
</g>
<g >
<title>sys_sendto (3,661 samples, 5.20%)</title><rect x="630.3" y="341" width="61.4" height="15.0" fill="rgb(243,167,42)" rx="2" ry="2" />
<text x="633.31" y="351.5" >sys_se..</text>
</g>
<g >
<title>ksize (10 samples, 0.01%)</title><rect x="298.6" y="245" width="0.2" height="15.0" fill="rgb(245,119,44)" rx="2" ry="2" />
<text x="301.61" y="255.5" ></text>
</g>
<g >
<title>pfree (7 samples, 0.01%)</title><rect x="734.2" y="325" width="0.1" height="15.0" fill="rgb(3537,90,12881895)" rx="2" ry="2" />
<text x="737.16" y="335.5" ></text>
</g>
<g >
<title>pqGets (240 samples, 0.34%)</title><rect x="110.1" y="469" width="4.1" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="113.13" y="479.5" ></text>
</g>
<g >
<title>palloc (23 samples, 0.03%)</title><rect x="523.8" y="373" width="0.4" height="15.0" fill="rgb(3537,90,-354911973014429)" rx="2" ry="2" />
<text x="526.85" y="383.5" ></text>
</g>
<g >
<title>switch_mm_irqs_off (133 samples, 0.19%)</title><rect x="256.8" y="309" width="2.2" height="15.0" fill="rgb(246,115,45)" rx="2" ry="2" />
<text x="259.82" y="319.5" ></text>
</g>
<g >
<title>_copy_from_iter (13 samples, 0.02%)</title><rect x="637.3" y="277" width="0.3" height="15.0" fill="rgb(240,180,38)" rx="2" ry="2" />
<text x="640.35" y="287.5" ></text>
</g>
<g >
<title>GetCurrentTransactionNestLevel (7 samples, 0.01%)</title><rect x="459.5" y="405" width="0.2" height="15.0" fill="rgb(71,807901,135)" rx="2" ry="2" />
<text x="462.54" y="415.5" ></text>
</g>
<g >
<title>__fget_light (32 samples, 0.05%)</title><rect x="690.8" y="293" width="0.6" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="693.85" y="303.5" ></text>
</g>
<g >
<title>__strchrnul (42 samples, 0.06%)</title><rect x="224.7" y="453" width="0.7" height="15.0" fill="rgb(231,132,29)" rx="2" ry="2" />
<text x="227.67" y="463.5" ></text>
</g>
<g >
<title>sched_clock (47 samples, 0.07%)</title><rect x="859.1" y="213" width="0.8" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="862.12" y="223.5" ></text>
</g>
<g >
<title>__check_heap_object (18 samples, 0.03%)</title><rect x="142.4" y="277" width="0.4" height="15.0" fill="rgb(241,144,39)" rx="2" ry="2" />
<text x="145.45" y="287.5" ></text>
</g>
<g >
<title>clockevents_program_event (6 samples, 0.01%)</title><rect x="689.5" y="149" width="0.1" height="15.0" fill="rgb(241,102,39)" rx="2" ry="2" />
<text x="692.47" y="159.5" ></text>
</g>
<g >
<title>PyEval_EvalFrameEx (8 samples, 0.01%)</title><rect x="11.2" y="549" width="0.1" height="15.0" fill="rgb(248,201,47)" rx="2" ry="2" />
<text x="14.19" y="559.5" ></text>
</g>
<g >
<title>tag_hash (22 samples, 0.03%)</title><rect x="429.9" y="341" width="0.3" height="15.0" fill="rgb(147,107,232)" rx="2" ry="2" />
<text x="432.87" y="351.5" ></text>
</g>
<g >
<title>copyout (6 samples, 0.01%)</title><rect x="920.7" y="229" width="0.1" height="15.0" fill="rgb(234,140,32)" rx="2" ry="2" />
<text x="923.73" y="239.5" ></text>
</g>
<g >
<title>rcu_needs_cpu (20 samples, 0.03%)</title><rect x="1087.4" y="453" width="0.4" height="15.0" fill="rgb(238,169,36)" rx="2" ry="2" />
<text x="1090.44" y="463.5" ></text>
</g>
<g >
<title>pqParseInput3 (132 samples, 0.19%)</title><rect x="294.0" y="469" width="2.2" height="15.0" fill="rgb(241,91,191)" rx="2" ry="2" />
<text x="296.98" y="479.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (54 samples, 0.08%)</title><rect x="545.4" y="405" width="0.9" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="548.43" y="415.5" ></text>
</g>
<g >
<title>iscsi_tcp_task_xmit (15 samples, 0.02%)</title><rect x="10.5" y="453" width="0.3" height="15.0" fill="rgb(237,155,35)" rx="2" ry="2" />
<text x="13.50" y="463.5" ></text>
</g>
<g >
<title>do_syscall_64 (321 samples, 0.46%)</title><rect x="296.9" y="373" width="5.4" height="15.0" fill="rgb(232,189,30)" rx="2" ry="2" />
<text x="299.90" y="383.5" ></text>
</g>
<g >
<title>native_write_msr (12 samples, 0.02%)</title><rect x="689.7" y="37" width="0.2" height="15.0" fill="rgb(241,158,40)" rx="2" ry="2" />
<text x="692.72" y="47.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (26 samples, 0.04%)</title><rect x="309.6" y="469" width="0.5" height="15.0" fill="rgb(238,167,36)" rx="2" ry="2" />
<text x="312.65" y="479.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (7 samples, 0.01%)</title><rect x="291.5" y="277" width="0.1" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="294.47" y="287.5" ></text>
</g>
<g >
<title>ResourceArrayAdd (6 samples, 0.01%)</title><rect x="602.5" y="309" width="0.1" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="605.50" y="319.5" ></text>
</g>
<g >
<title>_copy_from_iter (7 samples, 0.01%)</title><rect x="297.9" y="277" width="0.2" height="15.0" fill="rgb(240,180,38)" rx="2" ry="2" />
<text x="300.94" y="287.5" ></text>
</g>
<g >
<title>AfterTriggerEndXact (12 samples, 0.02%)</title><rect x="715.7" y="405" width="0.2" height="15.0" fill="rgb(79,33335,52)" rx="2" ry="2" />
<text x="718.66" y="415.5" ></text>
</g>
<g >
<title>string_hash (15 samples, 0.02%)</title><rect x="751.8" y="357" width="0.3" height="15.0" fill="rgb(147,107,230)" rx="2" ry="2" />
<text x="754.80" y="367.5" ></text>
</g>
<g >
<title>ReleaseCatCache (11 samples, 0.02%)</title><rect x="703.8" y="421" width="0.2" height="15.0" fill="rgb(142,62,202)" rx="2" ry="2" />
<text x="706.80" y="431.5" ></text>
</g>
<g >
<title>[unknown] (18 samples, 0.03%)</title><rect x="305.3" y="469" width="0.3" height="15.0" fill="rgb(242,180,40)" rx="2" ry="2" />
<text x="308.26" y="479.5" ></text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.01%)</title><rect x="976.4" y="533" width="0.1" height="15.0" fill="rgb(232,189,30)" rx="2" ry="2" />
<text x="979.35" y="543.5" ></text>
</g>
<g >
<title>__errno_location (8 samples, 0.01%)</title><rect x="34.3" y="469" width="0.2" height="15.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text x="37.35" y="479.5" ></text>
</g>
<g >
<title>schedule (236 samples, 0.34%)</title><rect x="971.7" y="453" width="3.9" height="15.0" fill="rgb(237,164,35)" rx="2" ry="2" />
<text x="974.68" y="463.5" ></text>
</g>
<g >
<title>internal_flush (4,859 samples, 6.90%)</title><rect x="619.4" y="421" width="81.4" height="15.0" fill="rgb(88,173,151)" rx="2" ry="2" />
<text x="622.40" y="431.5" >internal_..</text>
</g>
<g >
<title>pqPrepareAsyncResult (39 samples, 0.06%)</title><rect x="97.6" y="485" width="0.6" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="100.60" y="495.5" ></text>
</g>
<g >
<title>do_syscall_64 (197 samples, 0.28%)</title><rect x="306.1" y="453" width="3.3" height="15.0" fill="rgb(232,189,30)" rx="2" ry="2" />
<text x="309.13" y="463.5" ></text>
</g>
<g >
<title>unix_stream_sendmsg (3,006 samples, 4.27%)</title><rect x="137.7" y="325" width="50.4" height="15.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text x="140.69" y="335.5" >unix_..</text>
</g>
<g >
<title>unix_stream_read_generic (1,643 samples, 2.33%)</title><rect x="893.3" y="293" width="27.5" height="15.0" fill="rgb(228,145,25)" rx="2" ry="2" />
<text x="896.32" y="303.5" >u..</text>
</g>
<g >
<title>native_smp_send_reschedule (293 samples, 0.42%)</title><rect x="177.7" y="101" width="4.9" height="15.0" fill="rgb(237,158,35)" rx="2" ry="2" />
<text x="180.67" y="111.5" ></text>
</g>
<g >
<title>__kmalloc_node_track_caller (13 samples, 0.02%)</title><rect x="646.4" y="229" width="0.2" height="15.0" fill="rgb(245,119,44)" rx="2" ry="2" />
<text x="649.40" y="239.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (55 samples, 0.08%)</title><rect x="1154.0" y="421" width="0.9" height="15.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text x="1157.03" y="431.5" ></text>
</g>
<g >
<title>SearchSysCache1 (32 samples, 0.05%)</title><rect x="789.2" y="437" width="0.6" height="15.0" fill="rgb(142,76965,219)" rx="2" ry="2" />
<text x="792.23" y="447.5" ></text>
</g>
<g >
<title>do_sys_poll (160 samples, 0.23%)</title><rect x="306.4" y="421" width="2.7" height="15.0" fill="rgb(229,189,26)" rx="2" ry="2" />
<text x="309.43" y="431.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (241 samples, 0.34%)</title><rect x="310.7" y="469" width="4.1" height="15.0" fill="rgb(247,164,46)" rx="2" ry="2" />
<text x="313.72" y="479.5" ></text>
</g>
<g >
<title>__strlen_sse2_pminub (6 samples, 0.01%)</title><rect x="416.4" y="405" width="0.1" height="15.0" fill="rgb(231,132,29)" rx="2" ry="2" />
<text x="419.41" y="415.5" ></text>
</g>
<g >
<title>put_prev_task_idle (7 samples, 0.01%)</title><rect x="1070.1" y="453" width="0.1" height="15.0" fill="rgb(240,152,39)" rx="2" ry="2" />
<text x="1073.07" y="463.5" ></text>
</g>
<g >
<title>palloc (32 samples, 0.05%)</title><rect x="599.7" y="325" width="0.5" height="15.0" fill="rgb(3537,90,-354911973014429)" rx="2" ry="2" />
<text x="602.66" y="335.5" ></text>
</g>
<g >
<title>pairingheap_remove_first (37 samples, 0.05%)</title><rect x="733.5" y="325" width="0.7" height="15.0" fill="rgb(86,145,177)" rx="2" ry="2" />
<text x="736.54" y="335.5" ></text>
</g>
<g >
<title>sock_wfree (363 samples, 0.52%)</title><rect x="63.5" y="261" width="6.1" height="15.0" fill="rgb(246,175,46)" rx="2" ry="2" />
<text x="66.52" y="271.5" ></text>
</g>
<g >
<title>expression_tree_walker (16 samples, 0.02%)</title><rect x="587.0" y="325" width="0.3" height="15.0" fill="rgb(91,136,452238107559)" rx="2" ry="2" />
<text x="590.00" y="335.5" ></text>
</g>
<g >
<title>RelationIncrementReferenceCount (8 samples, 0.01%)</title><rect x="610.4" y="341" width="0.1" height="15.0" fill="rgb(142,187,202)" rx="2" ry="2" />
<text x="613.40" y="351.5" ></text>
</g>
<g >
<title>dequeue_entity (241 samples, 0.34%)</title><rect x="848.3" y="213" width="4.0" height="15.0" fill="rgb(240,203,38)" rx="2" ry="2" />
<text x="851.29" y="223.5" ></text>
</g>
<g >
<title>lock_hrtimer_base.isra.21 (55 samples, 0.08%)</title><rect x="1155.7" y="421" width="0.9" height="15.0" fill="rgb(225,151,22)" rx="2" ry="2" />
<text x="1158.67" y="431.5" ></text>
</g>
<g >
<title>rb_erase (24 samples, 0.03%)</title><rect x="1111.8" y="405" width="0.4" height="15.0" fill="rgb(247,112,46)" rx="2" ry="2" />
<text x="1114.79" y="415.5" ></text>
</g>
<g >
<title>kvm_steal_clock (43 samples, 0.06%)</title><rect x="183.7" y="149" width="0.7" height="15.0" fill="rgb(240,130,39)" rx="2" ry="2" />
<text x="186.68" y="159.5" ></text>
</g>
<g >
<title>AllocSetFree (7 samples, 0.01%)</title><rect x="407.2" y="453" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="410.25" y="463.5" ></text>
</g>
<g >
<title>rcu_idle_exit (67 samples, 0.10%)</title><rect x="1050.8" y="485" width="1.2" height="15.0" fill="rgb(237,169,36)" rx="2" ry="2" />
<text x="1053.83" y="495.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (15 samples, 0.02%)</title><rect x="138.9" y="309" width="0.3" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="141.91" y="319.5" ></text>
</g>
<g >
<title>btint4cmp (19 samples, 0.03%)</title><rect x="336.5" y="325" width="0.3" height="15.0" fill="rgb(63,131,63)" rx="2" ry="2" />
<text x="339.52" y="335.5" ></text>
</g>
<g >
<title>oracle-cloud-ag (51 samples, 0.07%)</title><rect x="10.9" y="565" width="0.8" height="15.0" fill="rgb(233,198,31)" rx="2" ry="2" />
<text x="13.89" y="575.5" ></text>
</g>
<g >
<title>malloc (9 samples, 0.01%)</title><rect x="295.9" y="421" width="0.2" height="15.0" fill="rgb(238,112,36)" rx="2" ry="2" />
<text x="298.94" y="431.5" ></text>
</g>
<g >
<title>ResourceOwnerReleaseInternal (72 samples, 0.10%)</title><rect x="781.1" y="389" width="1.2" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="784.11" y="399.5" ></text>
</g>
<g >
<title>resched_curr (462 samples, 0.66%)</title><rect x="676.7" y="117" width="7.8" height="15.0" fill="rgb(237,165,35)" rx="2" ry="2" />
<text x="679.74" y="127.5" ></text>
</g>
<g >
<title>ExecBuildProjectionInfo (398 samples, 0.57%)</title><rect x="557.7" y="373" width="6.7" height="15.0" fill="rgb(81,84,90)" rx="2" ry="2" />
<text x="560.73" y="383.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (17 samples, 0.02%)</title><rect x="245.0" y="373" width="0.3" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="247.97" y="383.5" ></text>
</g>
<g >
<title>rcu_eqs_exit.isra.32 (15 samples, 0.02%)</title><rect x="1047.9" y="485" width="0.2" height="15.0" fill="rgb(240,169,38)" rx="2" ry="2" />
<text x="1050.87" y="495.5" ></text>
</g>
<g >
<title>update_process_times (14 samples, 0.02%)</title><rect x="1138.9" y="373" width="0.3" height="15.0" fill="rgb(243,150,42)" rx="2" ry="2" />
<text x="1141.93" y="383.5" ></text>
</g>
<g >
<title>check_tsc_unstable (8 samples, 0.01%)</title><rect x="999.3" y="469" width="0.2" height="15.0" fill="rgb(241,116,40)" rx="2" ry="2" />
<text x="1002.34" y="479.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (111 samples, 0.16%)</title><rect x="381.3" y="341" width="1.9" height="15.0" fill="rgb(121,61,202)" rx="2" ry="2" />
<text x="384.34" y="351.5" ></text>
</g>
<g >
<title>planstate_tree_walker (37 samples, 0.05%)</title><rect x="511.0" y="389" width="0.7" height="15.0" fill="rgb(91,136,188)" rx="2" ry="2" />
<text x="514.05" y="399.5" ></text>
</g>
<g >
<title>UnpinBuffer.constprop.6 (23 samples, 0.03%)</title><rect x="507.9" y="325" width="0.4" height="15.0" fill="rgb(121,61,242)" rx="2" ry="2" />
<text x="510.88" y="335.5" ></text>
</g>
<g >
<title>ResourceArrayEnlarge.part.4 (27 samples, 0.04%)</title><rect x="602.0" y="293" width="0.5" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="605.03" y="303.5" ></text>
</g>
<g >
<title>ppoll (3,253 samples, 4.62%)</title><rect x="226.8" y="501" width="54.5" height="15.0" fill="rgb(229,194,26)" rx="2" ry="2" />
<text x="229.76" y="511.5" >ppoll</text>
</g>
<g >
<title>InvalidateCatalogSnapshot (10 samples, 0.01%)</title><rect x="444.8" y="437" width="0.1" height="15.0" fill="rgb(202,201,152)" rx="2" ry="2" />
<text x="447.76" y="447.5" ></text>
</g>
<g >
<title>skb_copy_datagram_iter (195 samples, 0.28%)</title><rect x="917.6" y="261" width="3.2" height="15.0" fill="rgb(240,143,38)" rx="2" ry="2" />
<text x="920.58" y="271.5" ></text>
</g>
<g >
<title>getVariable (518 samples, 0.74%)</title><rect x="214.8" y="501" width="8.7" height="15.0" fill="rgb(208,154,139)" rx="2" ry="2" />
<text x="217.85" y="511.5" ></text>
</g>
<g >
<title>kmalloc_slab (12 samples, 0.02%)</title><rect x="648.0" y="197" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="650.95" y="207.5" ></text>
</g>
<g >
<title>nohz_balance_enter_idle (62 samples, 0.09%)</title><rect x="1086.4" y="453" width="1.0" height="15.0" fill="rgb(240,199,39)" rx="2" ry="2" />
<text x="1089.40" y="463.5" ></text>
</g>
<g >
<title>rb_erase (24 samples, 0.03%)</title><rect x="1127.2" y="389" width="0.4" height="15.0" fill="rgb(247,112,46)" rx="2" ry="2" />
<text x="1130.15" y="399.5" ></text>
</g>
<g >
<title>sys_read (6 samples, 0.01%)</title><rect x="10.1" y="517" width="0.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="13.10" y="527.5" ></text>
</g>
<g >
<title>__switch_to_asm (139 samples, 0.20%)</title><rect x="978.9" y="549" width="2.3" height="15.0" fill="rgb(233,132,30)" rx="2" ry="2" />
<text x="981.92" y="559.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_node (6 samples, 0.01%)</title><rect x="298.5" y="245" width="0.1" height="15.0" fill="rgb(250,107,49)" rx="2" ry="2" />
<text x="301.51" y="255.5" ></text>
</g>
<g >
<title>unix_stream_read_generic (129 samples, 0.18%)</title><rect x="289.7" y="325" width="2.2" height="15.0" fill="rgb(228,145,25)" rx="2" ry="2" />
<text x="292.73" y="335.5" ></text>
</g>
<g >
<title>__libc_recv (4,107 samples, 5.83%)</title><rect x="871.1" y="405" width="68.8" height="15.0" fill="rgb(237,154,35)" rx="2" ry="2" />
<text x="874.13" y="415.5" >__libc_..</text>
</g>
<g >
<title>AllocSetContextCreateInternal (26 samples, 0.04%)</title><rect x="523.3" y="389" width="0.4" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="526.26" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (9 samples, 0.01%)</title><rect x="547.2" y="389" width="0.1" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="550.15" y="399.5" ></text>
</g>
<g >
<title>epoll_wait (32 samples, 0.05%)</title><rect x="870.5" y="389" width="0.5" height="15.0" fill="rgb(237,202,35)" rx="2" ry="2" />
<text x="873.48" y="399.5" ></text>
</g>
<g >
<title>evaluateExpr (169 samples, 0.24%)</title><rect x="211.8" y="437" width="2.9" height="15.0" fill="rgb(208,154,89)" rx="2" ry="2" />
<text x="214.83" y="447.5" ></text>
</g>
<g >
<title>do_syscall_64 (241 samples, 0.34%)</title><rect x="310.7" y="533" width="4.1" height="15.0" fill="rgb(232,189,30)" rx="2" ry="2" />
<text x="313.72" y="543.5" ></text>
</g>
<g >
<title>rest_init (566 samples, 0.80%)</title><rect x="1179.6" y="485" width="9.5" height="15.0" fill="rgb(236,165,34)" rx="2" ry="2" />
<text x="1182.58" y="495.5" ></text>
</g>
<g >
<title>ShowTransactionState (13 samples, 0.02%)</title><rect x="959.6" y="421" width="0.3" height="15.0" fill="rgb(71,807901,223)" rx="2" ry="2" />
<text x="962.63" y="431.5" ></text>
</g>
<g >
<title>ResourceArrayRemove (8 samples, 0.01%)</title><rect x="750.1" y="309" width="0.1" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="753.09" y="319.5" ></text>
</g>
<g >
<title>UnpinBuffer.constprop.6 (32 samples, 0.05%)</title><rect x="509.3" y="357" width="0.6" height="15.0" fill="rgb(121,61,242)" rx="2" ry="2" />
<text x="512.34" y="367.5" ></text>
</g>
<g >
<title>ResourceOwnerDelete (99 samples, 0.14%)</title><rect x="759.4" y="389" width="1.7" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="762.44" y="399.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (47 samples, 0.07%)</title><rect x="686.9" y="117" width="0.8" height="15.0" fill="rgb(241,130,40)" rx="2" ry="2" />
<text x="689.94" y="127.5" ></text>
</g>
<g >
<title>finish_xact_command (4,343 samples, 6.17%)</title><rect x="711.8" y="453" width="72.8" height="15.0" fill="rgb(135,173,97)" rx="2" ry="2" />
<text x="714.84" y="463.5" >finish_x..</text>
</g>
<g >
<title>selinux_socket_getpeersec_dgram (29 samples, 0.04%)</title><rect x="141.2" y="293" width="0.5" height="15.0" fill="rgb(225,179,22)" rx="2" ry="2" />
<text x="144.19" y="303.5" ></text>
</g>
<g >
<title>hash_any (32 samples, 0.05%)</title><rect x="773.3" y="309" width="0.5" height="15.0" fill="rgb(147,107,143)" rx="2" ry="2" />
<text x="776.30" y="319.5" ></text>
</g>
<g >
<title>process_one_work (7 samples, 0.01%)</title><rect x="10.8" y="501" width="0.1" height="15.0" fill="rgb(236,184,34)" rx="2" ry="2" />
<text x="13.75" y="511.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (41 samples, 0.06%)</title><rect x="582.6" y="341" width="0.7" height="15.0" fill="rgb(145,11509185,99)" rx="2" ry="2" />
<text x="585.64" y="351.5" ></text>
</g>
<g >
<title>ttwu_do_wakeup (541 samples, 0.77%)</title><rect x="174.1" y="149" width="9.1" height="15.0" fill="rgb(240,116,38)" rx="2" ry="2" />
<text x="177.10" y="159.5" ></text>
</g>
<g >
<title>secure_read (8,199 samples, 11.64%)</title><rect x="802.6" y="421" width="137.3" height="15.0" fill="rgb(88,57,14221809)" rx="2" ry="2" />
<text x="805.57" y="431.5" >secure_read</text>
</g>
<g >
<title>native_write_msr (20 samples, 0.03%)</title><rect x="301.1" y="53" width="0.3" height="15.0" fill="rgb(241,158,40)" rx="2" ry="2" />
<text x="304.09" y="63.5" ></text>
</g>
<g >
<title>dopr.constprop.2 (272 samples, 0.39%)</title><rect x="216.4" y="453" width="4.6" height="15.0" fill="rgb(54790,201,82)" rx="2" ry="2" />
<text x="219.41" y="463.5" ></text>
</g>
<g >
<title>deactivate_task (256 samples, 0.36%)</title><rect x="252.1" y="341" width="4.3" height="15.0" fill="rgb(236,216,34)" rx="2" ry="2" />
<text x="255.13" y="351.5" ></text>
</g>
<g >
<title>poll_select_copy_remaining (9 samples, 0.01%)</title><rect x="237.6" y="453" width="0.2" height="15.0" fill="rgb(243,208,42)" rx="2" ry="2" />
<text x="240.62" y="463.5" ></text>
</g>
<g >
<title>rcu_idle_enter (162 samples, 0.23%)</title><rect x="1048.1" y="485" width="2.7" height="15.0" fill="rgb(240,169,38)" rx="2" ry="2" />
<text x="1051.12" y="495.5" ></text>
</g>
<g >
<title>pq_beginmessage_reuse (19 samples, 0.03%)</title><rect x="705.1" y="437" width="0.3" height="15.0" fill="rgb(88,174,190)" rx="2" ry="2" />
<text x="708.11" y="447.5" ></text>
</g>
<g >
<title>PQgetResult (14 samples, 0.02%)</title><rect x="293.6" y="485" width="0.2" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="296.61" y="495.5" ></text>
</g>
<g >
<title>skb_unlink (10 samples, 0.01%)</title><rect x="291.4" y="309" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="294.42" y="319.5" ></text>
</g>
<g >
<title>source_load (6 samples, 0.01%)</title><rect x="300.0" y="133" width="0.1" height="15.0" fill="rgb(243,155,41)" rx="2" ry="2" />
<text x="303.03" y="143.5" ></text>
</g>
<g >
<title>LWLockRelease (15 samples, 0.02%)</title><rect x="496.3" y="293" width="0.2" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="499.29" y="303.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (34 samples, 0.05%)</title><rect x="1131.0" y="405" width="0.6" height="15.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text x="1134.01" y="415.5" ></text>
</g>
<g >
<title>pqAddTuple (82 samples, 0.12%)</title><rect x="120.3" y="453" width="1.4" height="15.0" fill="rgb(241,90,190)" rx="2" ry="2" />
<text x="123.30" y="463.5" ></text>
</g>
<g >
<title>secure_write (4,853 samples, 6.89%)</title><rect x="619.5" y="405" width="81.3" height="15.0" fill="rgb(88,57,14222646)" rx="2" ry="2" />
<text x="622.50" y="415.5" >secure_wr..</text>
</g>
<g >
<title>x2apic_send_IPI (294 samples, 0.42%)</title><rect x="679.4" y="85" width="4.9" height="15.0" fill="rgb(245,196,44)" rx="2" ry="2" />
<text x="682.39" y="95.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (25 samples, 0.04%)</title><rect x="1106.0" y="389" width="0.4" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
<text x="1109.02" y="399.5" ></text>
</g>
<g >
<title>XidInMVCCSnapshot (6 samples, 0.01%)</title><rect x="500.7" y="293" width="0.1" height="15.0" fill="rgb(202,201,247)" rx="2" ry="2" />
<text x="503.68" y="303.5" ></text>
</g>
<g >
<title>pqResultAlloc (26 samples, 0.04%)</title><rect x="295.3" y="453" width="0.5" height="15.0" fill="rgb(241,90,192)" rx="2" ry="2" />
<text x="298.32" y="463.5" ></text>
</g>
<g >
<title>pg_vsnprintf (29 samples, 0.04%)</title><rect x="304.2" y="453" width="0.5" height="15.0" fill="rgb(54790,201,187)" rx="2" ry="2" />
<text x="307.19" y="463.5" ></text>
</g>
<g >
<title>AllocSetAlloc (8 samples, 0.01%)</title><rect x="566.5" y="309" width="0.1" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="569.46" y="319.5" ></text>
</g>
<g >
<title>sock_has_perm (14 samples, 0.02%)</title><rect x="289.4" y="309" width="0.2" height="15.0" fill="rgb(231,175,29)" rx="2" ry="2" />
<text x="292.36" y="319.5" ></text>
</g>
<g >
<title>secondary_startup_64 (12,154 samples, 17.26%)</title><rect x="985.4" y="549" width="203.7" height="15.0" fill="rgb(232,170,30)" rx="2" ry="2" />
<text x="988.42" y="559.5" >secondary_startup_64</text>
</g>
<g >
<title>__GI___ioctl (7 samples, 0.01%)</title><rect x="1189.4" y="501" width="0.1" height="15.0" fill="rgb(232,119,30)" rx="2" ry="2" />
<text x="1192.40" y="511.5" ></text>
</g>
<g >
<title>AllocSetFree (11 samples, 0.02%)</title><rect x="731.5" y="357" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="734.51" y="367.5" ></text>
</g>
<g >
<title>pqPutMsgBytes (19 samples, 0.03%)</title><rect x="203.7" y="453" width="0.3" height="15.0" fill="rgb(241,90,191)" rx="2" ry="2" />
<text x="206.67" y="463.5" ></text>
</g>
<g >
<title>__hrtimer_get_next_event (16 samples, 0.02%)</title><rect x="1111.4" y="405" width="0.3" height="15.0" fill="rgb(241,128,39)" rx="2" ry="2" />
<text x="1114.43" y="415.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (27 samples, 0.04%)</title><rect x="119.8" y="453" width="0.5" height="15.0" fill="rgb(242,151,40)" rx="2" ry="2" />
<text x="122.81" y="463.5" ></text>
</g>
<g >
<title>skb_set_owner_w (85 samples, 0.12%)</title><rect x="152.4" y="293" width="1.4" height="15.0" fill="rgb(227,143,24)" rx="2" ry="2" />
<text x="155.35" y="303.5" ></text>
</g>
<g >
<title>fput (24 samples, 0.03%)</title><rect x="242.6" y="421" width="0.4" height="15.0" fill="rgb(234,174,31)" rx="2" ry="2" />
<text x="245.63" y="431.5" ></text>
</g>
<g >
<title>isTempToastNamespace (19 samples, 0.03%)</title><rect x="503.5" y="293" width="0.3" height="15.0" fill="rgb(78,81693,153)" rx="2" ry="2" />
<text x="506.46" y="303.5" ></text>
</g>
<g >
<title>IsTransactionOrTransactionBlock (7 samples, 0.01%)</title><rect x="446.2" y="453" width="0.2" height="15.0" fill="rgb(71,807901,153)" rx="2" ry="2" />
<text x="449.24" y="463.5" ></text>
</g>
<g >
<title>btgettuple (136 samples, 0.19%)</title><rect x="504.8" y="341" width="2.3" height="15.0" fill="rgb(63,51424,62)" rx="2" ry="2" />
<text x="507.80" y="351.5" ></text>
</g>
<g >
<title>pgstat_report_stat (72 samples, 0.10%)</title><rect x="799.6" y="453" width="1.2" height="15.0" fill="rgb(106,166,186)" rx="2" ry="2" />
<text x="802.57" y="463.5" ></text>
</g>
<g >
<title>enter_lazy_tlb (199 samples, 0.28%)</title><rect x="311.4" y="405" width="3.3" height="15.0" fill="rgb(225,196,22)" rx="2" ry="2" />
<text x="314.38" y="415.5" ></text>
</g>
<g >
<title>avc_has_perm (64 samples, 0.09%)</title><rect x="890.6" y="261" width="1.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="893.60" y="271.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (56 samples, 0.08%)</title><rect x="1188.0" y="405" width="0.9" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="1190.96" y="415.5" ></text>
</g>
<g >
<title>sock_poll (160 samples, 0.23%)</title><rect x="836.3" y="277" width="2.7" height="15.0" fill="rgb(229,175,26)" rx="2" ry="2" />
<text x="839.35" y="287.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (41 samples, 0.06%)</title><rect x="957.7" y="421" width="0.7" height="15.0" fill="rgb(242,151,40)" rx="2" ry="2" />
<text x="960.69" y="431.5" ></text>
</g>
<g >
<title>put_prev_task_fair (48 samples, 0.07%)</title><rect x="857.4" y="229" width="0.8" height="15.0" fill="rgb(240,152,39)" rx="2" ry="2" />
<text x="860.43" y="239.5" ></text>
</g>
<g >
<title>avc_has_perm (49 samples, 0.07%)</title><rect x="53.0" y="309" width="0.8" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="56.03" y="319.5" ></text>
</g>
<g >
<title>DecrTupleDescRefCount (47 samples, 0.07%)</title><rect x="744.0" y="325" width="0.8" height="15.0" fill="rgb(53,229,80)" rx="2" ry="2" />
<text x="746.99" y="335.5" ></text>
</g>
<g >
<title>remove_wait_queue (14 samples, 0.02%)</title><rect x="306.7" y="389" width="0.2" height="15.0" fill="rgb(242,184,40)" rx="2" ry="2" />
<text x="309.68" y="399.5" ></text>
</g>
<g >
<title>AllocSetDelete (31 samples, 0.04%)</title><rect x="717.2" y="389" width="0.5" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="720.20" y="399.5" ></text>
</g>
<g >
<title>start_xact_command (768 samples, 1.09%)</title><rect x="958.4" y="453" width="12.9" height="15.0" fill="rgb(135,173,230)" rx="2" ry="2" />
<text x="961.39" y="463.5" ></text>
</g>
<g >
<title>btrescan (68 samples, 0.10%)</title><rect x="479.0" y="373" width="1.1" height="15.0" fill="rgb(63,51424,63)" rx="2" ry="2" />
<text x="481.96" y="383.5" ></text>
</g>
<g >
<title>hash_seq_search (42 samples, 0.06%)</title><rect x="764.8" y="373" width="0.7" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="767.80" y="383.5" ></text>
</g>
<g >
<title>AllocSetDelete (23 samples, 0.03%)</title><rect x="521.9" y="389" width="0.4" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="524.90" y="399.5" ></text>
</g>
<g >
<title>tick_nohz_idle_exit (121 samples, 0.17%)</title><rect x="1186.9" y="437" width="2.0" height="15.0" fill="rgb(237,142,36)" rx="2" ry="2" />
<text x="1189.90" y="447.5" ></text>
</g>
<g >
<title>ProcessClientWriteInterrupt (81 samples, 0.12%)</title><rect x="619.9" y="389" width="1.4" height="15.0" fill="rgb(135,173,194)" rx="2" ry="2" />
<text x="622.92" y="399.5" ></text>
</g>
<g >
<title>ExecIndexBuildScanKeys (671 samples, 0.95%)</title><rect x="566.6" y="389" width="11.2" height="15.0" fill="rgb(81,138,91)" rx="2" ry="2" />
<text x="569.61" y="399.5" ></text>
</g>
<g >
<title>rb_erase (26 samples, 0.04%)</title><rect x="1153.6" y="389" width="0.4" height="15.0" fill="rgb(247,112,46)" rx="2" ry="2" />
<text x="1156.56" y="399.5" ></text>
</g>
<g >
<title>SHMQueueNext (19 samples, 0.03%)</title><rect x="764.4" y="373" width="0.3" height="15.0" fill="rgb(126,198,222)" rx="2" ry="2" />
<text x="767.42" y="383.5" ></text>
</g>
<g >
<title>selinux_socket_sendmsg (24 samples, 0.03%)</title><rect x="137.0" y="325" width="0.4" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="139.99" y="335.5" ></text>
</g>
<g >
<title>GetPortalByName (175 samples, 0.25%)</title><rect x="434.2" y="453" width="3.0" height="15.0" fill="rgb(197,173,137)" rx="2" ry="2" />
<text x="437.24" y="463.5" ></text>
</g>
<g >
<title>mutex_unlock (20 samples, 0.03%)</title><rect x="71.5" y="325" width="0.3" height="15.0" fill="rgb(240,96,39)" rx="2" ry="2" />
<text x="74.46" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (7 samples, 0.01%)</title><rect x="613.3" y="389" width="0.1" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="616.29" y="399.5" ></text>
</g>
<g >
<title>AllocSetFree (11 samples, 0.02%)</title><rect x="733.0" y="325" width="0.2" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="735.97" y="335.5" ></text>
</g>
<g >
<title>__ctype_b_loc (36 samples, 0.05%)</title><rect x="453.7" y="389" width="0.6" height="15.0" fill="rgb(238,144,36)" rx="2" ry="2" />
<text x="456.71" y="399.5" ></text>
</g>
<g >
<title>__enqueue_entity (13 samples, 0.02%)</title><rect x="670.1" y="117" width="0.2" height="15.0" fill="rgb(240,138,38)" rx="2" ry="2" />
<text x="673.05" y="127.5" ></text>
</g>
<g >
<title>PostgresMain (34,297 samples, 48.70%)</title><rect x="396.6" y="469" width="574.7" height="15.0" fill="rgb(135,173,190)" rx="2" ry="2" />
<text x="399.61" y="479.5" >PostgresMain</text>
</g>
<g >
<title>ctx_resched (12 samples, 0.02%)</title><rect x="689.7" y="101" width="0.2" height="15.0" fill="rgb(247,127,46)" rx="2" ry="2" />
<text x="692.72" y="111.5" ></text>
</g>
<g >
<title>relation_open (379 samples, 0.54%)</title><rect x="605.4" y="373" width="6.3" height="15.0" fill="rgb(53,98942,15219231)" rx="2" ry="2" />
<text x="608.36" y="383.5" ></text>
</g>
<g >
<title>select_task_rq_fair (292 samples, 0.41%)</title><rect x="663.8" y="165" width="4.9" height="15.0" fill="rgb(240,179,39)" rx="2" ry="2" />
<text x="666.84" y="175.5" ></text>
</g>
<g >
<title>cpu_function_call (7 samples, 0.01%)</title><rect x="12.0" y="389" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="14.96" y="399.5" ></text>
</g>
<g >
<title>sys_ppoll (171 samples, 0.24%)</title><rect x="306.3" y="437" width="2.9" height="15.0" fill="rgb(229,167,26)" rx="2" ry="2" />
<text x="309.33" y="447.5" ></text>
</g>
<g >
<title>SPI_inside_nonatomic_context (20 samples, 0.03%)</title><rect x="968.9" y="405" width="0.3" height="15.0" fill="rgb(81,205,226)" rx="2" ry="2" />
<text x="971.90" y="415.5" ></text>
</g>
<g >
<title>pqRowProcessor (17 samples, 0.02%)</title><rect x="295.8" y="453" width="0.3" height="15.0" fill="rgb(241,90,192)" rx="2" ry="2" />
<text x="298.83" y="463.5" ></text>
</g>
<g >
<title>LWLockRelease (27 samples, 0.04%)</title><rect x="428.7" y="357" width="0.5" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="431.71" y="367.5" ></text>
</g>
<g >
<title>prefetch_freepointer.isra.60 (12 samples, 0.02%)</title><rect x="650.2" y="213" width="0.2" height="15.0" fill="rgb(223,177,19)" rx="2" ry="2" />
<text x="653.25" y="223.5" ></text>
</g>
<g >
<title>GetTransactionSnapshot (299 samples, 0.42%)</title><rect x="534.8" y="437" width="5.0" height="15.0" fill="rgb(202,201,139)" rx="2" ry="2" />
<text x="537.79" y="447.5" ></text>
</g>
<g >
<title>check_stack_depth (14 samples, 0.02%)</title><rect x="472.7" y="389" width="0.2" height="15.0" fill="rgb(135,173,68)" rx="2" ry="2" />
<text x="475.71" y="399.5" ></text>
</g>
<g >
<title>kthread (15 samples, 0.02%)</title><rect x="10.5" y="533" width="0.3" height="15.0" fill="rgb(241,117,40)" rx="2" ry="2" />
<text x="13.50" y="543.5" ></text>
</g>
<g >
<title>AtEOXact_Snapshot (32 samples, 0.05%)</title><rect x="726.5" y="405" width="0.5" height="15.0" fill="rgb(202,201,56)" rx="2" ry="2" />
<text x="729.50" y="415.5" ></text>
</g>
<g >
<title>set_cpu_sd_state_idle (23 samples, 0.03%)</title><rect x="1080.1" y="485" width="0.4" height="15.0" fill="rgb(240,154,39)" rx="2" ry="2" />
<text x="1083.09" y="495.5" ></text>
</g>
<g >
<title>run_timer_softirq (8 samples, 0.01%)</title><rect x="1012.8" y="357" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="1015.85" y="367.5" ></text>
</g>
<g >
<title>ExecInitResultTypeTL (357 samples, 0.51%)</title><rect x="589.9" y="389" width="6.0" height="15.0" fill="rgb(81,86,92)" rx="2" ry="2" />
<text x="592.90" y="399.5" ></text>
</g>
<g >
<title>SnapshotResetXmin (19 samples, 0.03%)</title><rect x="708.8" y="453" width="0.3" height="15.0" fill="rgb(202,201,225)" rx="2" ry="2" />
<text x="711.77" y="463.5" ></text>
</g>
<g >
<title>sock_def_readable (2,029 samples, 2.88%)</title><rect x="153.8" y="309" width="34.0" height="15.0" fill="rgb(241,175,40)" rx="2" ry="2" />
<text x="156.78" y="319.5" >so..</text>
</g>
<g >
<title>iomap_write_begin.constprop.18 (19 samples, 0.03%)</title><rect x="12.1" y="357" width="0.4" height="15.0" fill="rgb(232,181,29)" rx="2" ry="2" />
<text x="15.14" y="367.5" ></text>
</g>
<g >
<title>LWLockAcquire (20 samples, 0.03%)</title><rect x="607.5" y="325" width="0.3" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="610.46" y="335.5" ></text>
</g>
<g >
<title>_bt_getbuf (556 samples, 0.79%)</title><rect x="356.7" y="341" width="9.3" height="15.0" fill="rgb(63,132,62)" rx="2" ry="2" />
<text x="359.71" y="351.5" ></text>
</g>
<g >
<title>VirtualXactLockTableCleanup (138 samples, 0.20%)</title><rect x="776.7" y="357" width="2.3" height="15.0" fill="rgb(129,24381895395797,244)" rx="2" ry="2" />
<text x="779.67" y="367.5" ></text>
</g>
<g >
<title>LockErrorCleanup (33 samples, 0.05%)</title><rect x="766.0" y="373" width="0.6" height="15.0" fill="rgb(129,-1752316548726970,161)" rx="2" ry="2" />
<text x="769.03" y="383.5" ></text>
</g>
<g >
<title>cpuidle_get_cpu_driver (14 samples, 0.02%)</title><rect x="986.3" y="501" width="0.2" height="15.0" fill="rgb(238,118,37)" rx="2" ry="2" />
<text x="989.29" y="511.5" ></text>
</g>
<g >
<title>jit_compile_expr (15 samples, 0.02%)</title><rect x="562.1" y="341" width="0.3" height="15.0" fill="rgb(84,118,153)" rx="2" ry="2" />
<text x="565.10" y="351.5" ></text>
</g>
<g >
<title>pick_next_task_fair (25 samples, 0.04%)</title><rect x="856.0" y="245" width="0.5" height="15.0" fill="rgb(240,174,39)" rx="2" ry="2" />
<text x="859.04" y="255.5" ></text>
</g>
<g >
<title>AllocSetDelete (42 samples, 0.06%)</title><rect x="730.1" y="373" width="0.7" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="733.12" y="383.5" ></text>
</g>
<g >
<title>AtEOXact_GUC (32 samples, 0.05%)</title><rect x="721.3" y="405" width="0.6" height="15.0" fill="rgb(195,106,56)" rx="2" ry="2" />
<text x="724.32" y="415.5" ></text>
</g>
<g >
<title>LWLockRelease (49 samples, 0.07%)</title><rect x="369.1" y="341" width="0.9" height="15.0" fill="rgb(129,127,164)" rx="2" ry="2" />
<text x="372.13" y="351.5" ></text>
</g>
<g >
<title>consume_skb (630 samples, 0.89%)</title><rect x="59.8" y="325" width="10.5" height="15.0" fill="rgb(227,146,24)" rx="2" ry="2" />
<text x="62.76" y="335.5" ></text>
</g>
<g >
<title>ExecEvalStepOp (214 samples, 0.30%)</title><rect x="466.8" y="309" width="3.6" height="15.0" fill="rgb(81,83,91)" rx="2" ry="2" />
<text x="469.83" y="319.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (7 samples, 0.01%)</title><rect x="518.2" y="357" width="0.1" height="15.0" fill="rgb(198,189,205)" rx="2" ry="2" />
<text x="521.17" y="367.5" ></text>
</g>
<g >
<title>vfs_write (44 samples, 0.06%)</title><rect x="12.1" y="469" width="0.7" height="15.0" fill="rgb(240,128,38)" rx="2" ry="2" />
<text x="15.09" y="479.5" ></text>
</g>
<g >
<title>_find_next_bit (120 samples, 0.17%)</title><rect x="1098.5" y="405" width="2.0" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="1101.47" y="415.5" ></text>
</g>
<g >
<title>pqFlush (393 samples, 0.56%)</title><rect x="296.3" y="453" width="6.6" height="15.0" fill="rgb(241,90,190)" rx="2" ry="2" />
<text x="299.31" y="463.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (49 samples, 0.07%)</title><rect x="773.8" y="341" width="0.9" height="15.0" fill="rgb(147,79,144)" rx="2" ry="2" />
<text x="776.83" y="351.5" ></text>
</g>
<g >
<title>__strlen_sse2_pminub (15 samples, 0.02%)</title><rect x="703.3" y="437" width="0.2" height="15.0" fill="rgb(231,132,29)" rx="2" ry="2" />
<text x="706.28" y="447.5" ></text>
</g>
<g >
<title>AllocSetFree (11 samples, 0.02%)</title><rect x="759.3" y="389" width="0.1" height="15.0" fill="rgb(197,54,53)" rx="2" ry="2" />
<text x="762.26" y="399.5" ></text>
</g>
<g >
<title>unix_stream_recvmsg (7 samples, 0.01%)</title><rect x="78.9" y="373" width="0.1" height="15.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text x="81.93" y="383.5" ></text>
</g>
<g >
<title>_raw_spin_lock (70 samples, 0.10%)</title><rect x="1059.2" y="453" width="1.2" height="15.0" fill="rgb(240,166,39)" rx="2" ry="2" />
<text x="1062.23" y="463.5" ></text>
</g>
<g >
<title>PortalDefineQuery (16 samples, 0.02%)</title><rect x="455.9" y="453" width="0.3" height="15.0" fill="rgb(197,173,189)" rx="2" ry="2" />
<text x="458.89" y="463.5" ></text>
</g>
<g >
<title>relation_open (196 samples, 0.28%)</title><rect x="600.9" y="341" width="3.3" height="15.0" fill="rgb(53,98942,15219231)" rx="2" ry="2" />
<text x="603.92" y="351.5" ></text>
</g>
<g >
<title>scheduler_tick (13 samples, 0.02%)</title><rect x="187.2" y="133" width="0.2" height="15.0" fill="rgb(236,164,34)" rx="2" ry="2" />
<text x="190.22" y="143.5" ></text>
</g>
<g >
<title>__wake_up_common (76 samples, 0.11%)</title><rect x="909.9" y="149" width="1.3" height="15.0" fill="rgb(253,119,53)" rx="2" ry="2" />
<text x="912.89" y="159.5" ></text>
</g>
<g >
<title>CreateExecutorState (168 samples, 0.24%)</title><rect x="544.5" y="421" width="2.8" height="15.0" fill="rgb(81,87,76)" rx="2" ry="2" />
<text x="547.49" y="431.5" ></text>
</g>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment