1s-threshold.svg
image/svg+xml
Filename: 1s-threshold.svg
Type: image/svg+xml
Part: 0
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="1046" onload="init(evt)" viewBox="0 0 1200 1046" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs>
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
#search, #ignorecase { opacity:0.1; cursor:pointer; }
#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style>
<script type="text/ecmascript">
<![CDATA[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
ignorecaseBtn = document.getElementById("ignorecase");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
currentSearchTerm = null;
// use GET parameters to restore a flamegraphs state.
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s) search(params.s);
}
// event listeners
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom(true);
zoom(target);
if (!document.querySelector('.parent')) {
// we have basically done a clearzoom so clear the url
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
unzoombtn.classList.add("hide");
return;
}
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes._orig_x) {
var params = get_params()
params.x = el.attributes._orig_x.value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") clearzoom();
else if (e.target.id == "search") search_prompt();
else if (e.target.id == "ignorecase") toggle_ignorecase();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = "Function: " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
// ctrl-I to toggle case-sensitive search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
else if (e.ctrlKey && e.keyCode === 73) {
e.preventDefault();
toggle_ignorecase();
}
}, false)
// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
// Smaller than this size won't fit anything
if (w < 2 * 12 * 0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
var sl = t.getSubStringLength(0, txt.length);
// check if only whitespace or if we can fit the entire string into width w
if (/^ *$/.test(txt) || sl < w)
return;
// this isn't perfect, but gives a good starting point
// and avoids calling getSubStringLength too often
var start = Math.floor((w/sl) * txt.length);
for (var x = start; x > 0; x = x-2) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
if (e.tagName == "text")
e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x - 10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = 10;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr.width.value);
var xmin = parseFloat(attr.x.value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr.y.value);
var ratio = (svg.width.baseVal.value - 2 * 10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a.x.value);
var ew = parseFloat(a.width.value);
var upstack;
// Is it an ancestor
if (0 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
search();
}
function unzoom(dont_update_text) {
unzoombtn.classList.add("hide");
var el = document.getElementById("frames").children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
if(!dont_update_text) update_text(el[i]);
}
search();
}
function clearzoom() {
unzoom();
// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}
// search
function toggle_ignorecase() {
ignorecase = !ignorecase;
if (ignorecase) {
ignorecaseBtn.classList.add("show");
} else {
ignorecaseBtn.classList.remove("show");
}
reset_search();
search();
}
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)"
+ (ignorecase ? ", ignoring case" : "")
+ "\nPress Ctrl-i to toggle case sensitivity", "");
if (term != null) search(term);
} else {
reset_search();
searching = 0;
currentSearchTerm = null;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
if (term) currentSearchTerm = term;
if (currentSearchTerm === null) return;
var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : '');
var el = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes.width.value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes.x.value);
orig_save(rect, "fill");
rect.attributes.fill.value = "rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
var params = get_params();
params.s = currentSearchTerm;
history.replaceState(null, null, parse_params(params));
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="1046.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="1029" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1090.00" y="24" >Search</text>
<text id="ignorecase" x="1174.00" y="24" >ic</text>
<text id="matched" x="1090.00" y="1029" > </text>
<g id="frames">
<g >
<title>AllocSetFreeIndex (227,808 samples, 0.07%)</title><rect x="760.0" y="437" width="0.9" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="763.04" y="447.5" ></text>
</g>
<g >
<title>CleanUpLock (1,035,634 samples, 0.34%)</title><rect x="812.4" y="469" width="4.0" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="815.38" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (283,742 samples, 0.09%)</title><rect x="18.4" y="613" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="21.38" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (142,042 samples, 0.05%)</title><rect x="873.7" y="309" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="876.74" y="319.5" ></text>
</g>
<g >
<title>DecodingContextReady (97,962 samples, 0.03%)</title><rect x="735.0" y="581" width="0.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="737.95" y="591.5" ></text>
</g>
<g >
<title>tag_hash (282,471 samples, 0.09%)</title><rect x="772.6" y="437" width="1.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="775.64" y="447.5" ></text>
</g>
<g >
<title>SnapBuildCurrentState (97,962 samples, 0.03%)</title><rect x="735.0" y="565" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="737.95" y="575.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetLock (202,125 samples, 0.07%)</title><rect x="822.1" y="469" width="0.8" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="825.12" y="479.5" ></text>
</g>
<g >
<title>pgstat_count_slru_page_hit (827,785 samples, 0.27%)</title><rect x="858.2" y="437" width="3.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="861.23" y="447.5" ></text>
</g>
<g >
<title>ExecProject (331,640 samples, 0.11%)</title><rect x="733.7" y="709" width="1.3" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="736.67" y="719.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (27,685,245 samples, 9.09%)</title><rect x="1076.3" y="229" width="107.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1079.29" y="239.5" >[[kernel.kall..</text>
</g>
<g >
<title>DecodingContextFindStartpoint (115,898,588 samples, 38.05%)</title><rect x="735.0" y="597" width="448.9" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="737.95" y="607.5" >DecodingContextFindStartpoint</text>
</g>
<g >
<title>hash_search (140,234 samples, 0.05%)</title><rect x="824.5" y="469" width="0.5" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="827.46" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (297,613 samples, 0.10%)</title><rect x="1187.8" y="645" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.84" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (243,302 samples, 0.08%)</title><rect x="19.5" y="405" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="22.48" y="415.5" ></text>
</g>
<g >
<title>ReadPageInternal (184,120,060 samples, 60.44%)</title><rect x="20.4" y="933" width="713.3" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="23.43" y="943.5" >ReadPageInternal</text>
</g>
<g >
<title>BackendMain (117,469,164 samples, 38.56%)</title><rect x="735.0" y="837" width="455.0" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="737.95" y="847.5" >BackendMain</text>
</g>
<g >
<title>fmtint (165,820 samples, 0.05%)</title><rect x="733.7" y="405" width="0.6" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="736.67" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (90,156 samples, 0.03%)</title><rect x="857.0" y="341" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="859.98" y="351.5" ></text>
</g>
<g >
<title>RecoveryInProgress (397,826 samples, 0.13%)</title><rect x="777.6" y="453" width="1.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="780.63" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (243,302 samples, 0.08%)</title><rect x="19.5" y="629" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="22.48" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (90,156 samples, 0.03%)</title><rect x="857.0" y="325" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="859.98" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (283,742 samples, 0.09%)</title><rect x="18.4" y="293" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="21.38" y="303.5" ></text>
</g>
<g >
<title>RecoveryInProgress (397,826 samples, 0.13%)</title><rect x="777.6" y="437" width="1.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="780.63" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (97,962 samples, 0.03%)</title><rect x="1183.5" y="261" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.54" y="271.5" ></text>
</g>
<g >
<title>LockCheckConflicts (148,571 samples, 0.05%)</title><rect x="766.8" y="453" width="0.6" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="769.84" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (283,742 samples, 0.09%)</title><rect x="18.4" y="581" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="21.38" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,211 samples, 0.01%)</title><rect x="779.1" y="389" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="782.05" y="399.5" ></text>
</g>
<g >
<title>get_slru_entry (120,296 samples, 0.04%)</title><rect x="861.0" y="421" width="0.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="863.97" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (142,042 samples, 0.05%)</title><rect x="873.7" y="453" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="876.74" y="463.5" ></text>
</g>
<g >
<title>SetupLockInTable (3,507,024 samples, 1.15%)</title><rect x="779.2" y="453" width="13.6" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="782.18" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (283,742 samples, 0.09%)</title><rect x="18.4" y="629" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="21.38" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (97,962 samples, 0.03%)</title><rect x="1183.5" y="197" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.54" y="207.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (329,952 samples, 0.11%)</title><rect x="1186.6" y="693" width="1.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1189.57" y="703.5" ></text>
</g>
<g >
<title>PortalRunSelect (116,098,751 samples, 38.11%)</title><rect x="735.0" y="773" width="449.7" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="737.95" y="783.5" >PortalRunSelect</text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,511 samples, 0.01%)</title><rect x="59.7" y="885" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="62.74" y="895.5" ></text>
</g>
<g >
<title>RemoveLocalLock (1,314,943 samples, 0.43%)</title><rect x="817.0" y="469" width="5.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="820.03" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,511 samples, 0.01%)</title><rect x="59.7" y="773" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="62.74" y="783.5" ></text>
</g>
<g >
<title>hash_search (2,357,234 samples, 0.77%)</title><rect x="794.0" y="453" width="9.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="796.98" y="463.5" ></text>
</g>
<g >
<title>pvsnprintf (165,820 samples, 0.05%)</title><rect x="733.7" y="453" width="0.6" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="736.67" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (115,296,644 samples, 37.85%)</title><rect x="285.2" y="693" width="446.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="288.15" y="703.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>exec_simple_query (527,044 samples, 0.17%)</title><rect x="18.4" y="869" width="2.0" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="21.38" y="879.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (148,571 samples, 0.05%)</title><rect x="857.3" y="389" width="0.6" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="860.33" y="399.5" ></text>
</g>
<g >
<title>send_message_to_server_log (165,820 samples, 0.05%)</title><rect x="733.7" y="533" width="0.6" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="736.67" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (411,380 samples, 0.14%)</title><rect x="1181.9" y="85" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1184.94" y="95.5" ></text>
</g>
<g >
<title>__sbrk (165,820 samples, 0.05%)</title><rect x="734.3" y="501" width="0.7" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="737.31" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (243,302 samples, 0.08%)</title><rect x="19.5" y="421" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="22.48" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (329,952 samples, 0.11%)</title><rect x="1186.6" y="645" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.57" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (297,613 samples, 0.10%)</title><rect x="1187.8" y="597" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.84" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (329,952 samples, 0.11%)</title><rect x="1186.6" y="517" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.57" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (142,042 samples, 0.05%)</title><rect x="873.7" y="245" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="876.74" y="255.5" ></text>
</g>
<g >
<title>PostgresMain (331,640 samples, 0.11%)</title><rect x="733.7" y="837" width="1.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="736.67" y="847.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (200,163 samples, 0.07%)</title><rect x="1183.9" y="469" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.92" y="479.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (627,565 samples, 0.21%)</title><rect x="1186.6" y="757" width="2.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1189.57" y="767.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (142,042 samples, 0.05%)</title><rect x="873.7" y="373" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="876.74" y="383.5" ></text>
</g>
<g >
<title>LogicalDecodingProcessRecord (115,800,626 samples, 38.02%)</title><rect x="735.3" y="581" width="448.6" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="738.33" y="591.5" >LogicalDecodingProcessRecord</text>
</g>
<g >
<title>LWLockReleaseInternal (165,579 samples, 0.05%)</title><rect x="816.4" y="453" width="0.6" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="819.39" y="463.5" ></text>
</g>
<g >
<title>XLogDecodeNextRecord (184,120,060 samples, 60.44%)</title><rect x="20.4" y="949" width="713.3" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="23.43" y="959.5" >XLogDecodeNextRecord</text>
</g>
<g >
<title>[libc.so.6] (165,820 samples, 0.05%)</title><rect x="734.3" y="533" width="0.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="737.31" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (74,199,158 samples, 24.36%)</title><rect x="444.4" y="661" width="287.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="447.35" y="671.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,479,103 samples, 7.71%)</title><rect x="1092.6" y="213" width="90.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1095.58" y="223.5" >[[kernel.k..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,989,791 samples, 0.65%)</title><rect x="10.7" y="821" width="7.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.68" y="831.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (200,163 samples, 0.07%)</title><rect x="1183.9" y="405" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.92" y="415.5" ></text>
</g>
<g >
<title>__cxa_finalize (329,952 samples, 0.11%)</title><rect x="1186.6" y="709" width="1.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1189.57" y="719.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (90,156 samples, 0.03%)</title><rect x="857.0" y="373" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="859.98" y="383.5" ></text>
</g>
<g >
<title>ExecProcNode (116,098,751 samples, 38.11%)</title><rect x="735.0" y="725" width="449.7" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="737.95" y="735.5" >ExecProcNode</text>
</g>
<g >
<title>[[kernel.kallsyms]] (149,879,730 samples, 49.20%)</title><rect x="151.2" y="805" width="580.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="154.18" y="815.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>hash_initial_lookup (645,215 samples, 0.21%)</title><rect x="790.3" y="421" width="2.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="793.26" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (208,553 samples, 0.07%)</title><rect x="876.2" y="421" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="879.20" y="431.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturnSwitchContext (331,640 samples, 0.11%)</title><rect x="733.7" y="693" width="1.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="736.67" y="703.5" ></text>
</g>
<g >
<title>ExecInterpExpr (331,640 samples, 0.11%)</title><rect x="733.7" y="661" width="1.3" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text x="736.67" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (111,928 samples, 0.04%)</title><rect x="76.7" y="805" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="79.74" y="815.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (283,742 samples, 0.09%)</title><rect x="18.4" y="437" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="21.38" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (283,742 samples, 0.09%)</title><rect x="18.4" y="325" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="21.38" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (297,613 samples, 0.10%)</title><rect x="1187.8" y="501" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.84" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,323,251 samples, 0.43%)</title><rect x="726.7" y="501" width="5.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.66" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (243,302 samples, 0.08%)</title><rect x="19.5" y="437" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="22.48" y="447.5" ></text>
</g>
<g >
<title>write_console (97,962 samples, 0.03%)</title><rect x="1183.5" y="469" width="0.4" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="1186.54" y="479.5" ></text>
</g>
<g >
<title>LWLockRelease (165,579 samples, 0.05%)</title><rect x="816.4" y="469" width="0.6" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="819.39" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (283,742 samples, 0.09%)</title><rect x="18.4" y="405" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="21.38" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (97,962 samples, 0.03%)</title><rect x="1183.5" y="293" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.54" y="303.5" ></text>
</g>
<g >
<title>XactLockTableWait (115,702,664 samples, 37.98%)</title><rect x="735.3" y="501" width="448.2" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="738.33" y="511.5" >XactLockTableWait</text>
</g>
<g >
<title>ExecutePlan (116,098,751 samples, 38.11%)</title><rect x="735.0" y="741" width="449.7" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="737.95" y="751.5" >ExecutePlan</text>
</g>
<g >
<title>nanosleep@plt (485,863 samples, 0.16%)</title><rect x="731.8" y="885" width="1.9" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="734.78" y="895.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (208,553 samples, 0.07%)</title><rect x="876.2" y="389" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="879.20" y="399.5" ></text>
</g>
<g >
<title>[libc.so.6] (245,735 samples, 0.08%)</title><rect x="787.3" y="421" width="1.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="790.34" y="431.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,844,253 samples, 0.61%)</title><rect x="803.1" y="453" width="7.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="806.11" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (97,962 samples, 0.03%)</title><rect x="1183.5" y="229" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.54" y="239.5" ></text>
</g>
<g >
<title>pg_create_logical_replication_slot (331,640 samples, 0.11%)</title><rect x="733.7" y="645" width="1.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="736.67" y="655.5" ></text>
</g>
<g >
<title>memset (200,163 samples, 0.07%)</title><rect x="1183.9" y="533" width="0.8" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="1186.92" y="543.5" ></text>
</g>
<g >
<title>hash_initial_lookup (184,013 samples, 0.06%)</title><rect x="826.9" y="453" width="0.7" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="829.89" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (111,928 samples, 0.04%)</title><rect x="76.7" y="821" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="79.74" y="831.5" ></text>
</g>
<g >
<title>rename (283,742 samples, 0.09%)</title><rect x="18.4" y="645" width="1.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="21.38" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (297,613 samples, 0.10%)</title><rect x="1187.8" y="725" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.84" y="735.5" ></text>
</g>
<g >
<title>__libc_start_main (117,469,164 samples, 38.56%)</title><rect x="735.0" y="949" width="455.0" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="737.95" y="959.5" >__libc_start_main</text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,511 samples, 0.01%)</title><rect x="59.7" y="805" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="62.74" y="815.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (215,577 samples, 0.07%)</title><rect x="1182.7" y="37" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1185.70" y="47.5" ></text>
</g>
<g >
<title>internal_flush (259,134 samples, 0.09%)</title><rect x="1189.0" y="773" width="1.0" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1192.00" y="783.5" ></text>
</g>
<g >
<title>wipe_mem (200,163 samples, 0.07%)</title><rect x="1183.9" y="549" width="0.8" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1186.92" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (200,163 samples, 0.07%)</title><rect x="1183.9" y="437" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.92" y="447.5" ></text>
</g>
<g >
<title>ServerLoop (117,469,164 samples, 38.56%)</title><rect x="735.0" y="885" width="455.0" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="737.95" y="895.5" >ServerLoop</text>
</g>
<g >
<title>RecoveryInProgress (2,167,232 samples, 0.71%)</title><rect x="43.0" y="885" width="8.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="46.04" y="895.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (53,242,059 samples, 17.48%)</title><rect x="525.5" y="629" width="206.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="528.54" y="639.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (97,962 samples, 0.03%)</title><rect x="1183.5" y="405" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.54" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (297,613 samples, 0.10%)</title><rect x="1187.8" y="693" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.84" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (61,352,288 samples, 20.14%)</title><rect x="494.1" y="645" width="237.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="497.12" y="655.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>malloc (165,820 samples, 0.05%)</title><rect x="734.3" y="549" width="0.7" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="737.31" y="559.5" ></text>
</g>
<g >
<title>appendStringInfoVA (165,820 samples, 0.05%)</title><rect x="733.7" y="469" width="0.6" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="736.67" y="479.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (1,006,157 samples, 0.33%)</title><rect x="773.7" y="453" width="3.9" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="776.74" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (111,928 samples, 0.04%)</title><rect x="76.7" y="837" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="79.74" y="847.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,164,516 samples, 0.71%)</title><rect x="10.0" y="965" width="8.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="975.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (411,380 samples, 0.14%)</title><rect x="1181.9" y="69" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1184.94" y="79.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,982,776 samples, 5.58%)</title><rect x="1117.7" y="181" width="65.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1120.75" y="191.5" >[[kerne..</text>
</g>
<g >
<title>exec_simple_query (331,640 samples, 0.11%)</title><rect x="733.7" y="821" width="1.3" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="736.67" y="831.5" ></text>
</g>
<g >
<title>ExecInterpExpr (527,044 samples, 0.17%)</title><rect x="18.4" y="709" width="2.0" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text x="21.38" y="719.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (114,098 samples, 0.04%)</title><rect x="870.8" y="437" width="0.5" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="873.82" y="447.5" ></text>
</g>
<g >
<title>tas (192,378 samples, 0.06%)</title><rect x="29.7" y="885" width="0.7" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="32.68" y="895.5" ></text>
</g>
<g >
<title>AllocSetCheck (483,714 samples, 0.16%)</title><rect x="1184.7" y="741" width="1.9" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="1187.69" y="751.5" ></text>
</g>
<g >
<title>[libc.so.6] (117,469,164 samples, 38.56%)</title><rect x="735.0" y="933" width="455.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="737.95" y="943.5" >[libc.so.6]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (97,962 samples, 0.03%)</title><rect x="1183.5" y="213" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.54" y="223.5" ></text>
</g>
<g >
<title>socket_flush (259,134 samples, 0.09%)</title><rect x="1189.0" y="789" width="1.0" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1192.00" y="799.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturnSwitchContext (527,044 samples, 0.17%)</title><rect x="18.4" y="741" width="2.0" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="21.38" y="751.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (97,962 samples, 0.03%)</title><rect x="1183.5" y="421" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.54" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (243,302 samples, 0.08%)</title><rect x="19.5" y="613" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="22.48" y="623.5" ></text>
</g>
<g >
<title>SnapBuildWaitSnapshot (115,702,664 samples, 37.98%)</title><rect x="735.3" y="517" width="448.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="738.33" y="527.5" >SnapBuildWaitSnapshot</text>
</g>
<g >
<title>[[kernel.kallsyms]] (313,817 samples, 0.10%)</title><rect x="792.8" y="421" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="795.76" y="431.5" ></text>
</g>
<g >
<title>leading_pad (165,820 samples, 0.05%)</title><rect x="733.7" y="389" width="0.6" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="736.67" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (243,302 samples, 0.08%)</title><rect x="19.5" y="549" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="22.48" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,211 samples, 0.01%)</title><rect x="779.1" y="373" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="782.05" y="383.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,433,224 samples, 0.47%)</title><rect x="757.0" y="453" width="5.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="760.00" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (313,817 samples, 0.10%)</title><rect x="792.8" y="405" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="795.76" y="415.5" ></text>
</g>
<g >
<title>GetTopTransactionIdIfAny (938,324 samples, 0.31%)</title><rect x="741.7" y="485" width="3.6" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="744.69" y="495.5" ></text>
</g>
<g >
<title>create_logical_replication_slot (116,098,751 samples, 38.11%)</title><rect x="735.0" y="613" width="449.7" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="737.95" y="623.5" >create_logical_replication_slot</text>
</g>
<g >
<title>[[kernel.kallsyms]] (243,302 samples, 0.08%)</title><rect x="19.5" y="501" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="22.48" y="511.5" ></text>
</g>
<g >
<title>opendir (165,820 samples, 0.05%)</title><rect x="734.3" y="565" width="0.7" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="737.31" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (90,156 samples, 0.03%)</title><rect x="857.0" y="389" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="859.98" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (297,613 samples, 0.10%)</title><rect x="1187.8" y="629" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.84" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (3,245,521 samples, 1.07%)</title><rect x="719.2" y="533" width="12.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="722.21" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (96,285,636 samples, 31.61%)</title><rect x="358.8" y="677" width="373.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="361.80" y="687.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (33,224,203 samples, 10.91%)</title><rect x="1054.8" y="245" width="128.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1057.83" y="255.5" >[[kernel.kallsym..</text>
</g>
<g >
<title>exit (627,565 samples, 0.21%)</title><rect x="1186.6" y="789" width="2.4" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="1189.57" y="799.5" ></text>
</g>
<g >
<title>__nanosleep (79,128,757 samples, 25.98%)</title><rect x="877.0" y="469" width="306.5" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text x="880.01" y="479.5" >__nanosleep</text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,511 samples, 0.01%)</title><rect x="59.7" y="789" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="62.74" y="799.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (243,302 samples, 0.08%)</title><rect x="19.5" y="565" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="22.48" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (329,952 samples, 0.11%)</title><rect x="1186.6" y="501" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.57" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (398,179 samples, 0.13%)</title><rect x="16.8" y="709" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="19.84" y="719.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (133,513,861 samples, 43.83%)</title><rect x="214.6" y="757" width="517.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="217.58" y="767.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (313,817 samples, 0.10%)</title><rect x="792.8" y="389" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="795.76" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,238,804 samples, 0.41%)</title><rect x="727.0" y="485" width="4.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.99" y="495.5" ></text>
</g>
<g >
<title>tag_hash (903,327 samples, 0.30%)</title><rect x="799.6" y="437" width="3.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="802.61" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (297,613 samples, 0.10%)</title><rect x="1187.8" y="581" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.84" y="591.5" ></text>
</g>
<g >
<title>[libicui18n.so.74.2] (297,613 samples, 0.10%)</title><rect x="1187.8" y="741" width="1.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1190.84" y="751.5" ></text>
</g>
<g >
<title>pg_usleep (79,831,941 samples, 26.21%)</title><rect x="874.3" y="485" width="309.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="877.29" y="495.5" >pg_usleep</text>
</g>
<g >
<title>MemoryContextCheck (483,714 samples, 0.16%)</title><rect x="1184.7" y="757" width="1.9" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1187.69" y="767.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (670,295 samples, 0.22%)</title><rect x="825.0" y="469" width="2.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="828.01" y="479.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturn (527,044 samples, 0.17%)</title><rect x="18.4" y="725" width="2.0" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="21.38" y="735.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturn (116,098,751 samples, 38.11%)</title><rect x="735.0" y="661" width="449.7" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="737.95" y="671.5" >ExecEvalExprNoReturn</text>
</g>
<g >
<title>ExecResult (116,098,751 samples, 38.11%)</title><rect x="735.0" y="709" width="449.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="737.95" y="719.5" >ExecResult</text>
</g>
<g >
<title>[[kernel.kallsyms]] (3,696,301 samples, 1.21%)</title><rect x="717.5" y="549" width="14.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="720.47" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (313,817 samples, 0.10%)</title><rect x="792.8" y="357" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="795.76" y="367.5" ></text>
</g>
<g >
<title>BackendStartup (117,469,164 samples, 38.56%)</title><rect x="735.0" y="869" width="455.0" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="737.95" y="879.5" >BackendStartup</text>
</g>
<g >
<title>[[kernel.kallsyms]] (329,952 samples, 0.11%)</title><rect x="1186.6" y="469" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.57" y="479.5" ></text>
</g>
<g >
<title>TransactionIdIsInProgress (2,472,178 samples, 0.81%)</title><rect x="864.7" y="485" width="9.6" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="867.71" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (208,553 samples, 0.07%)</title><rect x="876.2" y="437" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="879.20" y="447.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (116,098,751 samples, 38.11%)</title><rect x="735.0" y="757" width="449.7" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="737.95" y="767.5" >standard_ExecutorRun</text>
</g>
<g >
<title>[[kernel.kallsyms]] (329,952 samples, 0.11%)</title><rect x="1186.6" y="597" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.57" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (97,962 samples, 0.03%)</title><rect x="1183.5" y="373" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.54" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (980,581 samples, 0.32%)</title><rect x="1179.7" y="117" width="3.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1182.74" y="127.5" ></text>
</g>
<g >
<title>postmaster_child_launch (117,469,164 samples, 38.56%)</title><rect x="735.0" y="853" width="455.0" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="737.95" y="863.5" >postmaster_child_launch</text>
</g>
<g >
<title>AllocateDir (165,820 samples, 0.05%)</title><rect x="734.3" y="581" width="0.7" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="737.31" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (200,163 samples, 0.07%)</title><rect x="1183.9" y="389" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.92" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (283,742 samples, 0.09%)</title><rect x="18.4" y="357" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="21.38" y="367.5" ></text>
</g>
<g >
<title>GetXLogReplayRecPtr (1,698,334 samples, 0.56%)</title><rect x="23.8" y="901" width="6.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="26.85" y="911.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (61,618,977 samples, 20.23%)</title><rect x="944.8" y="341" width="238.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="947.84" y="351.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (111,928 samples, 0.04%)</title><rect x="76.7" y="853" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="79.74" y="863.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturn (331,640 samples, 0.11%)</title><rect x="733.7" y="677" width="1.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="736.67" y="687.5" ></text>
</g>
<g >
<title>pg_create_logical_replication_slot (527,044 samples, 0.17%)</title><rect x="18.4" y="693" width="2.0" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="21.38" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (157,291,750 samples, 51.64%)</title><rect x="122.5" y="821" width="609.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="125.47" y="831.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>standby_decode (115,800,626 samples, 38.02%)</title><rect x="735.3" y="565" width="448.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="738.33" y="575.5" >standby_decode</text>
</g>
<g >
<title>[[kernel.kallsyms]] (97,962 samples, 0.03%)</title><rect x="1183.5" y="437" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.54" y="447.5" ></text>
</g>
<g >
<title>AllocSetFree (200,163 samples, 0.07%)</title><rect x="1183.9" y="565" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1186.92" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (313,817 samples, 0.10%)</title><rect x="792.8" y="373" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="795.76" y="383.5" ></text>
</g>
<g >
<title>get_hash_entry (384,098 samples, 0.13%)</title><rect x="788.8" y="421" width="1.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="791.77" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,211 samples, 0.01%)</title><rect x="779.1" y="357" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="782.05" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (208,553 samples, 0.07%)</title><rect x="876.2" y="405" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="879.20" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (97,962 samples, 0.03%)</title><rect x="1183.5" y="309" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.54" y="319.5" ></text>
</g>
<g >
<title>BackendStartup (527,044 samples, 0.17%)</title><rect x="18.4" y="933" width="2.0" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="21.38" y="943.5" ></text>
</g>
<g >
<title>ExecProcNode (527,044 samples, 0.17%)</title><rect x="18.4" y="789" width="2.0" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="21.38" y="799.5" ></text>
</g>
<g >
<title>DecodingContextFindStartpoint (165,820 samples, 0.05%)</title><rect x="733.7" y="613" width="0.6" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="736.67" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (164,864,254 samples, 54.12%)</title><rect x="93.1" y="853" width="638.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="96.14" y="863.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (243,302 samples, 0.08%)</title><rect x="19.5" y="373" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="22.48" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (60,765,087 samples, 19.95%)</title><rect x="948.1" y="325" width="235.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="951.15" y="335.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (329,952 samples, 0.11%)</title><rect x="1186.6" y="661" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.57" y="671.5" ></text>
</g>
<g >
<title>PortalRun (527,044 samples, 0.17%)</title><rect x="18.4" y="853" width="2.0" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="21.38" y="863.5" ></text>
</g>
<g >
<title>[libc.so.6] (200,163 samples, 0.07%)</title><rect x="1183.9" y="517" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1186.92" y="527.5" ></text>
</g>
<g >
<title>FreeDecodingContext (200,163 samples, 0.07%)</title><rect x="1183.9" y="597" width="0.8" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1186.92" y="607.5" ></text>
</g>
<g >
<title>log_status_format (165,820 samples, 0.05%)</title><rect x="733.7" y="501" width="0.6" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="736.67" y="511.5" ></text>
</g>
<g >
<title>ServerLoop (331,640 samples, 0.11%)</title><rect x="733.7" y="901" width="1.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="736.67" y="911.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (74,157,748 samples, 24.34%)</title><rect x="896.3" y="421" width="287.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="899.27" y="431.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (283,742 samples, 0.09%)</title><rect x="18.4" y="453" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="21.38" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,989,791 samples, 0.65%)</title><rect x="10.7" y="949" width="7.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.68" y="959.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,445,755 samples, 13.28%)</title><rect x="1026.9" y="261" width="156.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1029.86" y="271.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (139,345,283 samples, 45.75%)</title><rect x="192.0" y="773" width="539.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="194.99" y="783.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,511 samples, 0.01%)</title><rect x="59.7" y="837" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="62.74" y="847.5" ></text>
</g>
<g >
<title>pfree (84,513 samples, 0.03%)</title><rect x="821.8" y="453" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="824.80" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (64,362,949 samples, 21.13%)</title><rect x="934.2" y="357" width="249.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="937.21" y="367.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,589,830 samples, 0.52%)</title><rect x="725.6" y="517" width="6.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="728.63" y="527.5" ></text>
</g>
<g >
<title>PostmasterMain (331,640 samples, 0.11%)</title><rect x="733.7" y="917" width="1.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="736.67" y="927.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (313,817 samples, 0.10%)</title><rect x="792.8" y="325" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="795.76" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (283,742 samples, 0.09%)</title><rect x="18.4" y="389" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="21.38" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (60,293,406 samples, 19.79%)</title><rect x="950.0" y="309" width="233.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="952.97" y="319.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>ReplicationSlotSave (527,044 samples, 0.17%)</title><rect x="18.4" y="677" width="2.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="21.38" y="687.5" ></text>
</g>
<g >
<title>[libstdc++.so.6.0.33] (329,952 samples, 0.11%)</title><rect x="1186.6" y="725" width="1.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1189.57" y="735.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (126,467,594 samples, 41.52%)</title><rect x="241.9" y="709" width="489.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="244.88" y="719.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>expand_table (114,098 samples, 0.04%)</title><rect x="808.7" y="437" width="0.5" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="811.72" y="447.5" ></text>
</g>
<g >
<title>ExecutePlan (331,640 samples, 0.11%)</title><rect x="733.7" y="757" width="1.3" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="736.67" y="767.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (329,952 samples, 0.11%)</title><rect x="1186.6" y="629" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.57" y="639.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (331,640 samples, 0.11%)</title><rect x="733.7" y="773" width="1.3" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="736.67" y="783.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (200,163 samples, 0.07%)</title><rect x="1183.9" y="453" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.92" y="463.5" ></text>
</g>
<g >
<title>ServerLoop (527,044 samples, 0.17%)</title><rect x="18.4" y="949" width="2.0" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="21.38" y="959.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,012,032 samples, 0.33%)</title><rect x="854.0" y="421" width="3.9" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="856.98" y="431.5" ></text>
</g>
<g >
<title>[libc.so.6] (331,640 samples, 0.11%)</title><rect x="733.7" y="949" width="1.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="736.67" y="959.5" ></text>
</g>
<g >
<title>LWLockAcquire (2,308,688 samples, 0.76%)</title><rect x="849.0" y="437" width="8.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="851.96" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (142,042 samples, 0.05%)</title><rect x="873.7" y="357" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="876.74" y="367.5" ></text>
</g>
<g >
<title>create_logical_replication_slot (331,640 samples, 0.11%)</title><rect x="733.7" y="629" width="1.3" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="736.67" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (131,011,935 samples, 43.01%)</title><rect x="224.3" y="725" width="507.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="227.27" y="735.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (114,098 samples, 0.04%)</title><rect x="870.8" y="405" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="873.82" y="415.5" ></text>
</g>
<g >
<title>LogicalDecodingProcessRecord (165,820 samples, 0.05%)</title><rect x="733.7" y="597" width="0.6" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="736.67" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (283,742 samples, 0.09%)</title><rect x="18.4" y="533" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="21.38" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (142,042 samples, 0.05%)</title><rect x="873.7" y="437" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="876.74" y="447.5" ></text>
</g>
<g >
<title>[libc.so.6] (627,565 samples, 0.21%)</title><rect x="1186.6" y="773" width="2.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1189.57" y="783.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,989,791 samples, 0.65%)</title><rect x="10.7" y="789" width="7.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.68" y="799.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (200,163 samples, 0.07%)</title><rect x="1183.9" y="421" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.92" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (297,613 samples, 0.10%)</title><rect x="1187.8" y="549" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.84" y="559.5" ></text>
</g>
<g >
<title>PortalRun (116,098,751 samples, 38.11%)</title><rect x="735.0" y="789" width="449.7" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="737.95" y="799.5" >PortalRun</text>
</g>
<g >
<title>[[kernel.kallsyms]] (297,613 samples, 0.10%)</title><rect x="1187.8" y="485" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.84" y="495.5" ></text>
</g>
<g >
<title>dlist_delete (363,968 samples, 0.12%)</title><rect x="814.4" y="453" width="1.4" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="817.40" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,989,791 samples, 0.65%)</title><rect x="10.7" y="773" width="7.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.68" y="783.5" ></text>
</g>
<g >
<title>FreeDecodingContext (165,820 samples, 0.05%)</title><rect x="734.3" y="613" width="0.7" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="737.31" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,541,870 samples, 0.51%)</title><rect x="12.4" y="741" width="6.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="15.41" y="751.5" ></text>
</g>
<g >
<title>write (243,302 samples, 0.08%)</title><rect x="19.5" y="645" width="0.9" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="22.48" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (72,992,241 samples, 23.96%)</title><rect x="900.8" y="405" width="282.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="903.78" y="415.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (283,742 samples, 0.09%)</title><rect x="18.4" y="485" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="21.38" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (329,952 samples, 0.11%)</title><rect x="1186.6" y="613" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.57" y="623.5" ></text>
</g>
<g >
<title>postmaster_child_launch (331,640 samples, 0.11%)</title><rect x="733.7" y="869" width="1.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="736.67" y="879.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (283,742 samples, 0.09%)</title><rect x="18.4" y="469" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="21.38" y="479.5" ></text>
</g>
<g >
<title>PortalRunSelect (527,044 samples, 0.17%)</title><rect x="18.4" y="837" width="2.0" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="21.38" y="847.5" ></text>
</g>
<g >
<title>ExecutePlan (527,044 samples, 0.17%)</title><rect x="18.4" y="805" width="2.0" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="21.38" y="815.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,989,791 samples, 0.65%)</title><rect x="10.7" y="837" width="7.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.68" y="847.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (84,513 samples, 0.03%)</title><rect x="821.8" y="437" width="0.3" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="824.80" y="447.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (114,098 samples, 0.04%)</title><rect x="870.8" y="453" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="873.82" y="463.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (674,710 samples, 0.22%)</title><rect x="855.3" y="405" width="2.6" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="858.29" y="415.5" ></text>
</g>
<g >
<title>get_hash_value (912,041 samples, 0.30%)</title><rect x="767.4" y="437" width="3.5" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="770.42" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (97,962 samples, 0.03%)</title><rect x="1183.5" y="341" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.54" y="351.5" ></text>
</g>
<g >
<title>tas (188,593 samples, 0.06%)</title><rect x="789.5" y="405" width="0.8" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="792.53" y="415.5" ></text>
</g>
<g >
<title>PostgresMain (527,044 samples, 0.17%)</title><rect x="18.4" y="885" width="2.0" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="21.38" y="895.5" ></text>
</g>
<g >
<title>all (304,612,424 samples, 100%)</title><rect x="10.0" y="997" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="1007.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (114,098 samples, 0.04%)</title><rect x="870.8" y="421" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="873.82" y="431.5" ></text>
</g>
<g >
<title>ExecInterpExpr (116,098,751 samples, 38.11%)</title><rect x="735.0" y="645" width="449.7" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text x="737.95" y="655.5" >ExecInterpExpr</text>
</g>
<g >
<title>[[kernel.kallsyms]] (132,014,779 samples, 43.34%)</title><rect x="220.4" y="741" width="511.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="223.39" y="751.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,211 samples, 0.01%)</title><rect x="779.1" y="341" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="782.05" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,986,404 samples, 0.65%)</title><rect x="1175.8" y="165" width="7.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1178.84" y="175.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (313,817 samples, 0.10%)</title><rect x="792.8" y="437" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="795.76" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (90,156 samples, 0.03%)</title><rect x="857.0" y="357" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="859.98" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (38,242,263 samples, 12.55%)</title><rect x="583.6" y="597" width="148.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="586.64" y="607.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,211 samples, 0.01%)</title><rect x="779.1" y="325" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="782.05" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (75,999,904 samples, 24.95%)</title><rect x="889.1" y="437" width="294.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="892.13" y="447.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (329,952 samples, 0.11%)</title><rect x="1186.6" y="549" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.57" y="559.5" ></text>
</g>
<g >
<title>SimpleLruReadPage_ReadOnly (5,397,368 samples, 1.77%)</title><rect x="840.5" y="453" width="20.9" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="843.53" y="463.5" ></text>
</g>
<g >
<title>pg_usleep (173,929,477 samples, 57.10%)</title><rect x="59.9" y="901" width="673.8" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="62.90" y="911.5" >pg_usleep</text>
</g>
<g >
<title>MemoryChunkGetValue (421,498 samples, 0.14%)</title><rect x="760.9" y="437" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="763.92" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (49,938,813 samples, 16.39%)</title><rect x="990.1" y="277" width="193.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="993.08" y="287.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,511 samples, 0.01%)</title><rect x="59.7" y="741" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="62.74" y="751.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (97,962 samples, 0.03%)</title><rect x="1183.5" y="357" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.54" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (142,042 samples, 0.05%)</title><rect x="873.7" y="341" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="876.74" y="351.5" ></text>
</g>
<g >
<title>finish_xact_command (483,714 samples, 0.16%)</title><rect x="1184.7" y="773" width="1.9" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1187.69" y="783.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (68,540,603 samples, 22.50%)</title><rect x="918.0" y="389" width="265.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="921.03" y="399.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (243,302 samples, 0.08%)</title><rect x="19.5" y="453" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="22.48" y="463.5" ></text>
</g>
<g >
<title>expand_table (123,421 samples, 0.04%)</title><rect x="788.3" y="421" width="0.5" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="791.30" y="431.5" ></text>
</g>
<g >
<title>finish_xact_command (483,714 samples, 0.16%)</title><rect x="1184.7" y="789" width="1.9" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1187.69" y="799.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (398,179 samples, 0.13%)</title><rect x="16.8" y="645" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="19.84" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (142,042 samples, 0.05%)</title><rect x="873.7" y="421" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="876.74" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,989,791 samples, 0.65%)</title><rect x="10.7" y="869" width="7.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.68" y="879.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,989,791 samples, 0.65%)</title><rect x="10.7" y="901" width="7.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.68" y="911.5" ></text>
</g>
<g >
<title>SnapBuildFindSnapshot (115,800,626 samples, 38.02%)</title><rect x="735.3" y="533" width="448.6" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="738.33" y="543.5" >SnapBuildFindSnapshot</text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (329,952 samples, 0.11%)</title><rect x="1186.6" y="741" width="1.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1189.57" y="751.5" ></text>
</g>
<g >
<title>ExecProject (527,044 samples, 0.17%)</title><rect x="18.4" y="757" width="2.0" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="21.38" y="767.5" ></text>
</g>
<g >
<title>pg_create_logical_replication_slot (116,098,751 samples, 38.11%)</title><rect x="735.0" y="629" width="449.7" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="737.95" y="639.5" >pg_create_logical_replication_slot</text>
</g>
<g >
<title>[[kernel.kallsyms]] (398,179 samples, 0.13%)</title><rect x="16.8" y="677" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="19.84" y="687.5" ></text>
</g>
<g >
<title>SubTransGetTopmostTransaction (9,578,815 samples, 3.14%)</title><rect x="827.6" y="485" width="37.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="830.60" y="495.5" >Sub..</text>
</g>
<g >
<title>[unknown] (184,978,744 samples, 60.73%)</title><rect x="18.4" y="965" width="716.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="21.38" y="975.5" >[unknown]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (243,302 samples, 0.08%)</title><rect x="19.5" y="581" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="22.48" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (398,179 samples, 0.13%)</title><rect x="16.8" y="725" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="19.84" y="735.5" ></text>
</g>
<g >
<title>LWLockRelease (114,098 samples, 0.04%)</title><rect x="870.8" y="469" width="0.5" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="873.82" y="479.5" ></text>
</g>
<g >
<title>ExecResult (331,640 samples, 0.11%)</title><rect x="733.7" y="725" width="1.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="736.67" y="735.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (142,042 samples, 0.05%)</title><rect x="873.7" y="277" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="876.74" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (150,722 samples, 0.05%)</title><rect x="793.4" y="309" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="796.39" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (297,613 samples, 0.10%)</title><rect x="1187.8" y="565" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.84" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,099,288 samples, 0.36%)</title><rect x="727.5" y="469" width="4.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="730.53" y="479.5" ></text>
</g>
<g >
<title>TransactionIdFollowsOrEquals (340,066 samples, 0.11%)</title><rect x="861.4" y="469" width="1.4" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="864.44" y="479.5" ></text>
</g>
<g >
<title>MemoryChunkGetValue (230,244 samples, 0.08%)</title><rect x="1185.7" y="725" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.67" y="735.5" ></text>
</g>
<g >
<title>BackendMain (527,044 samples, 0.17%)</title><rect x="18.4" y="901" width="2.0" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="21.38" y="911.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (411,380 samples, 0.14%)</title><rect x="1181.9" y="53" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1184.94" y="63.5" ></text>
</g>
<g >
<title>TransactionIdIsCurrentTransactionId (780,126 samples, 0.26%)</title><rect x="871.3" y="469" width="3.0" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="874.26" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,541,870 samples, 0.51%)</title><rect x="12.4" y="757" width="6.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="15.41" y="767.5" ></text>
</g>
<g >
<title>main (331,640 samples, 0.11%)</title><rect x="733.7" y="933" width="1.3" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="736.67" y="943.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (297,613 samples, 0.10%)</title><rect x="1187.8" y="517" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.84" y="527.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberLock (809,203 samples, 0.27%)</title><rect x="763.7" y="437" width="3.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="766.71" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (297,613 samples, 0.10%)</title><rect x="1187.8" y="613" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.84" y="623.5" ></text>
</g>
<g >
<title>_start (117,469,164 samples, 38.56%)</title><rect x="735.0" y="965" width="455.0" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="737.95" y="975.5" >_start</text>
</g>
<g >
<title>hash_search_with_hash_value (3,202,778 samples, 1.05%)</title><rect x="780.4" y="437" width="12.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="783.35" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (243,302 samples, 0.08%)</title><rect x="19.5" y="485" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="22.48" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (142,042 samples, 0.05%)</title><rect x="873.7" y="405" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="876.74" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (52,167,191 samples, 17.13%)</title><rect x="529.7" y="613" width="202.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="532.70" y="623.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (398,179 samples, 0.13%)</title><rect x="16.8" y="629" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="19.84" y="639.5" ></text>
</g>
<g >
<title>hash_bytes (847,322 samples, 0.28%)</title><rect x="796.3" y="437" width="3.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="799.33" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,243,393 samples, 7.30%)</title><rect x="1097.4" y="197" width="86.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1100.37" y="207.5" >[[kernel.k..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (297,613 samples, 0.10%)</title><rect x="1187.8" y="677" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.84" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (329,952 samples, 0.11%)</title><rect x="1186.6" y="533" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.57" y="543.5" ></text>
</g>
<g >
<title>errfinish (97,962 samples, 0.03%)</title><rect x="1183.5" y="517" width="0.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1186.54" y="527.5" ></text>
</g>
<g >
<title>PortalRun (331,640 samples, 0.11%)</title><rect x="733.7" y="805" width="1.3" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="736.67" y="815.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (84,513 samples, 0.03%)</title><rect x="821.5" y="453" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="824.47" y="463.5" ></text>
</g>
<g >
<title>postgres (304,612,424 samples, 100.00%)</title><rect x="10.0" y="981" width="1180.0" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="13.00" y="991.5" >postgres</text>
</g>
<g >
<title>[[kernel.kallsyms]] (329,952 samples, 0.11%)</title><rect x="1186.6" y="581" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.57" y="591.5" ></text>
</g>
<g >
<title>appendStringInfo (165,820 samples, 0.05%)</title><rect x="733.7" y="485" width="0.6" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="736.67" y="495.5" ></text>
</g>
<g >
<title>wipe_mem (83,649 samples, 0.03%)</title><rect x="820.6" y="437" width="0.4" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="823.63" y="447.5" ></text>
</g>
<g >
<title>exec_simple_query (116,582,465 samples, 38.27%)</title><rect x="735.0" y="805" width="451.6" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="737.95" y="815.5" >exec_simple_query</text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,989,791 samples, 0.65%)</title><rect x="10.7" y="933" width="7.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.68" y="943.5" ></text>
</g>
<g >
<title>EmitErrorReport (165,820 samples, 0.05%)</title><rect x="733.7" y="549" width="0.6" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="736.67" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (97,962 samples, 0.03%)</title><rect x="1183.5" y="325" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.54" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (200,163 samples, 0.07%)</title><rect x="1183.9" y="501" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.92" y="511.5" ></text>
</g>
<g >
<title>[libc.so.6] (630,590 samples, 0.21%)</title><rect x="806.3" y="437" width="2.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="809.28" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (142,042 samples, 0.05%)</title><rect x="873.7" y="261" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="876.74" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (111,928 samples, 0.04%)</title><rect x="76.7" y="789" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="79.74" y="799.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (111,928 samples, 0.04%)</title><rect x="76.7" y="869" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="79.74" y="879.5" ></text>
</g>
<g >
<title>hash_bytes (437,044 samples, 0.14%)</title><rect x="770.9" y="437" width="1.7" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="773.95" y="447.5" ></text>
</g>
<g >
<title>LockAcquireExtended (16,588,161 samples, 5.45%)</title><rect x="746.0" y="469" width="64.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="748.99" y="479.5" >LockAcq..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,989,791 samples, 0.65%)</title><rect x="10.7" y="853" width="7.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.68" y="863.5" ></text>
</g>
<g >
<title>__default_morecore (165,820 samples, 0.05%)</title><rect x="734.3" y="517" width="0.7" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="737.31" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (243,302 samples, 0.08%)</title><rect x="19.5" y="469" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="22.48" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (243,302 samples, 0.08%)</title><rect x="19.5" y="389" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="22.48" y="399.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (329,952 samples, 0.11%)</title><rect x="1186.6" y="677" width="1.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1189.57" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (297,613 samples, 0.10%)</title><rect x="1187.8" y="533" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.84" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (97,962 samples, 0.03%)</title><rect x="1183.5" y="389" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.54" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (243,302 samples, 0.08%)</title><rect x="19.5" y="517" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="22.48" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (398,179 samples, 0.13%)</title><rect x="16.8" y="693" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="19.84" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (329,952 samples, 0.11%)</title><rect x="1186.6" y="565" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.57" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,989,791 samples, 0.65%)</title><rect x="10.7" y="917" width="7.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.68" y="927.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (283,742 samples, 0.09%)</title><rect x="18.4" y="309" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="21.38" y="319.5" ></text>
</g>
<g >
<title>TransactionIdPrecedes (504,193 samples, 0.17%)</title><rect x="862.8" y="469" width="1.9" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="865.76" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (142,042 samples, 0.05%)</title><rect x="873.7" y="229" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="876.74" y="239.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (97,962 samples, 0.03%)</title><rect x="1183.5" y="277" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.54" y="287.5" ></text>
</g>
<g >
<title>read_local_xlog_page_guts (184,120,060 samples, 60.44%)</title><rect x="20.4" y="917" width="713.3" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="23.43" y="927.5" >read_local_xlog_page_guts</text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,511 samples, 0.01%)</title><rect x="59.7" y="853" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="62.74" y="863.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (111,928 samples, 0.04%)</title><rect x="76.7" y="773" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="79.74" y="783.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (142,042 samples, 0.05%)</title><rect x="873.7" y="325" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="876.74" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,925,765 samples, 1.95%)</title><rect x="708.8" y="581" width="23.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="711.83" y="591.5" >[..</text>
</g>
<g >
<title>write (97,962 samples, 0.03%)</title><rect x="1183.5" y="453" width="0.4" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="1186.54" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (329,952 samples, 0.11%)</title><rect x="1186.6" y="453" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.57" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (208,553 samples, 0.07%)</title><rect x="876.2" y="469" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="879.20" y="479.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (114,550 samples, 0.04%)</title><rect x="840.1" y="437" width="0.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="843.09" y="447.5" ></text>
</g>
<g >
<title>GrantLockLocal (1,107,229 samples, 0.36%)</title><rect x="762.6" y="453" width="4.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="765.55" y="463.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (527,044 samples, 0.17%)</title><rect x="18.4" y="821" width="2.0" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="21.38" y="831.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (243,302 samples, 0.08%)</title><rect x="19.5" y="533" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="22.48" y="543.5" ></text>
</g>
<g >
<title>LWLockRelease (199,063 samples, 0.07%)</title><rect x="839.8" y="453" width="0.7" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="842.76" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (297,613 samples, 0.10%)</title><rect x="1187.8" y="661" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.84" y="671.5" ></text>
</g>
<g >
<title>main (117,469,164 samples, 38.56%)</title><rect x="735.0" y="917" width="455.0" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="737.95" y="927.5" >main</text>
</g>
<g >
<title>SnapBuildProcessRunningXacts (115,800,626 samples, 38.02%)</title><rect x="735.3" y="549" width="448.6" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="738.33" y="559.5" >SnapBuildProcessRunningXacts</text>
</g>
<g >
<title>BackendMain (331,640 samples, 0.11%)</title><rect x="733.7" y="853" width="1.3" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="736.67" y="863.5" ></text>
</g>
<g >
<title>UnGrantLock (402,044 samples, 0.13%)</title><rect x="822.9" y="469" width="1.6" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="825.91" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,511 samples, 0.01%)</title><rect x="59.7" y="821" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="62.74" y="831.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (243,302 samples, 0.08%)</title><rect x="19.5" y="597" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="22.48" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (283,742 samples, 0.09%)</title><rect x="18.4" y="565" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="21.38" y="575.5" ></text>
</g>
<g >
<title>__nanosleep (170,670,628 samples, 56.03%)</title><rect x="70.6" y="885" width="661.2" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text x="73.64" y="895.5" >__nanosleep</text>
</g>
<g >
<title>ExecProcNode (331,640 samples, 0.11%)</title><rect x="733.7" y="741" width="1.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="736.67" y="751.5" ></text>
</g>
<g >
<title>BackendStartup (331,640 samples, 0.11%)</title><rect x="733.7" y="885" width="1.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="736.67" y="895.5" ></text>
</g>
<g >
<title>LockRelease (4,478,912 samples, 1.47%)</title><rect x="810.3" y="485" width="17.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="813.25" y="495.5" ></text>
</g>
<g >
<title>internal_flush_buffer (259,134 samples, 0.09%)</title><rect x="1189.0" y="757" width="1.0" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1192.00" y="767.5" ></text>
</g>
<g >
<title>clock_nanosleep (78,271,730 samples, 25.70%)</title><rect x="880.3" y="453" width="303.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="883.33" y="463.5" >clock_nanosleep</text>
</g>
<g >
<title>send_message_to_server_log (97,962 samples, 0.03%)</title><rect x="1183.5" y="485" width="0.4" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="1186.54" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (160,026,013 samples, 52.53%)</title><rect x="111.9" y="837" width="619.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="114.88" y="847.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>hash_search_with_hash_value (148,571 samples, 0.05%)</title><rect x="815.8" y="453" width="0.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="818.81" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (329,952 samples, 0.11%)</title><rect x="1186.6" y="485" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.57" y="495.5" ></text>
</g>
<g >
<title>hash_search (133,095 samples, 0.04%)</title><rect x="821.0" y="453" width="0.5" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="823.95" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (4,647,828 samples, 1.53%)</title><rect x="713.8" y="565" width="18.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="716.78" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (200,163 samples, 0.07%)</title><rect x="1183.9" y="485" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.92" y="495.5" ></text>
</g>
<g >
<title>SubTransGetParent (6,001,827 samples, 1.97%)</title><rect x="838.2" y="469" width="23.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="841.19" y="479.5" >S..</text>
</g>
<g >
<title>standby_decode (165,820 samples, 0.05%)</title><rect x="733.7" y="581" width="0.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="736.67" y="591.5" ></text>
</g>
<g >
<title>[libc.so.6] (266,599 samples, 0.09%)</title><rect x="825.9" y="453" width="1.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="828.86" y="463.5" ></text>
</g>
<g >
<title>socket_flush (259,134 samples, 0.09%)</title><rect x="1189.0" y="805" width="1.0" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1192.00" y="815.5" ></text>
</g>
<g >
<title>ExecProject (116,098,751 samples, 38.11%)</title><rect x="735.0" y="693" width="449.7" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="737.95" y="703.5" >ExecProject</text>
</g>
<g >
<title>PostgresMain (117,469,164 samples, 38.56%)</title><rect x="735.0" y="821" width="455.0" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="737.95" y="831.5" >PostgresMain</text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,511 samples, 0.01%)</title><rect x="59.7" y="869" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="62.74" y="879.5" ></text>
</g>
<g >
<title>hash_bytes (140,234 samples, 0.05%)</title><rect x="824.5" y="453" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="827.46" y="463.5" ></text>
</g>
<g >
<title>EmitErrorReport (97,962 samples, 0.03%)</title><rect x="1183.5" y="501" width="0.4" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="1186.54" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,989,791 samples, 0.65%)</title><rect x="10.7" y="885" width="7.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.68" y="895.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (126,515 samples, 0.04%)</title><rect x="772.2" y="421" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="775.15" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (283,742 samples, 0.09%)</title><rect x="18.4" y="517" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="21.38" y="527.5" ></text>
</g>
<g >
<title>hash_bytes (133,095 samples, 0.04%)</title><rect x="821.0" y="437" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="823.95" y="447.5" ></text>
</g>
<g >
<title>pg_vsnprintf (165,820 samples, 0.05%)</title><rect x="733.7" y="437" width="0.6" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="736.67" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (283,742 samples, 0.09%)</title><rect x="18.4" y="549" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="21.38" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,516,140 samples, 0.50%)</title><rect x="1177.7" y="149" width="5.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1180.66" y="159.5" ></text>
</g>
<g >
<title>SaveSlotToPath (527,044 samples, 0.17%)</title><rect x="18.4" y="661" width="2.0" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="21.38" y="671.5" ></text>
</g>
<g >
<title>log_line_prefix (165,820 samples, 0.05%)</title><rect x="733.7" y="517" width="0.6" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="736.67" y="527.5" ></text>
</g>
<g >
<title>clock_nanosleep (168,985,939 samples, 55.48%)</title><rect x="77.2" y="869" width="654.6" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="80.17" y="879.5" >clock_nanosleep</text>
</g>
<g >
<title>errfinish (165,820 samples, 0.05%)</title><rect x="733.7" y="565" width="0.6" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="736.67" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (97,962 samples, 0.03%)</title><rect x="1183.5" y="245" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.54" y="255.5" ></text>
</g>
<g >
<title>secure_write (259,134 samples, 0.09%)</title><rect x="1189.0" y="741" width="1.0" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1192.00" y="751.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (142,042 samples, 0.05%)</title><rect x="873.7" y="293" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="876.74" y="303.5" ></text>
</g>
<g >
<title>LockTagHashCode (1,631,556 samples, 0.54%)</title><rect x="767.4" y="453" width="6.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="770.42" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (283,742 samples, 0.09%)</title><rect x="18.4" y="597" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="21.38" y="607.5" ></text>
</g>
<g >
<title>LockAcquire (16,761,777 samples, 5.50%)</title><rect x="745.3" y="485" width="65.0" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="748.32" y="495.5" >LockAcq..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (208,553 samples, 0.07%)</title><rect x="876.2" y="453" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="879.20" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (313,817 samples, 0.10%)</title><rect x="792.8" y="453" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="795.76" y="463.5" ></text>
</g>
<g >
<title>postmaster_child_launch (527,044 samples, 0.17%)</title><rect x="18.4" y="917" width="2.0" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="21.38" y="927.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (66,422,729 samples, 21.81%)</title><rect x="926.2" y="373" width="257.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="929.23" y="383.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>get_hash_entry (281,173 samples, 0.09%)</title><rect x="809.2" y="437" width="1.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="812.16" y="447.5" ></text>
</g>
<g >
<title>PortalRunSelect (331,640 samples, 0.11%)</title><rect x="733.7" y="789" width="1.3" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="736.67" y="799.5" ></text>
</g>
<g >
<title>memset (83,649 samples, 0.03%)</title><rect x="820.6" y="421" width="0.4" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="823.63" y="431.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturnSwitchContext (116,098,751 samples, 38.11%)</title><rect x="735.0" y="677" width="449.7" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="737.95" y="687.5" >ExecEvalExprNoReturnSwitchContext</text>
</g>
<g >
<title>[[kernel.kallsyms]] (283,742 samples, 0.09%)</title><rect x="18.4" y="501" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="21.38" y="511.5" ></text>
</g>
<g >
<title>dopr (165,820 samples, 0.05%)</title><rect x="733.7" y="421" width="0.6" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="736.67" y="431.5" ></text>
</g>
<g >
<title>__send (259,134 samples, 0.09%)</title><rect x="1189.0" y="709" width="1.0" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="1192.00" y="719.5" ></text>
</g>
<g >
<title>proc_exit (627,565 samples, 0.21%)</title><rect x="1186.6" y="805" width="2.4" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1189.57" y="815.5" ></text>
</g>
<g >
<title>ExecResult (527,044 samples, 0.17%)</title><rect x="18.4" y="773" width="2.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="21.38" y="783.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,211 samples, 0.01%)</title><rect x="779.1" y="405" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="782.05" y="415.5" ></text>
</g>
<g >
<title>PostmasterMain (117,469,164 samples, 38.56%)</title><rect x="735.0" y="901" width="455.0" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="737.95" y="911.5" >PostmasterMain</text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,211 samples, 0.01%)</title><rect x="779.1" y="421" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="782.05" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (142,042 samples, 0.05%)</title><rect x="873.7" y="389" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="876.74" y="399.5" ></text>
</g>
<g >
<title>AllocSetFree (539,210 samples, 0.18%)</title><rect x="818.9" y="453" width="2.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="821.86" y="463.5" ></text>
</g>
<g >
<title>secure_raw_write (259,134 samples, 0.09%)</title><rect x="1189.0" y="725" width="1.0" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="1192.00" y="735.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,169,174 samples, 0.38%)</title><rect x="1179.0" y="133" width="4.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1182.01" y="143.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (150,722 samples, 0.05%)</title><rect x="793.4" y="293" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="796.39" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (283,742 samples, 0.09%)</title><rect x="18.4" y="421" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="21.38" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,511 samples, 0.01%)</title><rect x="59.7" y="725" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="62.74" y="735.5" ></text>
</g>
<g >
<title>ReorderBufferCleanupSerializedTXNs (165,820 samples, 0.05%)</title><rect x="734.3" y="597" width="0.7" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="737.31" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (313,817 samples, 0.10%)</title><rect x="792.8" y="341" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="795.76" y="351.5" ></text>
</g>
<g >
<title>RecoveryInProgress (5,423,644 samples, 1.78%)</title><rect x="30.4" y="901" width="21.0" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="33.43" y="911.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (283,742 samples, 0.09%)</title><rect x="18.4" y="341" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="21.38" y="351.5" ></text>
</g>
<g >
<title>XLogReadDetermineTimeline (2,185,712 samples, 0.72%)</title><rect x="51.4" y="901" width="8.5" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="54.44" y="911.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (283,742 samples, 0.09%)</title><rect x="18.4" y="373" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="21.38" y="383.5" ></text>
</g>
<g >
<title>SlruRecentlyUsed (84,513 samples, 0.03%)</title><rect x="857.9" y="437" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="860.90" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (398,179 samples, 0.13%)</title><rect x="16.8" y="661" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="19.84" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (143,682,417 samples, 47.17%)</title><rect x="175.2" y="789" width="556.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="178.19" y="799.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,511 samples, 0.01%)</title><rect x="59.7" y="757" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="62.74" y="767.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (297,613 samples, 0.10%)</title><rect x="1187.8" y="709" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.84" y="719.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (578,039 samples, 0.19%)</title><rect x="1181.3" y="101" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1184.30" y="111.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,989,791 samples, 0.65%)</title><rect x="10.7" y="805" width="7.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.68" y="815.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (57,670,118 samples, 18.93%)</title><rect x="960.1" y="293" width="223.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="963.14" y="303.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>dlist_push_tail (154,724 samples, 0.05%)</title><rect x="779.8" y="437" width="0.6" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="782.75" y="447.5" ></text>
</g>
<g >
<title>XLogReaderFree (200,163 samples, 0.07%)</title><rect x="1183.9" y="581" width="0.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1186.92" y="591.5" ></text>
</g>
</g>
</svg>