v5_flamegraph.svg
image/svg+xml
Filename: v5_flamegraph.svg
Type: image/svg+xml
Part: 1
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="694" onload="init(evt)" viewBox="0 0 1200 694" 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="694.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="677" > </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="677" > </text>
<g id="frames">
<g >
<title>finish_xact_command (283,333 samples, 0.02%)</title><rect x="1188.8" y="437" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1191.83" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (181,408 samples, 0.01%)</title><rect x="48.3" y="469" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="51.28" y="479.5" ></text>
</g>
<g >
<title>[libc.so.6] (924,082 samples, 0.08%)</title><rect x="1189.1" y="421" width="0.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1192.10" y="431.5" ></text>
</g>
<g >
<title>PortalRunSelect (597,649 samples, 0.05%)</title><rect x="13.0" y="485" width="0.6" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="16.03" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (477,584 samples, 0.04%)</title><rect x="1189.5" y="165" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.54" y="175.5" ></text>
</g>
<g >
<title>ServerLoop (2,134,984 samples, 0.18%)</title><rect x="1187.9" y="533" width="2.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1190.93" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (482,115 samples, 0.04%)</title><rect x="12.6" y="53" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="15.56" y="63.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (303,252 samples, 0.02%)</title><rect x="13.3" y="229" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.32" y="239.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (412,406 samples, 0.03%)</title><rect x="61.3" y="517" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="64.32" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (481,747 samples, 0.04%)</title><rect x="54.3" y="405" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="57.28" y="415.5" ></text>
</g>
<g >
<title>clock_nanosleep (1,149,740,369 samples, 94.68%)</title><rect x="68.7" y="517" width="1117.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="71.69" y="527.5" >clock_nanosleep</text>
</g>
<g >
<title>GetXLogReplayRecPtr (6,015,174 samples, 0.50%)</title><rect x="22.3" y="549" width="5.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="25.28" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (294,397 samples, 0.02%)</title><rect x="13.0" y="85" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.03" y="95.5" ></text>
</g>
<g >
<title>create_logical_replication_slot (639,184 samples, 0.05%)</title><rect x="1187.9" y="261" width="0.6" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="1190.93" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (737,935 samples, 0.06%)</title><rect x="27.4" y="453" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="30.41" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (288,385 samples, 0.02%)</title><rect x="1188.5" y="261" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.55" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (181,408 samples, 0.01%)</title><rect x="48.3" y="501" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="51.28" y="511.5" ></text>
</g>
<g >
<title>[libm.so.6] (446,498 samples, 0.04%)</title><rect x="1189.1" y="373" width="0.4" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="1192.10" y="383.5" ></text>
</g>
<g >
<title>_start (2,134,984 samples, 0.18%)</title><rect x="1187.9" y="613" width="2.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1190.93" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (294,397 samples, 0.02%)</title><rect x="13.0" y="229" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.03" y="239.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (739,074 samples, 0.06%)</title><rect x="47.6" y="373" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="50.56" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (482,115 samples, 0.04%)</title><rect x="12.6" y="165" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="15.56" y="175.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (288,385 samples, 0.02%)</title><rect x="1188.5" y="181" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.55" y="191.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (477,584 samples, 0.04%)</title><rect x="1189.5" y="181" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.54" y="191.5" ></text>
</g>
<g >
<title>__libc_pread (181,408 samples, 0.01%)</title><rect x="48.3" y="517" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="51.28" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (457,402 samples, 0.04%)</title><rect x="1185.1" y="37" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.08" y="47.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (787,779 samples, 0.06%)</title><rect x="47.5" y="485" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="50.51" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (395,186 samples, 0.03%)</title><rect x="54.4" y="373" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="57.36" y="383.5" ></text>
</g>
<g >
<title>memset (204,617 samples, 0.02%)</title><rect x="1188.3" y="181" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="1191.35" y="191.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,603,262 samples, 0.13%)</title><rect x="11.5" y="389" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="14.47" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (262,414 samples, 0.02%)</title><rect x="1185.6" y="101" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.57" y="111.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (307,917 samples, 0.03%)</title><rect x="54.0" y="517" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="56.98" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (481,747 samples, 0.04%)</title><rect x="54.3" y="517" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="57.28" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (412,406 samples, 0.03%)</title><rect x="61.3" y="373" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="64.32" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (802,011 samples, 0.07%)</title><rect x="27.3" y="485" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="30.35" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (481,747 samples, 0.04%)</title><rect x="54.3" y="437" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="57.28" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (206,337,135 samples, 16.99%)</title><rect x="985.0" y="197" width="200.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="988.03" y="207.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,603,262 samples, 0.13%)</title><rect x="11.5" y="469" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="14.47" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (164,906 samples, 0.01%)</title><rect x="68.5" y="421" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="71.53" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (164,906 samples, 0.01%)</title><rect x="68.5" y="341" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="71.53" y="351.5" ></text>
</g>
<g >
<title>finish_xact_command (283,333 samples, 0.02%)</title><rect x="1188.8" y="421" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1191.83" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (503,779 samples, 0.04%)</title><rect x="27.6" y="373" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="30.64" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (181,408 samples, 0.01%)</title><rect x="48.3" y="421" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="51.28" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (294,397 samples, 0.02%)</title><rect x="13.0" y="181" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.03" y="191.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (164,906 samples, 0.01%)</title><rect x="68.5" y="309" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="71.53" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,076,137,382 samples, 88.62%)</title><rect x="140.2" y="453" width="1045.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="143.21" y="463.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (166,749,751 samples, 13.73%)</title><rect x="1023.5" y="149" width="162.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1026.50" y="159.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (739,074 samples, 0.06%)</title><rect x="47.6" y="389" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="50.56" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (481,747 samples, 0.04%)</title><rect x="54.3" y="469" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="57.28" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,603,262 samples, 0.13%)</title><rect x="11.5" y="517" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="14.47" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (164,906 samples, 0.01%)</title><rect x="68.5" y="389" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="71.53" y="399.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (446,498 samples, 0.04%)</title><rect x="1189.1" y="389" width="0.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1192.10" y="399.5" ></text>
</g>
<g >
<title>nanosleep@plt (1,781,313 samples, 0.15%)</title><rect x="1185.9" y="533" width="1.7" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1188.89" y="543.5" ></text>
</g>
<g >
<title>__cxa_finalize (446,498 samples, 0.04%)</title><rect x="1189.1" y="357" width="0.4" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1192.10" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (288,385 samples, 0.02%)</title><rect x="1188.5" y="213" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.55" y="223.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (818,137,300 samples, 67.37%)</title><rect x="390.9" y="325" width="795.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="393.91" y="335.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>ExecProcNode (639,184 samples, 0.05%)</title><rect x="1187.9" y="373" width="0.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1190.93" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (3,119,999 samples, 0.26%)</title><rect x="10.0" y="613" width="3.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="623.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturnSwitchContext (639,184 samples, 0.05%)</title><rect x="1187.9" y="325" width="0.6" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1190.93" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (477,584 samples, 0.04%)</title><rect x="1189.5" y="245" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.54" y="255.5" ></text>
</g>
<g >
<title>[libc.so.6] (446,498 samples, 0.04%)</title><rect x="1189.1" y="341" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1192.10" y="351.5" ></text>
</g>
<g >
<title>postmaster_child_launch (2,134,984 samples, 0.18%)</title><rect x="1187.9" y="501" width="2.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1190.93" y="511.5" ></text>
</g>
<g >
<title>MemoryContextCheck (283,333 samples, 0.02%)</title><rect x="1188.8" y="405" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1191.83" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (350,824 samples, 0.03%)</title><rect x="61.4" y="309" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="64.38" y="319.5" ></text>
</g>
<g >
<title>__libc_start_main (2,134,984 samples, 0.18%)</title><rect x="1187.9" y="597" width="2.1" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="1190.93" y="607.5" ></text>
</g>
<g >
<title>pvsnprintf (236,541 samples, 0.02%)</title><rect x="1188.1" y="133" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="1191.12" y="143.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (294,397 samples, 0.02%)</title><rect x="13.0" y="213" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.03" y="223.5" ></text>
</g>
<g >
<title>[libc.so.6] (204,617 samples, 0.02%)</title><rect x="1188.3" y="165" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1191.35" y="175.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,603,262 samples, 0.13%)</title><rect x="11.5" y="533" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="14.47" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (477,584 samples, 0.04%)</title><rect x="1189.5" y="293" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.54" y="303.5" ></text>
</g>
<g >
<title>BackendMain (2,134,984 samples, 0.18%)</title><rect x="1187.9" y="485" width="2.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="1190.93" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (181,408 samples, 0.01%)</title><rect x="48.3" y="437" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="51.28" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (739,074 samples, 0.06%)</title><rect x="47.6" y="405" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="50.56" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (412,406 samples, 0.03%)</title><rect x="61.3" y="325" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="64.32" y="335.5" ></text>
</g>
<g >
<title>clock_nanosleep (314,870 samples, 0.03%)</title><rect x="1187.6" y="597" width="0.3" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="1190.62" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,603,262 samples, 0.13%)</title><rect x="11.5" y="421" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="14.47" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (181,408 samples, 0.01%)</title><rect x="48.3" y="389" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="51.28" y="399.5" ></text>
</g>
<g >
<title>XLogDecodeNextRecord (1,208,203,947 samples, 99.49%)</title><rect x="13.6" y="597" width="1174.0" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="16.61" y="607.5" >XLogDecodeNextRecord</text>
</g>
<g >
<title>[[kernel.kallsyms]] (477,584 samples, 0.04%)</title><rect x="1189.5" y="373" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.54" y="383.5" ></text>
</g>
<g >
<title>open (294,397 samples, 0.02%)</title><rect x="13.0" y="261" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="16.03" y="271.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturn (597,649 samples, 0.05%)</title><rect x="13.0" y="373" width="0.6" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="16.03" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (375,113 samples, 0.03%)</title><rect x="27.8" y="309" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="30.76" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (503,779 samples, 0.04%)</title><rect x="27.6" y="405" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="30.64" y="415.5" ></text>
</g>
<g >
<title>AllocSetCheck (283,333 samples, 0.02%)</title><rect x="1188.8" y="389" width="0.3" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="1191.83" y="399.5" ></text>
</g>
<g >
<title>ExecInterpExpr (639,184 samples, 0.05%)</title><rect x="1187.9" y="293" width="0.6" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text x="1190.93" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (294,397 samples, 0.02%)</title><rect x="13.0" y="133" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.03" y="143.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (482,115 samples, 0.04%)</title><rect x="12.6" y="357" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="15.56" y="367.5" ></text>
</g>
<g >
<title>pg_create_logical_replication_slot (597,649 samples, 0.05%)</title><rect x="13.0" y="341" width="0.6" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="16.03" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (288,385 samples, 0.02%)</title><rect x="1188.5" y="309" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.55" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (395,186 samples, 0.03%)</title><rect x="54.4" y="357" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="57.36" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (303,252 samples, 0.02%)</title><rect x="13.3" y="277" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.32" y="287.5" ></text>
</g>
<g >
<title>ServerLoop (597,649 samples, 0.05%)</title><rect x="13.0" y="597" width="0.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="16.03" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,603,262 samples, 0.13%)</title><rect x="11.5" y="405" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="14.47" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (94,996,287 samples, 7.82%)</title><rect x="1093.2" y="117" width="92.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1096.22" y="127.5" >[[kernel.ka..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (294,397 samples, 0.02%)</title><rect x="13.0" y="197" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.03" y="207.5" ></text>
</g>
<g >
<title>postgres (1,214,371,449 samples, 100.00%)</title><rect x="10.0" y="629" width="1180.0" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="13.00" y="639.5" >postgres</text>
</g>
<g >
<title>[[kernel.kallsyms]] (181,408 samples, 0.01%)</title><rect x="48.3" y="373" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="51.28" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (739,074 samples, 0.06%)</title><rect x="47.6" y="325" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="50.56" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (164,906 samples, 0.01%)</title><rect x="68.5" y="469" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="71.53" y="479.5" ></text>
</g>
<g >
<title>ExecProject (639,184 samples, 0.05%)</title><rect x="1187.9" y="341" width="0.6" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="1190.93" y="351.5" ></text>
</g>
<g >
<title>ReorderBufferCleanupTXN (198,026 samples, 0.02%)</title><rect x="1187.9" y="197" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1190.93" y="207.5" ></text>
</g>
<g >
<title>main (2,134,984 samples, 0.18%)</title><rect x="1187.9" y="565" width="2.1" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="1190.93" y="575.5" ></text>
</g>
<g >
<title>dopr (236,541 samples, 0.02%)</title><rect x="1188.1" y="101" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1191.12" y="111.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (288,385 samples, 0.02%)</title><rect x="1188.5" y="277" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.55" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (195,522,428 samples, 16.10%)</title><rect x="995.5" y="181" width="190.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="998.54" y="191.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (303,252 samples, 0.02%)</title><rect x="13.3" y="245" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.32" y="255.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (181,408 samples, 0.01%)</title><rect x="48.3" y="357" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="51.28" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (667,340,684 samples, 54.95%)</title><rect x="537.4" y="293" width="648.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="540.44" y="303.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (303,252 samples, 0.02%)</title><rect x="13.3" y="261" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.32" y="271.5" ></text>
</g>
<g >
<title>ExecutePlan (927,569 samples, 0.08%)</title><rect x="1187.9" y="389" width="0.9" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="1190.93" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (218,837 samples, 0.02%)</title><rect x="54.1" y="437" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="57.07" y="447.5" ></text>
</g>
<g >
<title>PortalRun (927,569 samples, 0.08%)</title><rect x="1187.9" y="437" width="0.9" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="1190.93" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (477,584 samples, 0.04%)</title><rect x="1189.5" y="213" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.54" y="223.5" ></text>
</g>
<g >
<title>rename (303,252 samples, 0.02%)</title><rect x="13.3" y="293" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="16.32" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (309,696 samples, 0.03%)</title><rect x="1185.5" y="149" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.53" y="159.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (288,385 samples, 0.02%)</title><rect x="1188.5" y="293" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.55" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (438,695 samples, 0.04%)</title><rect x="27.7" y="325" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="30.70" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (294,397 samples, 0.02%)</title><rect x="13.0" y="69" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.03" y="79.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (477,584 samples, 0.04%)</title><rect x="1189.5" y="357" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.54" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (309,696 samples, 0.03%)</title><rect x="1185.5" y="165" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.53" y="175.5" ></text>
</g>
<g >
<title>ExecInterpExpr (597,649 samples, 0.05%)</title><rect x="13.0" y="357" width="0.6" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text x="16.03" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (235,986,852 samples, 19.43%)</title><rect x="956.2" y="229" width="229.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="959.22" y="239.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,603,262 samples, 0.13%)</title><rect x="11.5" y="581" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="14.47" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (218,837 samples, 0.02%)</title><rect x="54.1" y="469" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="57.07" y="479.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturn (639,184 samples, 0.05%)</title><rect x="1187.9" y="309" width="0.6" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="1190.93" y="319.5" ></text>
</g>
<g >
<title>FreeDecodingContext (204,617 samples, 0.02%)</title><rect x="1188.3" y="245" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1191.35" y="255.5" ></text>
</g>
<g >
<title>AllocSetFree (204,617 samples, 0.02%)</title><rect x="1188.3" y="213" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1191.35" y="223.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,112,608,781 samples, 91.62%)</title><rect x="104.8" y="485" width="1081.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="107.77" y="495.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>ExecResult (597,649 samples, 0.05%)</title><rect x="13.0" y="421" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="16.03" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (482,115 samples, 0.04%)</title><rect x="12.6" y="245" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="15.56" y="255.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (481,747 samples, 0.04%)</title><rect x="54.3" y="389" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="57.28" y="399.5" ></text>
</g>
<g >
<title>ExecResult (639,184 samples, 0.05%)</title><rect x="1187.9" y="357" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1190.93" y="367.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (924,082 samples, 0.08%)</title><rect x="1189.1" y="405" width="0.9" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1192.10" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (477,584 samples, 0.04%)</title><rect x="1189.5" y="229" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.54" y="239.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (739,074 samples, 0.06%)</title><rect x="47.6" y="421" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="50.56" y="431.5" ></text>
</g>
<g >
<title>ExecutePlan (597,649 samples, 0.05%)</title><rect x="13.0" y="453" width="0.6" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="16.03" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (481,747 samples, 0.04%)</title><rect x="54.3" y="533" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="57.28" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (294,397 samples, 0.02%)</title><rect x="13.0" y="149" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.03" y="159.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (307,917 samples, 0.03%)</title><rect x="54.0" y="501" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="56.98" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (412,406 samples, 0.03%)</title><rect x="61.3" y="341" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="64.32" y="351.5" ></text>
</g>
<g >
<title>XLogReaderFree (204,617 samples, 0.02%)</title><rect x="1188.3" y="229" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1191.35" y="239.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (288,385 samples, 0.02%)</title><rect x="1188.5" y="229" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.55" y="239.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (477,584 samples, 0.04%)</title><rect x="1189.5" y="149" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.54" y="159.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (482,115 samples, 0.04%)</title><rect x="12.6" y="277" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="15.56" y="287.5" ></text>
</g>
<g >
<title>open64 (294,397 samples, 0.02%)</title><rect x="13.0" y="245" width="0.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="16.03" y="255.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,603,262 samples, 0.13%)</title><rect x="11.5" y="565" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="14.47" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (218,837 samples, 0.02%)</title><rect x="54.1" y="405" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="57.07" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (460,161,788 samples, 37.89%)</title><rect x="738.7" y="245" width="447.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="741.69" y="255.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (164,906 samples, 0.01%)</title><rect x="68.5" y="517" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="71.53" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,130,018,167 samples, 93.05%)</title><rect x="87.9" y="501" width="1098.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="90.85" y="511.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (288,385 samples, 0.02%)</title><rect x="1188.5" y="149" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.55" y="159.5" ></text>
</g>
<g >
<title>pg_usleep (1,165,871,046 samples, 96.01%)</title><rect x="54.7" y="549" width="1132.9" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="57.75" y="559.5" >pg_usleep</text>
</g>
<g >
<title>[[kernel.kallsyms]] (477,584 samples, 0.04%)</title><rect x="1189.5" y="309" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.54" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (395,186 samples, 0.03%)</title><rect x="54.4" y="341" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="57.36" y="351.5" ></text>
</g>
<g >
<title>__nanosleep (314,870 samples, 0.03%)</title><rect x="1187.6" y="613" width="0.3" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text x="1190.62" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (309,696 samples, 0.03%)</title><rect x="1185.5" y="181" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.53" y="191.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (198,026 samples, 0.02%)</title><rect x="1187.9" y="181" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1190.93" y="191.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (309,696 samples, 0.03%)</title><rect x="1185.5" y="213" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.53" y="223.5" ></text>
</g>
<g >
<title>PostgresMain (597,649 samples, 0.05%)</title><rect x="13.0" y="533" width="0.6" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="16.03" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (570,222 samples, 0.05%)</title><rect x="1185.0" y="69" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1187.97" y="79.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (309,696 samples, 0.03%)</title><rect x="1185.5" y="197" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.53" y="207.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (218,837 samples, 0.02%)</title><rect x="54.1" y="453" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="57.07" y="463.5" ></text>
</g>
<g >
<title>PostgresMain (2,134,984 samples, 0.18%)</title><rect x="1187.9" y="469" width="2.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1190.93" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (802,011 samples, 0.07%)</title><rect x="27.3" y="501" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="30.35" y="511.5" ></text>
</g>
<g >
<title>[unknown] (1,208,801,596 samples, 99.54%)</title><rect x="13.0" y="613" width="1174.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="16.03" y="623.5" >[unknown]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (477,584 samples, 0.04%)</title><rect x="1189.5" y="133" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.54" y="143.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (737,935 samples, 0.06%)</title><rect x="27.4" y="437" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="30.41" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (307,917 samples, 0.03%)</title><rect x="54.0" y="485" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="56.98" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (802,011 samples, 0.07%)</title><rect x="27.3" y="517" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="30.35" y="527.5" ></text>
</g>
<g >
<title>exec_simple_query (1,210,902 samples, 0.10%)</title><rect x="1187.9" y="453" width="1.2" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="1190.93" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (164,906 samples, 0.01%)</title><rect x="68.5" y="325" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="71.53" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (309,696 samples, 0.03%)</title><rect x="1185.5" y="117" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.53" y="127.5" ></text>
</g>
<g >
<title>ExecProcNode (597,649 samples, 0.05%)</title><rect x="13.0" y="437" width="0.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="16.03" y="447.5" ></text>
</g>
<g >
<title>read_local_xlog_page_guts (1,208,203,947 samples, 99.49%)</title><rect x="13.6" y="565" width="1174.0" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="16.61" y="575.5" >read_local_xlog_page_guts</text>
</g>
<g >
<title>SaveSlotToPath (597,649 samples, 0.05%)</title><rect x="13.0" y="309" width="0.6" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="16.03" y="319.5" ></text>
</g>
<g >
<title>appendStringInfoVA (236,541 samples, 0.02%)</title><rect x="1188.1" y="149" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="1191.12" y="159.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (623,537,905 samples, 51.35%)</title><rect x="580.0" y="277" width="605.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="583.00" y="287.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (482,115 samples, 0.04%)</title><rect x="12.6" y="197" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="15.56" y="207.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,104,216,855 samples, 90.93%)</title><rect x="112.9" y="469" width="1073.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="115.93" y="479.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>OpenTransientFilePerm (294,397 samples, 0.02%)</title><rect x="13.0" y="293" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="16.03" y="303.5" ></text>
</g>
<g >
<title>[libicui18n.so.74.2] (477,584 samples, 0.04%)</title><rect x="1189.5" y="389" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1192.54" y="399.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (927,569 samples, 0.08%)</title><rect x="1187.9" y="405" width="0.9" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="1190.93" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (481,747 samples, 0.04%)</title><rect x="54.3" y="453" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="57.28" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,703,448 samples, 0.14%)</title><rect x="1183.9" y="101" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.87" y="111.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (787,779 samples, 0.06%)</title><rect x="47.5" y="469" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="50.51" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (294,397 samples, 0.02%)</title><rect x="13.0" y="101" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.03" y="111.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (294,397 samples, 0.02%)</title><rect x="13.0" y="165" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.03" y="175.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (570,222 samples, 0.05%)</title><rect x="1185.0" y="53" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1187.97" y="63.5" ></text>
</g>
<g >
<title>LogicalDecodingProcessRecord (434,567 samples, 0.04%)</title><rect x="1187.9" y="229" width="0.4" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1190.93" y="239.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (787,779 samples, 0.06%)</title><rect x="47.5" y="533" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="50.51" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (482,115 samples, 0.04%)</title><rect x="12.6" y="373" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="15.56" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,030,445,746 samples, 84.85%)</title><rect x="184.6" y="421" width="1001.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="187.61" y="431.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (288,385 samples, 0.02%)</title><rect x="1188.5" y="133" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.55" y="143.5" ></text>
</g>
<g >
<title>[libc.so.6] (2,134,984 samples, 0.18%)</title><rect x="1187.9" y="581" width="2.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1190.93" y="591.5" ></text>
</g>
<g >
<title>pg_create_logical_replication_slot (639,184 samples, 0.05%)</title><rect x="1187.9" y="277" width="0.6" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1190.93" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (787,779 samples, 0.06%)</title><rect x="47.5" y="453" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="50.51" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (477,584 samples, 0.04%)</title><rect x="1189.5" y="261" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.54" y="271.5" ></text>
</g>
<g >
<title>ExecProject (597,649 samples, 0.05%)</title><rect x="13.0" y="405" width="0.6" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="16.03" y="415.5" ></text>
</g>
<g >
<title>proc_exit (924,082 samples, 0.08%)</title><rect x="1189.1" y="453" width="0.9" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1192.10" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (482,115 samples, 0.04%)</title><rect x="12.6" y="69" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="15.56" y="79.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (164,906 samples, 0.01%)</title><rect x="68.5" y="501" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="71.53" y="511.5" ></text>
</g>
<g >
<title>RecoveryInProgress (20,737,381 samples, 1.71%)</title><rect x="28.1" y="549" width="20.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="31.13" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (481,747 samples, 0.04%)</title><rect x="54.3" y="501" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="57.28" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (307,917 samples, 0.03%)</title><rect x="54.0" y="533" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="56.98" y="543.5" ></text>
</g>
<g >
<title>all (1,214,371,449 samples, 100%)</title><rect x="10.0" y="645" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="655.5" ></text>
</g>
<g >
<title>PortalRun (597,649 samples, 0.05%)</title><rect x="13.0" y="501" width="0.6" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="16.03" y="511.5" ></text>
</g>
<g >
<title>RecoveryInProgress (5,158,261 samples, 0.42%)</title><rect x="42.5" y="533" width="5.0" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="45.50" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (482,115 samples, 0.04%)</title><rect x="12.6" y="101" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="15.56" y="111.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,603,262 samples, 0.13%)</title><rect x="11.5" y="549" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="14.47" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (477,584 samples, 0.04%)</title><rect x="1189.5" y="341" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.54" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,603,262 samples, 0.13%)</title><rect x="11.5" y="437" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="14.47" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (481,747 samples, 0.04%)</title><rect x="54.3" y="421" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="57.28" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (481,747 samples, 0.04%)</title><rect x="54.3" y="549" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="57.28" y="559.5" ></text>
</g>
<g >
<title>ReorderBufferAbortOld (198,026 samples, 0.02%)</title><rect x="1187.9" y="213" width="0.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="1190.93" y="223.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (482,115 samples, 0.04%)</title><rect x="12.6" y="213" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="15.56" y="223.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (477,584 samples, 0.04%)</title><rect x="1189.5" y="197" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.54" y="207.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (164,906 samples, 0.01%)</title><rect x="68.5" y="373" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="71.53" y="383.5" ></text>
</g>
<g >
<title>exit (924,082 samples, 0.08%)</title><rect x="1189.1" y="437" width="0.9" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="1192.10" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,000,034,450 samples, 82.35%)</title><rect x="214.2" y="389" width="971.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="217.16" y="399.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (482,115 samples, 0.04%)</title><rect x="12.6" y="229" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="15.56" y="239.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (482,115 samples, 0.04%)</title><rect x="12.6" y="133" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="15.56" y="143.5" ></text>
</g>
<g >
<title>record_out (288,385 samples, 0.02%)</title><rect x="1188.5" y="325" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1191.55" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (164,906 samples, 0.01%)</title><rect x="68.5" y="357" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="71.53" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (294,397 samples, 0.02%)</title><rect x="13.0" y="53" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.03" y="63.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,603,262 samples, 0.13%)</title><rect x="11.5" y="597" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="14.47" y="607.5" ></text>
</g>
<g >
<title>BackendStartup (597,649 samples, 0.05%)</title><rect x="13.0" y="581" width="0.6" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="16.03" y="591.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturnSwitchContext (597,649 samples, 0.05%)</title><rect x="13.0" y="389" width="0.6" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="16.03" y="399.5" ></text>
</g>
<g >
<title>ReplicationSlotSave (597,649 samples, 0.05%)</title><rect x="13.0" y="325" width="0.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="16.03" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (294,397 samples, 0.02%)</title><rect x="13.0" y="117" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.03" y="127.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (164,906 samples, 0.01%)</title><rect x="68.5" y="453" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="71.53" y="463.5" ></text>
</g>
<g >
<title>SnapBuildFindSnapshot (236,541 samples, 0.02%)</title><rect x="1188.1" y="181" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1191.12" y="191.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (164,899,794 samples, 13.58%)</title><rect x="1025.3" y="133" width="160.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1028.29" y="143.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (438,695 samples, 0.04%)</title><rect x="27.7" y="357" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="30.70" y="367.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (597,649 samples, 0.05%)</title><rect x="13.0" y="469" width="0.6" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="16.03" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (218,837 samples, 0.02%)</title><rect x="54.1" y="421" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="57.07" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (973,457,989 samples, 80.16%)</title><rect x="240.0" y="357" width="945.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="242.98" y="367.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>BasicOpenFilePerm (294,397 samples, 0.02%)</title><rect x="13.0" y="277" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="16.03" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (412,406 samples, 0.03%)</title><rect x="61.3" y="485" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="64.32" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (787,779 samples, 0.06%)</title><rect x="47.5" y="517" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="50.51" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (477,584 samples, 0.04%)</title><rect x="1189.5" y="325" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.54" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (802,011 samples, 0.07%)</title><rect x="27.3" y="469" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="30.35" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,603,262 samples, 0.13%)</title><rect x="11.5" y="453" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="14.47" y="463.5" ></text>
</g>
<g >
<title>exec_simple_query (597,649 samples, 0.05%)</title><rect x="13.0" y="517" width="0.6" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="16.03" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (308,429 samples, 0.03%)</title><rect x="48.0" y="309" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="50.98" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (412,406 samples, 0.03%)</title><rect x="61.3" y="389" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="64.32" y="399.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (288,385 samples, 0.02%)</title><rect x="1188.5" y="341" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1191.55" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (288,385 samples, 0.02%)</title><rect x="1188.5" y="197" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.55" y="207.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (477,584 samples, 0.04%)</title><rect x="1189.5" y="277" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.54" y="287.5" ></text>
</g>
<g >
<title>PortalRunSelect (927,569 samples, 0.08%)</title><rect x="1187.9" y="421" width="0.9" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="1190.93" y="431.5" ></text>
</g>
<g >
<title>wipe_mem (204,617 samples, 0.02%)</title><rect x="1188.3" y="197" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1191.35" y="207.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (482,115 samples, 0.04%)</title><rect x="12.6" y="341" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="15.56" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (412,406 samples, 0.03%)</title><rect x="61.3" y="469" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="64.32" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (412,406 samples, 0.03%)</title><rect x="61.3" y="501" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="64.32" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (303,252 samples, 0.02%)</title><rect x="13.3" y="213" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.32" y="223.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (482,115 samples, 0.04%)</title><rect x="12.6" y="325" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="15.56" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (610,415,644 samples, 50.27%)</title><rect x="592.8" y="261" width="593.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="595.75" y="271.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (288,385 samples, 0.02%)</title><rect x="1188.5" y="165" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.55" y="175.5" ></text>
</g>
<g >
<title>OutputFunctionCall (288,385 samples, 0.02%)</title><rect x="1188.5" y="357" width="0.3" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="1191.55" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (412,406 samples, 0.03%)</title><rect x="61.3" y="405" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="64.32" y="415.5" ></text>
</g>
<g >
<title>pg_vsnprintf (236,541 samples, 0.02%)</title><rect x="1188.1" y="117" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="1191.12" y="127.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (215,565,281 samples, 17.75%)</title><rect x="976.1" y="213" width="209.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="979.06" y="223.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>ReadPageInternal (1,208,203,947 samples, 99.49%)</title><rect x="13.6" y="581" width="1174.0" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="16.61" y="591.5" >ReadPageInternal</text>
</g>
<g >
<title>[[kernel.kallsyms]] (181,408 samples, 0.01%)</title><rect x="48.3" y="485" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="51.28" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (164,906 samples, 0.01%)</title><rect x="68.5" y="405" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="71.53" y="415.5" ></text>
</g>
<g >
<title>BackendStartup (2,134,984 samples, 0.18%)</title><rect x="1187.9" y="517" width="2.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="1190.93" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (914,384,634 samples, 75.30%)</title><rect x="297.4" y="341" width="888.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="300.38" y="351.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (739,074 samples, 0.06%)</title><rect x="47.6" y="341" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="50.56" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (181,408 samples, 0.01%)</title><rect x="48.3" y="405" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="51.28" y="415.5" ></text>
</g>
<g >
<title>__nanosleep (1,156,912,483 samples, 95.27%)</title><rect x="61.7" y="533" width="1124.2" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text x="64.72" y="543.5" >__nanosleep</text>
</g>
<g >
<title>[[kernel.kallsyms]] (482,115 samples, 0.04%)</title><rect x="12.6" y="181" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="15.56" y="191.5" ></text>
</g>
<g >
<title>WALRead (181,408 samples, 0.01%)</title><rect x="48.3" y="549" width="0.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="51.28" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (482,115 samples, 0.04%)</title><rect x="12.6" y="149" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="15.56" y="159.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,603,262 samples, 0.13%)</title><rect x="11.5" y="501" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="14.47" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (412,406 samples, 0.03%)</title><rect x="61.3" y="421" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="64.32" y="431.5" ></text>
</g>
<g >
<title>XLogReadDetermineTimeline (5,993,258 samples, 0.49%)</title><rect x="48.5" y="549" width="5.8" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="51.46" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (164,906 samples, 0.01%)</title><rect x="68.5" y="437" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="71.53" y="447.5" ></text>
</g>
<g >
<title>standby_decode (236,541 samples, 0.02%)</title><rect x="1188.1" y="213" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1191.12" y="223.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (482,115 samples, 0.04%)</title><rect x="12.6" y="85" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="15.56" y="95.5" ></text>
</g>
<g >
<title>BackendMain (597,649 samples, 0.05%)</title><rect x="13.0" y="549" width="0.6" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="16.03" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (482,115 samples, 0.04%)</title><rect x="12.6" y="261" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="15.56" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (503,779 samples, 0.04%)</title><rect x="27.6" y="421" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="30.64" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (412,406 samples, 0.03%)</title><rect x="61.3" y="453" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="64.32" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (482,115 samples, 0.04%)</title><rect x="12.6" y="309" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="15.56" y="319.5" ></text>
</g>
<g >
<title>[[virtio_gpu]] (309,696 samples, 0.03%)</title><rect x="1185.5" y="229" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1188.53" y="239.5" ></text>
</g>
<g >
<title>postmaster_child_launch (597,649 samples, 0.05%)</title><rect x="13.0" y="565" width="0.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="16.03" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (993,184,684 samples, 81.79%)</title><rect x="220.8" y="373" width="965.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="223.81" y="383.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>hash_initial_lookup (198,026 samples, 0.02%)</title><rect x="1187.9" y="165" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1190.93" y="175.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,005,594,577 samples, 82.81%)</title><rect x="208.8" y="405" width="977.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="211.76" y="415.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (309,696 samples, 0.03%)</title><rect x="1185.5" y="133" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.53" y="143.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (174,615,900 samples, 14.38%)</title><rect x="1015.9" y="165" width="169.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1018.85" y="175.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (787,779 samples, 0.06%)</title><rect x="47.5" y="437" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="50.51" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (939,399 samples, 0.08%)</title><rect x="1184.6" y="85" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1187.61" y="95.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (482,115 samples, 0.04%)</title><rect x="12.6" y="117" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="15.56" y="127.5" ></text>
</g>
<g >
<title>DecodingContextFindStartpoint (434,567 samples, 0.04%)</title><rect x="1187.9" y="245" width="0.4" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="1190.93" y="255.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,050,029,968 samples, 86.47%)</title><rect x="165.6" y="437" width="1020.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="168.58" y="447.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>pread (181,408 samples, 0.01%)</title><rect x="48.3" y="533" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="51.28" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (438,695 samples, 0.04%)</title><rect x="27.7" y="341" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="30.70" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (503,779 samples, 0.04%)</title><rect x="27.6" y="389" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="30.64" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (288,385 samples, 0.02%)</title><rect x="1188.5" y="245" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.55" y="255.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,603,262 samples, 0.13%)</title><rect x="11.5" y="485" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="14.47" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (164,906 samples, 0.01%)</title><rect x="68.5" y="485" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="71.53" y="495.5" ></text>
</g>
<g >
<title>errmsg (236,541 samples, 0.02%)</title><rect x="1188.1" y="165" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1191.12" y="175.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (181,408 samples, 0.01%)</title><rect x="48.3" y="453" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="51.28" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (731,399,337 samples, 60.23%)</title><rect x="475.2" y="309" width="710.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="478.19" y="319.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (164,906 samples, 0.01%)</title><rect x="68.5" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="71.53" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (412,406 samples, 0.03%)</title><rect x="61.3" y="357" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="64.32" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (482,115 samples, 0.04%)</title><rect x="12.6" y="293" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="15.56" y="303.5" ></text>
</g>
<g >
<title>PostmasterMain (2,134,984 samples, 0.18%)</title><rect x="1187.9" y="549" width="2.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1190.93" y="559.5" ></text>
</g>
<g >
<title>printtup (288,385 samples, 0.02%)</title><rect x="1188.5" y="373" width="0.3" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="1191.55" y="383.5" ></text>
</g>
<g >
<title>SnapBuildProcessRunningXacts (236,541 samples, 0.02%)</title><rect x="1188.1" y="197" width="0.2" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="1191.12" y="207.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (787,779 samples, 0.06%)</title><rect x="47.5" y="501" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="50.51" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (412,406 samples, 0.03%)</title><rect x="61.3" y="533" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="64.32" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (303,252 samples, 0.02%)</title><rect x="13.3" y="197" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.32" y="207.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (739,074 samples, 0.06%)</title><rect x="47.6" y="357" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="50.56" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (802,011 samples, 0.07%)</title><rect x="27.3" y="533" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="30.35" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (412,406 samples, 0.03%)</title><rect x="61.3" y="437" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="64.32" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (481,747 samples, 0.04%)</title><rect x="54.3" y="485" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="57.28" y="495.5" ></text>
</g>
</g>
</svg>