v7+readxlogpage_cv.svg
image/svg+xml
Filename: v7+readxlogpage_cv.svg
Type: image/svg+xml
Part: 2
<?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="838" onload="init(evt)" viewBox="0 0 1200 838" 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="838.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="821" > </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="821" > </text>
<g id="frames">
<g >
<title>do_syscall_64 (443,589 samples, 7.92%)</title><rect x="294.3" y="453" width="93.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="297.29" y="463.5" >do_syscall_64</text>
</g>
<g >
<title>free_unref_page_commit (556,660 samples, 9.94%)</title><rect x="1072.7" y="453" width="117.3" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="1075.69" y="463.5" >free_unref_pag..</text>
</g>
<g >
<title>open (287,719 samples, 5.14%)</title><rect x="10.0" y="405" width="60.6" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="13.00" y="415.5" >open</text>
</g>
<g >
<title>do_sys_openat2 (287,719 samples, 5.14%)</title><rect x="10.0" y="309" width="60.6" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text x="13.00" y="319.5" >do_sys..</text>
</g>
<g >
<title>amd_pmu_disable_all (16,841 samples, 0.30%)</title><rect x="268.0" y="277" width="3.6" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="271.02" y="287.5" ></text>
</g>
<g >
<title>AllocSetFree (202,589 samples, 3.62%)</title><rect x="481.7" y="357" width="42.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="484.68" y="367.5" >Allo..</text>
</g>
<g >
<title>entry_SYSCALL_64 (367,584 samples, 6.56%)</title><rect x="216.8" y="597" width="77.5" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="219.83" y="607.5" >entry_SY..</text>
</g>
<g >
<title>entry_SYSCALL_64 (443,589 samples, 7.92%)</title><rect x="294.3" y="469" width="93.5" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="297.29" y="479.5" >entry_SYSCA..</text>
</g>
<g >
<title>ReorderBufferGetOldestXmin (34,244 samples, 0.61%)</title><rect x="387.8" y="325" width="7.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="390.78" y="335.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (71,194 samples, 1.27%)</title><rect x="231.1" y="389" width="15.0" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="234.13" y="399.5" ></text>
</g>
<g >
<title>ExecInterpExpr (885,465 samples, 15.81%)</title><rect x="10.0" y="501" width="186.6" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text x="13.00" y="511.5" >ExecInterpExpr</text>
</g>
<g >
<title>ReorderBufferFree (107,857 samples, 1.93%)</title><rect x="459.0" y="373" width="22.7" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="461.95" y="383.5" >R..</text>
</g>
<g >
<title>ExecEvalExprNoReturn (885,465 samples, 15.81%)</title><rect x="10.0" y="517" width="186.6" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="13.00" y="527.5" >ExecEvalExprNoReturn</text>
</g>
<g >
<title>ep_send_events (443,589 samples, 7.92%)</title><rect x="294.3" y="373" width="93.5" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="297.29" y="383.5" >ep_send_eve..</text>
</g>
<g >
<title>__radix_tree_lookup (95,944 samples, 1.71%)</title><rect x="196.6" y="405" width="20.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="199.61" y="415.5" ></text>
</g>
<g >
<title>BackendStartup (885,465 samples, 15.81%)</title><rect x="10.0" y="725" width="186.6" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="13.00" y="735.5" >BackendStartup</text>
</g>
<g >
<title>zap_pte_range (993,920 samples, 17.75%)</title><rect x="980.5" y="533" width="209.5" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="983.54" y="543.5" >zap_pte_range</text>
</g>
<g >
<title>open64 (287,719 samples, 5.14%)</title><rect x="10.0" y="389" width="60.6" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="13.00" y="399.5" >open64</text>
</g>
<g >
<title>update_curr (107,857 samples, 1.93%)</title><rect x="271.6" y="389" width="22.7" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="274.56" y="399.5" >u..</text>
</g>
<g >
<title>pg_fsync_no_writethrough (299,832 samples, 5.35%)</title><rect x="70.6" y="389" width="63.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="73.64" y="399.5" >pg_fsy..</text>
</g>
<g >
<title>handle_pte_fault (202,589 samples, 3.62%)</title><rect x="481.7" y="213" width="42.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="484.68" y="223.5" >hand..</text>
</g>
<g >
<title>pq_getbyte (443,589 samples, 7.92%)</title><rect x="294.3" y="565" width="93.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="297.29" y="575.5" >pq_getbyte</text>
</g>
<g >
<title>postmaster_child_launch (1,661,059 samples, 29.67%)</title><rect x="294.3" y="645" width="350.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="297.29" y="655.5" >postmaster_child_launch</text>
</g>
<g >
<title>update_process_times (71,194 samples, 1.27%)</title><rect x="231.1" y="357" width="15.0" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="234.13" y="367.5" ></text>
</g>
<g >
<title>do_user_addr_fault (202,589 samples, 3.62%)</title><rect x="481.7" y="261" width="42.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="484.68" y="271.5" >do_u..</text>
</g>
<g >
<title>exit_mm (2,589,109 samples, 46.24%)</title><rect x="644.4" y="661" width="545.6" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="647.36" y="671.5" >exit_mm</text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,589,109 samples, 46.24%)</title><rect x="644.4" y="709" width="545.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="647.36" y="719.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>__filemap_fdatawait_range (297,914 samples, 5.32%)</title><rect x="133.8" y="261" width="62.8" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="136.82" y="271.5" >__file..</text>
</g>
<g >
<title>PostmasterMain (1,661,059 samples, 29.67%)</title><rect x="294.3" y="693" width="350.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="297.29" y="703.5" >PostmasterMain</text>
</g>
<g >
<title>SnapBuildFindSnapshot (107,857 samples, 1.93%)</title><rect x="395.0" y="325" width="22.7" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="398.00" y="335.5" >S..</text>
</g>
<g >
<title>entry_SYSCALL_64 (299,832 samples, 5.35%)</title><rect x="70.6" y="357" width="63.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="73.64" y="367.5" >entry_..</text>
</g>
<g >
<title>fsync_fname_ext (299,832 samples, 5.35%)</title><rect x="70.6" y="437" width="63.2" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="73.64" y="447.5" >fsync_..</text>
</g>
<g >
<title>vfs_fsync_range (297,914 samples, 5.32%)</title><rect x="133.8" y="309" width="62.8" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="136.82" y="319.5" >vfs_fs..</text>
</g>
<g >
<title>secure_read (443,589 samples, 7.92%)</title><rect x="294.3" y="533" width="93.5" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="297.29" y="543.5" >secure_read</text>
</g>
<g >
<title>PortalRun (885,465 samples, 15.81%)</title><rect x="10.0" y="645" width="186.6" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="13.00" y="655.5" >PortalRun</text>
</g>
<g >
<title>XLogDecodeNextRecord (463,528 samples, 8.28%)</title><rect x="196.6" y="741" width="97.7" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="199.61" y="751.5" >XLogDecodeN..</text>
</g>
<g >
<title>ReorderBufferCleanupSerializedTXNs (195,612 samples, 3.49%)</title><rect x="417.7" y="373" width="41.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="420.73" y="383.5" >Reo..</text>
</g>
<g >
<title>copy_fpstate_to_sigframe (139,056 samples, 2.48%)</title><rect x="216.8" y="485" width="29.3" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="219.83" y="495.5" >co..</text>
</g>
<g >
<title>x86_pmu_disable (71,194 samples, 1.27%)</title><rect x="231.1" y="293" width="15.0" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="234.13" y="303.5" ></text>
</g>
<g >
<title>x64_sys_call (299,832 samples, 5.35%)</title><rect x="70.6" y="325" width="63.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="73.64" y="335.5" >x64_sy..</text>
</g>
<g >
<title>dequeue_task_fair (107,857 samples, 1.93%)</title><rect x="271.6" y="421" width="22.7" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="274.56" y="431.5" >d..</text>
</g>
<g >
<title>unmap_vmas (2,011,568 samples, 35.93%)</title><rect x="766.1" y="597" width="423.9" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="769.07" y="607.5" >unmap_vmas</text>
</g>
<g >
<title>open_last_lookups (287,719 samples, 5.14%)</title><rect x="10.0" y="261" width="60.6" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="13.00" y="271.5" >open_l..</text>
</g>
<g >
<title>folio_wait_bit (297,914 samples, 5.32%)</title><rect x="133.8" y="229" width="62.8" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="136.82" y="239.5" >folio_..</text>
</g>
<g >
<title>errmsg (107,857 samples, 1.93%)</title><rect x="395.0" y="309" width="22.7" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="398.00" y="319.5" >e..</text>
</g>
<g >
<title>x64_setup_rt_frame (139,056 samples, 2.48%)</title><rect x="216.8" y="517" width="29.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="219.83" y="527.5" >x6..</text>
</g>
<g >
<title>ext4_sync_file (297,914 samples, 5.32%)</title><rect x="133.8" y="293" width="62.8" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="136.82" y="303.5" >ext4_s..</text>
</g>
<g >
<title>x64_sys_call (287,719 samples, 5.14%)</title><rect x="10.0" y="341" width="60.6" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="13.00" y="351.5" >x64_sy..</text>
</g>
<g >
<title>tlb_batch_pages_flush (556,660 samples, 9.94%)</title><rect x="1072.7" y="501" width="117.3" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="1075.69" y="511.5" >tlb_batch_page..</text>
</g>
<g >
<title>ReadPageInternal (463,528 samples, 8.28%)</title><rect x="196.6" y="725" width="97.7" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="199.61" y="735.5" >ReadPageInt..</text>
</g>
<g >
<title>XLogReaderFree (202,589 samples, 3.62%)</title><rect x="481.7" y="373" width="42.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="484.68" y="383.5" >XLog..</text>
</g>
<g >
<title>standby_decode (142,101 samples, 2.54%)</title><rect x="387.8" y="357" width="29.9" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="390.78" y="367.5" >st..</text>
</g>
<g >
<title>pg_fsync_no_writethrough (299,832 samples, 5.35%)</title><rect x="70.6" y="405" width="63.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="73.64" y="415.5" >pg_fsy..</text>
</g>
<g >
<title>[libc.so.6] (95,944 samples, 1.71%)</title><rect x="196.6" y="597" width="20.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="199.61" y="607.5" ></text>
</g>
<g >
<title>do_anonymous_page (202,589 samples, 3.62%)</title><rect x="481.7" y="197" width="42.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="484.68" y="207.5" >do_a..</text>
</g>
<g >
<title>memset (202,589 samples, 3.62%)</title><rect x="481.7" y="325" width="42.7" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="484.68" y="335.5" >memset</text>
</g>
<g >
<title>folio_batch_move_lru (202,589 samples, 3.62%)</title><rect x="481.7" y="149" width="42.7" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="484.68" y="159.5" >foli..</text>
</g>
<g >
<title>tlb_flush_mmu (556,660 samples, 9.94%)</title><rect x="1072.7" y="517" width="117.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="1075.69" y="527.5" >tlb_flush_mmu</text>
</g>
<g >
<title>folio_wait_bit_common (297,914 samples, 5.32%)</title><rect x="133.8" y="213" width="62.8" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="136.82" y="223.5" >folio_..</text>
</g>
<g >
<title>__put_anon_vma (577,541 samples, 10.31%)</title><rect x="644.4" y="565" width="121.7" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="647.36" y="575.5" >__put_anon_vma</text>
</g>
<g >
<title>__perf_event_task_sched_out (297,914 samples, 5.32%)</title><rect x="133.8" y="133" width="62.8" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="136.82" y="143.5" >__perf..</text>
</g>
<g >
<title>ep_send_events (16,843 samples, 0.30%)</title><rect x="268.0" y="501" width="3.6" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="271.01" y="511.5" ></text>
</g>
<g >
<title>unlink_anon_vmas (577,541 samples, 10.31%)</title><rect x="644.4" y="581" width="121.7" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="647.36" y="591.5" >unlink_anon_vmas</text>
</g>
<g >
<title>do_syscall_64 (95,944 samples, 1.71%)</title><rect x="196.6" y="517" width="20.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="199.61" y="527.5" ></text>
</g>
<g >
<title>idr_find (95,944 samples, 1.71%)</title><rect x="196.6" y="437" width="20.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="199.61" y="447.5" ></text>
</g>
<g >
<title>MemoryContextDelete (107,857 samples, 1.93%)</title><rect x="459.0" y="357" width="22.7" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="461.95" y="367.5" >M..</text>
</g>
<g >
<title>ReplicationSlotSave (885,465 samples, 15.81%)</title><rect x="10.0" y="469" width="186.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="13.00" y="479.5" >ReplicationSlotSave</text>
</g>
<g >
<title>tick_sched_handle (16,841 samples, 0.30%)</title><rect x="268.0" y="373" width="3.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="271.02" y="383.5" ></text>
</g>
<g >
<title>io_schedule (297,914 samples, 5.32%)</title><rect x="133.8" y="197" width="62.8" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="136.82" y="207.5" >io_sch..</text>
</g>
<g >
<title>prepare_task_switch (297,914 samples, 5.32%)</title><rect x="133.8" y="149" width="62.8" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="136.82" y="159.5" >prepar..</text>
</g>
<g >
<title>do_filp_open (287,719 samples, 5.14%)</title><rect x="10.0" y="293" width="60.6" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="13.00" y="303.5" >do_fil..</text>
</g>
<g >
<title>ExecProject (648,159 samples, 11.58%)</title><rect x="387.8" y="485" width="136.6" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="390.78" y="495.5" >ExecProject</text>
</g>
<g >
<title>ep_poll (124,700 samples, 2.23%)</title><rect x="268.0" y="517" width="26.3" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" />
<text x="271.01" y="527.5" >e..</text>
</g>
<g >
<title>SnapBuildProcessRunningXacts (142,101 samples, 2.54%)</title><rect x="387.8" y="341" width="29.9" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="390.78" y="351.5" >Sn..</text>
</g>
<g >
<title>ExecEvalExprNoReturn (648,159 samples, 11.58%)</title><rect x="387.8" y="453" width="136.6" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="390.78" y="463.5" >ExecEvalExprNoRet..</text>
</g>
<g >
<title>__x64_sys_fsync (297,914 samples, 5.32%)</title><rect x="133.8" y="325" width="62.8" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="136.82" y="335.5" >__x64_..</text>
</g>
<g >
<title>ConditionVariableTimedSleep (463,528 samples, 8.28%)</title><rect x="196.6" y="677" width="97.7" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="199.61" y="687.5" >ConditionVa..</text>
</g>
<g >
<title>fsync (297,914 samples, 5.32%)</title><rect x="133.8" y="389" width="62.8" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="136.82" y="399.5" >fsync</text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (107,857 samples, 1.93%)</title><rect x="271.6" y="485" width="22.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="274.56" y="495.5" >s..</text>
</g>
<g >
<title>folio_add_lru (202,589 samples, 3.62%)</title><rect x="481.7" y="165" width="42.7" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="484.68" y="175.5" >foli..</text>
</g>
<g >
<title>ep_item_poll.isra.0 (443,589 samples, 7.92%)</title><rect x="294.3" y="357" width="93.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="297.29" y="367.5" >ep_item_pol..</text>
</g>
<g >
<title>kill_something_info (95,944 samples, 1.71%)</title><rect x="196.6" y="469" width="20.2" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="199.61" y="479.5" ></text>
</g>
<g >
<title>zap_pmd_range.isra.0 (1,459,515 samples, 26.07%)</title><rect x="882.4" y="549" width="307.6" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="885.41" y="559.5" >zap_pmd_range.isra.0</text>
</g>
<g >
<title>dequeue_entity (107,857 samples, 1.93%)</title><rect x="271.6" y="405" width="22.7" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="274.56" y="415.5" >d..</text>
</g>
<g >
<title>pg_fsync_no_writethrough (297,914 samples, 5.32%)</title><rect x="133.8" y="405" width="62.8" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="136.82" y="415.5" >pg_fsy..</text>
</g>
<g >
<title>scheduler_tick (71,194 samples, 1.27%)</title><rect x="231.1" y="341" width="15.0" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="234.13" y="351.5" ></text>
</g>
<g >
<title>vfs_fsync_range (299,832 samples, 5.35%)</title><rect x="70.6" y="293" width="63.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="73.64" y="303.5" >vfs_fs..</text>
</g>
<g >
<title>ext4_group_desc_csum_set (287,719 samples, 5.14%)</title><rect x="10.0" y="197" width="60.6" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="13.00" y="207.5" >ext4_g..</text>
</g>
<g >
<title>ext4_create (287,719 samples, 5.14%)</title><rect x="10.0" y="229" width="60.6" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="13.00" y="239.5" >ext4_c..</text>
</g>
<g >
<title>update_process_times (16,841 samples, 0.30%)</title><rect x="268.0" y="357" width="3.6" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="271.02" y="367.5" ></text>
</g>
<g >
<title>file_write_and_wait_range (297,914 samples, 5.32%)</title><rect x="133.8" y="277" width="62.8" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" />
<text x="136.82" y="287.5" >file_w..</text>
</g>
<g >
<title>ExecResult (648,159 samples, 11.58%)</title><rect x="387.8" y="501" width="136.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="390.78" y="511.5" >ExecResult</text>
</g>
<g >
<title>do_syscall_64 (299,832 samples, 5.35%)</title><rect x="70.6" y="341" width="63.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="73.64" y="351.5" >do_sys..</text>
</g>
<g >
<title>BasicOpenFilePerm (287,719 samples, 5.14%)</title><rect x="10.0" y="421" width="60.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.00" y="431.5" >BasicO..</text>
</g>
<g >
<title>__schedule (297,914 samples, 5.32%)</title><rect x="133.8" y="165" width="62.8" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="136.82" y="175.5" >__sche..</text>
</g>
<g >
<title>scheduler_tick (16,841 samples, 0.30%)</title><rect x="268.0" y="341" width="3.6" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="271.02" y="351.5" ></text>
</g>
<g >
<title>x86_pmu_disable (297,914 samples, 5.32%)</title><rect x="133.8" y="85" width="62.8" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="136.82" y="95.5" >x86_pm..</text>
</g>
<g >
<title>WaitEventSetWaitBlock (463,528 samples, 8.28%)</title><rect x="196.6" y="629" width="97.7" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="199.61" y="639.5" >WaitEventSe..</text>
</g>
<g >
<title>ExecResult (885,465 samples, 15.81%)</title><rect x="10.0" y="565" width="186.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="13.00" y="575.5" >ExecResult</text>
</g>
<g >
<title>PortalRunSelect (885,465 samples, 15.81%)</title><rect x="10.0" y="629" width="186.6" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="13.00" y="639.5" >PortalRunSelect</text>
</g>
<g >
<title>folio_remove_rmap_ptes (465,595 samples, 8.32%)</title><rect x="882.4" y="533" width="98.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="885.41" y="543.5" >folio_remov..</text>
</g>
<g >
<title>unmap_page_range (1,459,515 samples, 26.07%)</title><rect x="882.4" y="565" width="307.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="885.41" y="575.5" >unmap_page_range</text>
</g>
<g >
<title>BackendMain (885,465 samples, 15.81%)</title><rect x="10.0" y="693" width="186.6" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="13.00" y="703.5" >BackendMain</text>
</g>
<g >
<title>exec_simple_query (1,217,470 samples, 21.74%)</title><rect x="387.8" y="597" width="256.6" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="390.78" y="607.5" >exec_simple_query</text>
</g>
<g >
<title>asm_exc_page_fault (202,589 samples, 3.62%)</title><rect x="481.7" y="293" width="42.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="484.68" y="303.5" >asm_..</text>
</g>
<g >
<title>handle_sig_alarm (95,944 samples, 1.71%)</title><rect x="196.6" y="565" width="20.2" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text x="199.61" y="575.5" ></text>
</g>
<g >
<title>ext4_fc_commit (299,832 samples, 5.35%)</title><rect x="70.6" y="261" width="63.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="73.64" y="271.5" >ext4_f..</text>
</g>
<g >
<title>BackendStartup (1,661,059 samples, 29.67%)</title><rect x="294.3" y="661" width="350.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="297.29" y="671.5" >BackendStartup</text>
</g>
<g >
<title>XLogWaitForReplayOrFlush (463,528 samples, 8.28%)</title><rect x="196.6" y="693" width="97.7" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="199.61" y="703.5" >XLogWaitFor..</text>
</g>
<g >
<title>handle_signal (139,056 samples, 2.48%)</title><rect x="216.8" y="533" width="29.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="219.83" y="543.5" >ha..</text>
</g>
<g >
<title>exec_simple_query (885,465 samples, 15.81%)</title><rect x="10.0" y="661" width="186.6" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="13.00" y="671.5" >exec_simple_query</text>
</g>
<g >
<title>entry_SYSCALL_64 (297,914 samples, 5.32%)</title><rect x="133.8" y="373" width="62.8" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="136.82" y="383.5" >entry_..</text>
</g>
<g >
<title>read_local_xlog_page_guts (463,528 samples, 8.28%)</title><rect x="196.6" y="709" width="97.7" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="199.61" y="719.5" >read_local_..</text>
</g>
<g >
<title>dequeue_entity (299,832 samples, 5.35%)</title><rect x="70.6" y="149" width="63.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="73.64" y="159.5" >dequeu..</text>
</g>
<g >
<title>__x64_sys_epoll_wait (228,528 samples, 4.08%)</title><rect x="246.1" y="549" width="48.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="249.13" y="559.5" >__x6..</text>
</g>
<g >
<title>x64_sys_call (95,944 samples, 1.71%)</title><rect x="196.6" y="501" width="20.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="199.61" y="511.5" ></text>
</g>
<g >
<title>pg_create_logical_replication_slot (885,465 samples, 15.81%)</title><rect x="10.0" y="485" width="186.6" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="13.00" y="495.5" >pg_create_logical_replic..</text>
</g>
<g >
<title>AllocSetCheck (569,311 samples, 10.17%)</title><rect x="524.4" y="533" width="120.0" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="527.38" y="543.5" >AllocSetCheck</text>
</g>
<g >
<title>amd_pmu_disable_all (297,914 samples, 5.32%)</title><rect x="133.8" y="69" width="62.8" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="136.82" y="79.5" >amd_pm..</text>
</g>
<g >
<title>native_read_msr (71,194 samples, 1.27%)</title><rect x="231.1" y="245" width="15.0" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="234.13" y="255.5" ></text>
</g>
<g >
<title>MemoryContextCheck (569,311 samples, 10.17%)</title><rect x="524.4" y="549" width="120.0" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="527.38" y="559.5" >MemoryContextC..</text>
</g>
<g >
<title>_start (1,661,059 samples, 29.67%)</title><rect x="294.3" y="757" width="350.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="297.29" y="767.5" >_start</text>
</g>
<g >
<title>__mmput (2,589,109 samples, 46.24%)</title><rect x="644.4" y="629" width="545.6" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="647.36" y="639.5" >__mmput</text>
</g>
<g >
<title>perf_event_task_tick (71,194 samples, 1.27%)</title><rect x="231.1" y="325" width="15.0" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="234.13" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,589,109 samples, 46.24%)</title><rect x="644.4" y="725" width="545.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="647.36" y="735.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>entry_SYSCALL_64 (95,944 samples, 1.71%)</title><rect x="196.6" y="533" width="20.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="199.61" y="543.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (648,159 samples, 11.58%)</title><rect x="387.8" y="549" width="136.6" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="390.78" y="559.5" >standard_Executor..</text>
</g>
<g >
<title>__x64_sys_openat (287,719 samples, 5.14%)</title><rect x="10.0" y="325" width="60.6" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="13.00" y="335.5" >__x64_..</text>
</g>
<g >
<title>AllocSetDelete (107,857 samples, 1.93%)</title><rect x="459.0" y="325" width="22.7" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="461.95" y="335.5" >A..</text>
</g>
<g >
<title>x64_sys_call (443,589 samples, 7.92%)</title><rect x="294.3" y="437" width="93.5" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="297.29" y="447.5" >x64_sys_call</text>
</g>
<g >
<title>do_epoll_wait (443,589 samples, 7.92%)</title><rect x="294.3" y="405" width="93.5" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="297.29" y="415.5" >do_epoll_wait</text>
</g>
<g >
<title>radix_tree_lookup (95,944 samples, 1.71%)</title><rect x="196.6" y="421" width="20.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="199.61" y="431.5" ></text>
</g>
<g >
<title>postgres (5,599,161 samples, 100.00%)</title><rect x="10.0" y="773" width="1180.0" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="13.00" y="783.5" >postgres</text>
</g>
<g >
<title>arch_do_signal_or_restart (139,056 samples, 2.48%)</title><rect x="216.8" y="549" width="29.3" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="219.83" y="559.5" >ar..</text>
</g>
<g >
<title>path_openat (287,719 samples, 5.14%)</title><rect x="10.0" y="277" width="60.6" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="13.00" y="287.5" >path_o..</text>
</g>
<g >
<title>perf_event_task_tick (16,841 samples, 0.30%)</title><rect x="268.0" y="325" width="3.6" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="271.02" y="335.5" ></text>
</g>
<g >
<title>AllocSetReset (107,857 samples, 1.93%)</title><rect x="459.0" y="277" width="22.7" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="461.95" y="287.5" >A..</text>
</g>
<g >
<title>__handle_mm_fault (202,589 samples, 3.62%)</title><rect x="481.7" y="229" width="42.7" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="484.68" y="239.5" >__ha..</text>
</g>
<g >
<title>ExecProcNode (885,465 samples, 15.81%)</title><rect x="10.0" y="581" width="186.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="13.00" y="591.5" >ExecProcNode</text>
</g>
<g >
<title>[libc.so.6] (1,661,059 samples, 29.67%)</title><rect x="294.3" y="725" width="350.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="297.29" y="735.5" >[libc.so.6]</text>
</g>
<g >
<title>exc_page_fault (202,589 samples, 3.62%)</title><rect x="481.7" y="277" width="42.7" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="484.68" y="287.5" >exc_..</text>
</g>
<g >
<title>do_group_exit (2,589,109 samples, 46.24%)</title><rect x="644.4" y="693" width="545.6" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="647.36" y="703.5" >do_group_exit</text>
</g>
<g >
<title>hrtimer_interrupt (71,194 samples, 1.27%)</title><rect x="231.1" y="421" width="15.0" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="234.13" y="431.5" ></text>
</g>
<g >
<title>postmaster_child_launch (885,465 samples, 15.81%)</title><rect x="10.0" y="709" width="186.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="13.00" y="719.5" >postmaster_child_launch</text>
</g>
<g >
<title>amd_pmu_disable_all (71,194 samples, 1.27%)</title><rect x="231.1" y="277" width="15.0" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="234.13" y="287.5" ></text>
</g>
<g >
<title>__x64_sys_fsync (299,832 samples, 5.35%)</title><rect x="70.6" y="309" width="63.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="73.64" y="319.5" >__x64_..</text>
</g>
<g >
<title>hrtimer_interrupt (16,841 samples, 0.30%)</title><rect x="268.0" y="421" width="3.6" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="271.02" y="431.5" ></text>
</g>
<g >
<title>dequeue_task (107,857 samples, 1.93%)</title><rect x="271.6" y="437" width="22.7" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="274.56" y="447.5" >d..</text>
</g>
<g >
<title>schedule (297,914 samples, 5.32%)</title><rect x="133.8" y="181" width="62.8" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="136.82" y="191.5" >schedule</text>
</g>
<g >
<title>BackendMain (1,661,059 samples, 29.67%)</title><rect x="294.3" y="629" width="350.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="297.29" y="639.5" >BackendMain</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (16,841 samples, 0.30%)</title><rect x="268.0" y="469" width="3.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="271.02" y="479.5" ></text>
</g>
<g >
<title>[unknown] (1,348,993 samples, 24.09%)</title><rect x="10.0" y="757" width="284.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="767.5" >[unknown]</text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (16,841 samples, 0.30%)</title><rect x="268.0" y="437" width="3.6" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="271.02" y="447.5" ></text>
</g>
<g >
<title>find_vpid (95,944 samples, 1.71%)</title><rect x="196.6" y="453" width="20.2" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="199.61" y="463.5" ></text>
</g>
<g >
<title>mmput (2,589,109 samples, 46.24%)</title><rect x="644.4" y="645" width="545.6" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="647.36" y="655.5" >mmput</text>
</g>
<g >
<title>epoll_wait (443,589 samples, 7.92%)</title><rect x="294.3" y="485" width="93.5" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="297.29" y="495.5" >epoll_wait</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (71,194 samples, 1.27%)</title><rect x="231.1" y="469" width="15.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="234.13" y="479.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (885,465 samples, 15.81%)</title><rect x="10.0" y="613" width="186.6" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="13.00" y="623.5" >standard_ExecutorRun</text>
</g>
<g >
<title>fstatat64 (195,612 samples, 3.49%)</title><rect x="417.7" y="357" width="41.3" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="420.73" y="367.5" >fst..</text>
</g>
<g >
<title>do_exit (2,589,109 samples, 46.24%)</title><rect x="644.4" y="677" width="545.6" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="647.36" y="687.5" >do_exit</text>
</g>
<g >
<title>ExecInterpExpr (648,159 samples, 11.58%)</title><rect x="387.8" y="437" width="136.6" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text x="390.78" y="447.5" >ExecInterpExpr</text>
</g>
<g >
<title>pg_fsync_no_writethrough (297,914 samples, 5.32%)</title><rect x="133.8" y="421" width="62.8" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="136.82" y="431.5" >pg_fsy..</text>
</g>
<g >
<title>release_pages (556,660 samples, 9.94%)</title><rect x="1072.7" y="469" width="117.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1075.69" y="479.5" >release_pages</text>
</g>
<g >
<title>handle_mm_fault (202,589 samples, 3.62%)</title><rect x="481.7" y="245" width="42.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="484.68" y="255.5" >hand..</text>
</g>
<g >
<title>crypto_shash_update (287,719 samples, 5.14%)</title><rect x="10.0" y="181" width="60.6" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="13.00" y="191.5" >crypto..</text>
</g>
<g >
<title>vfs_fstatat (195,612 samples, 3.49%)</title><rect x="417.7" y="261" width="41.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="420.73" y="271.5" >vfs..</text>
</g>
<g >
<title>perf_event_context_sched_out (297,914 samples, 5.32%)</title><rect x="133.8" y="117" width="62.8" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="136.82" y="127.5" >perf_e..</text>
</g>
<g >
<title>pq_recvbuf (443,589 samples, 7.92%)</title><rect x="294.3" y="549" width="93.5" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="297.29" y="559.5" >pq_recvbuf</text>
</g>
<g >
<title>next_signal (443,589 samples, 7.92%)</title><rect x="294.3" y="341" width="93.5" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="297.29" y="351.5" >next_signal</text>
</g>
<g >
<title>DecodingContextFindStartpoint (142,101 samples, 2.54%)</title><rect x="387.8" y="389" width="29.9" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="390.78" y="399.5" >De..</text>
</g>
<g >
<title>ExecEvalExprNoReturnSwitchContext (648,159 samples, 11.58%)</title><rect x="387.8" y="469" width="136.6" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="390.78" y="479.5" >ExecEvalExprNoRet..</text>
</g>
<g >
<title>syscall_exit_to_user_mode (139,056 samples, 2.48%)</title><rect x="216.8" y="565" width="29.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="219.83" y="575.5" >sy..</text>
</g>
<g >
<title>MemoryContextResetOnly (107,857 samples, 1.93%)</title><rect x="459.0" y="293" width="22.7" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="461.95" y="303.5" >M..</text>
</g>
<g >
<title>ReadCommand (443,589 samples, 7.92%)</title><rect x="294.3" y="597" width="93.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="297.29" y="607.5" >ReadCommand</text>
</g>
<g >
<title>finish_xact_command (569,311 samples, 10.17%)</title><rect x="524.4" y="565" width="120.0" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="527.38" y="575.5" >finish_xact_co..</text>
</g>
<g >
<title>entry_SYSCALL_64 (2,589,109 samples, 46.24%)</title><rect x="644.4" y="757" width="545.6" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="647.36" y="767.5" >entry_SYSCALL_64</text>
</g>
<g >
<title>__x64_sys_epoll_wait (443,589 samples, 7.92%)</title><rect x="294.3" y="421" width="93.5" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="297.29" y="431.5" >__x64_sys_e..</text>
</g>
<g >
<title>MemoryChunkIsExternal (287,979 samples, 5.14%)</title><rect x="583.7" y="517" width="60.7" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="586.67" y="527.5" >Memory..</text>
</g>
<g >
<title>__schedule (107,857 samples, 1.93%)</title><rect x="271.6" y="453" width="22.7" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="274.56" y="463.5" >_..</text>
</g>
<g >
<title>initStringInfo (107,857 samples, 1.93%)</title><rect x="395.0" y="293" width="22.7" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="398.00" y="303.5" >i..</text>
</g>
<g >
<title>all (5,599,161 samples, 100%)</title><rect x="10.0" y="789" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="799.5" ></text>
</g>
<g >
<title>__x64_sys_newfstatat (195,612 samples, 3.49%)</title><rect x="417.7" y="293" width="41.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="420.73" y="303.5" >__x..</text>
</g>
<g >
<title>PortalRun (648,159 samples, 11.58%)</title><rect x="387.8" y="581" width="136.6" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="390.78" y="591.5" >PortalRun</text>
</g>
<g >
<title>tick_sched_handle (71,194 samples, 1.27%)</title><rect x="231.1" y="373" width="15.0" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="234.13" y="383.5" ></text>
</g>
<g >
<title>WaitEventSetWait (463,528 samples, 8.28%)</title><rect x="196.6" y="645" width="97.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="199.61" y="655.5" >WaitEventSe..</text>
</g>
<g >
<title>__schedule (299,832 samples, 5.35%)</title><rect x="70.6" y="197" width="63.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="73.64" y="207.5" >__sche..</text>
</g>
<g >
<title>WaitEventSetWaitBlock (443,589 samples, 7.92%)</title><rect x="294.3" y="501" width="93.5" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="297.29" y="511.5" >WaitEventSe..</text>
</g>
<g >
<title>__do_sys_newfstatat (195,612 samples, 3.49%)</title><rect x="417.7" y="277" width="41.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="420.73" y="287.5" >__d..</text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (71,194 samples, 1.27%)</title><rect x="231.1" y="453" width="15.0" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="234.13" y="463.5" ></text>
</g>
<g >
<title>jbd2_log_wait_commit (299,832 samples, 5.35%)</title><rect x="70.6" y="229" width="63.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="73.64" y="239.5" >jbd2_l..</text>
</g>
<g >
<title>ExecutePlan (648,159 samples, 11.58%)</title><rect x="387.8" y="533" width="136.6" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="390.78" y="543.5" >ExecutePlan</text>
</g>
<g >
<title>entry_SYSCALL_64 (287,719 samples, 5.14%)</title><rect x="10.0" y="373" width="60.6" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="13.00" y="383.5" >entry_..</text>
</g>
<g >
<title>ExecProcNode (648,159 samples, 11.58%)</title><rect x="387.8" y="517" width="136.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="390.78" y="527.5" >ExecProcNode</text>
</g>
<g >
<title>SaveSlotToPath (885,465 samples, 15.81%)</title><rect x="10.0" y="453" width="186.6" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="13.00" y="463.5" >SaveSlotToPath</text>
</g>
<g >
<title>WaitLatch (463,528 samples, 8.28%)</title><rect x="196.6" y="661" width="97.7" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="199.61" y="671.5" >WaitLatch</text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (16,841 samples, 0.30%)</title><rect x="268.0" y="309" width="3.6" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="271.02" y="319.5" ></text>
</g>
<g >
<title>tick_nohz_highres_handler (16,841 samples, 0.30%)</title><rect x="268.0" y="389" width="3.6" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text x="271.02" y="399.5" ></text>
</g>
<g >
<title>MemoryContextDeleteOnly (107,857 samples, 1.93%)</title><rect x="459.0" y="341" width="22.7" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="461.95" y="351.5" >M..</text>
</g>
<g >
<title>schedule (299,832 samples, 5.35%)</title><rect x="70.6" y="213" width="63.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="73.64" y="223.5" >schedule</text>
</g>
<g >
<title>kill (95,944 samples, 1.71%)</title><rect x="196.6" y="549" width="20.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="199.61" y="559.5" ></text>
</g>
<g >
<title>FreeDecodingContext (506,058 samples, 9.04%)</title><rect x="417.7" y="389" width="106.7" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="420.73" y="399.5" >FreeDecodingC..</text>
</g>
<g >
<title>do_syscall_64 (287,719 samples, 5.14%)</title><rect x="10.0" y="357" width="60.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="13.00" y="367.5" >do_sys..</text>
</g>
<g >
<title>MemoryContextResetOnly (107,857 samples, 1.93%)</title><rect x="459.0" y="309" width="22.7" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="461.95" y="319.5" >M..</text>
</g>
<g >
<title>__hrtimer_run_queues (16,841 samples, 0.30%)</title><rect x="268.0" y="405" width="3.6" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="271.02" y="415.5" ></text>
</g>
<g >
<title>wipe_mem (202,589 samples, 3.62%)</title><rect x="481.7" y="341" width="42.7" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="484.68" y="351.5" >wipe..</text>
</g>
<g >
<title>path_lookupat (195,612 samples, 3.49%)</title><rect x="417.7" y="213" width="41.3" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="420.73" y="223.5" >pat..</text>
</g>
<g >
<title>filename_lookup (195,612 samples, 3.49%)</title><rect x="417.7" y="229" width="41.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="420.73" y="239.5" >fil..</text>
</g>
<g >
<title>do_syscall_64 (2,589,109 samples, 46.24%)</title><rect x="644.4" y="741" width="545.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="647.36" y="751.5" >do_syscall_64</text>
</g>
<g >
<title>vfs_statx (195,612 samples, 3.49%)</title><rect x="417.7" y="245" width="41.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="420.73" y="255.5" >vfs..</text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (71,194 samples, 1.27%)</title><rect x="231.1" y="309" width="15.0" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="234.13" y="319.5" ></text>
</g>
<g >
<title>create_logical_replication_slot (648,159 samples, 11.58%)</title><rect x="387.8" y="405" width="136.6" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="390.78" y="415.5" >create_logical_re..</text>
</g>
<g >
<title>LogicalDecodingProcessRecord (142,101 samples, 2.54%)</title><rect x="387.8" y="373" width="29.9" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="390.78" y="383.5" >Lo..</text>
</g>
<g >
<title>x86_pmu_disable_all (71,194 samples, 1.27%)</title><rect x="231.1" y="261" width="15.0" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="234.13" y="271.5" ></text>
</g>
<g >
<title>lookup_open.isra.0 (287,719 samples, 5.14%)</title><rect x="10.0" y="245" width="60.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="13.00" y="255.5" >lookup..</text>
</g>
<g >
<title>schedule (107,857 samples, 1.93%)</title><rect x="271.6" y="469" width="22.7" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="274.56" y="479.5" >s..</text>
</g>
<g >
<title>WaitEventSetWait (443,589 samples, 7.92%)</title><rect x="294.3" y="517" width="93.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="297.29" y="527.5" >WaitEventSe..</text>
</g>
<g >
<title>ServerLoop (885,465 samples, 15.81%)</title><rect x="10.0" y="741" width="186.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="13.00" y="751.5" >ServerLoop</text>
</g>
<g >
<title>PostgresMain (885,465 samples, 15.81%)</title><rect x="10.0" y="677" width="186.6" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="13.00" y="687.5" >PostgresMain</text>
</g>
<g >
<title>dequeue_task_fair (299,832 samples, 5.35%)</title><rect x="70.6" y="165" width="63.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="73.64" y="175.5" >dequeu..</text>
</g>
<g >
<title>ExecProject (885,465 samples, 15.81%)</title><rect x="10.0" y="549" width="186.6" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="13.00" y="559.5" >ExecProject</text>
</g>
<g >
<title>do_syscall_64 (195,612 samples, 3.49%)</title><rect x="417.7" y="325" width="41.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="420.73" y="335.5" >do_..</text>
</g>
<g >
<title>do_syscall_64 (297,914 samples, 5.32%)</title><rect x="133.8" y="357" width="62.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="136.82" y="367.5" >do_sys..</text>
</g>
<g >
<title>__fdget (103,828 samples, 1.85%)</title><rect x="246.1" y="517" width="21.9" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="249.13" y="527.5" >_..</text>
</g>
<g >
<title>schedule_hrtimeout_range (107,857 samples, 1.93%)</title><rect x="271.6" y="501" width="22.7" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="274.56" y="511.5" >s..</text>
</g>
<g >
<title>native_write_msr (16,841 samples, 0.30%)</title><rect x="268.0" y="261" width="3.6" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="271.02" y="271.5" ></text>
</g>
<g >
<title>_raw_write_unlock_irq (16,841 samples, 0.30%)</title><rect x="268.0" y="485" width="3.6" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="271.02" y="495.5" ></text>
</g>
<g >
<title>exit_mmap (2,589,109 samples, 46.24%)</title><rect x="644.4" y="613" width="545.6" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="647.36" y="623.5" >exit_mmap</text>
</g>
<g >
<title>ExecutePlan (885,465 samples, 15.81%)</title><rect x="10.0" y="597" width="186.6" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="13.00" y="607.5" >ExecutePlan</text>
</g>
<g >
<title>x86_pmu_disable (16,841 samples, 0.30%)</title><rect x="268.0" y="293" width="3.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="271.02" y="303.5" ></text>
</g>
<g >
<title>ext4_sync_file (299,832 samples, 5.35%)</title><rect x="70.6" y="277" width="63.2" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="73.64" y="287.5" >ext4_s..</text>
</g>
<g >
<title>main (1,661,059 samples, 29.67%)</title><rect x="294.3" y="709" width="350.1" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="297.29" y="719.5" >main</text>
</g>
<g >
<title>finish_xact_command (569,311 samples, 10.17%)</title><rect x="524.4" y="581" width="120.0" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="527.38" y="591.5" >finish_xact_co..</text>
</g>
<g >
<title>x64_sys_call (228,528 samples, 4.08%)</title><rect x="246.1" y="565" width="48.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="249.13" y="575.5" >x64_..</text>
</g>
<g >
<title>do_syscall_64 (367,584 samples, 6.56%)</title><rect x="216.8" y="581" width="77.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="219.83" y="591.5" >do_sysca..</text>
</g>
<g >
<title>path_init (195,612 samples, 3.49%)</title><rect x="417.7" y="197" width="41.3" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="420.73" y="207.5" >pat..</text>
</g>
<g >
<title>fsync (299,832 samples, 5.35%)</title><rect x="70.6" y="373" width="63.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="73.64" y="383.5" >fsync</text>
</g>
<g >
<title>ExecEvalExprNoReturnSwitchContext (885,465 samples, 15.81%)</title><rect x="10.0" y="533" width="186.6" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="13.00" y="543.5" >ExecEvalExprNoReturnSwit..</text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (71,194 samples, 1.27%)</title><rect x="231.1" y="437" width="15.0" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="234.13" y="447.5" ></text>
</g>
<g >
<title>native_read_msr (297,914 samples, 5.32%)</title><rect x="133.8" y="37" width="62.8" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="136.82" y="47.5" >native..</text>
</g>
<g >
<title>free_pages_and_swap_cache (556,660 samples, 9.94%)</title><rect x="1072.7" y="485" width="117.3" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1075.69" y="495.5" >free_pages_and..</text>
</g>
<g >
<title>get_sigframe (139,056 samples, 2.48%)</title><rect x="216.8" y="501" width="29.3" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="219.83" y="511.5" >ge..</text>
</g>
<g >
<title>pg_create_logical_replication_slot (648,159 samples, 11.58%)</title><rect x="387.8" y="421" width="136.6" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="390.78" y="431.5" >pg_create_logical..</text>
</g>
<g >
<title>epoll_wait (463,528 samples, 8.28%)</title><rect x="196.6" y="613" width="97.7" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="199.61" y="623.5" >epoll_wait</text>
</g>
<g >
<title>free_pgtables (577,541 samples, 10.31%)</title><rect x="644.4" y="597" width="121.7" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="647.36" y="607.5" >free_pgtables</text>
</g>
<g >
<title>folio_wait_writeback (297,914 samples, 5.32%)</title><rect x="133.8" y="245" width="62.8" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="136.82" y="255.5" >folio_..</text>
</g>
<g >
<title>__libc_start_main (1,661,059 samples, 29.67%)</title><rect x="294.3" y="741" width="350.1" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="297.29" y="751.5" >__libc_start_main</text>
</g>
<g >
<title>wrapper_handler (95,944 samples, 1.71%)</title><rect x="196.6" y="581" width="20.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="199.61" y="591.5" ></text>
</g>
<g >
<title>__x64_sys_kill (95,944 samples, 1.71%)</title><rect x="196.6" y="485" width="20.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="199.61" y="495.5" ></text>
</g>
<g >
<title>pg_fsync (299,832 samples, 5.35%)</title><rect x="70.6" y="421" width="63.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="73.64" y="431.5" >pg_fsync</text>
</g>
<g >
<title>pg_fsync (297,914 samples, 5.32%)</title><rect x="133.8" y="437" width="62.8" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="136.82" y="447.5" >pg_fsync</text>
</g>
<g >
<title>kmem_cache_free (577,541 samples, 10.31%)</title><rect x="644.4" y="549" width="121.7" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="647.36" y="559.5" >kmem_cache_free</text>
</g>
<g >
<title>ep_poll (443,589 samples, 7.92%)</title><rect x="294.3" y="389" width="93.5" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" />
<text x="297.29" y="399.5" >ep_poll</text>
</g>
<g >
<title>PortalRunSelect (648,159 samples, 11.58%)</title><rect x="387.8" y="565" width="136.6" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="390.78" y="575.5" >PortalRunSelect</text>
</g>
<g >
<title>__hrtimer_run_queues (71,194 samples, 1.27%)</title><rect x="231.1" y="405" width="15.0" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="234.13" y="415.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (16,841 samples, 0.30%)</title><rect x="268.0" y="453" width="3.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="271.02" y="463.5" ></text>
</g>
<g >
<title>do_epoll_wait (228,528 samples, 4.08%)</title><rect x="246.1" y="533" width="48.2" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="249.13" y="543.5" >do_e..</text>
</g>
<g >
<title>ServerLoop (1,661,059 samples, 29.67%)</title><rect x="294.3" y="677" width="350.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="297.29" y="687.5" >ServerLoop</text>
</g>
<g >
<title>[libc.so.6] (202,589 samples, 3.62%)</title><rect x="481.7" y="309" width="42.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="484.68" y="319.5" >[lib..</text>
</g>
<g >
<title>folio_add_lru_vma (202,589 samples, 3.62%)</title><rect x="481.7" y="181" width="42.7" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="484.68" y="191.5" >foli..</text>
</g>
<g >
<title>SocketBackend (443,589 samples, 7.92%)</title><rect x="294.3" y="581" width="93.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="297.29" y="591.5" >SocketBackend</text>
</g>
<g >
<title>x86_pmu_disable_all (297,914 samples, 5.32%)</title><rect x="133.8" y="53" width="62.8" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="136.82" y="63.5" >x86_pm..</text>
</g>
<g >
<title>__memcg_slab_free_hook (577,541 samples, 10.31%)</title><rect x="644.4" y="533" width="121.7" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="647.36" y="543.5" >__memcg_slab_fr..</text>
</g>
<g >
<title>x64_sys_call (195,612 samples, 3.49%)</title><rect x="417.7" y="309" width="41.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="420.73" y="319.5" >x64..</text>
</g>
<g >
<title>jbd2_complete_transaction (299,832 samples, 5.35%)</title><rect x="70.6" y="245" width="63.2" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="73.64" y="255.5" >jbd2_c..</text>
</g>
<g >
<title>perf_ctx_disable (297,914 samples, 5.32%)</title><rect x="133.8" y="101" width="62.8" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="136.82" y="111.5" >perf_c..</text>
</g>
<g >
<title>entry_SYSCALL_64 (195,612 samples, 3.49%)</title><rect x="417.7" y="341" width="41.3" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="420.73" y="351.5" >ent..</text>
</g>
<g >
<title>x64_sys_call (297,914 samples, 5.32%)</title><rect x="133.8" y="341" width="62.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="136.82" y="351.5" >x64_sy..</text>
</g>
<g >
<title>__ext4_new_inode (287,719 samples, 5.14%)</title><rect x="10.0" y="213" width="60.6" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="13.00" y="223.5" >__ext4..</text>
</g>
<g >
<title>dequeue_task (299,832 samples, 5.35%)</title><rect x="70.6" y="181" width="63.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="73.64" y="191.5" >dequeu..</text>
</g>
<g >
<title>PostgresMain (1,661,059 samples, 29.67%)</title><rect x="294.3" y="613" width="350.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="297.29" y="623.5" >PostgresMain</text>
</g>
<g >
<title>unmap_single_vma (2,011,568 samples, 35.93%)</title><rect x="766.1" y="581" width="423.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="769.07" y="591.5" >unmap_single_vma</text>
</g>
<g >
<title>OpenTransientFilePerm (287,719 samples, 5.14%)</title><rect x="10.0" y="437" width="60.6" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="13.00" y="447.5" >OpenTr..</text>
</g>
</g>
</svg>