Skip to content

Instantly share code, notes, and snippets.

@mejedi
Created January 15, 2024 13:17
Show Gist options
  • Save mejedi/86e12f56630f91daa640c559d9faed3a to your computer and use it in GitHub Desktop.
Save mejedi/86e12f56630f91daa640c559d9faed3a to your computer and use it in GitHub Desktop.
/home/nickz/flamegraph.git/flamegraph -- ./mapgauge.test -test.run=^$ -test.bench=. -test.v ./pkg/ebpf/mapgauge/
Display the source blob
Display the rendered blob
Raw
<?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="854" onload="init(evt)" viewBox="0 0 1200 854" 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;
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="854.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >/home/nickz/flamegraph.git/flamegraph -- ./mapgauge.test -test.run=^$ -test.bench=. -test.v ./pkg/ebpf/mapgauge/</text>
<text id="details" x="10.00" y="837" > </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="837" > </text>
<g id="frames">
<g >
<title>runtime.schedule (5,167,514 samples, 0.11%)</title><rect x="13.3" y="677" width="1.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="16.31" y="687.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Spec).Copy (562,087,849 samples, 11.65%)</title><rect x="664.2" y="549" width="137.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="667.16" y="559.5" >github.com/cilium..</text>
</g>
<g >
<title>do_anonymous_page (506,364 samples, 0.01%)</title><rect x="1188.0" y="565" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1191.03" y="575.5" ></text>
</g>
<g >
<title>__handle_mm_fault (776,498 samples, 0.02%)</title><rect x="708.8" y="357" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="711.80" y="367.5" ></text>
</g>
<g >
<title>runtime.procresize (1,540,440 samples, 0.03%)</title><rect x="61.8" y="661" width="0.4" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="64.84" y="671.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (1,347,943 samples, 0.03%)</title><rect x="1174.5" y="501" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1177.48" y="511.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (767,277 samples, 0.02%)</title><rect x="658.5" y="245" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="661.51" y="255.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (698,001 samples, 0.01%)</title><rect x="369.8" y="389" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="372.76" y="399.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (459,526 samples, 0.01%)</title><rect x="1010.4" y="341" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1013.37" y="351.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (760,705 samples, 0.02%)</title><rect x="857.4" y="453" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="860.43" y="463.5" ></text>
</g>
<g >
<title>get_page_from_freelist (731,613 samples, 0.02%)</title><rect x="631.8" y="117" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="634.75" y="127.5" ></text>
</g>
<g >
<title>do_user_addr_fault (760,634 samples, 0.02%)</title><rect x="1185.9" y="645" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1188.93" y="655.5" ></text>
</g>
<g >
<title>runtime.(*gcWork).init (418,342 samples, 0.01%)</title><rect x="74.2" y="613" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="77.20" y="623.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (746,945 samples, 0.02%)</title><rect x="852.4" y="581" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="855.38" y="591.5" ></text>
</g>
<g >
<title>schedule (767,329 samples, 0.02%)</title><rect x="988.4" y="373" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="991.38" y="383.5" ></text>
</g>
<g >
<title>__folio_alloc (760,634 samples, 0.02%)</title><rect x="1185.9" y="549" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1188.93" y="559.5" ></text>
</g>
<g >
<title>sync_regs (774,187 samples, 0.02%)</title><rect x="658.3" y="405" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="661.32" y="415.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (515,060 samples, 0.01%)</title><rect x="1082.4" y="437" width="0.1" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="1085.40" y="447.5" ></text>
</g>
<g >
<title>__calc_delta (3,362,307 samples, 0.07%)</title><rect x="448.1" y="373" width="0.8" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="451.06" y="383.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (1,476,108 samples, 0.03%)</title><rect x="692.3" y="421" width="0.3" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="695.27" y="431.5" ></text>
</g>
<g >
<title>__handle_mm_fault (418,342 samples, 0.01%)</title><rect x="74.2" y="517" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="77.20" y="527.5" ></text>
</g>
<g >
<title>__rcu_read_lock (771,450 samples, 0.02%)</title><rect x="1005.8" y="405" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1008.79" y="415.5" ></text>
</g>
<g >
<title>do_send_specific (1,819,951 samples, 0.04%)</title><rect x="26.2" y="581" width="0.5" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="29.21" y="591.5" ></text>
</g>
<g >
<title>__fput (639,837 samples, 0.01%)</title><rect x="530.2" y="517" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="533.23" y="527.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (42,008,326 samples, 0.87%)</title><rect x="466.0" y="421" width="10.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="469.04" y="431.5" ></text>
</g>
<g >
<title>runtime.mProf_Malloc (722,283 samples, 0.01%)</title><rect x="691.6" y="437" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="694.56" y="447.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (772,991 samples, 0.02%)</title><rect x="754.2" y="421" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="757.20" y="431.5" ></text>
</g>
<g >
<title>psi_group_change (19,739,778 samples, 0.41%)</title><rect x="479.6" y="421" width="4.8" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="482.62" y="431.5" ></text>
</g>
<g >
<title>memset_orig (770,144 samples, 0.02%)</title><rect x="641.0" y="229" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="644.02" y="239.5" ></text>
</g>
<g >
<title>gcWriteBarrier (738,985 samples, 0.02%)</title><rect x="630.3" y="437" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="633.29" y="447.5" ></text>
</g>
<g >
<title>native_flush_tlb_one_user (475,409 samples, 0.01%)</title><rect x="1188.2" y="437" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1191.15" y="447.5" ></text>
</g>
<g >
<title>tick_program_event (640,577 samples, 0.01%)</title><rect x="15.2" y="549" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="18.24" y="559.5" ></text>
</g>
<g >
<title>rcu_note_context_switch (1,858,174 samples, 0.04%)</title><rect x="486.8" y="437" width="0.5" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="489.81" y="447.5" ></text>
</g>
<g >
<title>runtime.mstart0 (559,743 samples, 0.01%)</title><rect x="1189.3" y="757" width="0.1" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="1192.27" y="767.5" ></text>
</g>
<g >
<title>__mod_memcg_state (778,275 samples, 0.02%)</title><rect x="1012.2" y="373" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1015.21" y="383.5" ></text>
</g>
<g >
<title>mod_objcg_state (6,189,275 samples, 0.13%)</title><rect x="501.3" y="421" width="1.5" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="504.28" y="431.5" ></text>
</g>
<g >
<title>memset_orig (1,520,730 samples, 0.03%)</title><rect x="976.6" y="421" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="979.55" y="431.5" ></text>
</g>
<g >
<title>unmap_single_vma (23,887,656 samples, 0.50%)</title><rect x="55.3" y="549" width="5.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="58.26" y="559.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (777,194 samples, 0.02%)</title><rect x="643.0" y="389" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="646.04" y="399.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (4,111,791 samples, 0.09%)</title><rect x="45.7" y="549" width="1.0" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="48.68" y="559.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (779,331 samples, 0.02%)</title><rect x="687.6" y="357" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="690.56" y="367.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (706,326 samples, 0.01%)</title><rect x="625.0" y="277" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="627.96" y="287.5" ></text>
</g>
<g >
<title>pick_next_task_fair (31,780,676 samples, 0.66%)</title><rect x="37.4" y="549" width="7.8" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="40.41" y="559.5" ></text>
</g>
<g >
<title>handle_mm_fault (776,498 samples, 0.02%)</title><rect x="708.8" y="373" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="711.80" y="383.5" ></text>
</g>
<g >
<title>find_busiest_group (736,533 samples, 0.02%)</title><rect x="210.2" y="389" width="0.2" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="213.21" y="399.5" ></text>
</g>
<g >
<title>do_wp_page (487,287 samples, 0.01%)</title><rect x="1189.6" y="405" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="1192.62" y="415.5" ></text>
</g>
<g >
<title>rmqueue_bulk (688,211 samples, 0.01%)</title><rect x="188.2" y="421" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="191.19" y="431.5" ></text>
</g>
<g >
<title>rmqueue (2,309,895 samples, 0.05%)</title><rect x="753.3" y="277" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="756.26" y="287.5" ></text>
</g>
<g >
<title>free_unref_page_prepare (711,778 samples, 0.01%)</title><rect x="59.9" y="421" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="62.92" y="431.5" ></text>
</g>
<g >
<title>dequeue_task (9,692,610 samples, 0.20%)</title><rect x="33.2" y="565" width="2.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="36.19" y="575.5" ></text>
</g>
<g >
<title>do_user_addr_fault (688,211 samples, 0.01%)</title><rect x="188.2" y="597" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="191.19" y="607.5" ></text>
</g>
<g >
<title>wp_page_copy (26,191,746 samples, 0.54%)</title><rect x="747.6" y="357" width="6.4" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="750.61" y="367.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (665,534 samples, 0.01%)</title><rect x="53.2" y="709" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="56.18" y="719.5" ></text>
</g>
<g >
<title>handle_pte_fault (11,472,968 samples, 0.24%)</title><rect x="844.7" y="581" width="2.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="847.70" y="591.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_lru (545,966 samples, 0.01%)</title><rect x="977.3" y="437" width="0.1" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="980.25" y="447.5" ></text>
</g>
<g >
<title>apparmor_file_permission (776,114 samples, 0.02%)</title><rect x="657.6" y="277" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="660.56" y="287.5" ></text>
</g>
<g >
<title>__handle_mm_fault (6,723,901 samples, 0.14%)</title><rect x="699.4" y="405" width="1.7" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="702.45" y="415.5" ></text>
</g>
<g >
<title>__rcu_read_lock (2,082,208 samples, 0.04%)</title><rect x="973.1" y="373" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="976.13" y="383.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (606,417 samples, 0.01%)</title><rect x="530.1" y="453" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="533.08" y="463.5" ></text>
</g>
<g >
<title>reflect.Value.NumField (1,550,985 samples, 0.03%)</title><rect x="813.1" y="645" width="0.3" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="816.05" y="655.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (828,135 samples, 0.02%)</title><rect x="61.2" y="645" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="64.17" y="655.5" ></text>
</g>
<g >
<title>tick_sched_timer (598,285 samples, 0.01%)</title><rect x="954.6" y="341" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="957.57" y="351.5" ></text>
</g>
<g >
<title>syscall.Syscall.abi0 (3,844,439 samples, 0.08%)</title><rect x="801.8" y="549" width="1.0" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="804.85" y="559.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (623,150 samples, 0.01%)</title><rect x="213.9" y="421" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="216.92" y="431.5" ></text>
</g>
<g >
<title>__x64_sys_mmap (747,206 samples, 0.02%)</title><rect x="571.4" y="245" width="0.2" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="574.44" y="255.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (771,887 samples, 0.02%)</title><rect x="645.6" y="453" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="648.65" y="463.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (3,601,350 samples, 0.07%)</title><rect x="368.9" y="389" width="0.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="371.88" y="399.5" ></text>
</g>
<g >
<title>___slab_alloc (1,336,702 samples, 0.03%)</title><rect x="1001.5" y="325" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="1004.45" y="335.5" ></text>
</g>
<g >
<title>psi_group_change (1,137,050 samples, 0.02%)</title><rect x="476.7" y="437" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="479.66" y="447.5" ></text>
</g>
<g >
<title>runtime.GC (1,681,877 samples, 0.03%)</title><rect x="1187.9" y="725" width="0.4" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1190.86" y="735.5" ></text>
</g>
<g >
<title>__handle_mm_fault (760,697 samples, 0.02%)</title><rect x="773.4" y="357" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="776.37" y="367.5" ></text>
</g>
<g >
<title>sched_clock (774,761 samples, 0.02%)</title><rect x="734.8" y="293" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="737.81" y="303.5" ></text>
</g>
<g >
<title>get_page_from_freelist (2,313,544 samples, 0.05%)</title><rect x="699.4" y="309" width="0.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="702.45" y="319.5" ></text>
</g>
<g >
<title>kernfs_fop_read_iter (4,651,465 samples, 0.10%)</title><rect x="656.4" y="293" width="1.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="659.42" y="303.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (6,635,843 samples, 0.14%)</title><rect x="756.2" y="453" width="1.6" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="759.20" y="463.5" ></text>
</g>
<g >
<title>runtime.(*unwinder).resolveInternal (762,772 samples, 0.02%)</title><rect x="773.6" y="341" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="776.56" y="351.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (904,951 samples, 0.02%)</title><rect x="29.8" y="565" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="32.81" y="575.5" ></text>
</g>
<g >
<title>asm_sysvec_call_function_single (736,533 samples, 0.02%)</title><rect x="209.7" y="437" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="212.66" y="447.5" ></text>
</g>
<g >
<title>lapic_next_deadline (713,100 samples, 0.01%)</title><rect x="32.0" y="549" width="0.2" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="35.00" y="559.5" ></text>
</g>
<g >
<title>runtime.save (763,114 samples, 0.02%)</title><rect x="872.5" y="565" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="875.50" y="575.5" ></text>
</g>
<g >
<title>hrtimer_reprogram (640,577 samples, 0.01%)</title><rect x="15.2" y="565" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="18.24" y="575.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (800,514 samples, 0.02%)</title><rect x="506.7" y="437" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="509.74" y="447.5" ></text>
</g>
<g >
<title>bpf_prog_load (773,372 samples, 0.02%)</title><rect x="801.7" y="341" width="0.1" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="804.66" y="351.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (6,202,815 samples, 0.13%)</title><rect x="656.4" y="373" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="659.42" y="383.5" ></text>
</g>
<g >
<title>runtime.sysAllocOS (738,100 samples, 0.02%)</title><rect x="1085.0" y="469" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="1088.02" y="479.5" ></text>
</g>
<g >
<title>uncharge_folio (778,191 samples, 0.02%)</title><rect x="54.5" y="485" width="0.2" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="57.50" y="495.5" ></text>
</g>
<g >
<title>__bpf_map_area_alloc (110,856,983 samples, 2.30%)</title><rect x="990.0" y="469" width="27.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="992.99" y="479.5" >_..</text>
</g>
<g >
<title>rcu_sched_clock_irq (740,337 samples, 0.02%)</title><rect x="1041.4" y="405" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="1044.37" y="415.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (760,634 samples, 0.02%)</title><rect x="1185.9" y="485" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1188.93" y="495.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (1,259,982 samples, 0.03%)</title><rect x="210.8" y="437" width="0.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="213.83" y="447.5" ></text>
</g>
<g >
<title>runtime.bgsweep (38,849,726 samples, 0.81%)</title><rect x="196.4" y="741" width="9.5" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="199.40" y="751.5" ></text>
</g>
<g >
<title>native_write_msr (13,320,985 samples, 0.28%)</title><rect x="430.0" y="357" width="3.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="433.01" y="367.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (780,325 samples, 0.02%)</title><rect x="908.2" y="517" width="0.2" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="911.23" y="527.5" ></text>
</g>
<g >
<title>golang.org/x/sys/unix.Close (1,303,715,466 samples, 27.03%)</title><rect x="239.0" y="677" width="318.9" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="242.01" y="687.5" >golang.org/x/sys/unix.Close</text>
</g>
<g >
<title>runtime.wbBufFlush (752,902 samples, 0.02%)</title><rect x="681.9" y="469" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="684.88" y="479.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (922,345 samples, 0.02%)</title><rect x="1189.5" y="645" width="0.2" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1192.52" y="655.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (779,331 samples, 0.02%)</title><rect x="687.6" y="309" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="690.56" y="319.5" ></text>
</g>
<g >
<title>handle_pte_fault (728,330 samples, 0.02%)</title><rect x="630.1" y="357" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="633.11" y="367.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (762,791 samples, 0.02%)</title><rect x="707.1" y="453" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="710.12" y="463.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).destroy (771,505 samples, 0.02%)</title><rect x="841.6" y="597" width="0.1" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="844.55" y="607.5" ></text>
</g>
<g >
<title>free_unref_page (474,248 samples, 0.01%)</title><rect x="497.9" y="309" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="500.95" y="319.5" ></text>
</g>
<g >
<title>do_anonymous_page (757,205 samples, 0.02%)</title><rect x="1084.8" y="389" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1087.84" y="399.5" ></text>
</g>
<g >
<title>try_to_wake_up (774,761 samples, 0.02%)</title><rect x="734.8" y="373" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="737.81" y="383.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (5,281,219 samples, 0.11%)</title><rect x="842.3" y="661" width="1.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="845.28" y="671.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (771,599 samples, 0.02%)</title><rect x="13.1" y="677" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="16.12" y="687.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (594,979 samples, 0.01%)</title><rect x="1174.5" y="469" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1177.48" y="479.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (762,791 samples, 0.02%)</title><rect x="707.1" y="437" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="710.12" y="447.5" ></text>
</g>
<g >
<title>runtime.reentersyscall (473,008 samples, 0.01%)</title><rect x="251.9" y="629" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="254.90" y="639.5" ></text>
</g>
<g >
<title>generic_smp_call_function_single_interrupt (706,109 samples, 0.01%)</title><rect x="131.8" y="629" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="134.79" y="639.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (771,817 samples, 0.02%)</title><rect x="1040.7" y="453" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1043.69" y="463.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (721,445 samples, 0.01%)</title><rect x="1183.0" y="613" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1185.96" y="623.5" ></text>
</g>
<g >
<title>runtime.scanobject (461,580,406 samples, 9.57%)</title><rect x="82.6" y="693" width="112.9" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="85.55" y="703.5" >runtime.scano..</text>
</g>
<g >
<title>handle_pte_fault (715,536 samples, 0.01%)</title><rect x="1188.9" y="469" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1191.92" y="479.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (758,352 samples, 0.02%)</title><rect x="943.3" y="325" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="946.27" y="335.5" ></text>
</g>
<g >
<title>mntput (771,505 samples, 0.02%)</title><rect x="841.6" y="405" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="844.55" y="415.5" ></text>
</g>
<g >
<title>runtime.stealWork (1,466,755 samples, 0.03%)</title><rect x="206.7" y="629" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="209.69" y="639.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (594,929 samples, 0.01%)</title><rect x="1000.7" y="309" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1003.68" y="319.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).push (2,155,173 samples, 0.04%)</title><rect x="631.9" y="373" width="0.6" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="634.93" y="383.5" ></text>
</g>
<g >
<title>native_set_pte (736,153 samples, 0.02%)</title><rect x="609.6" y="341" width="0.2" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="612.58" y="351.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (651,143 samples, 0.01%)</title><rect x="877.9" y="437" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="880.93" y="447.5" ></text>
</g>
<g >
<title>__slab_free (792,983 samples, 0.02%)</title><rect x="498.1" y="293" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="501.14" y="303.5" ></text>
</g>
<g >
<title>runtime.findRunnable (1,141,245 samples, 0.02%)</title><rect x="62.7" y="677" width="0.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="65.73" y="687.5" ></text>
</g>
<g >
<title>handle_pte_fault (1,427,175 samples, 0.03%)</title><rect x="622.1" y="357" width="0.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="625.12" y="367.5" ></text>
</g>
<g >
<title>runtime.scanstack (1,431,549 samples, 0.03%)</title><rect x="72.8" y="661" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="75.75" y="671.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.newEssentialName (770,968 samples, 0.02%)</title><rect x="801.1" y="533" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="804.09" y="543.5" ></text>
</g>
<g >
<title>do_anonymous_page (556,285 samples, 0.01%)</title><rect x="62.1" y="469" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="65.08" y="479.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (772,836 samples, 0.02%)</title><rect x="659.1" y="453" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="662.07" y="463.5" ></text>
</g>
<g >
<title>do_user_addr_fault (11,122,832 samples, 0.23%)</title><rect x="597.2" y="437" width="2.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="600.24" y="447.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (731,159 samples, 0.02%)</title><rect x="613.4" y="405" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="616.39" y="415.5" ></text>
</g>
<g >
<title>sched_clock (9,968,513 samples, 0.21%)</title><rect x="406.5" y="357" width="2.4" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="409.51" y="367.5" ></text>
</g>
<g >
<title>__handle_mm_fault (743,480 samples, 0.02%)</title><rect x="634.1" y="373" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="637.08" y="383.5" ></text>
</g>
<g >
<title>irqentry_exit (736,168 samples, 0.02%)</title><rect x="761.1" y="469" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="764.13" y="479.5" ></text>
</g>
<g >
<title>error_entry (775,585 samples, 0.02%)</title><rect x="688.5" y="485" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="691.47" y="495.5" ></text>
</g>
<g >
<title>__alloc_pages (757,396 samples, 0.02%)</title><rect x="940.7" y="261" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="943.70" y="271.5" ></text>
</g>
<g >
<title>do_syscall_64 (559,743 samples, 0.01%)</title><rect x="1189.3" y="629" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1192.27" y="639.5" ></text>
</g>
<g >
<title>runtime.memmove (1,427,175 samples, 0.03%)</title><rect x="622.1" y="453" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="625.12" y="463.5" ></text>
</g>
<g >
<title>wp_page_copy (2,131,006 samples, 0.04%)</title><rect x="624.6" y="341" width="0.5" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="627.61" y="351.5" ></text>
</g>
<g >
<title>restore_fpregs_from_fpstate (654,949 samples, 0.01%)</title><rect x="1174.8" y="453" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="1177.81" y="463.5" ></text>
</g>
<g >
<title>up_read (1,464,925 samples, 0.03%)</title><rect x="687.9" y="437" width="0.4" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="690.93" y="447.5" ></text>
</g>
<g >
<title>runtime.mallocgc (2,308,171 samples, 0.05%)</title><rect x="658.3" y="453" width="0.6" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="661.32" y="463.5" ></text>
</g>
<g >
<title>native_apic_msr_eoi_write (732,384 samples, 0.02%)</title><rect x="204.0" y="645" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="206.96" y="655.5" ></text>
</g>
<g >
<title>exc_page_fault (13,863,257 samples, 0.29%)</title><rect x="786.2" y="469" width="3.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="789.19" y="479.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (623,150 samples, 0.01%)</title><rect x="213.9" y="437" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="216.92" y="447.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,257,185 samples, 0.07%)</title><rect x="13.7" y="581" width="0.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="16.73" y="591.5" ></text>
</g>
<g >
<title>mntget (2,325,877 samples, 0.05%)</title><rect x="979.4" y="453" width="0.6" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="982.41" y="463.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.unmarshalBtfEnums (769,610 samples, 0.02%)</title><rect x="634.4" y="469" width="0.2" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="637.44" y="479.5" ></text>
</g>
<g >
<title>tick_sched_handle (771,817 samples, 0.02%)</title><rect x="1040.7" y="421" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1043.69" y="431.5" ></text>
</g>
<g >
<title>runtime.findObject (715,991 samples, 0.01%)</title><rect x="621.8" y="373" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="624.76" y="383.5" ></text>
</g>
<g >
<title>__do_softirq (485,085 samples, 0.01%)</title><rect x="287.3" y="469" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="290.34" y="479.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (777,194 samples, 0.02%)</title><rect x="643.0" y="421" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="646.04" y="431.5" ></text>
</g>
<g >
<title>native_flush_tlb_one_user (775,582 samples, 0.02%)</title><rect x="787.5" y="309" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="790.50" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes.func1 (1,483,953 samples, 0.03%)</title><rect x="605.3" y="485" width="0.3" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="608.27" y="495.5" ></text>
</g>
<g >
<title>vma_alloc_folio (3,628,403 samples, 0.08%)</title><rect x="866.3" y="501" width="0.8" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="869.25" y="511.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (731,136 samples, 0.02%)</title><rect x="1181.3" y="149" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1184.32" y="159.5" ></text>
</g>
<g >
<title>pick_next_task_fair (767,329 samples, 0.02%)</title><rect x="988.4" y="325" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="991.38" y="335.5" ></text>
</g>
<g >
<title>check_preempt_curr (642,381 samples, 0.01%)</title><rect x="319.1" y="389" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="322.07" y="399.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint64 (774,671 samples, 0.02%)</title><rect x="809.9" y="629" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="812.90" y="639.5" ></text>
</g>
<g >
<title>do_wp_page (528,819 samples, 0.01%)</title><rect x="1189.7" y="613" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="1192.74" y="623.5" ></text>
</g>
<g >
<title>runtime.growslice (19,253,404 samples, 0.40%)</title><rect x="768.3" y="517" width="4.7" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="771.28" y="527.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (731,136 samples, 0.02%)</title><rect x="1181.3" y="565" width="0.2" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1184.32" y="575.5" ></text>
</g>
<g >
<title>vma_alloc_folio (2,797,182 samples, 0.06%)</title><rect x="587.3" y="325" width="0.7" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="590.30" y="335.5" ></text>
</g>
<g >
<title>runtime.netpoll (783,443 samples, 0.02%)</title><rect x="18.5" y="693" width="0.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="21.54" y="703.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (21,884,727 samples, 0.45%)</title><rect x="926.7" y="389" width="5.4" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="929.72" y="399.5" ></text>
</g>
<g >
<title>rmqueue_bulk (760,705 samples, 0.02%)</title><rect x="857.4" y="437" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="860.43" y="447.5" ></text>
</g>
<g >
<title>mod_objcg_state (5,211,595 samples, 0.11%)</title><rect x="948.5" y="389" width="1.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="951.52" y="399.5" ></text>
</g>
<g >
<title>blk_cgroup_congested (487,287 samples, 0.01%)</title><rect x="1189.6" y="357" width="0.1" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="1192.62" y="367.5" ></text>
</g>
<g >
<title>flush_tlb_func (736,676 samples, 0.02%)</title><rect x="205.5" y="389" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="208.54" y="399.5" ></text>
</g>
<g >
<title>clear_page_erms (3,692,000 samples, 0.08%)</title><rect x="598.7" y="277" width="0.9" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="601.71" y="287.5" ></text>
</g>
<g >
<title>__mem_cgroup_uncharge_list (772,384 samples, 0.02%)</title><rect x="856.1" y="485" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="859.12" y="495.5" ></text>
</g>
<g >
<title>mntput_no_expire (771,505 samples, 0.02%)</title><rect x="841.6" y="389" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="844.55" y="399.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (774,761 samples, 0.02%)</title><rect x="734.8" y="437" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="737.81" y="447.5" ></text>
</g>
<g >
<title>x86_pmu_disable (2,306,576 samples, 0.05%)</title><rect x="46.1" y="501" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="49.07" y="511.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (540,979 samples, 0.01%)</title><rect x="213.7" y="533" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="216.66" y="543.5" ></text>
</g>
<g >
<title>runtime.lock2 (1,542,147 samples, 0.03%)</title><rect x="1178.5" y="565" width="0.4" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1181.54" y="575.5" ></text>
</g>
<g >
<title>exc_page_fault (763,215 samples, 0.02%)</title><rect x="571.3" y="437" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="574.25" y="447.5" ></text>
</g>
<g >
<title>setup_object (3,091,401 samples, 0.06%)</title><rect x="941.8" y="341" width="0.8" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="944.79" y="351.5" ></text>
</g>
<g >
<title>wake_up_process (774,761 samples, 0.02%)</title><rect x="734.8" y="389" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="737.81" y="399.5" ></text>
</g>
<g >
<title>runtime.memhash64 (1,037,720 samples, 0.02%)</title><rect x="238.1" y="613" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="241.07" y="623.5" ></text>
</g>
<g >
<title>runtime.tracebackPCs (773,766 samples, 0.02%)</title><rect x="771.9" y="405" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="774.86" y="415.5" ></text>
</g>
<g >
<title>do_user_addr_fault (589,552 samples, 0.01%)</title><rect x="214.1" y="645" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="217.08" y="655.5" ></text>
</g>
<g >
<title>error_entry (771,179 samples, 0.02%)</title><rect x="707.9" y="485" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="710.88" y="495.5" ></text>
</g>
<g >
<title>runtime.nilinterhash (2,671,886 samples, 0.06%)</title><rect x="238.4" y="645" width="0.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="241.36" y="655.5" ></text>
</g>
<g >
<title>__alloc_pages (4,402,688 samples, 0.09%)</title><rect x="598.5" y="309" width="1.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="601.53" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Struct).copy (19,940,064 samples, 0.41%)</title><rect x="707.3" y="501" width="4.9" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="710.30" y="511.5" ></text>
</g>
<g >
<title>irqentry_exit (1,509,297 samples, 0.03%)</title><rect x="865.0" y="549" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="867.96" y="559.5" ></text>
</g>
<g >
<title>try_to_wake_up (183,523,235 samples, 3.80%)</title><rect x="364.1" y="405" width="44.9" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="367.13" y="415.5" >try_..</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (773,372 samples, 0.02%)</title><rect x="801.7" y="405" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="804.66" y="415.5" ></text>
</g>
<g >
<title>update_curr (629,364 samples, 0.01%)</title><rect x="926.4" y="197" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="929.39" y="207.5" ></text>
</g>
<g >
<title>__pte_offset_map (773,024 samples, 0.02%)</title><rect x="786.8" y="341" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="789.75" y="351.5" ></text>
</g>
<g >
<title>put_prev_entity (957,838 samples, 0.02%)</title><rect x="45.3" y="533" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="48.34" y="543.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (746,945 samples, 0.02%)</title><rect x="852.4" y="629" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="855.38" y="639.5" ></text>
</g>
<g >
<title>runtime.memmove (1,544,469 samples, 0.03%)</title><rect x="658.9" y="469" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="661.88" y="479.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (14,632,079 samples, 0.30%)</title><rect x="786.0" y="485" width="3.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="789.00" y="495.5" ></text>
</g>
<g >
<title>handle_mm_fault (4,321,822 samples, 0.09%)</title><rect x="624.1" y="405" width="1.0" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="627.07" y="415.5" ></text>
</g>
<g >
<title>get_unused_fd_flags (4,292,207 samples, 0.09%)</title><rect x="1030.4" y="501" width="1.1" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="1033.43" y="511.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,268,077 samples, 0.03%)</title><rect x="253.5" y="597" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="256.53" y="607.5" ></text>
</g>
<g >
<title>wp_page_copy (487,287 samples, 0.01%)</title><rect x="1189.6" y="389" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1192.62" y="399.5" ></text>
</g>
<g >
<title>ttwu_do_activate (1,859,917 samples, 0.04%)</title><rect x="434.3" y="293" width="0.5" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="437.32" y="303.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (758,352 samples, 0.02%)</title><rect x="943.3" y="405" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="946.27" y="415.5" ></text>
</g>
<g >
<title>mntput_no_expire (3,889,443 samples, 0.08%)</title><rect x="518.0" y="469" width="0.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="520.97" y="479.5" ></text>
</g>
<g >
<title>exc_page_fault (797,472 samples, 0.02%)</title><rect x="62.0" y="549" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="65.02" y="559.5" ></text>
</g>
<g >
<title>wake_up_process (606,417 samples, 0.01%)</title><rect x="530.1" y="389" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="533.08" y="399.5" ></text>
</g>
<g >
<title>select_task_rq_fair (2,050,923 samples, 0.04%)</title><rect x="363.6" y="405" width="0.5" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="366.63" y="415.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (763,858 samples, 0.02%)</title><rect x="601.6" y="453" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="604.59" y="463.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (7,832,063 samples, 0.16%)</title><rect x="571.6" y="389" width="1.9" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="574.62" y="399.5" ></text>
</g>
<g >
<title>rep_movs_alternative (811,236 samples, 0.02%)</title><rect x="28.9" y="613" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="31.90" y="623.5" ></text>
</g>
<g >
<title>__handle_mm_fault (589,552 samples, 0.01%)</title><rect x="214.1" y="613" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="217.08" y="623.5" ></text>
</g>
<g >
<title>enqueue_task_fair (629,364 samples, 0.01%)</title><rect x="926.4" y="229" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="929.39" y="239.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*stringTable).lookup (26,733,702 samples, 0.55%)</title><rect x="614.1" y="453" width="6.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="617.10" y="463.5" ></text>
</g>
<g >
<title>tick_sched_timer (740,337 samples, 0.02%)</title><rect x="1041.4" y="453" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1044.37" y="463.5" ></text>
</g>
<g >
<title>memcg_account_kmem (767,189 samples, 0.02%)</title><rect x="950.7" y="389" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="953.70" y="399.5" ></text>
</g>
<g >
<title>runtime.wirep (488,600 samples, 0.01%)</title><rect x="251.6" y="613" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="254.63" y="623.5" ></text>
</g>
<g >
<title>get_unused_fd_flags (22,437,843 samples, 0.47%)</title><rect x="983.4" y="485" width="5.5" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="986.37" y="495.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (1,469,571 samples, 0.03%)</title><rect x="877.4" y="533" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="880.39" y="543.5" ></text>
</g>
<g >
<title>runtime.typehash (762,766 samples, 0.02%)</title><rect x="815.6" y="597" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="818.61" y="607.5" ></text>
</g>
<g >
<title>handle_pte_fault (776,498 samples, 0.02%)</title><rect x="708.8" y="341" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="711.80" y="351.5" ></text>
</g>
<g >
<title>do_anonymous_page (1,556,589 samples, 0.03%)</title><rect x="836.7" y="533" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="839.71" y="543.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (3,885,979 samples, 0.08%)</title><rect x="54.3" y="565" width="1.0" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="57.31" y="575.5" ></text>
</g>
<g >
<title>memcpy_orig (753,868 samples, 0.02%)</title><rect x="977.4" y="437" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="980.39" y="447.5" ></text>
</g>
<g >
<title>runtime.(*hmap).newoverflow (766,303 samples, 0.02%)</title><rect x="799.6" y="501" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="802.58" y="511.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (485,085 samples, 0.01%)</title><rect x="287.3" y="485" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="290.34" y="495.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (5,167,514 samples, 0.11%)</title><rect x="13.3" y="757" width="1.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="16.31" y="767.5" ></text>
</g>
<g >
<title>exc_page_fault (589,552 samples, 0.01%)</title><rect x="214.1" y="661" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="217.08" y="671.5" ></text>
</g>
<g >
<title>update_min_vruntime (517,337 samples, 0.01%)</title><rect x="450.9" y="373" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="453.92" y="383.5" ></text>
</g>
<g >
<title>enqueue_task_fair (746,945 samples, 0.02%)</title><rect x="852.4" y="501" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="855.38" y="511.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (475,409 samples, 0.01%)</title><rect x="1188.2" y="469" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="1191.15" y="479.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (515,060 samples, 0.01%)</title><rect x="1082.4" y="421" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1085.40" y="431.5" ></text>
</g>
<g >
<title>[unknown] (2,311,308 samples, 0.05%)</title><rect x="10.0" y="709" width="0.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="719.5" ></text>
</g>
<g >
<title>runtime.typehash (780,266 samples, 0.02%)</title><rect x="583.3" y="453" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="586.30" y="463.5" ></text>
</g>
<g >
<title>record_times (1,537,798 samples, 0.03%)</title><rect x="484.4" y="421" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="487.44" y="431.5" ></text>
</g>
<g >
<title>rcu_do_batch (1,607,082 samples, 0.03%)</title><rect x="412.7" y="325" width="0.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="415.74" y="335.5" ></text>
</g>
<g >
<title>ttwu_do_activate (705,104 samples, 0.01%)</title><rect x="293.8" y="437" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="296.84" y="447.5" ></text>
</g>
<g >
<title>runtime.gcFlushBgCredit (752,779 samples, 0.02%)</title><rect x="69.6" y="693" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="72.62" y="703.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (740,337 samples, 0.02%)</title><rect x="1041.4" y="469" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1044.37" y="479.5" ></text>
</g>
<g >
<title>__handle_mm_fault (11,472,968 samples, 0.24%)</title><rect x="844.7" y="597" width="2.8" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="847.70" y="607.5" ></text>
</g>
<g >
<title>tlb_is_not_lazy (764,393 samples, 0.02%)</title><rect x="750.3" y="261" width="0.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="753.25" y="271.5" ></text>
</g>
<g >
<title>handle_mm_fault (623,150 samples, 0.01%)</title><rect x="213.9" y="533" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="216.92" y="543.5" ></text>
</g>
<g >
<title>dequeue_task (734,300 samples, 0.02%)</title><rect x="12.0" y="549" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="15.03" y="559.5" ></text>
</g>
<g >
<title>unmap_single_vma (747,206 samples, 0.02%)</title><rect x="571.4" y="101" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="574.44" y="111.5" ></text>
</g>
<g >
<title>vfs_read (80,988,155 samples, 1.68%)</title><rect x="816.9" y="485" width="19.8" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="819.90" y="495.5" ></text>
</g>
<g >
<title>all (4,823,591,492 samples, 100%)</title><rect x="10.0" y="805" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="815.5" ></text>
</g>
<g >
<title>do_user_addr_fault (778,859 samples, 0.02%)</title><rect x="691.4" y="389" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="694.37" y="399.5" ></text>
</g>
<g >
<title>sched_clock (6,841,994 samples, 0.14%)</title><rect x="485.0" y="405" width="1.7" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="487.99" y="415.5" ></text>
</g>
<g >
<title>__next_zones_zonelist (710,688 samples, 0.01%)</title><rect x="598.5" y="293" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="601.53" y="303.5" ></text>
</g>
<g >
<title>handle_mm_fault (624,343 samples, 0.01%)</title><rect x="213.4" y="677" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="216.36" y="687.5" ></text>
</g>
<g >
<title>__rcu_read_lock (752,875 samples, 0.02%)</title><rect x="972.9" y="357" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="975.95" y="367.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (731,136 samples, 0.02%)</title><rect x="1181.3" y="517" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1184.32" y="527.5" ></text>
</g>
<g >
<title>cpuacct_charge (606,417 samples, 0.01%)</title><rect x="530.1" y="293" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="533.08" y="303.5" ></text>
</g>
<g >
<title>__bpf_map_inc_not_zero (27,156,479 samples, 0.56%)</title><rect x="819.5" y="437" width="6.6" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="822.48" y="447.5" ></text>
</g>
<g >
<title>runtime.(*fixalloc).alloc (731,136 samples, 0.02%)</title><rect x="1181.3" y="437" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1184.32" y="447.5" ></text>
</g>
<g >
<title>sysvec_call_function_single (736,676 samples, 0.02%)</title><rect x="205.5" y="453" width="0.2" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="208.54" y="463.5" ></text>
</g>
<g >
<title>clear_page_erms (761,900 samples, 0.02%)</title><rect x="1181.0" y="405" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1183.96" y="415.5" ></text>
</g>
<g >
<title>timerqueue_add (842,699 samples, 0.02%)</title><rect x="29.8" y="549" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="32.83" y="559.5" ></text>
</g>
<g >
<title>__alloc_pages (1,404,635 samples, 0.03%)</title><rect x="1035.4" y="357" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1038.40" y="367.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (745,380 samples, 0.02%)</title><rect x="188.4" y="581" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="191.36" y="591.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (1,493,779 samples, 0.03%)</title><rect x="1002.9" y="421" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1005.87" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newProgramWithOptions (994,763,400 samples, 20.62%)</title><rect x="559.4" y="597" width="243.4" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="562.44" y="607.5" >github.com/cilium/ebpf.newProgra..</text>
</g>
<g >
<title>__irqentry_text_end (769,860 samples, 0.02%)</title><rect x="562.8" y="485" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="565.83" y="495.5" ></text>
</g>
<g >
<title>bpf_map_release (1,994,551 samples, 0.04%)</title><rect x="527.4" y="501" width="0.4" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="530.35" y="511.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.findProgramTargetInKernel (562,087,849 samples, 11.65%)</title><rect x="664.2" y="581" width="137.5" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="667.16" y="591.5" >github.com/cilium..</text>
</g>
<g >
<title>error_entry (766,773 samples, 0.02%)</title><rect x="12.7" y="693" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="15.67" y="703.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,065,895 samples, 0.06%)</title><rect x="734.1" y="485" width="0.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="737.06" y="495.5" ></text>
</g>
<g >
<title>_copy_from_user (6,811,904 samples, 0.14%)</title><rect x="903.1" y="517" width="1.6" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="906.05" y="527.5" ></text>
</g>
<g >
<title>get_any_partial (591,306 samples, 0.01%)</title><rect x="959.7" y="389" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="962.67" y="399.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (776,498 samples, 0.02%)</title><rect x="708.8" y="453" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="711.80" y="463.5" ></text>
</g>
<g >
<title>hpage_collapse_scan_pmd (1,502,420 samples, 0.03%)</title><rect x="1188.4" y="645" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1191.35" y="655.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (636,619 samples, 0.01%)</title><rect x="214.2" y="549" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="217.22" y="559.5" ></text>
</g>
<g >
<title>runtime.mapassign (623,150 samples, 0.01%)</title><rect x="213.9" y="613" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="216.92" y="623.5" ></text>
</g>
<g >
<title>__folio_alloc (731,136 samples, 0.02%)</title><rect x="1181.3" y="277" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1184.32" y="287.5" ></text>
</g>
<g >
<title>__folio_alloc (14,624,699 samples, 0.30%)</title><rect x="750.4" y="325" width="3.6" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="753.44" y="335.5" ></text>
</g>
<g >
<title>refill_obj_stock (1,547,024 samples, 0.03%)</title><rect x="950.9" y="389" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="953.89" y="399.5" ></text>
</g>
<g >
<title>__handle_mm_fault (4,393,902 samples, 0.09%)</title><rect x="866.3" y="549" width="1.0" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="869.25" y="559.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (1,818,125 samples, 0.04%)</title><rect x="61.8" y="709" width="0.5" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="64.84" y="719.5" ></text>
</g>
<g >
<title>check_preempt_wakeup (731,136 samples, 0.02%)</title><rect x="1181.3" y="53" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="1184.32" y="63.5" ></text>
</g>
<g >
<title>cap_capable (2,191,138 samples, 0.05%)</title><rect x="1027.5" y="469" width="0.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1030.55" y="479.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (775,289 samples, 0.02%)</title><rect x="799.4" y="453" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="802.39" y="463.5" ></text>
</g>
<g >
<title>runtime.main (4,754,050 samples, 0.10%)</title><rect x="213.4" y="757" width="1.1" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="216.36" y="767.5" ></text>
</g>
<g >
<title>enqueue_task (774,761 samples, 0.02%)</title><rect x="734.8" y="341" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="737.81" y="351.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (1,509,297 samples, 0.03%)</title><rect x="865.0" y="533" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="867.96" y="543.5" ></text>
</g>
<g >
<title>runtime.(*scavengeIndex).alloc (5,280,578 samples, 0.11%)</title><rect x="860.8" y="469" width="1.3" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="863.79" y="479.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (1,293,066 samples, 0.03%)</title><rect x="490.0" y="453" width="0.3" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="492.98" y="463.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes.func1 (6,681,839 samples, 0.14%)</title><rect x="620.8" y="469" width="1.7" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="623.83" y="479.5" ></text>
</g>
<g >
<title>strlen (2,911,027 samples, 0.06%)</title><rect x="981.2" y="469" width="0.7" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="984.21" y="479.5" ></text>
</g>
<g >
<title>irqentry_exit (3,071,364 samples, 0.06%)</title><rect x="782.8" y="469" width="0.8" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="785.81" y="479.5" ></text>
</g>
<g >
<title>get_page_from_freelist (777,603 samples, 0.02%)</title><rect x="644.9" y="229" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="647.90" y="239.5" ></text>
</g>
<g >
<title>internal/cpu.Initialize (922,345 samples, 0.02%)</title><rect x="1189.5" y="725" width="0.2" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="1192.52" y="735.5" ></text>
</g>
<g >
<title>clear_page_erms (6,213,833 samples, 0.13%)</title><rect x="845.8" y="485" width="1.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="848.79" y="495.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (1,700,579 samples, 0.04%)</title><rect x="24.2" y="485" width="0.5" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="27.25" y="495.5" ></text>
</g>
<g >
<title>runtime.stkbucket (772,819 samples, 0.02%)</title><rect x="570.9" y="421" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="573.87" y="431.5" ></text>
</g>
<g >
<title>put_prev_entity (2,145,085 samples, 0.04%)</title><rect x="464.2" y="421" width="0.5" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="467.15" y="431.5" ></text>
</g>
<g >
<title>rmqueue_bulk (760,697 samples, 0.02%)</title><rect x="773.4" y="197" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="776.37" y="207.5" ></text>
</g>
<g >
<title>do_wp_page (2,229,846 samples, 0.05%)</title><rect x="205.2" y="581" width="0.5" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="208.17" y="591.5" ></text>
</g>
<g >
<title>runtime.memmove (758,752 samples, 0.02%)</title><rect x="11.3" y="725" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="14.30" y="735.5" ></text>
</g>
<g >
<title>do_futex (1,008,652 samples, 0.02%)</title><rect x="53.5" y="725" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="56.51" y="735.5" ></text>
</g>
<g >
<title>runtime.(*unwinder).next (773,766 samples, 0.02%)</title><rect x="771.9" y="389" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="774.86" y="399.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (718,467,648 samples, 14.89%)</title><rect x="883.2" y="581" width="175.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="886.18" y="591.5" >entry_SYSCALL_64_after..</text>
</g>
<g >
<title>record_times (548,844 samples, 0.01%)</title><rect x="484.3" y="405" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="487.31" y="415.5" ></text>
</g>
<g >
<title>mem_cgroup_from_task (773,418 samples, 0.02%)</title><rect x="799.0" y="437" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="802.02" y="447.5" ></text>
</g>
<g >
<title>prepare_task_switch (496,057 samples, 0.01%)</title><rect x="487.9" y="453" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="490.92" y="463.5" ></text>
</g>
<g >
<title>runtime.profilealloc (770,714 samples, 0.02%)</title><rect x="645.1" y="437" width="0.2" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="648.09" y="447.5" ></text>
</g>
<g >
<title>runtime.growslice (13,760,491 samples, 0.29%)</title><rect x="568.1" y="485" width="3.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="571.07" y="495.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (695,442 samples, 0.01%)</title><rect x="624.1" y="309" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="627.07" y="319.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (5,179,714 samples, 0.11%)</title><rect x="485.2" y="357" width="1.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="488.24" y="367.5" ></text>
</g>
<g >
<title>ttwu_do_activate (101,301,123 samples, 2.10%)</title><rect x="374.9" y="389" width="24.8" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="377.94" y="399.5" >t..</text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Pointer).TypeName (777,336 samples, 0.02%)</title><rect x="560.9" y="501" width="0.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="563.95" y="511.5" ></text>
</g>
<g >
<title>schedule (2,064,080 samples, 0.04%)</title><rect x="53.8" y="693" width="0.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="56.76" y="703.5" ></text>
</g>
<g >
<title>setup_object (775,960 samples, 0.02%)</title><rect x="930.4" y="325" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="933.40" y="335.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.indexTypes (165,308,561 samples, 3.43%)</title><rect x="561.5" y="501" width="40.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="564.52" y="511.5" >git..</text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*FeatureTest).execute-fm (4,973,504 samples, 0.10%)</title><rect x="868.2" y="661" width="1.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="871.20" y="671.5" ></text>
</g>
<g >
<title>do_anonymous_page (4,504,935 samples, 0.09%)</title><rect x="842.5" y="565" width="1.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="845.47" y="575.5" ></text>
</g>
<g >
<title>native_write_msr (1,102,071 samples, 0.02%)</title><rect x="24.4" y="421" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="27.38" y="431.5" ></text>
</g>
<g >
<title>gcWriteBarrier (731,159 samples, 0.02%)</title><rect x="613.4" y="469" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="616.39" y="479.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (746,945 samples, 0.02%)</title><rect x="852.4" y="661" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="855.38" y="671.5" ></text>
</g>
<g >
<title>pick_next_task (432,817 samples, 0.01%)</title><rect x="48.8" y="581" width="0.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="51.83" y="591.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,952,976 samples, 0.06%)</title><rect x="632.8" y="389" width="0.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="635.81" y="399.5" ></text>
</g>
<g >
<title>fd_install (5,896,219 samples, 0.12%)</title><rect x="981.9" y="485" width="1.5" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="984.92" y="495.5" ></text>
</g>
<g >
<title>runtime.(*fixalloc).alloc (770,915 samples, 0.02%)</title><rect x="648.8" y="293" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="651.78" y="303.5" ></text>
</g>
<g >
<title>runtime.recordspan (731,136 samples, 0.02%)</title><rect x="1181.3" y="421" width="0.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="1184.32" y="431.5" ></text>
</g>
<g >
<title>bufio.(*Reader).Read (1,528,266 samples, 0.03%)</title><rect x="611.4" y="469" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="614.37" y="479.5" ></text>
</g>
<g >
<title>blk_complete_reqs (485,085 samples, 0.01%)</title><rect x="287.3" y="437" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="290.34" y="447.5" ></text>
</g>
<g >
<title>__irqentry_text_end (1,536,241 samples, 0.03%)</title><rect x="843.9" y="661" width="0.4" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="846.94" y="671.5" ></text>
</g>
<g >
<title>runtime.madvise.abi0 (5,280,578 samples, 0.11%)</title><rect x="860.8" y="453" width="1.3" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="863.79" y="463.5" ></text>
</g>
<g >
<title>exc_page_fault (743,480 samples, 0.02%)</title><rect x="634.1" y="421" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="637.08" y="431.5" ></text>
</g>
<g >
<title>runtime.findObject (1,476,108 samples, 0.03%)</title><rect x="692.3" y="389" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="695.27" y="399.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (731,136 samples, 0.02%)</title><rect x="1181.3" y="485" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1184.32" y="495.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (922,345 samples, 0.02%)</title><rect x="1189.5" y="613" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="1192.52" y="623.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (718,710 samples, 0.01%)</title><rect x="630.5" y="357" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="633.47" y="367.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (769,267 samples, 0.02%)</title><rect x="989.8" y="389" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="992.80" y="399.5" ></text>
</g>
<g >
<title>runtime.removefinalizer (39,840,438 samples, 0.83%)</title><rect x="226.6" y="613" width="9.8" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="229.63" y="623.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1,347,943 samples, 0.03%)</title><rect x="1174.5" y="485" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1177.48" y="495.5" ></text>
</g>
<g >
<title>do_anonymous_page (731,613 samples, 0.02%)</title><rect x="631.8" y="181" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="634.75" y="191.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (4,461,197 samples, 0.09%)</title><rect x="1029.3" y="485" width="1.1" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="1032.34" y="495.5" ></text>
</g>
<g >
<title>runtime.typedmemmove (1,548,457 samples, 0.03%)</title><rect x="589.2" y="469" width="0.4" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="592.18" y="479.5" ></text>
</g>
<g >
<title>exc_page_fault (1,519,968 samples, 0.03%)</title><rect x="734.4" y="469" width="0.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="737.44" y="479.5" ></text>
</g>
<g >
<title>__calc_delta (815,871 samples, 0.02%)</title><rect x="387.1" y="309" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="390.05" y="319.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).uncacheSpan (722,016 samples, 0.01%)</title><rect x="702.0" y="421" width="0.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="705.03" y="431.5" ></text>
</g>
<g >
<title>__folio_alloc (755,265 samples, 0.02%)</title><rect x="622.3" y="309" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="625.28" y="319.5" ></text>
</g>
<g >
<title>get_page_from_freelist (757,396 samples, 0.02%)</title><rect x="940.7" y="245" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="943.70" y="255.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.BPF (773,372 samples, 0.02%)</title><rect x="801.7" y="469" width="0.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="804.66" y="479.5" ></text>
</g>
<g >
<title>runtime.memmove (17,703,781 samples, 0.37%)</title><rect x="785.4" y="501" width="4.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="788.44" y="511.5" ></text>
</g>
<g >
<title>runtime.mallocgc (1,265,981 samples, 0.03%)</title><rect x="1185.6" y="693" width="0.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1188.62" y="703.5" ></text>
</g>
<g >
<title>do_check (773,372 samples, 0.02%)</title><rect x="801.7" y="293" width="0.1" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="804.66" y="303.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (2,185,660 samples, 0.05%)</title><rect x="972.6" y="373" width="0.5" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="975.60" y="383.5" ></text>
</g>
<g >
<title>psi_flags_change (1,274,869 samples, 0.03%)</title><rect x="393.0" y="341" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="395.96" y="351.5" ></text>
</g>
<g >
<title>runtime.findRunnable (1,401,444 samples, 0.03%)</title><rect x="196.4" y="661" width="0.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="199.40" y="671.5" ></text>
</g>
<g >
<title>__call_rcu_common.constprop.0 (673,396 samples, 0.01%)</title><rect x="330.7" y="485" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="333.68" y="495.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (5,222,368 samples, 0.11%)</title><rect x="1181.7" y="501" width="1.3" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="1184.69" y="511.5" ></text>
</g>
<g >
<title>rmqueue (774,197 samples, 0.02%)</title><rect x="788.6" y="293" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="791.64" y="303.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (767,277 samples, 0.02%)</title><rect x="658.5" y="261" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="661.51" y="271.5" ></text>
</g>
<g >
<title>runtime.bgscavenge (30,489,159 samples, 0.63%)</title><rect x="205.9" y="741" width="7.5" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="208.90" y="751.5" ></text>
</g>
<g >
<title>idr_preload (1,383,984 samples, 0.03%)</title><rect x="908.6" y="517" width="0.3" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="911.60" y="527.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (761,691 samples, 0.02%)</title><rect x="598.0" y="341" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="600.97" y="351.5" ></text>
</g>
<g >
<title>__wait_rcu_gp (767,329 samples, 0.02%)</title><rect x="988.4" y="421" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="991.38" y="431.5" ></text>
</g>
<g >
<title>psi_group_change (1,364,734 samples, 0.03%)</title><rect x="21.4" y="453" width="0.3" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="24.40" y="463.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (566,751 samples, 0.01%)</title><rect x="253.7" y="565" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="256.70" y="575.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (7,832,063 samples, 0.16%)</title><rect x="571.6" y="341" width="1.9" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="574.62" y="351.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (7,832,063 samples, 0.16%)</title><rect x="571.6" y="421" width="1.9" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="574.62" y="431.5" ></text>
</g>
<g >
<title>close_fd (1,739,732 samples, 0.04%)</title><rect x="293.2" y="581" width="0.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="296.23" y="591.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (758,352 samples, 0.02%)</title><rect x="943.3" y="373" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="946.27" y="383.5" ></text>
</g>
<g >
<title>anon_inode_getfd (664,495 samples, 0.01%)</title><rect x="53.3" y="693" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="56.35" y="703.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (3,662,444 samples, 0.08%)</title><rect x="631.6" y="405" width="0.9" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="634.56" y="415.5" ></text>
</g>
<g >
<title>__folio_end_writeback (485,085 samples, 0.01%)</title><rect x="287.3" y="309" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="290.34" y="319.5" ></text>
</g>
<g >
<title>copyout (775,415 samples, 0.02%)</title><rect x="657.2" y="261" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="660.18" y="271.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (772,080 samples, 0.02%)</title><rect x="789.4" y="421" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="792.39" y="431.5" ></text>
</g>
<g >
<title>do_anonymous_page (1,579,172 samples, 0.03%)</title><rect x="215.8" y="613" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="218.77" y="623.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (722,283 samples, 0.01%)</title><rect x="691.6" y="405" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="694.56" y="415.5" ></text>
</g>
<g >
<title>inc_slabs_node (771,287 samples, 0.02%)</title><rect x="929.7" y="357" width="0.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="932.69" y="367.5" ></text>
</g>
<g >
<title>runtime.gopreempt_m (2,137,788 samples, 0.04%)</title><rect x="1188.7" y="741" width="0.6" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="1191.75" y="751.5" ></text>
</g>
<g >
<title>runtime.(*consistentHeapStats).acquire (730,235 samples, 0.02%)</title><rect x="204.7" y="693" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="207.68" y="703.5" ></text>
</g>
<g >
<title>runtime.(*mcache).allocLarge (776,692 samples, 0.02%)</title><rect x="842.1" y="645" width="0.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="845.09" y="655.5" ></text>
</g>
<g >
<title>syscall.Syscall6 (766,773 samples, 0.02%)</title><rect x="12.7" y="725" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="15.67" y="735.5" ></text>
</g>
<g >
<title>clear_page_erms (731,613 samples, 0.02%)</title><rect x="631.8" y="101" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="634.75" y="111.5" ></text>
</g>
<g >
<title>__folio_alloc (761,900 samples, 0.02%)</title><rect x="1181.0" y="453" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1183.96" y="463.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (769,267 samples, 0.02%)</title><rect x="989.8" y="437" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="992.80" y="447.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (3,690,933 samples, 0.08%)</title><rect x="632.8" y="437" width="0.9" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="635.81" y="447.5" ></text>
</g>
<g >
<title>io.(*SectionReader).Read (8,180,954 samples, 0.17%)</title><rect x="640.1" y="437" width="2.0" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="643.11" y="447.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.createMapGaugeEbpf (995,541,076 samples, 20.64%)</title><rect x="559.2" y="693" width="243.6" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="562.25" y="703.5" >github.com/EMnify/giraffe/pkg/eb..</text>
</g>
<g >
<title>reweight_entity (769,267 samples, 0.02%)</title><rect x="989.8" y="277" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="992.80" y="287.5" ></text>
</g>
<g >
<title>psi_task_change (509,126 samples, 0.01%)</title><rect x="434.7" y="261" width="0.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="437.65" y="271.5" ></text>
</g>
<g >
<title>put_cpu_partial (671,881 samples, 0.01%)</title><rect x="959.8" y="373" width="0.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="962.81" y="383.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (1,517,995 samples, 0.03%)</title><rect x="759.1" y="453" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="762.11" y="463.5" ></text>
</g>
<g >
<title>_raw_spin_lock (6,800,168 samples, 0.14%)</title><rect x="279.1" y="565" width="1.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="282.14" y="575.5" ></text>
</g>
<g >
<title>runtime.typehash (755,465 samples, 0.02%)</title><rect x="745.2" y="469" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="748.17" y="479.5" ></text>
</g>
<g >
<title>irqentry_exit (775,289 samples, 0.02%)</title><rect x="799.4" y="469" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="802.39" y="479.5" ></text>
</g>
<g >
<title>update_min_vruntime (3,795,184 samples, 0.08%)</title><rect x="457.5" y="389" width="0.9" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="460.49" y="399.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (606,417 samples, 0.01%)</title><rect x="530.1" y="469" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="533.08" y="479.5" ></text>
</g>
<g >
<title>vma_alloc_folio (2,271,907 samples, 0.05%)</title><rect x="760.6" y="389" width="0.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="763.58" y="399.5" ></text>
</g>
<g >
<title>folio_add_lru (671,910 samples, 0.01%)</title><rect x="622.1" y="309" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="625.12" y="319.5" ></text>
</g>
<g >
<title>free_unref_page_commit (2,231,144 samples, 0.05%)</title><rect x="59.4" y="405" width="0.5" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="62.38" y="415.5" ></text>
</g>
<g >
<title>reweight_entity (441,240 samples, 0.01%)</title><rect x="34.0" y="501" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="36.96" y="511.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,844,477 samples, 0.08%)</title><rect x="654.0" y="421" width="0.9" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="656.97" y="431.5" ></text>
</g>
<g >
<title>testing.(*B).runN (3,980,679,461 samples, 82.53%)</title><rect x="214.6" y="741" width="973.8" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="217.56" y="751.5" >testing.(*B).runN</text>
</g>
<g >
<title>clockevents_program_event (4,861,340 samples, 0.10%)</title><rect x="30.8" y="549" width="1.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="33.81" y="559.5" ></text>
</g>
<g >
<title>runtime.memmove (752,587 samples, 0.02%)</title><rect x="601.8" y="485" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="604.77" y="495.5" ></text>
</g>
<g >
<title>handle_mm_fault (763,736 samples, 0.02%)</title><rect x="130.7" y="629" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="133.71" y="639.5" ></text>
</g>
<g >
<title>schedule (1,486,106 samples, 0.03%)</title><rect x="12.0" y="581" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="15.02" y="591.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (1,476,108 samples, 0.03%)</title><rect x="692.3" y="405" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="695.27" y="415.5" ></text>
</g>
<g >
<title>ptep_clear_flush (2,185,062 samples, 0.05%)</title><rect x="695.2" y="357" width="0.5" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="698.21" y="367.5" ></text>
</g>
<g >
<title>runtime.markroot (43,186,050 samples, 0.90%)</title><rect x="71.8" y="693" width="10.6" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="74.81" y="703.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.mapGaugeEbpf.mapsInfo (183,494,149 samples, 3.80%)</title><rect x="803.0" y="693" width="44.9" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="805.98" y="703.5" >gith..</text>
</g>
<g >
<title>irqentry_exit (732,931 samples, 0.02%)</title><rect x="688.3" y="453" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="691.29" y="463.5" ></text>
</g>
<g >
<title>mem_cgroup_handle_over_high (807,846 samples, 0.02%)</title><rect x="531.6" y="549" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="534.57" y="559.5" ></text>
</g>
<g >
<title>runtime.gcMarkTermination (1,818,125 samples, 0.04%)</title><rect x="61.8" y="725" width="0.5" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="64.84" y="735.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (3,697,752 samples, 0.08%)</title><rect x="643.6" y="421" width="0.9" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="646.63" y="431.5" ></text>
</g>
<g >
<title>sched_clock_cpu (1,155,827 samples, 0.02%)</title><rect x="48.2" y="549" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="51.17" y="559.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (758,062 samples, 0.02%)</title><rect x="585.3" y="325" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="588.34" y="335.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (544,706 samples, 0.01%)</title><rect x="926.3" y="325" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="929.26" y="335.5" ></text>
</g>
<g >
<title>mas_walk (753,612 samples, 0.02%)</title><rect x="857.6" y="581" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="860.62" y="591.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (777,016 samples, 0.02%)</title><rect x="37.1" y="549" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="40.08" y="559.5" ></text>
</g>
<g >
<title>enqueue_task_fair (39,475,086 samples, 0.82%)</title><rect x="381.3" y="357" width="9.6" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="384.29" y="367.5" ></text>
</g>
<g >
<title>do_syscall_64 (773,372 samples, 0.02%)</title><rect x="801.7" y="389" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="804.66" y="399.5" ></text>
</g>
<g >
<title>runtime.preemptall (739,021 samples, 0.02%)</title><rect x="62.5" y="677" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="65.49" y="687.5" ></text>
</g>
<g >
<title>__handle_mm_fault (715,536 samples, 0.01%)</title><rect x="1188.9" y="485" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1191.92" y="495.5" ></text>
</g>
<g >
<title>runtime.memmove (773,504 samples, 0.02%)</title><rect x="682.4" y="485" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="685.44" y="495.5" ></text>
</g>
<g >
<title>cpuacct_charge (1,582,606 samples, 0.03%)</title><rect x="445.6" y="389" width="0.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="448.58" y="399.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*FeatureTest).execute (773,372 samples, 0.02%)</title><rect x="801.7" y="533" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="804.66" y="543.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (715,536 samples, 0.01%)</title><rect x="1188.9" y="549" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1191.92" y="559.5" ></text>
</g>
<g >
<title>handle_mm_fault (4,504,935 samples, 0.09%)</title><rect x="842.5" y="613" width="1.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="845.47" y="623.5" ></text>
</g>
<g >
<title>blk_done_softirq (485,085 samples, 0.01%)</title><rect x="287.3" y="453" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="290.34" y="463.5" ></text>
</g>
<g >
<title>new_slab (7,455,478 samples, 0.15%)</title><rect x="929.9" y="357" width="1.8" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="932.88" y="367.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (632,750 samples, 0.01%)</title><rect x="877.2" y="549" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="880.23" y="559.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (77,003,603 samples, 1.60%)</title><rect x="1060.0" y="581" width="18.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1063.01" y="591.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (9,627,023 samples, 0.20%)</title><rect x="1082.1" y="549" width="2.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1085.11" y="559.5" ></text>
</g>
<g >
<title>sync_regs (2,315,633 samples, 0.05%)</title><rect x="799.8" y="501" width="0.5" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="802.77" y="511.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,112,925 samples, 0.04%)</title><rect x="412.6" y="405" width="0.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="415.62" y="415.5" ></text>
</g>
<g >
<title>wp_page_copy (623,150 samples, 0.01%)</title><rect x="213.9" y="469" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="216.92" y="479.5" ></text>
</g>
<g >
<title>unmap_page_range (23,887,656 samples, 0.50%)</title><rect x="55.3" y="533" width="5.8" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="58.26" y="543.5" ></text>
</g>
<g >
<title>mas_prev_slot (738,100 samples, 0.02%)</title><rect x="1085.0" y="277" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1088.02" y="287.5" ></text>
</g>
<g >
<title>exc_page_fault (3,519,860 samples, 0.07%)</title><rect x="204.9" y="661" width="0.8" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="207.86" y="671.5" ></text>
</g>
<g >
<title>__dentry_kill (95,070,106 samples, 1.97%)</title><rect x="488.7" y="469" width="23.3" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="491.74" y="479.5" >_..</text>
</g>
<g >
<title>clear_page_erms (755,265 samples, 0.02%)</title><rect x="622.3" y="261" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="625.28" y="271.5" ></text>
</g>
<g >
<title>do_nanosleep (80,253,606 samples, 1.66%)</title><rect x="29.4" y="613" width="19.7" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="32.43" y="623.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (590,857 samples, 0.01%)</title><rect x="30.4" y="581" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="33.42" y="591.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.kernelSpec (428,057,740 samples, 8.87%)</title><rect x="559.4" y="549" width="104.8" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="562.44" y="559.5" >github.com/c..</text>
</g>
<g >
<title>__sys_bpf (773,372 samples, 0.02%)</title><rect x="801.7" y="357" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="804.66" y="367.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (665,053 samples, 0.01%)</title><rect x="466.4" y="405" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="469.44" y="415.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (6,654,368 samples, 0.14%)</title><rect x="49.5" y="645" width="1.7" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="52.53" y="655.5" ></text>
</g>
<g >
<title>runtime.bulkBarrierPreWriteSrcOnly (740,774 samples, 0.02%)</title><rect x="708.2" y="469" width="0.2" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="711.24" y="479.5" ></text>
</g>
<g >
<title>handle_mm_fault (777,603 samples, 0.02%)</title><rect x="644.9" y="357" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="647.90" y="367.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (1,628,226 samples, 0.03%)</title><rect x="36.4" y="501" width="0.4" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="39.42" y="511.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (773,978 samples, 0.02%)</title><rect x="948.3" y="341" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="951.33" y="351.5" ></text>
</g>
<g >
<title>handle_pte_fault (731,613 samples, 0.02%)</title><rect x="631.8" y="197" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="634.75" y="207.5" ></text>
</g>
<g >
<title>bpf_map_put (2,338,812 samples, 0.05%)</title><rect x="338.7" y="485" width="0.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="341.66" y="495.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (776,092 samples, 0.02%)</title><rect x="681.1" y="485" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="684.14" y="495.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (731,613 samples, 0.02%)</title><rect x="631.8" y="277" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="634.75" y="287.5" ></text>
</g>
<g >
<title>runtime.(*scavengerState).sleep (511,439 samples, 0.01%)</title><rect x="213.2" y="725" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="216.23" y="735.5" ></text>
</g>
<g >
<title>do_fault (624,343 samples, 0.01%)</title><rect x="213.4" y="629" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="216.36" y="639.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (1,440,835 samples, 0.03%)</title><rect x="60.3" y="389" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="63.27" y="399.5" ></text>
</g>
<g >
<title>[unknown] (174,520,603 samples, 3.62%)</title><rect x="10.0" y="773" width="42.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="783.5" >[unk..</text>
</g>
<g >
<title>runtime.systemstack.abi0 (545,270,894 samples, 11.30%)</title><rect x="63.0" y="741" width="133.4" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="66.01" y="751.5" >runtime.systemst..</text>
</g>
<g >
<title>pick_next_task (3,905,081 samples, 0.08%)</title><rect x="209.8" y="453" width="1.0" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="212.84" y="463.5" ></text>
</g>
<g >
<title>__handle_mm_fault (487,287 samples, 0.01%)</title><rect x="1189.6" y="437" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1192.62" y="447.5" ></text>
</g>
<g >
<title>runtime.mallocgc (15,763,006 samples, 0.33%)</title><rect x="1179.1" y="597" width="3.9" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1182.11" y="607.5" ></text>
</g>
<g >
<title>error_entry (1,533,773 samples, 0.03%)</title><rect x="564.5" y="485" width="0.4" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="567.49" y="495.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (752,902 samples, 0.02%)</title><rect x="681.9" y="421" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="684.88" y="431.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (777,603 samples, 0.02%)</title><rect x="644.9" y="405" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="647.90" y="415.5" ></text>
</g>
<g >
<title>exc_page_fault (636,619 samples, 0.01%)</title><rect x="214.2" y="693" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="217.22" y="703.5" ></text>
</g>
<g >
<title>handle_mm_fault (774,704 samples, 0.02%)</title><rect x="763.8" y="469" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="766.75" y="479.5" ></text>
</g>
<g >
<title>do_wp_page (760,047 samples, 0.02%)</title><rect x="759.3" y="325" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="762.29" y="335.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).pop (707,712 samples, 0.01%)</title><rect x="691.0" y="405" width="0.2" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="694.01" y="415.5" ></text>
</g>
<g >
<title>do_anonymous_page (4,569,348 samples, 0.09%)</title><rect x="709.9" y="373" width="1.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="712.94" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.MapCreate (507,873 samples, 0.01%)</title><rect x="1184.2" y="677" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="1187.22" y="687.5" ></text>
</g>
<g >
<title>vma_alloc_folio (759,478 samples, 0.02%)</title><rect x="706.2" y="373" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="709.17" y="383.5" ></text>
</g>
<g >
<title>irqentry_exit (2,884,989 samples, 0.06%)</title><rect x="600.0" y="437" width="0.7" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="602.96" y="447.5" ></text>
</g>
<g >
<title>count_memcg_events.constprop.0 (693,859 samples, 0.01%)</title><rect x="1181.1" y="517" width="0.2" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="1184.15" y="527.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (576,346 samples, 0.01%)</title><rect x="211.0" y="421" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="214.00" y="431.5" ></text>
</g>
<g >
<title>update_load_avg (4,896,053 samples, 0.10%)</title><rect x="461.1" y="389" width="1.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="464.14" y="399.5" ></text>
</g>
<g >
<title>fd_install (2,869,453 samples, 0.06%)</title><rect x="1028.1" y="501" width="0.7" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1031.08" y="511.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (3,058,755 samples, 0.06%)</title><rect x="975.8" y="389" width="0.8" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="978.81" y="399.5" ></text>
</g>
<g >
<title>folio_add_lru (695,442 samples, 0.01%)</title><rect x="624.1" y="325" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="627.07" y="335.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (790,329 samples, 0.02%)</title><rect x="412.0" y="437" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="414.96" y="447.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (771,633 samples, 0.02%)</title><rect x="658.9" y="453" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="661.88" y="463.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,844,439 samples, 0.08%)</title><rect x="801.8" y="501" width="1.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="804.85" y="511.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.write (2,254,757 samples, 0.05%)</title><rect x="644.5" y="421" width="0.6" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="647.53" y="431.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (598,285 samples, 0.01%)</title><rect x="954.6" y="421" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="957.57" y="431.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (6,581,304 samples, 0.14%)</title><rect x="623.9" y="453" width="1.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="626.89" y="463.5" ></text>
</g>
<g >
<title>runtime.tracebackPCs (762,772 samples, 0.02%)</title><rect x="773.6" y="373" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="776.56" y="383.5" ></text>
</g>
<g >
<title>runtime.(*mspan).ensureSwept (775,214 samples, 0.02%)</title><rect x="1175.0" y="533" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="1177.97" y="543.5" ></text>
</g>
<g >
<title>__x64_sys_read (80,988,155 samples, 1.68%)</title><rect x="816.9" y="517" width="19.8" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="819.90" y="527.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (1,466,708 samples, 0.03%)</title><rect x="1041.2" y="549" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1044.20" y="559.5" ></text>
</g>
<g >
<title>__rcu_read_lock (2,504,079 samples, 0.05%)</title><rect x="331.1" y="485" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="334.06" y="495.5" ></text>
</g>
<g >
<title>do_user_addr_fault (11,555,992 samples, 0.24%)</title><rect x="786.2" y="453" width="2.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="789.19" y="463.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8,268,890 samples, 0.17%)</title><rect x="14.9" y="661" width="2.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="17.93" y="671.5" ></text>
</g>
<g >
<title>array_map_free_timers (472,514 samples, 0.01%)</title><rect x="348.3" y="469" width="0.1" height="15.0" fill="rgb(246,192,45)" rx="2" ry="2" />
<text x="351.28" y="479.5" ></text>
</g>
<g >
<title>runtime.scanobject (777,311 samples, 0.02%)</title><rect x="682.8" y="357" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="685.82" y="367.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (6,771,021 samples, 0.14%)</title><rect x="434.1" y="373" width="1.6" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="437.06" y="383.5" ></text>
</g>
<g >
<title>handle_mm_fault (556,285 samples, 0.01%)</title><rect x="62.1" y="517" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="65.08" y="527.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast_pidle (2,039,174 samples, 0.04%)</title><rect x="250.9" y="565" width="0.5" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="253.87" y="575.5" ></text>
</g>
<g >
<title>exc_page_fault (4,464,587 samples, 0.09%)</title><rect x="694.6" y="469" width="1.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="697.65" y="479.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (528,819 samples, 0.01%)</title><rect x="1189.7" y="565" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1192.74" y="575.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (770,915 samples, 0.02%)</title><rect x="648.8" y="405" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="651.78" y="415.5" ></text>
</g>
<g >
<title>__fput (850,792 samples, 0.02%)</title><rect x="61.5" y="661" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="64.49" y="671.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (1,914,367 samples, 0.04%)</title><rect x="57.4" y="469" width="0.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="60.44" y="479.5" ></text>
</g>
<g >
<title>__sysvec_call_function_single (632,599 samples, 0.01%)</title><rect x="584.6" y="325" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="587.63" y="335.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (30,402,710 samples, 0.63%)</title><rect x="54.3" y="709" width="7.4" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="57.26" y="719.5" ></text>
</g>
<g >
<title>task_work_run (850,792 samples, 0.02%)</title><rect x="61.5" y="693" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="64.49" y="703.5" ></text>
</g>
<g >
<title>do_user_addr_fault (8,122,816 samples, 0.17%)</title><rect x="1082.1" y="517" width="2.0" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1085.11" y="527.5" ></text>
</g>
<g >
<title>runtime.schedinit (1,821,049 samples, 0.04%)</title><rect x="1189.5" y="757" width="0.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="1192.52" y="767.5" ></text>
</g>
<g >
<title>__kmem_cache_free (944,833 samples, 0.02%)</title><rect x="498.1" y="309" width="0.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="501.11" y="319.5" ></text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (18,314,842 samples, 0.38%)</title><rect x="831.7" y="421" width="4.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="834.68" y="431.5" ></text>
</g>
<g >
<title>radix_tree_delete_item (26,751,151 samples, 0.55%)</title><rect x="352.4" y="437" width="6.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="355.40" y="447.5" ></text>
</g>
<g >
<title>dequeue_task (3,623,949 samples, 0.08%)</title><rect x="208.2" y="453" width="0.9" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="211.18" y="463.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (594,979 samples, 0.01%)</title><rect x="1174.5" y="453" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1177.48" y="463.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (767,277 samples, 0.02%)</title><rect x="658.5" y="229" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="661.51" y="239.5" ></text>
</g>
<g >
<title>__collapse_huge_page_copy.isra.0 (752,041 samples, 0.02%)</title><rect x="1188.4" y="613" width="0.1" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="1191.35" y="623.5" ></text>
</g>
<g >
<title>ima_file_free (652,732 samples, 0.01%)</title><rect x="528.0" y="501" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="531.01" y="511.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (475,409 samples, 0.01%)</title><rect x="1188.2" y="485" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1191.15" y="495.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (1,411,649 samples, 0.03%)</title><rect x="877.7" y="533" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="880.75" y="543.5" ></text>
</g>
<g >
<title>irqentry_exit (1,550,586 samples, 0.03%)</title><rect x="772.4" y="453" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="775.42" y="463.5" ></text>
</g>
<g >
<title>do_syscall_64 (5,280,578 samples, 0.11%)</title><rect x="860.8" y="421" width="1.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="863.79" y="431.5" ></text>
</g>
<g >
<title>lockref_mark_dead (710,706 samples, 0.01%)</title><rect x="514.7" y="469" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="517.74" y="479.5" ></text>
</g>
<g >
<title>runtime.interhash (20,442,137 samples, 0.42%)</title><rect x="735.7" y="485" width="5.0" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="738.73" y="495.5" ></text>
</g>
<g >
<title>handle_mm_fault (757,205 samples, 0.02%)</title><rect x="1084.8" y="437" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1087.84" y="447.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (776,498 samples, 0.02%)</title><rect x="708.8" y="293" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="711.80" y="303.5" ></text>
</g>
<g >
<title>_raw_spin_lock (607,151 samples, 0.01%)</title><rect x="367.7" y="373" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="370.66" y="383.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (774,761 samples, 0.02%)</title><rect x="734.8" y="469" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="737.81" y="479.5" ></text>
</g>
<g >
<title>flush_tlb_func (475,409 samples, 0.01%)</title><rect x="1188.2" y="453" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1191.15" y="463.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (2,238,871 samples, 0.05%)</title><rect x="757.8" y="453" width="0.6" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="760.83" y="463.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (4,398,560 samples, 0.09%)</title><rect x="686.5" y="309" width="1.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="689.49" y="319.5" ></text>
</g>
<g >
<title>exc_page_fault (776,498 samples, 0.02%)</title><rect x="708.8" y="405" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="711.80" y="415.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,718,355 samples, 0.06%)</title><rect x="1186.4" y="645" width="0.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1189.43" y="655.5" ></text>
</g>
<g >
<title>__folio_alloc (2,107,894 samples, 0.04%)</title><rect x="866.6" y="485" width="0.5" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="869.63" y="495.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (797,472 samples, 0.02%)</title><rect x="62.0" y="565" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="65.02" y="575.5" ></text>
</g>
<g >
<title>perf_ctx_disable (491,568 samples, 0.01%)</title><rect x="211.0" y="405" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="214.02" y="415.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (580,480 samples, 0.01%)</title><rect x="19.0" y="613" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="21.99" y="623.5" ></text>
</g>
<g >
<title>exc_page_fault (6,131,352 samples, 0.13%)</title><rect x="709.7" y="453" width="1.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="712.74" y="463.5" ></text>
</g>
<g >
<title>wake_up_process (191,966,074 samples, 3.98%)</title><rect x="363.0" y="421" width="46.9" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="365.96" y="431.5" >wake..</text>
</g>
<g >
<title>hrtimer_interrupt (1,337,131 samples, 0.03%)</title><rect x="412.3" y="389" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="415.29" y="399.5" ></text>
</g>
<g >
<title>runtime.gcMarkTermination.func3 (1,818,125 samples, 0.04%)</title><rect x="61.8" y="693" width="0.5" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="64.84" y="703.5" ></text>
</g>
<g >
<title>vma_alloc_folio (1,495,537 samples, 0.03%)</title><rect x="633.2" y="309" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="636.17" y="319.5" ></text>
</g>
<g >
<title>vm_normal_page (496,190 samples, 0.01%)</title><rect x="61.0" y="485" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="63.98" y="495.5" ></text>
</g>
<g >
<title>do_user_addr_fault (487,287 samples, 0.01%)</title><rect x="1189.6" y="469" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1192.62" y="479.5" ></text>
</g>
<g >
<title>charge_memcg (425,030 samples, 0.01%)</title><rect x="1082.1" y="421" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1085.11" y="431.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (725,573 samples, 0.02%)</title><rect x="1084.3" y="469" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1087.28" y="479.5" ></text>
</g>
<g >
<title>runtime.(*mcache).prepareForSweep (883,938 samples, 0.02%)</title><rect x="62.8" y="629" width="0.2" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text x="65.79" y="639.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (21,922,775 samples, 0.45%)</title><rect x="606.0" y="469" width="5.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="609.01" y="479.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (766,531 samples, 0.02%)</title><rect x="798.1" y="325" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="801.07" y="335.5" ></text>
</g>
<g >
<title>sched_clock_cpu (6,523,231 samples, 0.14%)</title><rect x="396.8" y="341" width="1.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="399.80" y="351.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.(*FD).disown (65,881,403 samples, 1.37%)</title><rect x="222.9" y="677" width="16.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="225.90" y="687.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (1,401,444 samples, 0.03%)</title><rect x="196.4" y="613" width="0.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="199.40" y="623.5" ></text>
</g>
<g >
<title>__handle_mm_fault (774,704 samples, 0.02%)</title><rect x="763.8" y="453" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="766.75" y="463.5" ></text>
</g>
<g >
<title>apparmor_capable (6,560,530 samples, 0.14%)</title><rect x="1019.0" y="453" width="1.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1021.97" y="463.5" ></text>
</g>
<g >
<title>fmt.Fprintf (540,979 samples, 0.01%)</title><rect x="213.7" y="613" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="216.66" y="623.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (777,311 samples, 0.02%)</title><rect x="682.8" y="373" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="685.82" y="383.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (762,801 samples, 0.02%)</title><rect x="73.1" y="645" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="76.10" y="655.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (795,686 samples, 0.02%)</title><rect x="531.4" y="549" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="534.38" y="559.5" ></text>
</g>
<g >
<title>do_nanosleep (2,064,080 samples, 0.04%)</title><rect x="53.8" y="709" width="0.5" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="56.76" y="719.5" ></text>
</g>
<g >
<title>__update_load_avg_se (1,243,446 samples, 0.03%)</title><rect x="385.3" y="325" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="388.31" y="335.5" ></text>
</g>
<g >
<title>allocate_slab (35,776,555 samples, 0.74%)</title><rect x="993.7" y="389" width="8.8" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="996.75" y="399.5" ></text>
</g>
<g >
<title>update_curr (484,592 samples, 0.01%)</title><rect x="379.3" y="341" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="382.25" y="351.5" ></text>
</g>
<g >
<title>do_anonymous_page (774,704 samples, 0.02%)</title><rect x="763.8" y="421" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="766.75" y="431.5" ></text>
</g>
<g >
<title>runtime.mstart1 (9,123,382 samples, 0.19%)</title><rect x="14.8" y="709" width="2.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="17.77" y="719.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (809,578 samples, 0.02%)</title><rect x="362.6" y="421" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="365.62" y="431.5" ></text>
</g>
<g >
<title>runtime.newobject (3,090,992 samples, 0.06%)</title><rect x="711.4" y="485" width="0.8" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="714.43" y="495.5" ></text>
</g>
<g >
<title>d_instantiate (7,521,361 samples, 0.16%)</title><rect x="977.6" y="453" width="1.8" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="980.57" y="463.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (774,959 samples, 0.02%)</title><rect x="638.4" y="437" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="641.44" y="447.5" ></text>
</g>
<g >
<title>exc_page_fault (2,887,565 samples, 0.06%)</title><rect x="215.6" y="693" width="0.7" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="218.62" y="703.5" ></text>
</g>
<g >
<title>rmqueue_bulk (628,851 samples, 0.01%)</title><rect x="1083.6" y="341" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1086.58" y="351.5" ></text>
</g>
<g >
<title>tick_sched_handle (1,693,706 samples, 0.04%)</title><rect x="434.9" y="325" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="437.93" y="335.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (485,085 samples, 0.01%)</title><rect x="287.3" y="293" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="290.34" y="303.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (465,246 samples, 0.01%)</title><rect x="523.3" y="389" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="526.31" y="399.5" ></text>
</g>
<g >
<title>handle_pte_fault (6,723,901 samples, 0.14%)</title><rect x="699.4" y="389" width="1.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="702.45" y="399.5" ></text>
</g>
<g >
<title>lru_add_fn (761,318 samples, 0.02%)</title><rect x="1082.2" y="389" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="1085.21" y="399.5" ></text>
</g>
<g >
<title>runtime.(*pageAlloc).allocToCache (732,963 samples, 0.02%)</title><rect x="696.5" y="325" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="699.47" y="335.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (628,186 samples, 0.01%)</title><rect x="930.2" y="181" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="933.25" y="191.5" ></text>
</g>
<g >
<title>handle_pte_fault (776,651 samples, 0.02%)</title><rect x="1181.7" y="357" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1184.69" y="367.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (18,459,805 samples, 0.38%)</title><rect x="676.4" y="469" width="4.5" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="679.43" y="479.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Struct).TypeName (3,088,681 samples, 0.06%)</title><rect x="665.5" y="533" width="0.7" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="668.47" y="543.5" ></text>
</g>
<g >
<title>record_times (416,036 samples, 0.01%)</title><rect x="48.0" y="549" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="51.04" y="559.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (5,210,719 samples, 0.11%)</title><rect x="350.6" y="453" width="1.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="353.57" y="463.5" ></text>
</g>
<g >
<title>runtime.mstart.abi0 (9,123,382 samples, 0.19%)</title><rect x="14.8" y="741" width="2.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="17.77" y="751.5" ></text>
</g>
<g >
<title>runtime.gcStart (776,273 samples, 0.02%)</title><rect x="696.7" y="453" width="0.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="699.65" y="463.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (3,359,089 samples, 0.07%)</title><rect x="533.1" y="565" width="0.8" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="536.05" y="575.5" ></text>
</g>
<g >
<title>do_syscall_64 (747,206 samples, 0.02%)</title><rect x="571.4" y="261" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="574.44" y="271.5" ></text>
</g>
<g >
<title>do_wp_page (753,936 samples, 0.02%)</title><rect x="606.9" y="389" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="609.95" y="399.5" ></text>
</g>
<g >
<title>runtime.mallocgc (769,877 samples, 0.02%)</title><rect x="858.5" y="645" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="861.55" y="655.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (762,548 samples, 0.02%)</title><rect x="607.1" y="357" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="610.13" y="367.5" ></text>
</g>
<g >
<title>runtime.gcenable (598,093 samples, 0.01%)</title><rect x="214.4" y="741" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="217.38" y="751.5" ></text>
</g>
<g >
<title>runtime.pollFractionalWorkerExit (750,867 samples, 0.02%)</title><rect x="82.4" y="693" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="85.37" y="703.5" ></text>
</g>
<g >
<title>__kmalloc_node (773,997 samples, 0.02%)</title><rect x="993.7" y="373" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="996.75" y="383.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (630,563 samples, 0.01%)</title><rect x="504.2" y="421" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="507.24" y="431.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (774,761 samples, 0.02%)</title><rect x="734.8" y="453" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="737.81" y="463.5" ></text>
</g>
<g >
<title>__memcpy (1,334,473 samples, 0.03%)</title><rect x="976.9" y="437" width="0.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="979.93" y="447.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (732,818 samples, 0.02%)</title><rect x="708.1" y="453" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="711.06" y="463.5" ></text>
</g>
<g >
<title>__schedule (1,486,982 samples, 0.03%)</title><rect x="61.1" y="677" width="0.4" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="64.10" y="687.5" ></text>
</g>
<g >
<title>do_wp_page (13,086,442 samples, 0.27%)</title><rect x="584.8" y="357" width="3.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="587.78" y="367.5" ></text>
</g>
<g >
<title>enqueue_task (769,267 samples, 0.02%)</title><rect x="989.8" y="325" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="992.80" y="335.5" ></text>
</g>
<g >
<title>ttwu_do_activate (746,945 samples, 0.02%)</title><rect x="852.4" y="533" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="855.38" y="543.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (754,109 samples, 0.02%)</title><rect x="682.1" y="437" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="685.06" y="447.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (7,832,063 samples, 0.16%)</title><rect x="571.6" y="373" width="1.9" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="574.62" y="383.5" ></text>
</g>
<g >
<title>unmap_vmas (747,206 samples, 0.02%)</title><rect x="571.4" y="117" width="0.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="574.44" y="127.5" ></text>
</g>
<g >
<title>irqentry_exit (1,496,079 samples, 0.03%)</title><rect x="564.1" y="453" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="567.12" y="463.5" ></text>
</g>
<g >
<title>__flush_smp_call_function_queue (2,139,153 samples, 0.04%)</title><rect x="203.4" y="629" width="0.6" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="206.44" y="639.5" ></text>
</g>
<g >
<title>runtime.rt_sigaction.abi0 (559,743 samples, 0.01%)</title><rect x="1189.3" y="661" width="0.1" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="1192.27" y="671.5" ></text>
</g>
<g >
<title>alloc_pages (2,129,683 samples, 0.04%)</title><rect x="929.9" y="325" width="0.5" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="932.88" y="335.5" ></text>
</g>
<g >
<title>error_entry (497,603 samples, 0.01%)</title><rect x="1185.8" y="629" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1188.81" y="639.5" ></text>
</g>
<g >
<title>count_memcg_events.constprop.0 (758,116 samples, 0.02%)</title><rect x="623.9" y="405" width="0.2" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="626.89" y="415.5" ></text>
</g>
<g >
<title>vma_alloc_folio (688,211 samples, 0.01%)</title><rect x="188.2" y="517" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="191.19" y="527.5" ></text>
</g>
<g >
<title>__radix_tree_delete (4,587,754 samples, 0.10%)</title><rect x="352.8" y="421" width="1.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="355.84" y="431.5" ></text>
</g>
<g >
<title>update_load_avg (450,128 samples, 0.01%)</title><rect x="35.2" y="533" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="38.23" y="543.5" ></text>
</g>
<g >
<title>generic_smp_call_function_single_interrupt (736,676 samples, 0.02%)</title><rect x="205.5" y="421" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="208.54" y="431.5" ></text>
</g>
<g >
<title>ext4_end_bio (485,085 samples, 0.01%)</title><rect x="287.3" y="357" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="290.34" y="367.5" ></text>
</g>
<g >
<title>get_page_from_freelist (27,038,440 samples, 0.56%)</title><rect x="994.3" y="341" width="6.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="997.32" y="351.5" ></text>
</g>
<g >
<title>set_next_entity (10,550,659 samples, 0.22%)</title><rect x="459.8" y="405" width="2.5" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="462.76" y="415.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (753,859 samples, 0.02%)</title><rect x="53.6" y="629" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="56.57" y="639.5" ></text>
</g>
<g >
<title>futex_wait (1,008,652 samples, 0.02%)</title><rect x="53.5" y="709" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="56.51" y="719.5" ></text>
</g>
<g >
<title>runtime.wirep (776,909 samples, 0.02%)</title><rect x="875.5" y="581" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="878.49" y="591.5" ></text>
</g>
<g >
<title>get_page_from_freelist (2,129,683 samples, 0.04%)</title><rect x="929.9" y="293" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="932.88" y="303.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (922,345 samples, 0.02%)</title><rect x="1189.5" y="581" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1192.52" y="591.5" ></text>
</g>
<g >
<title>rmqueue (773,268 samples, 0.02%)</title><rect x="609.0" y="293" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="612.01" y="303.5" ></text>
</g>
<g >
<title>runtime.interhash (778,041 samples, 0.02%)</title><rect x="773.0" y="517" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="775.99" y="527.5" ></text>
</g>
<g >
<title>runtime.heapBits.next (5,950,441 samples, 0.12%)</title><rect x="188.5" y="677" width="1.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="191.54" y="687.5" ></text>
</g>
<g >
<title>do_anonymous_page (688,211 samples, 0.01%)</title><rect x="188.2" y="533" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="191.19" y="543.5" ></text>
</g>
<g >
<title>__pte_offset_map (743,480 samples, 0.02%)</title><rect x="634.1" y="325" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="637.08" y="335.5" ></text>
</g>
<g >
<title>do_syscall_64 (783,335 samples, 0.02%)</title><rect x="253.8" y="613" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="256.84" y="623.5" ></text>
</g>
<g >
<title>__alloc_pages (12,844,776 samples, 0.27%)</title><rect x="960.2" y="341" width="3.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="963.16" y="351.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (6,876,103 samples, 0.14%)</title><rect x="35.6" y="565" width="1.7" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="38.63" y="575.5" ></text>
</g>
<g >
<title>update_cfs_group (1,005,899 samples, 0.02%)</title><rect x="20.9" y="453" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="23.89" y="463.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (760,697 samples, 0.02%)</title><rect x="773.4" y="421" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="776.37" y="431.5" ></text>
</g>
<g >
<title>do_anonymous_page (2,952,976 samples, 0.06%)</title><rect x="632.8" y="325" width="0.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="635.81" y="335.5" ></text>
</g>
<g >
<title>__queue_work (204,047,096 samples, 4.23%)</title><rect x="360.6" y="437" width="49.9" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="363.59" y="447.5" >__que..</text>
</g>
<g >
<title>error_entry (3,752,618 samples, 0.08%)</title><rect x="600.7" y="469" width="0.9" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="603.67" y="479.5" ></text>
</g>
<g >
<title>rcu_do_batch (774,959 samples, 0.02%)</title><rect x="638.4" y="325" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="641.44" y="335.5" ></text>
</g>
<g >
<title>clear_page_erms (2,305,008 samples, 0.05%)</title><rect x="654.3" y="293" width="0.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="657.34" y="303.5" ></text>
</g>
<g >
<title>__hrtimer_start_range_ns (2,674,542 samples, 0.06%)</title><rect x="29.8" y="581" width="0.6" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="32.77" y="591.5" ></text>
</g>
<g >
<title>runtime.makemap (11,444,702 samples, 0.24%)</title><rect x="571.4" y="485" width="2.8" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="574.44" y="495.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes (11,994,587 samples, 0.25%)</title><rect x="602.3" y="485" width="3.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="605.33" y="495.5" ></text>
</g>
<g >
<title>rcu_core (774,959 samples, 0.02%)</title><rect x="638.4" y="341" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="641.44" y="351.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (2,064,080 samples, 0.04%)</title><rect x="53.8" y="725" width="0.5" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="56.76" y="735.5" ></text>
</g>
<g >
<title>sync_regs (2,211,277 samples, 0.05%)</title><rect x="194.9" y="677" width="0.6" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="197.93" y="687.5" ></text>
</g>
<g >
<title>shuffle_freelist (1,540,107 samples, 0.03%)</title><rect x="1002.1" y="373" width="0.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="1005.12" y="383.5" ></text>
</g>
<g >
<title>runtime.addspecial (372,469,826 samples, 7.72%)</title><rect x="1085.2" y="549" width="91.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1088.20" y="559.5" >runtime.ad..</text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (80,988,155 samples, 1.68%)</title><rect x="816.9" y="565" width="19.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="819.90" y="575.5" ></text>
</g>
<g >
<title>exc_page_fault (20,255,014 samples, 0.42%)</title><rect x="583.9" y="437" width="4.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="586.88" y="447.5" ></text>
</g>
<g >
<title>schedule (566,751 samples, 0.01%)</title><rect x="253.7" y="517" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="256.70" y="527.5" ></text>
</g>
<g >
<title>errors.Is (778,303 samples, 0.02%)</title><rect x="802.8" y="693" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="805.79" y="703.5" ></text>
</g>
<g >
<title>flush_tlb_func (737,559 samples, 0.02%)</title><rect x="700.6" y="261" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="703.55" y="271.5" ></text>
</g>
<g >
<title>runtime.greyobject (2,257,914 samples, 0.05%)</title><rect x="650.3" y="325" width="0.5" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="653.25" y="335.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (981,773 samples, 0.02%)</title><rect x="1188.0" y="661" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1191.03" y="671.5" ></text>
</g>
<g >
<title>x2apic_send_IPI (748,782 samples, 0.02%)</title><rect x="205.4" y="453" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="208.35" y="463.5" ></text>
</g>
<g >
<title>filemap_map_pages (624,343 samples, 0.01%)</title><rect x="213.4" y="597" width="0.1" height="15.0" fill="rgb(229,112,27)" rx="2" ry="2" />
<text x="216.36" y="607.5" ></text>
</g>
<g >
<title>kmalloc_slab (688,504 samples, 0.01%)</title><rect x="1016.9" y="453" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1019.94" y="463.5" ></text>
</g>
<g >
<title>handle_mm_fault (688,211 samples, 0.01%)</title><rect x="188.2" y="581" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="191.19" y="591.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (1,496,079 samples, 0.03%)</title><rect x="564.1" y="437" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="567.12" y="447.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (746,945 samples, 0.02%)</title><rect x="852.4" y="597" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="855.38" y="607.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (750,505 samples, 0.02%)</title><rect x="131.4" y="645" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="134.42" y="655.5" ></text>
</g>
<g >
<title>runtime.mapaccess1 (775,665 samples, 0.02%)</title><rect x="759.5" y="517" width="0.2" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="762.48" y="527.5" ></text>
</g>
<g >
<title>vfs_read (6,202,815 samples, 0.13%)</title><rect x="656.4" y="309" width="1.5" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="659.42" y="319.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (671,910 samples, 0.01%)</title><rect x="622.1" y="293" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="625.12" y="303.5" ></text>
</g>
<g >
<title>do_syscall_64 (700,840 samples, 0.01%)</title><rect x="1188.7" y="661" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1191.75" y="671.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (5,942,025 samples, 0.12%)</title><rect x="640.7" y="357" width="1.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="643.66" y="367.5" ></text>
</g>
<g >
<title>wake_up_process (731,136 samples, 0.02%)</title><rect x="1181.3" y="117" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="1184.32" y="127.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (1,832,701 samples, 0.04%)</title><rect x="410.5" y="437" width="0.5" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="413.51" y="447.5" ></text>
</g>
<g >
<title>futex_wake (8,761,906 samples, 0.18%)</title><rect x="19.9" y="549" width="2.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="22.89" y="559.5" ></text>
</g>
<g >
<title>pick_next_task_fair (476,818 samples, 0.01%)</title><rect x="16.3" y="533" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="19.34" y="543.5" ></text>
</g>
<g >
<title>switch_fpu_return (1,473,979 samples, 0.03%)</title><rect x="50.7" y="613" width="0.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="53.73" y="623.5" ></text>
</g>
<g >
<title>do_anonymous_page (761,900 samples, 0.02%)</title><rect x="1181.0" y="485" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1183.96" y="495.5" ></text>
</g>
<g >
<title>__alloc_pages (2,271,907 samples, 0.05%)</title><rect x="760.6" y="357" width="0.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="763.58" y="367.5" ></text>
</g>
<g >
<title>runtime.growslice (776,692 samples, 0.02%)</title><rect x="842.1" y="677" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="845.09" y="687.5" ></text>
</g>
<g >
<title>handle_pte_fault (528,819 samples, 0.01%)</title><rect x="1189.7" y="629" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1192.74" y="639.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap.func3 (777,163 samples, 0.02%)</title><rect x="854.2" y="661" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="857.16" y="671.5" ></text>
</g>
<g >
<title>__do_softirq (562,113 samples, 0.01%)</title><rect x="412.2" y="373" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="415.16" y="383.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (740,337 samples, 0.02%)</title><rect x="1041.4" y="517" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1044.37" y="527.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_lru (664,495 samples, 0.01%)</title><rect x="53.3" y="613" width="0.2" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="56.35" y="623.5" ></text>
</g>
<g >
<title>__schedule (1,401,444 samples, 0.03%)</title><rect x="196.4" y="485" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="199.40" y="495.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (698,615 samples, 0.01%)</title><rect x="53.9" y="645" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="56.95" y="655.5" ></text>
</g>
<g >
<title>__sys_bpf (3,844,439 samples, 0.08%)</title><rect x="801.8" y="453" width="1.0" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="804.85" y="463.5" ></text>
</g>
<g >
<title>rcu_core_si (776,627 samples, 0.02%)</title><rect x="620.5" y="373" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="623.45" y="383.5" ></text>
</g>
<g >
<title>xas_start (3,761,212 samples, 0.08%)</title><rect x="974.5" y="357" width="1.0" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="977.55" y="367.5" ></text>
</g>
<g >
<title>irqentry_exit (566,751 samples, 0.01%)</title><rect x="253.7" y="581" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="256.70" y="591.5" ></text>
</g>
<g >
<title>new_slab (16,510,448 samples, 0.34%)</title><rect x="960.0" y="389" width="4.0" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="962.98" y="399.5" ></text>
</g>
<g >
<title>error_entry (2,946,046 samples, 0.06%)</title><rect x="132.0" y="677" width="0.7" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="134.96" y="687.5" ></text>
</g>
<g >
<title>handle_pte_fault (743,480 samples, 0.02%)</title><rect x="634.1" y="357" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="637.08" y="367.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (530,579 samples, 0.01%)</title><rect x="37.1" y="501" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="40.14" y="511.5" ></text>
</g>
<g >
<title>tick_sched_handle (598,285 samples, 0.01%)</title><rect x="954.6" y="325" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="957.57" y="335.5" ></text>
</g>
<g >
<title>sched_clock (1,011,182 samples, 0.02%)</title><rect x="48.2" y="533" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="51.17" y="543.5" ></text>
</g>
<g >
<title>__vm_area_free (774,959 samples, 0.02%)</title><rect x="638.4" y="293" width="0.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="641.44" y="303.5" ></text>
</g>
<g >
<title>runtime.mallocgc (754,109 samples, 0.02%)</title><rect x="682.1" y="469" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="685.06" y="479.5" ></text>
</g>
<g >
<title>runtime.(*unwinder).next (762,772 samples, 0.02%)</title><rect x="773.6" y="357" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="776.56" y="367.5" ></text>
</g>
<g >
<title>runtime.findRunnable (29,260,108 samples, 0.61%)</title><rect x="206.0" y="645" width="7.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="209.01" y="655.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (4,501,768 samples, 0.09%)</title><rect x="525.6" y="437" width="1.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="528.56" y="447.5" ></text>
</g>
<g >
<title>runtime.casgstatus (496,097 samples, 0.01%)</title><rect x="1187.9" y="661" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="1190.91" y="671.5" ></text>
</g>
<g >
<title>__fsnotify_parent (775,236 samples, 0.02%)</title><rect x="657.7" y="245" width="0.2" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="660.75" y="255.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (1,457,236 samples, 0.03%)</title><rect x="641.8" y="309" width="0.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="644.76" y="319.5" ></text>
</g>
<g >
<title>__sys_bpf (578,414,579 samples, 11.99%)</title><rect x="898.7" y="533" width="141.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="901.65" y="543.5" >__sys_bpf</text>
</g>
<g >
<title>setup_object (775,207 samples, 0.02%)</title><rect x="931.5" y="309" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="934.51" y="319.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (771,887 samples, 0.02%)</title><rect x="645.6" y="421" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="648.65" y="431.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (739,021 samples, 0.02%)</title><rect x="62.5" y="485" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="65.49" y="495.5" ></text>
</g>
<g >
<title>mtree_range_walk (757,115 samples, 0.02%)</title><rect x="782.6" y="421" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="785.62" y="431.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (758,968 samples, 0.02%)</title><rect x="830.6" y="437" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="833.59" y="447.5" ></text>
</g>
<g >
<title>enqueue_task (438,758 samples, 0.01%)</title><rect x="228.5" y="437" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="231.45" y="447.5" ></text>
</g>
<g >
<title>runtime.mcall (29,977,720 samples, 0.62%)</title><rect x="205.9" y="693" width="7.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="208.90" y="703.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (773,588 samples, 0.02%)</title><rect x="433.3" y="421" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="436.34" y="431.5" ></text>
</g>
<g >
<title>__folio_throttle_swaprate (487,287 samples, 0.01%)</title><rect x="1189.6" y="373" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1192.62" y="383.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (774,704 samples, 0.02%)</title><rect x="763.8" y="389" width="0.1" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="766.75" y="399.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (754,109 samples, 0.02%)</title><rect x="682.1" y="405" width="0.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="685.06" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*CollectionSpec).LoadAndAssign (994,763,400 samples, 20.62%)</title><rect x="559.4" y="661" width="243.4" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="562.44" y="671.5" >github.com/cilium/ebpf.(*Collect..</text>
</g>
<g >
<title>ttwu_do_activate (769,267 samples, 0.02%)</title><rect x="989.8" y="341" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="992.80" y="351.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (766,707 samples, 0.02%)</title><rect x="658.7" y="421" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="661.69" y="431.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (774,761 samples, 0.02%)</title><rect x="734.8" y="421" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="737.81" y="431.5" ></text>
</g>
<g >
<title>ptep_clear_flush (1,459,954 samples, 0.03%)</title><rect x="609.8" y="341" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="612.76" y="351.5" ></text>
</g>
<g >
<title>mas_walk (734,486 samples, 0.02%)</title><rect x="704.4" y="389" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="707.35" y="399.5" ></text>
</g>
<g >
<title>select_idle_sibling (5,407,975 samples, 0.11%)</title><rect x="373.6" y="373" width="1.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="376.61" y="383.5" ></text>
</g>
<g >
<title>runtime.mapaccess2 (3,298,871 samples, 0.07%)</title><rect x="237.6" y="645" width="0.8" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="240.55" y="655.5" ></text>
</g>
<g >
<title>select_task_rq_fair (15,103,319 samples, 0.31%)</title><rect x="371.2" y="389" width="3.7" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="374.24" y="399.5" ></text>
</g>
<g >
<title>do_user_addr_fault (670,398 samples, 0.01%)</title><rect x="573.9" y="357" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="576.89" y="367.5" ></text>
</g>
<g >
<title>memcg_alloc_slab_cgroups (2,240,778 samples, 0.05%)</title><rect x="940.3" y="357" width="0.6" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="943.33" y="367.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (773,006 samples, 0.02%)</title><rect x="772.0" y="357" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="775.05" y="367.5" ></text>
</g>
<g >
<title>exc_page_fault (6,581,304 samples, 0.14%)</title><rect x="623.9" y="437" width="1.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="626.89" y="447.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (1,459,954 samples, 0.03%)</title><rect x="609.8" y="309" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="612.76" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMap (55,311,209 samples, 1.15%)</title><rect x="854.3" y="661" width="13.6" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="857.35" y="671.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,279,724 samples, 0.03%)</title><rect x="11.5" y="693" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="14.48" y="703.5" ></text>
</g>
<g >
<title>runtime.reentersyscall (11,694,689 samples, 0.24%)</title><rect x="243.5" y="613" width="2.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="246.48" y="623.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (767,189 samples, 0.02%)</title><rect x="950.7" y="341" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="953.70" y="351.5" ></text>
</g>
<g >
<title>do_exit (27,965,230 samples, 0.58%)</title><rect x="54.3" y="645" width="6.8" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="57.26" y="655.5" ></text>
</g>
<g >
<title>down_read_trylock (777,138 samples, 0.02%)</title><rect x="763.6" y="469" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="766.56" y="479.5" ></text>
</g>
<g >
<title>rmqueue (760,697 samples, 0.02%)</title><rect x="773.4" y="229" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="776.37" y="239.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.newEssentialName (13,120,933 samples, 0.27%)</title><rect x="564.9" y="485" width="3.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="567.86" y="495.5" ></text>
</g>
<g >
<title>mutex_lock (511,439 samples, 0.01%)</title><rect x="213.2" y="597" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="216.23" y="607.5" ></text>
</g>
<g >
<title>__schedule (1,839,493 samples, 0.04%)</title><rect x="53.8" y="677" width="0.4" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="56.76" y="687.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (3,879,248 samples, 0.08%)</title><rect x="828.7" y="389" width="1.0" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="831.70" y="399.5" ></text>
</g>
<g >
<title>exc_page_fault (9,675,817 samples, 0.20%)</title><rect x="855.4" y="629" width="2.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="858.44" y="639.5" ></text>
</g>
<g >
<title>mtree_range_walk (771,327 samples, 0.02%)</title><rect x="599.8" y="389" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="602.77" y="399.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (780,441 samples, 0.02%)</title><rect x="1186.4" y="581" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1189.43" y="591.5" ></text>
</g>
<g >
<title>allocate_slab (29,700,993 samples, 0.62%)</title><rect x="935.3" y="373" width="7.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="938.28" y="383.5" ></text>
</g>
<g >
<title>psi_task_change (1,130,871 samples, 0.02%)</title><rect x="399.4" y="373" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="402.44" y="383.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (421,111 samples, 0.01%)</title><rect x="412.3" y="357" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="415.29" y="367.5" ></text>
</g>
<g >
<title>get_page_from_freelist (2,271,907 samples, 0.05%)</title><rect x="760.6" y="341" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="763.58" y="351.5" ></text>
</g>
<g >
<title>__slab_free (10,010,174 samples, 0.21%)</title><rect x="524.2" y="453" width="2.5" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="527.21" y="463.5" ></text>
</g>
<g >
<title>runtime.(*gcWork).tryGet (1,516,767 samples, 0.03%)</title><rect x="1181.7" y="485" width="0.4" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="1184.69" y="495.5" ></text>
</g>
<g >
<title>runtime.profilealloc (764,227 samples, 0.02%)</title><rect x="574.1" y="421" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="577.05" y="431.5" ></text>
</g>
<g >
<title>do_anonymous_page (766,660 samples, 0.02%)</title><rect x="782.2" y="405" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="785.24" y="415.5" ></text>
</g>
<g >
<title>do_anonymous_page (2,190,816 samples, 0.05%)</title><rect x="624.1" y="357" width="0.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="627.07" y="367.5" ></text>
</g>
<g >
<title>runtime.stopm (25,011,412 samples, 0.52%)</title><rect x="207.0" y="629" width="6.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="210.04" y="639.5" ></text>
</g>
<g >
<title>__irqentry_text_end (1,528,125 samples, 0.03%)</title><rect x="785.6" y="485" width="0.4" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="788.63" y="495.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint32 (2,311,964 samples, 0.05%)</title><rect x="638.1" y="453" width="0.5" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="641.06" y="463.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.BPF (3,844,439 samples, 0.08%)</title><rect x="801.8" y="565" width="1.0" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="804.85" y="575.5" ></text>
</g>
<g >
<title>dentry_free (57,816,483 samples, 1.20%)</title><rect x="490.3" y="453" width="14.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="493.29" y="463.5" ></text>
</g>
<g >
<title>alloc_pages (1,404,635 samples, 0.03%)</title><rect x="1035.4" y="373" width="0.3" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="1038.40" y="383.5" ></text>
</g>
<g >
<title>runtime.(*mheap).grow (922,345 samples, 0.02%)</title><rect x="1189.5" y="549" width="0.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="1192.52" y="559.5" ></text>
</g>
<g >
<title>runtime.gopark (29,977,720 samples, 0.62%)</title><rect x="205.9" y="709" width="7.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="208.90" y="719.5" ></text>
</g>
<g >
<title>runtime.callers (773,766 samples, 0.02%)</title><rect x="771.9" y="453" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="774.86" y="463.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.write (1,522,625 samples, 0.03%)</title><rect x="773.2" y="437" width="0.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="776.18" y="447.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (2,962,258 samples, 0.06%)</title><rect x="585.9" y="309" width="0.7" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="588.89" y="319.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (5,981,234 samples, 0.12%)</title><rect x="860.6" y="517" width="1.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="863.62" y="527.5" ></text>
</g>
<g >
<title>native_flush_tlb_one_user (626,030 samples, 0.01%)</title><rect x="587.0" y="229" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="589.99" y="239.5" ></text>
</g>
<g >
<title>exc_page_fault (759,478 samples, 0.02%)</title><rect x="706.2" y="469" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="709.17" y="479.5" ></text>
</g>
<g >
<title>encoding/binary.Read (150,025,111 samples, 3.11%)</title><rect x="803.5" y="677" width="36.7" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="806.55" y="687.5" >enc..</text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (783,443 samples, 0.02%)</title><rect x="18.5" y="677" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="21.54" y="687.5" ></text>
</g>
<g >
<title>native_flush_tlb_one_user (1,534,177 samples, 0.03%)</title><rect x="598.2" y="293" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="601.16" y="303.5" ></text>
</g>
<g >
<title>__alloc_pages (1,495,374 samples, 0.03%)</title><rect x="624.2" y="309" width="0.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="627.24" y="319.5" ></text>
</g>
<g >
<title>__handle_mm_fault (9,634,855 samples, 0.20%)</title><rect x="685.4" y="421" width="2.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="688.40" y="431.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (453,344 samples, 0.01%)</title><rect x="14.4" y="565" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="17.42" y="575.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (2,276,318 samples, 0.05%)</title><rect x="570.3" y="453" width="0.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="573.32" y="463.5" ></text>
</g>
<g >
<title>psi_task_change (628,186 samples, 0.01%)</title><rect x="930.2" y="101" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="933.25" y="111.5" ></text>
</g>
<g >
<title>runtime.newobject (922,345 samples, 0.02%)</title><rect x="1189.5" y="693" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1192.52" y="703.5" ></text>
</g>
<g >
<title>__x64_sys_nanosleep (1,598,926 samples, 0.03%)</title><rect x="12.0" y="629" width="0.4" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="14.99" y="639.5" ></text>
</g>
<g >
<title>do_madvise (5,280,578 samples, 0.11%)</title><rect x="860.8" y="389" width="1.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="863.79" y="399.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,500,382 samples, 0.03%)</title><rect x="866.8" y="453" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="869.78" y="463.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (772,532 samples, 0.02%)</title><rect x="747.8" y="293" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="750.80" y="303.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (707,712 samples, 0.01%)</title><rect x="691.0" y="437" width="0.2" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="694.01" y="447.5" ></text>
</g>
<g >
<title>sched_clock_cpu (1,392,616 samples, 0.03%)</title><rect x="487.3" y="437" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="490.26" y="447.5" ></text>
</g>
<g >
<title>map_create (1,475,152 samples, 0.03%)</title><rect x="1040.5" y="533" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1043.52" y="543.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,401,444 samples, 0.03%)</title><rect x="196.4" y="581" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="199.40" y="591.5" ></text>
</g>
<g >
<title>exc_page_fault (1,551,842 samples, 0.03%)</title><rect x="763.6" y="501" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="766.56" y="511.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (1,337,131 samples, 0.03%)</title><rect x="412.3" y="405" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="415.29" y="415.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,263,784 samples, 0.03%)</title><rect x="318.9" y="533" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="321.92" y="543.5" ></text>
</g>
<g >
<title>update_sg_lb_stats (1,702,590 samples, 0.04%)</title><rect x="42.9" y="469" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="45.90" y="479.5" ></text>
</g>
<g >
<title>irqentry_exit (730,831 samples, 0.02%)</title><rect x="704.5" y="421" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="707.53" y="431.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (11,588,758 samples, 0.24%)</title><rect x="22.1" y="581" width="2.8" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="25.11" y="591.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (651,143 samples, 0.01%)</title><rect x="877.9" y="453" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="880.93" y="463.5" ></text>
</g>
<g >
<title>runtime.wirep (899,743 samples, 0.02%)</title><rect x="251.4" y="597" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="254.37" y="607.5" ></text>
</g>
<g >
<title>handle_pte_fault (770,701 samples, 0.02%)</title><rect x="630.6" y="341" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="633.65" y="351.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.LoadKernelSpec (562,087,849 samples, 11.65%)</title><rect x="664.2" y="565" width="137.5" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="667.16" y="575.5" >github.com/cilium..</text>
</g>
<g >
<title>handle_mm_fault (3,519,860 samples, 0.07%)</title><rect x="204.9" y="629" width="0.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="207.86" y="639.5" ></text>
</g>
<g >
<title>map_create (664,495 samples, 0.01%)</title><rect x="53.3" y="709" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="56.35" y="719.5" ></text>
</g>
<g >
<title>runtime.interhash (4,500,684 samples, 0.09%)</title><rect x="717.9" y="501" width="1.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="720.86" y="511.5" ></text>
</g>
<g >
<title>__handle_mm_fault (4,321,822 samples, 0.09%)</title><rect x="624.1" y="389" width="1.0" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="627.07" y="399.5" ></text>
</g>
<g >
<title>runtime.findObject (8,233,640 samples, 0.17%)</title><rect x="67.6" y="693" width="2.0" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="70.60" y="703.5" ></text>
</g>
<g >
<title>irq_exit_rcu (776,627 samples, 0.02%)</title><rect x="620.5" y="405" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="623.45" y="415.5" ></text>
</g>
<g >
<title>__x64_sys_madvise (5,280,578 samples, 0.11%)</title><rect x="860.8" y="405" width="1.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="863.79" y="415.5" ></text>
</g>
<g >
<title>runtime.mapassign (69,031,615 samples, 1.43%)</title><rect x="741.7" y="501" width="16.9" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="744.67" y="511.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (1,607,807 samples, 0.03%)</title><rect x="404.4" y="309" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="407.36" y="319.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (3,060,131 samples, 0.06%)</title><rect x="1057.6" y="533" width="0.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1060.64" y="543.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (777,311 samples, 0.02%)</title><rect x="682.8" y="405" width="0.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="685.82" y="415.5" ></text>
</g>
<g >
<title>irqentry_exit (772,321 samples, 0.02%)</title><rect x="1084.6" y="501" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1087.65" y="511.5" ></text>
</g>
<g >
<title>x86_pmu_disable (437,675 samples, 0.01%)</title><rect x="36.1" y="517" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="39.06" y="527.5" ></text>
</g>
<g >
<title>exc_page_fault (21,158,091 samples, 0.44%)</title><rect x="606.2" y="453" width="5.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="609.20" y="463.5" ></text>
</g>
<g >
<title>xas_descend (706,805 samples, 0.01%)</title><rect x="975.5" y="373" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="978.47" y="383.5" ></text>
</g>
<g >
<title>runtime.deductSweepCredit (700,612 samples, 0.01%)</title><rect x="862.1" y="565" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="865.08" y="575.5" ></text>
</g>
<g >
<title>runtime.newm1 (840,021 samples, 0.02%)</title><rect x="12.4" y="725" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="15.38" y="735.5" ></text>
</g>
<g >
<title>get_page_from_freelist (772,354 samples, 0.02%)</title><rect x="652.6" y="277" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="655.64" y="287.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (80,988,155 samples, 1.68%)</title><rect x="816.9" y="549" width="19.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="819.90" y="559.5" ></text>
</g>
<g >
<title>alloc_file (156,700,910 samples, 3.25%)</title><rect x="916.5" y="453" width="38.4" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="919.55" y="463.5" >all..</text>
</g>
<g >
<title>hrtimer_interrupt (771,817 samples, 0.02%)</title><rect x="1040.7" y="469" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1043.69" y="479.5" ></text>
</g>
<g >
<title>pick_next_task_fair (467,302 samples, 0.01%)</title><rect x="465.0" y="437" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="468.01" y="447.5" ></text>
</g>
<g >
<title>__sysvec_call_function_single (706,109 samples, 0.01%)</title><rect x="131.8" y="645" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="134.79" y="655.5" ></text>
</g>
<g >
<title>___slab_alloc (30,458,258 samples, 0.63%)</title><rect x="935.1" y="405" width="7.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="938.10" y="415.5" ></text>
</g>
<g >
<title>get_signal (27,965,230 samples, 0.58%)</title><rect x="54.3" y="677" width="6.8" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="57.26" y="687.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries.func1 (1,400,512,791 samples, 29.03%)</title><rect x="216.6" y="709" width="342.6" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="219.64" y="719.5" >github.com/EMnify/giraffe/pkg/ebpf/mapgauge.Be..</text>
</g>
<g >
<title>runtime.publicationBarrier (735,748 samples, 0.02%)</title><rect x="867.3" y="629" width="0.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="870.33" y="639.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,551,842 samples, 0.03%)</title><rect x="763.6" y="517" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="766.56" y="527.5" ></text>
</g>
<g >
<title>syscall.Syscall.abi0 (773,372 samples, 0.02%)</title><rect x="801.7" y="453" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="804.66" y="463.5" ></text>
</g>
<g >
<title>__update_blocked_fair (3,861,625 samples, 0.08%)</title><rect x="43.7" y="501" width="1.0" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="46.71" y="511.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (771,505 samples, 0.02%)</title><rect x="841.6" y="485" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="844.55" y="495.5" ></text>
</g>
<g >
<title>runtime.mstart1 (2,238,389 samples, 0.05%)</title><rect x="11.8" y="709" width="0.6" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="14.83" y="719.5" ></text>
</g>
<g >
<title>copy_mc_enhanced_fast_string (756,699 samples, 0.02%)</title><rect x="861.2" y="277" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="864.16" y="287.5" ></text>
</g>
<g >
<title>handle_pte_fault (14,491,358 samples, 0.30%)</title><rect x="584.4" y="373" width="3.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="587.44" y="383.5" ></text>
</g>
<g >
<title>runtime.newarray (11,444,702 samples, 0.24%)</title><rect x="571.4" y="453" width="2.8" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="574.44" y="463.5" ></text>
</g>
<g >
<title>runtime.mstart1 (144,981,682 samples, 3.01%)</title><rect x="17.2" y="725" width="35.4" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="20.18" y="735.5" >run..</text>
</g>
<g >
<title>mod_memcg_lruvec_state (2,382,202 samples, 0.05%)</title><rect x="949.2" y="373" width="0.6" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="952.21" y="383.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (754,109 samples, 0.02%)</title><rect x="682.1" y="453" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="685.06" y="463.5" ></text>
</g>
<g >
<title>clear_page_erms (2,156,716 samples, 0.04%)</title><rect x="1082.7" y="373" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1085.69" y="383.5" ></text>
</g>
<g >
<title>exc_page_fault (3,673,406 samples, 0.08%)</title><rect x="563.6" y="469" width="0.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="566.59" y="479.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,499,772 samples, 0.07%)</title><rect x="1186.4" y="693" width="0.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1189.43" y="703.5" ></text>
</g>
<g >
<title>x86_pmu_enable (20,520,126 samples, 0.43%)</title><rect x="428.2" y="389" width="5.1" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="431.25" y="399.5" ></text>
</g>
<g >
<title>_raw_spin_lock (686,022 samples, 0.01%)</title><rect x="597.2" y="357" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="600.24" y="367.5" ></text>
</g>
<g >
<title>clear_page_erms (1,937,914 samples, 0.04%)</title><rect x="1186.6" y="517" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1189.62" y="527.5" ></text>
</g>
<g >
<title>handle_pte_fault (760,697 samples, 0.02%)</title><rect x="773.4" y="341" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="776.37" y="351.5" ></text>
</g>
<g >
<title>do_syscall_64 (435,058 samples, 0.01%)</title><rect x="1189.5" y="485" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1192.52" y="495.5" ></text>
</g>
<g >
<title>handle_pte_fault (636,619 samples, 0.01%)</title><rect x="214.2" y="629" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="217.22" y="639.5" ></text>
</g>
<g >
<title>shuffle_freelist (2,137,228 samples, 0.04%)</title><rect x="963.5" y="357" width="0.5" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="966.49" y="367.5" ></text>
</g>
<g >
<title>schedule (665,534 samples, 0.01%)</title><rect x="53.2" y="677" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="56.18" y="687.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (556,285 samples, 0.01%)</title><rect x="62.1" y="453" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="65.08" y="463.5" ></text>
</g>
<g >
<title>tlb_is_not_lazy (770,973 samples, 0.02%)</title><rect x="609.9" y="261" width="0.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="612.93" y="271.5" ></text>
</g>
<g >
<title>cap_capable (732,929 samples, 0.02%)</title><rect x="1020.6" y="453" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1023.58" y="463.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast_reacquired (797,046 samples, 0.02%)</title><rect x="250.6" y="597" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="253.64" y="607.5" ></text>
</g>
<g >
<title>capable (12,621,824 samples, 0.26%)</title><rect x="1017.7" y="485" width="3.1" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="1020.67" y="495.5" ></text>
</g>
<g >
<title>irq_exit_rcu (774,959 samples, 0.02%)</title><rect x="638.4" y="405" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="641.44" y="415.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (705,104 samples, 0.01%)</title><rect x="293.8" y="517" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="296.84" y="527.5" ></text>
</g>
<g >
<title>new_slab (35,776,555 samples, 0.74%)</title><rect x="993.7" y="405" width="8.8" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="996.75" y="415.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (399,157,956 samples, 8.28%)</title><rect x="1081.3" y="597" width="97.6" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1084.27" y="607.5" >runtime.sys..</text>
</g>
<g >
<title>psi_task_change (774,761 samples, 0.02%)</title><rect x="734.8" y="325" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="737.81" y="335.5" ></text>
</g>
<g >
<title>set_next_entity (476,818 samples, 0.01%)</title><rect x="16.3" y="517" width="0.2" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="19.34" y="527.5" ></text>
</g>
<g >
<title>runtime.scanblock (735,728 samples, 0.02%)</title><rect x="1182.8" y="453" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="1185.78" y="463.5" ></text>
</g>
<g >
<title>runtime.(*mheap).sysAlloc (435,058 samples, 0.01%)</title><rect x="1189.5" y="533" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1192.52" y="543.5" ></text>
</g>
<g >
<title>__kmalloc_node (2,882,462 samples, 0.06%)</title><rect x="1001.1" y="357" width="0.7" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1004.07" y="367.5" ></text>
</g>
<g >
<title>runtime.removespecial (647,622 samples, 0.01%)</title><rect x="236.4" y="613" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="239.38" y="623.5" ></text>
</g>
<g >
<title>x86_pmu_enable (480,628 samples, 0.01%)</title><rect x="54.0" y="597" width="0.1" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="57.00" y="607.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (772,320 samples, 0.02%)</title><rect x="652.3" y="389" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="655.27" y="399.5" ></text>
</g>
<g >
<title>exc_page_fault (5,145,224 samples, 0.11%)</title><rect x="866.1" y="597" width="1.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="869.07" y="607.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (628,186 samples, 0.01%)</title><rect x="930.2" y="245" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="933.25" y="255.5" ></text>
</g>
<g >
<title>ttwu_do_activate (545,440 samples, 0.01%)</title><rect x="437.5" y="309" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="440.53" y="319.5" ></text>
</g>
<g >
<title>inc_mm_counter (769,615 samples, 0.02%)</title><rect x="694.8" y="373" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="697.84" y="383.5" ></text>
</g>
<g >
<title>rmqueue (2,870,248 samples, 0.06%)</title><rect x="939.4" y="309" width="0.8" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="942.45" y="319.5" ></text>
</g>
<g >
<title>wp_page_copy (6,197,071 samples, 0.13%)</title><rect x="797.3" y="389" width="1.5" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="800.31" y="399.5" ></text>
</g>
<g >
<title>ttwu_do_activate (774,761 samples, 0.02%)</title><rect x="734.8" y="357" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="737.81" y="367.5" ></text>
</g>
<g >
<title>runtime.init.5 (589,552 samples, 0.01%)</title><rect x="214.1" y="725" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="217.08" y="735.5" ></text>
</g>
<g >
<title>__update_load_avg_se (6,304,034 samples, 0.13%)</title><rect x="455.9" y="373" width="1.6" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="458.95" y="383.5" ></text>
</g>
<g >
<title>runtime.makeslicecopy (735,114 samples, 0.02%)</title><rect x="712.5" y="485" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="715.54" y="495.5" ></text>
</g>
<g >
<title>runtime.startm (757,125 samples, 0.02%)</title><rect x="863.6" y="533" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="866.58" y="543.5" ></text>
</g>
<g >
<title>runtime.callers (762,772 samples, 0.02%)</title><rect x="773.6" y="421" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="776.56" y="431.5" ></text>
</g>
<g >
<title>__handle_mm_fault (5,350,018 samples, 0.11%)</title><rect x="709.7" y="405" width="1.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="712.74" y="415.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (20,584,029 samples, 0.43%)</title><rect x="399.7" y="389" width="5.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="402.72" y="399.5" ></text>
</g>
<g >
<title>runtime.mapassign_faststr (48,399,706 samples, 1.00%)</title><rect x="589.9" y="485" width="11.9" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="592.93" y="495.5" ></text>
</g>
<g >
<title>__sys_bpf (1,500,450 samples, 0.03%)</title><rect x="898.3" y="549" width="0.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="901.28" y="559.5" ></text>
</g>
<g >
<title>update_load_avg (773,978 samples, 0.02%)</title><rect x="948.3" y="213" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="951.33" y="223.5" ></text>
</g>
<g >
<title>runtime.mProf_Malloc (770,714 samples, 0.02%)</title><rect x="645.1" y="421" width="0.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="648.09" y="431.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (700,840 samples, 0.01%)</title><rect x="1188.7" y="693" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="1191.75" y="703.5" ></text>
</g>
<g >
<title>perf_ctx_disable (1,520,184 samples, 0.03%)</title><rect x="24.3" y="453" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="27.28" y="463.5" ></text>
</g>
<g >
<title>x86_pmu_disable (1,255,774 samples, 0.03%)</title><rect x="427.2" y="389" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="430.17" y="399.5" ></text>
</g>
<g >
<title>up_read (430,708 samples, 0.01%)</title><rect x="62.9" y="501" width="0.1" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="65.87" y="511.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (20,175,069 samples, 0.42%)</title><rect x="190.0" y="677" width="4.9" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="193.00" y="687.5" ></text>
</g>
<g >
<title>memcg_account_kmem (758,274 samples, 0.02%)</title><rect x="976.4" y="373" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="979.37" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*FeatureTest).execute (1,327,966 samples, 0.03%)</title><rect x="867.9" y="661" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="870.88" y="671.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.write (768,378 samples, 0.02%)</title><rect x="1185.6" y="661" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1188.62" y="671.5" ></text>
</g>
<g >
<title>vma_alloc_folio (4,364,233 samples, 0.09%)</title><rect x="610.1" y="341" width="1.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="613.12" y="351.5" ></text>
</g>
<g >
<title>do_madvise (435,058 samples, 0.01%)</title><rect x="1189.5" y="453" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1192.52" y="463.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (6,002,092 samples, 0.12%)</title><rect x="1181.5" y="581" width="1.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1184.50" y="591.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (771,599 samples, 0.02%)</title><rect x="13.1" y="725" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="16.12" y="735.5" ></text>
</g>
<g >
<title>__x64_sys_nanosleep (2,064,080 samples, 0.04%)</title><rect x="53.8" y="741" width="0.5" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="56.76" y="751.5" ></text>
</g>
<g >
<title>__d_instantiate (4,620,391 samples, 0.10%)</title><rect x="977.6" y="437" width="1.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="980.57" y="447.5" ></text>
</g>
<g >
<title>vma_alloc_folio (1,495,374 samples, 0.03%)</title><rect x="624.2" y="341" width="0.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="627.24" y="351.5" ></text>
</g>
<g >
<title>ksys_read (80,988,155 samples, 1.68%)</title><rect x="816.9" y="501" width="19.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="819.90" y="511.5" ></text>
</g>
<g >
<title>syscall.Syscall6 (5,167,514 samples, 0.11%)</title><rect x="13.3" y="741" width="1.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="16.31" y="751.5" ></text>
</g>
<g >
<title>d_set_d_op (3,623,678 samples, 0.08%)</title><rect x="956.0" y="421" width="0.9" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="958.97" y="431.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (17,724,447 samples, 0.37%)</title><rect x="676.6" y="453" width="4.3" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="679.61" y="463.5" ></text>
</g>
<g >
<title>handle_pte_fault (4,393,902 samples, 0.09%)</title><rect x="866.3" y="533" width="1.0" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="869.25" y="543.5" ></text>
</g>
<g >
<title>runtime.callers (764,227 samples, 0.02%)</title><rect x="574.1" y="389" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="577.05" y="399.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (760,634 samples, 0.02%)</title><rect x="1185.9" y="693" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1188.93" y="703.5" ></text>
</g>
<g >
<title>copy_mc_enhanced_fast_string (752,041 samples, 0.02%)</title><rect x="1188.4" y="597" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1191.35" y="607.5" ></text>
</g>
<g >
<title>runtime.(*unwinder).next (722,283 samples, 0.01%)</title><rect x="691.6" y="357" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="694.56" y="367.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (1,342,226 samples, 0.03%)</title><rect x="863.4" y="597" width="0.4" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="866.44" y="607.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (11,552,317 samples, 0.24%)</title><rect x="943.8" y="405" width="2.9" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="946.82" y="415.5" ></text>
</g>
<g >
<title>place_entity (2,493,914 samples, 0.05%)</title><rect x="385.6" y="325" width="0.6" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="388.61" y="335.5" ></text>
</g>
<g >
<title>mas_walk (771,327 samples, 0.02%)</title><rect x="599.8" y="405" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="602.77" y="415.5" ></text>
</g>
<g >
<title>__alloc_pages (3,090,205 samples, 0.06%)</title><rect x="788.1" y="325" width="0.7" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="791.07" y="335.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (2,106,924 samples, 0.04%)</title><rect x="896.2" y="565" width="0.5" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="899.18" y="575.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,668,913 samples, 0.08%)</title><rect x="130.5" y="677" width="0.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="133.52" y="687.5" ></text>
</g>
<g >
<title>__handle_mm_fault (760,634 samples, 0.02%)</title><rect x="1185.9" y="613" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1188.93" y="623.5" ></text>
</g>
<g >
<title>irqentry_exit (772,991 samples, 0.02%)</title><rect x="754.2" y="437" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="757.20" y="447.5" ></text>
</g>
<g >
<title>down_read_trylock (732,082 samples, 0.02%)</title><rect x="704.2" y="405" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="707.18" y="415.5" ></text>
</g>
<g >
<title>runtime.scanframeworker (664,786 samples, 0.01%)</title><rect x="72.8" y="645" width="0.1" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="75.75" y="655.5" ></text>
</g>
<g >
<title>runtime.removefinalizer (1,890,793 samples, 0.04%)</title><rect x="236.5" y="629" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="239.53" y="639.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (3,450,056 samples, 0.07%)</title><rect x="412.3" y="437" width="0.8" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="415.29" y="447.5" ></text>
</g>
<g >
<title>__folio_alloc (2,234,029 samples, 0.05%)</title><rect x="685.4" y="357" width="0.5" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="688.40" y="367.5" ></text>
</g>
<g >
<title>__handle_mm_fault (1,556,589 samples, 0.03%)</title><rect x="836.7" y="565" width="0.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="839.71" y="575.5" ></text>
</g>
<g >
<title>_copy_from_user (653,431 samples, 0.01%)</title><rect x="15.1" y="597" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="18.08" y="607.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (6,720,522 samples, 0.14%)</title><rect x="1028.8" y="501" width="1.6" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="1031.78" y="511.5" ></text>
</g>
<g >
<title>handle_pte_fault (556,285 samples, 0.01%)</title><rect x="62.1" y="485" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="65.08" y="495.5" ></text>
</g>
<g >
<title>xas_start (680,837 samples, 0.01%)</title><rect x="975.6" y="373" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="978.64" y="383.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,692,000 samples, 0.08%)</title><rect x="598.7" y="293" width="0.9" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="601.71" y="303.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (1,468,357 samples, 0.03%)</title><rect x="204.1" y="645" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="207.14" y="655.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (6,080,742 samples, 0.13%)</title><rect x="904.7" y="517" width="1.5" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="907.72" y="527.5" ></text>
</g>
<g >
<title>__handle_mm_fault (731,136 samples, 0.02%)</title><rect x="1181.3" y="341" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1184.32" y="351.5" ></text>
</g>
<g >
<title>clear_page_erms (770,701 samples, 0.02%)</title><rect x="630.6" y="229" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="633.65" y="239.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (629,364 samples, 0.01%)</title><rect x="926.4" y="325" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="929.39" y="335.5" ></text>
</g>
<g >
<title>runtime.sysMapOS (747,206 samples, 0.02%)</title><rect x="571.4" y="309" width="0.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="574.44" y="319.5" ></text>
</g>
<g >
<title>runtime.profilealloc (773,766 samples, 0.02%)</title><rect x="771.9" y="485" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="774.86" y="495.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (743,480 samples, 0.02%)</title><rect x="634.1" y="437" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="637.08" y="447.5" ></text>
</g>
<g >
<title>runtime.newobject (12,556,271 samples, 0.26%)</title><rect x="688.7" y="485" width="3.0" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="691.66" y="495.5" ></text>
</g>
<g >
<title>mtree_range_walk (613,839 samples, 0.01%)</title><rect x="12.4" y="581" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="15.38" y="591.5" ></text>
</g>
<g >
<title>__get_random_u32_below (759,815 samples, 0.02%)</title><rect x="931.3" y="309" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="934.33" y="319.5" ></text>
</g>
<g >
<title>__x64_sys_futex (1,008,652 samples, 0.02%)</title><rect x="53.5" y="741" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="56.51" y="751.5" ></text>
</g>
<g >
<title>pgd_none (741,604 samples, 0.02%)</title><rect x="1083.9" y="485" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1086.91" y="495.5" ></text>
</g>
<g >
<title>syscall.Syscall (3,844,439 samples, 0.08%)</title><rect x="801.8" y="533" width="1.0" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="804.85" y="543.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (1,545,557 samples, 0.03%)</title><rect x="648.6" y="421" width="0.4" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="651.59" y="431.5" ></text>
</g>
<g >
<title>alloc_pages (770,701 samples, 0.02%)</title><rect x="630.6" y="277" width="0.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="633.65" y="287.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,031,555 samples, 0.02%)</title><rect x="204.9" y="517" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="207.86" y="527.5" ></text>
</g>
<g >
<title>handle_pte_fault (3,006,928 samples, 0.06%)</title><rect x="760.4" y="421" width="0.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="763.40" y="431.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (777,740 samples, 0.02%)</title><rect x="584.1" y="405" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="587.06" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*Map).finalize (775,436 samples, 0.02%)</title><rect x="847.9" y="693" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="850.87" y="703.5" ></text>
</g>
<g >
<title>internal/godebug.init.0 (623,150 samples, 0.01%)</title><rect x="213.9" y="725" width="0.2" height="15.0" fill="rgb(241,170,40)" rx="2" ry="2" />
<text x="216.92" y="735.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (707,712 samples, 0.01%)</title><rect x="691.0" y="421" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="694.01" y="431.5" ></text>
</g>
<g >
<title>runtime.mallocgc (26,184,148 samples, 0.54%)</title><rect x="858.9" y="629" width="6.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="861.93" y="639.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (511,439 samples, 0.01%)</title><rect x="213.2" y="645" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="216.23" y="655.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (4,729,375 samples, 0.10%)</title><rect x="397.2" y="309" width="1.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="400.16" y="319.5" ></text>
</g>
<g >
<title>vma_alloc_folio (1,290,014 samples, 0.03%)</title><rect x="204.9" y="565" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="207.86" y="575.5" ></text>
</g>
<g >
<title>do_anonymous_page (1,547,888 samples, 0.03%)</title><rect x="694.6" y="389" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="697.65" y="399.5" ></text>
</g>
<g >
<title>clear_page_erms (733,487 samples, 0.02%)</title><rect x="700.7" y="277" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="703.73" y="287.5" ></text>
</g>
<g >
<title>wp_page_copy (2,229,846 samples, 0.05%)</title><rect x="205.2" y="565" width="0.5" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="208.17" y="575.5" ></text>
</g>
<g >
<title>do_user_addr_fault (776,651 samples, 0.02%)</title><rect x="1181.7" y="405" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1184.69" y="415.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (3,084,862 samples, 0.06%)</title><rect x="748.6" y="325" width="0.7" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="751.55" y="335.5" ></text>
</g>
<g >
<title>runtime.findObject (1,485,729 samples, 0.03%)</title><rect x="676.6" y="437" width="0.4" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="679.61" y="447.5" ></text>
</g>
<g >
<title>update_curr (2,025,835 samples, 0.04%)</title><rect x="34.1" y="517" width="0.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="37.07" y="527.5" ></text>
</g>
<g >
<title>lru_gen_add_folio (671,910 samples, 0.01%)</title><rect x="622.1" y="261" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="625.12" y="271.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (731,159 samples, 0.02%)</title><rect x="613.4" y="437" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="616.39" y="447.5" ></text>
</g>
<g >
<title>error_entry (2,322,402 samples, 0.05%)</title><rect x="1187.3" y="693" width="0.6" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1190.29" y="703.5" ></text>
</g>
<g >
<title>exc_page_fault (9,627,023 samples, 0.20%)</title><rect x="1082.1" y="533" width="2.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1085.11" y="543.5" ></text>
</g>
<g >
<title>irqentry_exit (781,417 samples, 0.02%)</title><rect x="1187.1" y="661" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1190.10" y="671.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (14,051,319 samples, 0.29%)</title><rect x="685.0" y="485" width="3.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="688.03" y="495.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (777,194 samples, 0.02%)</title><rect x="643.0" y="437" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="646.04" y="447.5" ></text>
</g>
<g >
<title>vma_alloc_folio (1,937,914 samples, 0.04%)</title><rect x="1186.6" y="581" width="0.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1189.62" y="591.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (771,887 samples, 0.02%)</title><rect x="645.6" y="437" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="648.65" y="447.5" ></text>
</g>
<g >
<title>handle_pte_fault (731,136 samples, 0.02%)</title><rect x="1181.3" y="325" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1184.32" y="335.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (6,131,352 samples, 0.13%)</title><rect x="709.7" y="469" width="1.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="712.74" y="479.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (705,104 samples, 0.01%)</title><rect x="293.8" y="485" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="296.84" y="495.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (559,743 samples, 0.01%)</title><rect x="1189.3" y="645" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1192.27" y="655.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (700,840 samples, 0.01%)</title><rect x="1188.7" y="645" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="1191.75" y="655.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (722,016 samples, 0.01%)</title><rect x="702.0" y="453" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="705.03" y="463.5" ></text>
</g>
<g >
<title>runtime.mstart1 (559,743 samples, 0.01%)</title><rect x="1189.3" y="741" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1192.27" y="751.5" ></text>
</g>
<g >
<title>chacha_block_generic (781,326 samples, 0.02%)</title><rect x="941.6" y="261" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="944.60" y="271.5" ></text>
</g>
<g >
<title>runtime.netpollGenericInit (511,439 samples, 0.01%)</title><rect x="213.2" y="677" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="216.23" y="687.5" ></text>
</g>
<g >
<title>mod_objcg_state (771,569 samples, 0.02%)</title><rect x="1010.7" y="421" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="1013.74" y="431.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (776,273 samples, 0.02%)</title><rect x="696.7" y="437" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="699.65" y="447.5" ></text>
</g>
<g >
<title>runtime.mcall (1,141,245 samples, 0.02%)</title><rect x="62.7" y="725" width="0.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="65.73" y="735.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint16 (3,070,891 samples, 0.06%)</title><rect x="810.5" y="645" width="0.7" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="813.47" y="655.5" ></text>
</g>
<g >
<title>irqentry_exit (781,334 samples, 0.02%)</title><rect x="711.1" y="437" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="714.05" y="447.5" ></text>
</g>
<g >
<title>error_entry (1,537,314 samples, 0.03%)</title><rect x="613.0" y="469" width="0.4" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="616.01" y="479.5" ></text>
</g>
<g >
<title>__sys_bpf (664,495 samples, 0.01%)</title><rect x="53.3" y="725" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="56.35" y="735.5" ></text>
</g>
<g >
<title>close_fd (47,899,131 samples, 0.99%)</title><rect x="280.8" y="565" width="11.7" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="283.80" y="575.5" ></text>
</g>
<g >
<title>__x64_sys_close (55,950,949 samples, 1.16%)</title><rect x="279.1" y="581" width="13.6" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="282.06" y="591.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (5,630,918 samples, 0.12%)</title><rect x="864.0" y="613" width="1.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="866.95" y="623.5" ></text>
</g>
<g >
<title>internal/godebug.setUpdate (623,150 samples, 0.01%)</title><rect x="213.9" y="709" width="0.2" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" />
<text x="216.92" y="719.5" ></text>
</g>
<g >
<title>__handle_mm_fault (15,251,855 samples, 0.32%)</title><rect x="584.3" y="389" width="3.7" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="587.25" y="399.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4,504,935 samples, 0.09%)</title><rect x="842.5" y="501" width="1.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="845.47" y="511.5" ></text>
</g>
<g >
<title>__alloc_pages (761,900 samples, 0.02%)</title><rect x="1181.0" y="437" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1183.96" y="447.5" ></text>
</g>
<g >
<title>prepare_task_switch (1,198,441 samples, 0.02%)</title><rect x="61.2" y="661" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="64.17" y="671.5" ></text>
</g>
<g >
<title>runtime.tgkill.abi0 (739,021 samples, 0.02%)</title><rect x="62.5" y="645" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="65.49" y="655.5" ></text>
</g>
<g >
<title>irqentry_exit (2,307,265 samples, 0.05%)</title><rect x="789.0" y="453" width="0.6" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="792.02" y="463.5" ></text>
</g>
<g >
<title>runtime.markroot.func1 (8,372,484 samples, 0.17%)</title><rect x="71.8" y="677" width="2.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="74.81" y="687.5" ></text>
</g>
<g >
<title>enqueue_task (628,186 samples, 0.01%)</title><rect x="930.2" y="117" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="933.25" y="127.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (29,155,516 samples, 0.60%)</title><rect x="426.2" y="421" width="7.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="429.21" y="431.5" ></text>
</g>
<g >
<title>reweight_entity (935,859 samples, 0.02%)</title><rect x="20.9" y="437" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="23.91" y="447.5" ></text>
</g>
<g >
<title>psi_group_change (432,706 samples, 0.01%)</title><rect x="434.7" y="245" width="0.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="437.65" y="255.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (1,522,625 samples, 0.03%)</title><rect x="773.2" y="453" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="776.18" y="463.5" ></text>
</g>
<g >
<title>cap_capable (2,240,445 samples, 0.05%)</title><rect x="1018.0" y="469" width="0.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1021.04" y="479.5" ></text>
</g>
<g >
<title>do_anonymous_page (728,330 samples, 0.02%)</title><rect x="630.1" y="341" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="633.11" y="351.5" ></text>
</g>
<g >
<title>runtime.trygetfull (740,116 samples, 0.02%)</title><rect x="1181.9" y="469" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1184.88" y="479.5" ></text>
</g>
<g >
<title>__alloc_pages (731,613 samples, 0.02%)</title><rect x="631.8" y="133" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="634.75" y="143.5" ></text>
</g>
<g >
<title>runtime.entersyscall (12,648,299 samples, 0.26%)</title><rect x="243.2" y="629" width="3.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="246.25" y="639.5" ></text>
</g>
<g >
<title>io.ReadAtLeast (15,767,147 samples, 0.33%)</title><rect x="638.6" y="469" width="3.9" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="641.63" y="479.5" ></text>
</g>
<g >
<title>runtime.park_m (29,977,720 samples, 0.62%)</title><rect x="205.9" y="677" width="7.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="208.90" y="687.5" ></text>
</g>
<g >
<title>runtime.typehash (761,097 samples, 0.02%)</title><rect x="785.3" y="485" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="788.25" y="495.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4,268,500 samples, 0.09%)</title><rect x="1082.7" y="389" width="1.0" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1085.69" y="399.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*stringTable).Lookup (28,915,864 samples, 0.60%)</title><rect x="613.6" y="469" width="7.0" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="616.57" y="479.5" ></text>
</g>
<g >
<title>update_curr (20,748,959 samples, 0.43%)</title><rect x="446.0" y="389" width="5.0" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="448.97" y="399.5" ></text>
</g>
<g >
<title>runtime.assertI2I2 (1,422,331 samples, 0.03%)</title><rect x="841.7" y="677" width="0.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="844.74" y="687.5" ></text>
</g>
<g >
<title>do_user_addr_fault (776,092 samples, 0.02%)</title><rect x="681.1" y="453" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="684.14" y="463.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (761,691 samples, 0.02%)</title><rect x="598.0" y="309" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="600.97" y="319.5" ></text>
</g>
<g >
<title>vma_alloc_folio (2,234,029 samples, 0.05%)</title><rect x="685.4" y="373" width="0.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="688.40" y="383.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (7,462,375 samples, 0.15%)</title><rect x="699.4" y="469" width="1.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="702.45" y="479.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes.func1 (5,119,950 samples, 0.11%)</title><rect x="629.6" y="453" width="1.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="632.58" y="463.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (2,882,462 samples, 0.06%)</title><rect x="1001.1" y="341" width="0.7" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="1004.07" y="351.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (772,957 samples, 0.02%)</title><rect x="639.4" y="405" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="642.36" y="415.5" ></text>
</g>
<g >
<title>syscall.Syscall.abi0 (1,260,636 samples, 0.03%)</title><rect x="558.4" y="677" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="561.43" y="687.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (778,273 samples, 0.02%)</title><rect x="694.6" y="373" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="697.65" y="383.5" ></text>
</g>
<g >
<title>runtime.nanotime1.abi0 (2,455,488 samples, 0.05%)</title><rect x="17.9" y="693" width="0.6" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="20.94" y="703.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (1,507,271 samples, 0.03%)</title><rect x="631.6" y="389" width="0.3" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="634.56" y="399.5" ></text>
</g>
<g >
<title>__folio_alloc (731,613 samples, 0.02%)</title><rect x="631.8" y="149" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="634.75" y="159.5" ></text>
</g>
<g >
<title>perf_ctx_disable (33,416,216 samples, 0.69%)</title><rect x="467.9" y="389" width="8.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="470.86" y="399.5" ></text>
</g>
<g >
<title>pfn_pte (780,363 samples, 0.02%)</title><rect x="845.2" y="549" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="848.25" y="559.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (43,835,305 samples, 0.91%)</title><rect x="819.3" y="453" width="10.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="822.31" y="463.5" ></text>
</g>
<g >
<title>delete_node (738,064 samples, 0.02%)</title><rect x="1035.9" y="437" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1038.94" y="447.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (1,501,366 samples, 0.03%)</title><rect x="625.1" y="405" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="628.13" y="415.5" ></text>
</g>
<g >
<title>rmqueue (742,155 samples, 0.02%)</title><rect x="700.9" y="277" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="703.91" y="287.5" ></text>
</g>
<g >
<title>runtime.mapaccess1 (92,046,312 samples, 1.91%)</title><rect x="719.2" y="501" width="22.5" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="722.15" y="511.5" >r..</text>
</g>
<g >
<title>wake_up_process (697,747 samples, 0.01%)</title><rect x="437.5" y="341" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="440.50" y="351.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap.func3 (1,522,559 samples, 0.03%)</title><rect x="852.2" y="677" width="0.4" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="855.19" y="687.5" ></text>
</g>
<g >
<title>__cond_resched (664,495 samples, 0.01%)</title><rect x="53.3" y="581" width="0.2" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="56.35" y="591.5" ></text>
</g>
<g >
<title>runtime.memmove (732,926 samples, 0.02%)</title><rect x="17.0" y="757" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="20.00" y="767.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer.func1 (40,662,660 samples, 0.84%)</title><rect x="226.6" y="629" width="9.9" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="229.59" y="639.5" ></text>
</g>
<g >
<title>runtime.scanobject (6,032,838 samples, 0.13%)</title><rect x="649.3" y="341" width="1.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="652.33" y="351.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (2,916,913 samples, 0.06%)</title><rect x="42.6" y="485" width="0.7" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="45.60" y="495.5" ></text>
</g>
<g >
<title>dequeue_task_fair (8,780,266 samples, 0.18%)</title><rect x="33.3" y="549" width="2.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="36.29" y="559.5" ></text>
</g>
<g >
<title>__schedule (66,706,684 samples, 1.38%)</title><rect x="32.5" y="581" width="16.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="35.49" y="591.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (544,706 samples, 0.01%)</title><rect x="926.3" y="357" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="929.26" y="367.5" ></text>
</g>
<g >
<title>prepare_task_switch (4,528,814 samples, 0.09%)</title><rect x="45.6" y="565" width="1.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="48.60" y="575.5" ></text>
</g>
<g >
<title>__alloc_pages (736,676 samples, 0.02%)</title><rect x="205.5" y="517" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="208.54" y="527.5" ></text>
</g>
<g >
<title>mem_cgroup_from_task (734,223 samples, 0.02%)</title><rect x="687.8" y="421" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="690.75" y="431.5" ></text>
</g>
<g >
<title>check_stack_object (782,116 samples, 0.02%)</title><rect x="902.3" y="485" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="905.29" y="495.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (762,548 samples, 0.02%)</title><rect x="607.1" y="341" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="610.13" y="351.5" ></text>
</g>
<g >
<title>try_to_wake_up (642,381 samples, 0.01%)</title><rect x="319.1" y="421" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="322.07" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*CollectionSpec).LoadAndAssign.func1 (994,763,400 samples, 20.62%)</title><rect x="559.4" y="629" width="243.4" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="562.44" y="639.5" >github.com/cilium/ebpf.(*Collect..</text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint32 (1,541,637 samples, 0.03%)</title><rect x="636.8" y="453" width="0.4" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="639.77" y="463.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (779,861 samples, 0.02%)</title><rect x="654.9" y="421" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="657.91" y="431.5" ></text>
</g>
<g >
<title>update_curr (714,739 samples, 0.01%)</title><rect x="208.4" y="405" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="211.35" y="415.5" ></text>
</g>
<g >
<title>lru_gen_add_folio (761,318 samples, 0.02%)</title><rect x="1082.2" y="373" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="1085.21" y="383.5" ></text>
</g>
<g >
<title>x2apic_send_IPI (524,093 samples, 0.01%)</title><rect x="404.0" y="357" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="406.98" y="367.5" ></text>
</g>
<g >
<title>runtime.greyobject (115,869,142 samples, 2.40%)</title><rect x="160.2" y="677" width="28.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="163.19" y="687.5" >ru..</text>
</g>
<g >
<title>runtime.startTheWorldWithSema (757,125 samples, 0.02%)</title><rect x="863.6" y="565" width="0.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="866.58" y="575.5" ></text>
</g>
<g >
<title>runtime.mallocgc (778,697 samples, 0.02%)</title><rect x="681.3" y="469" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="684.33" y="479.5" ></text>
</g>
<g >
<title>runtime.mapaccess2_fast32 (770,746 samples, 0.02%)</title><rect x="633.7" y="453" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="636.72" y="463.5" ></text>
</g>
<g >
<title>runtime.newarray (2,285,397 samples, 0.05%)</title><rect x="773.2" y="485" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="776.18" y="495.5" ></text>
</g>
<g >
<title>try_charge_memcg (425,030 samples, 0.01%)</title><rect x="1082.1" y="405" width="0.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1085.11" y="415.5" ></text>
</g>
<g >
<title>runtime.(*mheap).nextSpanForSweep (622,635 samples, 0.01%)</title><rect x="197.3" y="709" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="200.27" y="719.5" ></text>
</g>
<g >
<title>x86_pmu_disable (1,102,071 samples, 0.02%)</title><rect x="24.4" y="437" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="27.38" y="447.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.loadRawSpec (777,676 samples, 0.02%)</title><rect x="559.2" y="597" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="562.25" y="607.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,177,327 samples, 0.05%)</title><rect x="563.6" y="437" width="0.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="566.59" y="447.5" ></text>
</g>
<g >
<title>get_page_from_freelist (760,697 samples, 0.02%)</title><rect x="773.4" y="245" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="776.37" y="255.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (736,168 samples, 0.02%)</title><rect x="761.1" y="453" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="764.13" y="463.5" ></text>
</g>
<g >
<title>file_free_rcu (505,843 samples, 0.01%)</title><rect x="412.6" y="325" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="415.62" y="335.5" ></text>
</g>
<g >
<title>init_file (5,826,154 samples, 0.12%)</title><rect x="953.3" y="437" width="1.4" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="956.29" y="447.5" ></text>
</g>
<g >
<title>free_swap_cache (753,240 samples, 0.02%)</title><rect x="60.8" y="453" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="63.80" y="463.5" ></text>
</g>
<g >
<title>runtime.gosched_m (496,097 samples, 0.01%)</title><rect x="1187.9" y="693" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1190.91" y="703.5" ></text>
</g>
<g >
<title>__alloc_pages (759,478 samples, 0.02%)</title><rect x="706.2" y="341" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="709.17" y="351.5" ></text>
</g>
<g >
<title>__folio_alloc (772,354 samples, 0.02%)</title><rect x="652.6" y="309" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="655.64" y="319.5" ></text>
</g>
<g >
<title>psi_task_switch (2,758,207 samples, 0.06%)</title><rect x="211.2" y="453" width="0.7" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="214.20" y="463.5" ></text>
</g>
<g >
<title>__schedule (274,832,934 samples, 5.70%)</title><rect x="420.4" y="453" width="67.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="423.37" y="463.5" >__sched..</text>
</g>
<g >
<title>__schedule (850,792 samples, 0.02%)</title><rect x="61.5" y="613" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="64.49" y="623.5" ></text>
</g>
<g >
<title>__count_memcg_events (766,531 samples, 0.02%)</title><rect x="798.1" y="341" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="801.07" y="351.5" ></text>
</g>
<g >
<title>__folio_alloc (777,603 samples, 0.02%)</title><rect x="644.9" y="261" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="647.90" y="271.5" ></text>
</g>
<g >
<title>__x64_sys_nanosleep (6,673,137 samples, 0.14%)</title><rect x="15.1" y="629" width="1.6" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="18.08" y="639.5" ></text>
</g>
<g >
<title>runtime.unlock2 (3,190,431 samples, 0.07%)</title><rect x="1175.5" y="533" width="0.8" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="1178.54" y="543.5" ></text>
</g>
<g >
<title>exc_page_fault (981,773 samples, 0.02%)</title><rect x="1188.0" y="645" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1191.03" y="655.5" ></text>
</g>
<g >
<title>tick_sched_handle (740,337 samples, 0.02%)</title><rect x="1041.4" y="437" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1044.37" y="447.5" ></text>
</g>
<g >
<title>__irqentry_text_end (1,491,570 samples, 0.03%)</title><rect x="855.1" y="645" width="0.3" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="858.07" y="655.5" ></text>
</g>
<g >
<title>raw_spin_rq_unlock (695,805 samples, 0.01%)</title><rect x="877.4" y="485" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="880.39" y="495.5" ></text>
</g>
<g >
<title>blk_done_softirq (562,113 samples, 0.01%)</title><rect x="412.2" y="357" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="415.16" y="367.5" ></text>
</g>
<g >
<title>rw_verify_area (1,483,939 samples, 0.03%)</title><rect x="641.4" y="277" width="0.4" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="644.39" y="287.5" ></text>
</g>
<g >
<title>exc_page_fault (767,277 samples, 0.02%)</title><rect x="658.5" y="389" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="661.51" y="399.5" ></text>
</g>
<g >
<title>handle_mm_fault (19,620,259 samples, 0.41%)</title><rect x="606.4" y="421" width="4.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="609.38" y="431.5" ></text>
</g>
<g >
<title>get_page_from_freelist (775,002 samples, 0.02%)</title><rect x="772.2" y="325" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="775.23" y="335.5" ></text>
</g>
<g >
<title>x86_pmu_enable (542,149 samples, 0.01%)</title><rect x="53.6" y="581" width="0.2" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="56.62" y="591.5" ></text>
</g>
<g >
<title>__handle_mm_fault (1,548,008 samples, 0.03%)</title><rect x="772.0" y="421" width="0.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="775.05" y="431.5" ></text>
</g>
<g >
<title>exc_page_fault (746,494 samples, 0.02%)</title><rect x="62.8" y="533" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="65.79" y="543.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap (1,354,252,049 samples, 28.08%)</title><rect x="852.6" y="677" width="331.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="855.56" y="687.5" >github.com/cilium/ebpf.(*MapSpec).createMap</text>
</g>
<g >
<title>runtime.deductAssistCredit (777,311 samples, 0.02%)</title><rect x="682.8" y="453" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="685.82" y="463.5" ></text>
</g>
<g >
<title>syscall.pread (762,852 samples, 0.02%)</title><rect x="12.9" y="709" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="15.94" y="719.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (992,101 samples, 0.02%)</title><rect x="416.1" y="437" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="419.13" y="447.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (771,817 samples, 0.02%)</title><rect x="1040.7" y="501" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1043.69" y="511.5" ></text>
</g>
<g >
<title>do_user_addr_fault (757,205 samples, 0.02%)</title><rect x="1084.8" y="453" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1087.84" y="463.5" ></text>
</g>
<g >
<title>resched_curr (731,136 samples, 0.02%)</title><rect x="1181.3" y="37" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="1184.32" y="47.5" ></text>
</g>
<g >
<title>exc_page_fault (2,197,399 samples, 0.05%)</title><rect x="704.2" y="437" width="0.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="707.18" y="447.5" ></text>
</g>
<g >
<title>do_user_addr_fault (763,858 samples, 0.02%)</title><rect x="601.6" y="421" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="604.59" y="431.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (1,700,579 samples, 0.04%)</title><rect x="24.2" y="469" width="0.5" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="27.25" y="479.5" ></text>
</g>
<g >
<title>runtime.callers.func1 (762,772 samples, 0.02%)</title><rect x="773.6" y="389" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="776.56" y="399.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irq (3,639,717 samples, 0.08%)</title><rect x="530.4" y="517" width="0.9" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="533.39" y="527.5" ></text>
</g>
<g >
<title>kmalloc_slab (1,322,832 samples, 0.03%)</title><rect x="1014.7" y="437" width="0.3" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1017.66" y="447.5" ></text>
</g>
<g >
<title>testing.(*M).Run (1,682,292 samples, 0.03%)</title><rect x="213.5" y="725" width="0.4" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="216.51" y="735.5" ></text>
</g>
<g >
<title>runtime.goschedImpl (496,097 samples, 0.01%)</title><rect x="1187.9" y="677" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1190.91" y="687.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.NewFD (425,767,031 samples, 8.83%)</title><rect x="1079.2" y="645" width="104.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1082.17" y="655.5" >github.com/c..</text>
</g>
<g >
<title>__folio_alloc (6,933,750 samples, 0.14%)</title><rect x="607.5" y="341" width="1.7" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="610.51" y="351.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3,519,860 samples, 0.07%)</title><rect x="204.9" y="613" width="0.8" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="207.86" y="623.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (30,402,710 samples, 0.63%)</title><rect x="54.3" y="741" width="7.4" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="57.26" y="751.5" ></text>
</g>
<g >
<title>get_page_from_freelist (18,367,493 samples, 0.38%)</title><rect x="935.7" y="325" width="4.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="938.66" y="335.5" ></text>
</g>
<g >
<title>flush_tlb_func (1,553,237 samples, 0.03%)</title><rect x="798.4" y="341" width="0.4" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="801.45" y="351.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (1,534,177 samples, 0.03%)</title><rect x="598.2" y="325" width="0.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="601.16" y="335.5" ></text>
</g>
<g >
<title>ksys_mmap_pgoff (738,100 samples, 0.02%)</title><rect x="1085.0" y="389" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1088.02" y="399.5" ></text>
</g>
<g >
<title>runtime.gcTrigger.test (726,686 samples, 0.02%)</title><rect x="695.7" y="469" width="0.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="698.74" y="479.5" ></text>
</g>
<g >
<title>clear_page_erms (1,520,467 samples, 0.03%)</title><rect x="685.4" y="309" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="688.40" y="319.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (510,716 samples, 0.01%)</title><rect x="43.4" y="469" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="46.45" y="479.5" ></text>
</g>
<g >
<title>__alloc_pages (3,803,315 samples, 0.08%)</title><rect x="710.1" y="325" width="1.0" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="713.12" y="335.5" ></text>
</g>
<g >
<title>native_flush_tlb_one_user (769,672 samples, 0.02%)</title><rect x="586.8" y="277" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="589.80" y="287.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (766,303 samples, 0.02%)</title><rect x="799.6" y="437" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="802.58" y="447.5" ></text>
</g>
<g >
<title>runtime.wbMove (3,692,223 samples, 0.08%)</title><rect x="704.9" y="485" width="0.9" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="707.89" y="495.5" ></text>
</g>
<g >
<title>runtime.findObject (752,902 samples, 0.02%)</title><rect x="681.9" y="405" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="684.88" y="415.5" ></text>
</g>
<g >
<title>gcWriteBarrier (713,593 samples, 0.01%)</title><rect x="216.5" y="709" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="219.47" y="719.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (762,852 samples, 0.02%)</title><rect x="12.9" y="661" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="15.94" y="671.5" ></text>
</g>
<g >
<title>run_rebalance_domains (1,469,571 samples, 0.03%)</title><rect x="877.4" y="501" width="0.3" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="880.39" y="511.5" ></text>
</g>
<g >
<title>runtime.(*mheap).initSpan (700,656 samples, 0.01%)</title><rect x="860.6" y="485" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="863.62" y="495.5" ></text>
</g>
<g >
<title>syscall.Syscall (1,290,921,728 samples, 26.76%)</title><rect x="242.1" y="645" width="315.8" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="245.14" y="655.5" >syscall.Syscall</text>
</g>
<g >
<title>__mod_zone_page_state (695,442 samples, 0.01%)</title><rect x="624.1" y="261" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="627.07" y="271.5" ></text>
</g>
<g >
<title>runtime.gosched_m (1,473,273 samples, 0.03%)</title><rect x="196.9" y="693" width="0.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="199.91" y="703.5" ></text>
</g>
<g >
<title>runtime.sysMmap.abi0 (738,100 samples, 0.02%)</title><rect x="1085.0" y="453" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="1088.02" y="463.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (740,337 samples, 0.02%)</title><rect x="1041.4" y="501" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1044.37" y="511.5" ></text>
</g>
<g >
<title>kernfs_fop_read_iter (2,292,533 samples, 0.05%)</title><rect x="640.8" y="277" width="0.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="643.83" y="287.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*stringTable).lookup (16,702,266 samples, 0.35%)</title><rect x="625.5" y="437" width="4.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="628.50" y="447.5" ></text>
</g>
<g >
<title>ptep_clear_flush (475,409 samples, 0.01%)</title><rect x="1188.2" y="533" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="1191.15" y="543.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (20,255,014 samples, 0.42%)</title><rect x="583.9" y="453" width="4.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="586.88" y="463.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (777,311 samples, 0.02%)</title><rect x="682.8" y="437" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="685.82" y="447.5" ></text>
</g>
<g >
<title>runtime.memequal (771,331 samples, 0.02%)</title><rect x="763.9" y="501" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="766.94" y="511.5" ></text>
</g>
<g >
<title>native_write_msr (2,306,576 samples, 0.05%)</title><rect x="46.1" y="485" width="0.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="49.07" y="495.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (2,203,813 samples, 0.05%)</title><rect x="250.8" y="597" width="0.6" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="253.83" y="607.5" ></text>
</g>
<g >
<title>__x64_sys_nanosleep (616,838 samples, 0.01%)</title><rect x="28.4" y="661" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="31.42" y="671.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (1,874,057 samples, 0.04%)</title><rect x="436.9" y="293" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="439.93" y="303.5" ></text>
</g>
<g >
<title>runtime.gcenable.func2 (30,489,159 samples, 0.63%)</title><rect x="205.9" y="757" width="7.5" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="208.90" y="767.5" ></text>
</g>
<g >
<title>__unfreeze_partials (3,417,220 samples, 0.07%)</title><rect x="497.5" y="389" width="0.8" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="500.50" y="399.5" ></text>
</g>
<g >
<title>x86_pmu_enable (664,495 samples, 0.01%)</title><rect x="53.3" y="485" width="0.2" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="56.35" y="495.5" ></text>
</g>
<g >
<title>do_anonymous_page (776,651 samples, 0.02%)</title><rect x="1181.7" y="341" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1184.69" y="351.5" ></text>
</g>
<g >
<title>clear_page_erms (2,316,008 samples, 0.05%)</title><rect x="788.1" y="293" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="791.07" y="303.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast.func1 (2,203,813 samples, 0.05%)</title><rect x="250.8" y="581" width="0.6" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="253.83" y="591.5" ></text>
</g>
<g >
<title>runtime.(*unwinder).resolveInternal (770,714 samples, 0.02%)</title><rect x="645.1" y="325" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="648.09" y="335.5" ></text>
</g>
<g >
<title>runtime.mallocgc (571,546 samples, 0.01%)</title><rect x="869.8" y="629" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="872.75" y="639.5" ></text>
</g>
<g >
<title>try_to_wake_up (544,706 samples, 0.01%)</title><rect x="926.3" y="245" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="929.26" y="255.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Union).copy (735,114 samples, 0.02%)</title><rect x="712.5" y="501" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="715.54" y="511.5" ></text>
</g>
<g >
<title>__handle_mm_fault (777,603 samples, 0.02%)</title><rect x="644.9" y="341" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="647.90" y="351.5" ></text>
</g>
<g >
<title>do_user_addr_fault (418,342 samples, 0.01%)</title><rect x="74.2" y="549" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="77.20" y="559.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (753,859 samples, 0.02%)</title><rect x="53.6" y="613" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="56.57" y="623.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (773,006 samples, 0.02%)</title><rect x="772.0" y="373" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="775.05" y="383.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (694,450 samples, 0.01%)</title><rect x="196.4" y="437" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="199.40" y="447.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (581,396,684 samples, 12.05%)</title><rect x="898.7" y="549" width="142.2" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="901.65" y="559.5" >__x64_sys_bpf</text>
</g>
<g >
<title>folio_add_lru (736,526 samples, 0.02%)</title><rect x="585.5" y="309" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="588.53" y="319.5" ></text>
</g>
<g >
<title>enqueue_task (75,399,393 samples, 1.56%)</title><rect x="380.2" y="373" width="18.5" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="383.24" y="383.5" ></text>
</g>
<g >
<title>runtime.(*pageAlloc).grow (487,287 samples, 0.01%)</title><rect x="1189.6" y="533" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1192.62" y="543.5" ></text>
</g>
<g >
<title>__fdget (525,756 samples, 0.01%)</title><rect x="18.6" y="581" width="0.1" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="21.57" y="591.5" ></text>
</g>
<g >
<title>dequeue_task (1,114,593 samples, 0.02%)</title><rect x="15.8" y="549" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="18.77" y="559.5" ></text>
</g>
<g >
<title>__count_memcg_events (693,859 samples, 0.01%)</title><rect x="1181.1" y="501" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="1184.15" y="511.5" ></text>
</g>
<g >
<title>arch_do_signal_or_restart (700,840 samples, 0.01%)</title><rect x="1188.7" y="597" width="0.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="1191.75" y="607.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (2,158,419 samples, 0.04%)</title><rect x="404.2" y="325" width="0.6" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="407.22" y="335.5" ></text>
</g>
<g >
<title>os.(*File).ReadAt (6,974,464 samples, 0.14%)</title><rect x="656.2" y="437" width="1.7" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="659.23" y="447.5" ></text>
</g>
<g >
<title>[unknown] (5,247,114 samples, 0.11%)</title><rect x="10.0" y="725" width="1.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="735.5" ></text>
</g>
<g >
<title>do_anonymous_page (698,493 samples, 0.01%)</title><rect x="632.1" y="261" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="635.11" y="271.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (1,524,949 samples, 0.03%)</title><rect x="782.4" y="453" width="0.4" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="785.43" y="463.5" ></text>
</g>
<g >
<title>vma_alloc_folio (3,803,315 samples, 0.08%)</title><rect x="710.1" y="357" width="1.0" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="713.12" y="367.5" ></text>
</g>
<g >
<title>try_charge_memcg (756,108 samples, 0.02%)</title><rect x="1013.5" y="421" width="0.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1016.51" y="431.5" ></text>
</g>
<g >
<title>pte_offset_map_nolock (779,331 samples, 0.02%)</title><rect x="687.6" y="389" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="690.56" y="399.5" ></text>
</g>
<g >
<title>allocate_slab (1,404,635 samples, 0.03%)</title><rect x="1035.4" y="389" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1038.40" y="399.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (1,459,954 samples, 0.03%)</title><rect x="609.8" y="293" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="612.76" y="303.5" ></text>
</g>
<g >
<title>__alloc_pages (757,205 samples, 0.02%)</title><rect x="1084.8" y="341" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1087.84" y="351.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (776,334 samples, 0.02%)</title><rect x="974.2" y="373" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="977.17" y="383.5" ></text>
</g>
<g >
<title>get_page_from_freelist (8,440,080 samples, 0.17%)</title><rect x="845.4" y="501" width="2.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="848.44" y="511.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (5,252,127 samples, 0.11%)</title><rect x="950.0" y="405" width="1.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="952.98" y="415.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (2,141,700 samples, 0.04%)</title><rect x="130.9" y="629" width="0.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="133.89" y="639.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (1,436,439 samples, 0.03%)</title><rect x="209.2" y="437" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="212.19" y="447.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (777,740 samples, 0.02%)</title><rect x="584.1" y="357" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="587.06" y="367.5" ></text>
</g>
<g >
<title>update_process_times (740,337 samples, 0.02%)</title><rect x="1041.4" y="421" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1044.37" y="431.5" ></text>
</g>
<g >
<title>__x64_sys_close (1,991,951 samples, 0.04%)</title><rect x="277.1" y="597" width="0.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="280.09" y="607.5" ></text>
</g>
<g >
<title>irq_exit_rcu (562,113 samples, 0.01%)</title><rect x="412.2" y="405" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="415.16" y="415.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (782,449 samples, 0.02%)</title><rect x="26.5" y="517" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="29.46" y="527.5" ></text>
</g>
<g >
<title>radix_tree_lookup (782,449 samples, 0.02%)</title><rect x="26.5" y="533" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="29.46" y="543.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (598,093 samples, 0.01%)</title><rect x="214.4" y="517" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="217.38" y="527.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (4,074,306 samples, 0.08%)</title><rect x="498.4" y="405" width="1.0" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="501.38" y="415.5" ></text>
</g>
<g >
<title>runtime.unlock2 (3,230,163 samples, 0.07%)</title><rect x="235.6" y="597" width="0.8" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="238.59" y="607.5" ></text>
</g>
<g >
<title>runtime.newobject (1,554,733 samples, 0.03%)</title><rect x="682.6" y="485" width="0.4" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="685.63" y="495.5" ></text>
</g>
<g >
<title>__flush_smp_call_function_queue (706,109 samples, 0.01%)</title><rect x="131.8" y="613" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="134.79" y="623.5" ></text>
</g>
<g >
<title>__kmalloc_large_node (1,857,552 samples, 0.04%)</title><rect x="987.7" y="389" width="0.5" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="990.74" y="399.5" ></text>
</g>
<g >
<title>wp_page_copy (9,665,483 samples, 0.20%)</title><rect x="597.4" y="357" width="2.4" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="600.41" y="367.5" ></text>
</g>
<g >
<title>syscall.Syscall (771,505 samples, 0.02%)</title><rect x="841.6" y="565" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="844.55" y="575.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (1,248,344,179 samples, 25.88%)</title><rect x="252.1" y="629" width="305.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="255.06" y="639.5" >runtime/internal/syscall.Syscall6</text>
</g>
<g >
<title>runtime.newobject (777,206 samples, 0.02%)</title><rect x="758.6" y="501" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="761.56" y="511.5" ></text>
</g>
<g >
<title>_raw_spin_rq_lock_irqsave (1,096,181 samples, 0.02%)</title><rect x="209.9" y="389" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="212.94" y="399.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (711,994 samples, 0.01%)</title><rect x="1184.8" y="645" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1187.84" y="655.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (629,364 samples, 0.01%)</title><rect x="926.4" y="309" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="929.39" y="319.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,177,327 samples, 0.05%)</title><rect x="563.6" y="453" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="566.59" y="463.5" ></text>
</g>
<g >
<title>do_wp_page (777,603 samples, 0.02%)</title><rect x="644.9" y="309" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="647.90" y="319.5" ></text>
</g>
<g >
<title>mas_walk (1,524,949 samples, 0.03%)</title><rect x="782.4" y="437" width="0.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="785.43" y="447.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (720,574 samples, 0.01%)</title><rect x="61.2" y="581" width="0.2" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="64.20" y="591.5" ></text>
</g>
<g >
<title>runtime.park_m (1,401,444 samples, 0.03%)</title><rect x="196.4" y="693" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="199.40" y="703.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,090,205 samples, 0.06%)</title><rect x="788.1" y="309" width="0.7" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="791.07" y="319.5" ></text>
</g>
<g >
<title>runtime.scanblock (8,772,344 samples, 0.18%)</title><rect x="79.7" y="661" width="2.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="82.67" y="671.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (736,789 samples, 0.02%)</title><rect x="704.7" y="453" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="707.71" y="463.5" ></text>
</g>
<g >
<title>__kmalloc_node (107,909,616 samples, 2.24%)</title><rect x="990.5" y="453" width="26.4" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="993.54" y="463.5" >_..</text>
</g>
<g >
<title>exit_to_user_mode_loop (8,786,640 samples, 0.18%)</title><rect x="22.7" y="549" width="2.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="25.73" y="559.5" ></text>
</g>
<g >
<title>irqentry_exit (1,411,649 samples, 0.03%)</title><rect x="877.7" y="549" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="880.75" y="559.5" ></text>
</g>
<g >
<title>handle_pte_fault (418,342 samples, 0.01%)</title><rect x="74.2" y="501" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="77.20" y="511.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (3,084,862 samples, 0.06%)</title><rect x="748.6" y="341" width="0.7" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="751.55" y="351.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (7,479,234 samples, 0.16%)</title><rect x="643.3" y="437" width="1.8" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="646.26" y="447.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (7,832,063 samples, 0.16%)</title><rect x="571.6" y="357" width="1.9" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="574.62" y="367.5" ></text>
</g>
<g >
<title>do_wp_page (2,177,327 samples, 0.05%)</title><rect x="563.6" y="389" width="0.5" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="566.59" y="399.5" ></text>
</g>
<g >
<title>wake_up_process (544,706 samples, 0.01%)</title><rect x="926.3" y="261" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="929.26" y="271.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (6,681,846 samples, 0.14%)</title><rect x="860.6" y="581" width="1.7" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="863.62" y="591.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,291,579 samples, 0.05%)</title><rect x="26.1" y="645" width="0.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="29.14" y="655.5" ></text>
</g>
<g >
<title>ext4_end_bio (562,113 samples, 0.01%)</title><rect x="412.2" y="261" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="415.16" y="271.5" ></text>
</g>
<g >
<title>clear_page_erms (1,495,537 samples, 0.03%)</title><rect x="633.2" y="245" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="636.17" y="255.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (3,513,970 samples, 0.07%)</title><rect x="877.2" y="565" width="0.9" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="880.23" y="575.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (1,525,940 samples, 0.03%)</title><rect x="858.2" y="581" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="861.18" y="591.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (731,136 samples, 0.02%)</title><rect x="1181.3" y="469" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1184.32" y="479.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (899,308,072 samples, 18.64%)</title><rect x="313.1" y="565" width="220.0" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="316.05" y="575.5" >exit_to_user_mode_prepare</text>
</g>
<g >
<title>get_page_from_freelist (1,495,537 samples, 0.03%)</title><rect x="633.2" y="261" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="636.17" y="271.5" ></text>
</g>
<g >
<title>runtime.step (770,714 samples, 0.02%)</title><rect x="645.1" y="293" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="648.09" y="303.5" ></text>
</g>
<g >
<title>flush_tlb_func (2,313,639 samples, 0.05%)</title><rect x="749.7" y="261" width="0.6" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="752.69" y="271.5" ></text>
</g>
<g >
<title>__handle_mm_fault (623,150 samples, 0.01%)</title><rect x="213.9" y="517" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="216.92" y="527.5" ></text>
</g>
<g >
<title>__count_memcg_events (767,615 samples, 0.02%)</title><rect x="597.8" y="309" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="600.79" y="319.5" ></text>
</g>
<g >
<title>sync_regs (740,069 samples, 0.02%)</title><rect x="711.2" y="469" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="714.24" y="479.5" ></text>
</g>
<g >
<title>mem_cgroup_from_task (628,312 samples, 0.01%)</title><rect x="588.0" y="389" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="590.98" y="399.5" ></text>
</g>
<g >
<title>syscall.Syscall6 (762,852 samples, 0.02%)</title><rect x="12.9" y="693" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="15.94" y="703.5" ></text>
</g>
<g >
<title>__alloc_pages (4,587,648 samples, 0.10%)</title><rect x="856.5" y="501" width="1.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="859.50" y="511.5" ></text>
</g>
<g >
<title>runtime.findObject (3,669,639 samples, 0.08%)</title><rect x="80.9" y="645" width="0.9" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="83.92" y="655.5" ></text>
</g>
<g >
<title>newidle_balance (1,832,714 samples, 0.04%)</title><rect x="209.9" y="421" width="0.5" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="212.94" y="431.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,240,237 samples, 0.05%)</title><rect x="10.6" y="693" width="0.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="13.61" y="703.5" ></text>
</g>
<g >
<title>try_to_wake_up (459,526 samples, 0.01%)</title><rect x="1010.4" y="293" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="1013.37" y="303.5" ></text>
</g>
<g >
<title>common_interrupt (562,113 samples, 0.01%)</title><rect x="412.2" y="421" width="0.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="415.16" y="431.5" ></text>
</g>
<g >
<title>__schedule (8,316,811 samples, 0.17%)</title><rect x="22.8" y="517" width="2.0" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="25.81" y="527.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*FuncProto).copy (53,814,297 samples, 1.12%)</title><rect x="692.6" y="501" width="13.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="695.63" y="511.5" ></text>
</g>
<g >
<title>runtime.notesleep (3,944,039 samples, 0.08%)</title><rect x="13.6" y="629" width="1.0" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="16.59" y="639.5" ></text>
</g>
<g >
<title>runtime.pcvalue (770,714 samples, 0.02%)</title><rect x="645.1" y="309" width="0.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="648.09" y="319.5" ></text>
</g>
<g >
<title>runtime.exitsyscall (22,103,648 samples, 0.46%)</title><rect x="246.3" y="629" width="5.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="249.34" y="639.5" ></text>
</g>
<g >
<title>runtime.scanobject (7,168,007 samples, 0.15%)</title><rect x="571.8" y="325" width="1.7" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="574.78" y="335.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (732,818 samples, 0.02%)</title><rect x="708.1" y="469" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="711.06" y="479.5" ></text>
</g>
<g >
<title>aeshashbody (2,318,100 samples, 0.05%)</title><rect x="563.0" y="485" width="0.6" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="566.02" y="495.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (763,844 samples, 0.02%)</title><rect x="754.0" y="421" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="757.02" y="431.5" ></text>
</g>
<g >
<title>runtime.suspendG (3,084,324 samples, 0.06%)</title><rect x="73.1" y="661" width="0.8" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="76.10" y="671.5" ></text>
</g>
<g >
<title>__handle_mm_fault (7,741,170 samples, 0.16%)</title><rect x="796.9" y="437" width="1.9" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="799.93" y="447.5" ></text>
</g>
<g >
<title>ptep_clear_flush (4,398,560 samples, 0.09%)</title><rect x="686.5" y="357" width="1.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="689.49" y="367.5" ></text>
</g>
<g >
<title>runtime.interequal (2,229,914 samples, 0.05%)</title><rect x="735.2" y="485" width="0.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="738.18" y="495.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (781,057 samples, 0.02%)</title><rect x="568.8" y="469" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="571.83" y="479.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer (56,689,425 samples, 1.18%)</title><rect x="223.2" y="661" width="13.8" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="226.17" y="671.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,887,565 samples, 0.06%)</title><rect x="215.6" y="709" width="0.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="218.62" y="719.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (736,287 samples, 0.02%)</title><rect x="712.4" y="453" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="715.36" y="463.5" ></text>
</g>
<g >
<title>bufio.(*Scanner).Scan (780,154 samples, 0.02%)</title><rect x="602.1" y="485" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="605.14" y="495.5" ></text>
</g>
<g >
<title>fput (2,979,231 samples, 0.06%)</title><rect x="287.8" y="533" width="0.8" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="290.83" y="543.5" ></text>
</g>
<g >
<title>locks_remove_posix (918,128 samples, 0.02%)</title><rect x="291.4" y="549" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="294.42" y="559.5" ></text>
</g>
<g >
<title>[[vdso]] (639,463 samples, 0.01%)</title><rect x="11.8" y="677" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="14.83" y="687.5" ></text>
</g>
<g >
<title>testing.runBenchmarks (1,682,292 samples, 0.03%)</title><rect x="213.5" y="709" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="216.51" y="719.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (772,321 samples, 0.02%)</title><rect x="1084.6" y="517" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1087.65" y="527.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,006,928 samples, 0.06%)</title><rect x="760.4" y="453" width="0.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="763.40" y="463.5" ></text>
</g>
<g >
<title>runtime.(*mcache).releaseAll (883,938 samples, 0.02%)</title><rect x="62.8" y="613" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="65.79" y="623.5" ></text>
</g>
<g >
<title>____fput (847,660,684 samples, 17.57%)</title><rect x="322.9" y="517" width="207.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="325.87" y="527.5" >____fput</text>
</g>
<g >
<title>__kmem_cache_alloc_node (93,140,127 samples, 1.93%)</title><rect x="990.9" y="437" width="22.8" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="993.91" y="447.5" >_..</text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Struct).TypeName (1,548,248 samples, 0.03%)</title><rect x="561.1" y="501" width="0.4" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="564.14" y="511.5" ></text>
</g>
<g >
<title>runtime.mallocgc (7,363,641 samples, 0.15%)</title><rect x="631.0" y="437" width="1.8" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="634.01" y="447.5" ></text>
</g>
<g >
<title>tick_program_event (718,755 samples, 0.01%)</title><rect x="435.5" y="357" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="438.54" y="367.5" ></text>
</g>
<g >
<title>update_rq_clock (506,517 samples, 0.01%)</title><rect x="211.9" y="453" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="214.91" y="463.5" ></text>
</g>
<g >
<title>runtime.markrootBlock (1,811,906 samples, 0.04%)</title><rect x="73.9" y="677" width="0.4" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="76.85" y="687.5" ></text>
</g>
<g >
<title>do_wp_page (598,093 samples, 0.01%)</title><rect x="214.4" y="613" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="217.38" y="623.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_safe_stack (2,931,781 samples, 0.06%)</title><rect x="1058.9" y="581" width="0.8" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="1061.94" y="591.5" ></text>
</g>
<g >
<title>x86_pmu_disable (28,241,743 samples, 0.59%)</title><rect x="469.1" y="373" width="6.9" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="472.13" y="383.5" ></text>
</g>
<g >
<title>do_user_addr_fault (759,478 samples, 0.02%)</title><rect x="706.2" y="453" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="709.17" y="463.5" ></text>
</g>
<g >
<title>count_memcg_events.constprop.0 (772,819 samples, 0.02%)</title><rect x="570.9" y="341" width="0.2" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="573.87" y="351.5" ></text>
</g>
<g >
<title>do_syscall_64 (771,505 samples, 0.02%)</title><rect x="841.6" y="517" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="844.55" y="527.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (758,352 samples, 0.02%)</title><rect x="943.3" y="357" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="946.27" y="367.5" ></text>
</g>
<g >
<title>runtime.schedule (1,141,245 samples, 0.02%)</title><rect x="62.7" y="693" width="0.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="65.73" y="703.5" ></text>
</g>
<g >
<title>kmem_cache_free (15,825,068 samples, 0.33%)</title><rect x="523.4" y="469" width="3.9" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="526.43" y="479.5" ></text>
</g>
<g >
<title>check_preempt_wakeup (11,894,985 samples, 0.25%)</title><rect x="376.5" y="357" width="2.9" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="379.46" y="367.5" ></text>
</g>
<g >
<title>gcWriteBarrier (715,991 samples, 0.01%)</title><rect x="621.8" y="453" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="624.76" y="463.5" ></text>
</g>
<g >
<title>wp_page_copy (715,536 samples, 0.01%)</title><rect x="1188.9" y="437" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1191.92" y="447.5" ></text>
</g>
<g >
<title>runtime.sysmon (143,279,842 samples, 2.97%)</title><rect x="17.4" y="709" width="35.0" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="20.36" y="719.5" >ru..</text>
</g>
<g >
<title>exc_page_fault (1,427,175 samples, 0.03%)</title><rect x="622.1" y="421" width="0.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="625.12" y="431.5" ></text>
</g>
<g >
<title>__cond_resched (2,028,970 samples, 0.04%)</title><rect x="918.4" y="421" width="0.5" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="921.36" y="431.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (772,819 samples, 0.02%)</title><rect x="570.9" y="405" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="573.87" y="415.5" ></text>
</g>
<g >
<title>do_user_addr_fault (5,145,224 samples, 0.11%)</title><rect x="866.1" y="581" width="1.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="869.07" y="591.5" ></text>
</g>
<g >
<title>handle_mm_fault (767,277 samples, 0.02%)</title><rect x="658.5" y="357" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="661.51" y="367.5" ></text>
</g>
<g >
<title>rmqueue_bulk (742,155 samples, 0.02%)</title><rect x="700.9" y="245" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="703.91" y="255.5" ></text>
</g>
<g >
<title>pick_next_task (1,307,299 samples, 0.03%)</title><rect x="487.6" y="453" width="0.3" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="490.60" y="463.5" ></text>
</g>
<g >
<title>handle_pte_fault (761,900 samples, 0.02%)</title><rect x="1181.0" y="501" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1183.96" y="511.5" ></text>
</g>
<g >
<title>load_balance (1,832,714 samples, 0.04%)</title><rect x="209.9" y="405" width="0.5" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="212.94" y="415.5" ></text>
</g>
<g >
<title>__x64_sys_futex (2,803,841 samples, 0.06%)</title><rect x="13.7" y="565" width="0.7" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="16.73" y="575.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (883,938 samples, 0.02%)</title><rect x="62.8" y="581" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="65.79" y="591.5" ></text>
</g>
<g >
<title>__pte_offset_map_lock (764,758 samples, 0.02%)</title><rect x="844.9" y="549" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="847.89" y="559.5" ></text>
</g>
<g >
<title>__folio_alloc (2,305,008 samples, 0.05%)</title><rect x="654.3" y="341" width="0.6" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="657.34" y="351.5" ></text>
</g>
<g >
<title>consume_obj_stock (774,482 samples, 0.02%)</title><rect x="950.5" y="389" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="953.51" y="399.5" ></text>
</g>
<g >
<title>exc_page_fault (11,599,334 samples, 0.24%)</title><rect x="796.7" y="485" width="2.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="799.74" y="495.5" ></text>
</g>
<g >
<title>consume_stock (2,308,228 samples, 0.05%)</title><rect x="1012.8" y="389" width="0.5" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="1015.77" y="399.5" ></text>
</g>
<g >
<title>update_load_avg (26,356,645 samples, 0.55%)</title><rect x="451.0" y="389" width="6.5" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="454.04" y="399.5" ></text>
</g>
<g >
<title>runtime.usleep.abi0 (8,471,627 samples, 0.18%)</title><rect x="14.9" y="677" width="2.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="17.93" y="687.5" ></text>
</g>
<g >
<title>handle_mm_fault (776,651 samples, 0.02%)</title><rect x="1181.7" y="389" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1184.69" y="399.5" ></text>
</g>
<g >
<title>folio_lruvec_lock_irqsave (769,355 samples, 0.02%)</title><rect x="59.2" y="421" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="62.19" y="431.5" ></text>
</g>
<g >
<title>asm_sysvec_call_function_single (744,388 samples, 0.02%)</title><rect x="205.2" y="453" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="208.17" y="463.5" ></text>
</g>
<g >
<title>dequeue_task_fair (485,325 samples, 0.01%)</title><rect x="13.9" y="453" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="16.86" y="463.5" ></text>
</g>
<g >
<title>handle_mm_fault (8,922,205 samples, 0.18%)</title><rect x="855.4" y="597" width="2.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="858.44" y="607.5" ></text>
</g>
<g >
<title>vma_alloc_folio (1,475,642 samples, 0.03%)</title><rect x="700.7" y="341" width="0.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="703.73" y="351.5" ></text>
</g>
<g >
<title>vma_alloc_folio (728,330 samples, 0.02%)</title><rect x="630.1" y="325" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="633.11" y="335.5" ></text>
</g>
<g >
<title>exc_page_fault (766,303 samples, 0.02%)</title><rect x="799.6" y="469" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="802.58" y="479.5" ></text>
</g>
<g >
<title>ttwu_do_activate (758,352 samples, 0.02%)</title><rect x="943.3" y="277" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="946.27" y="287.5" ></text>
</g>
<g >
<title>kernfs_file_read_iter (4,651,465 samples, 0.10%)</title><rect x="656.4" y="277" width="1.2" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="659.42" y="287.5" ></text>
</g>
<g >
<title>newidle_balance (30,147,280 samples, 0.62%)</title><rect x="37.6" y="533" width="7.4" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="40.60" y="543.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (771,505 samples, 0.02%)</title><rect x="841.6" y="469" width="0.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="844.55" y="479.5" ></text>
</g>
<g >
<title>arch_do_signal_or_restart (772,321 samples, 0.02%)</title><rect x="1084.6" y="437" width="0.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="1087.65" y="447.5" ></text>
</g>
<g >
<title>runtime.sweepone (35,287,448 samples, 0.73%)</title><rect x="197.3" y="725" width="8.6" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="200.27" y="735.5" ></text>
</g>
<g >
<title>wake_up_process (773,978 samples, 0.02%)</title><rect x="948.3" y="293" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="951.33" y="303.5" ></text>
</g>
<g >
<title>syscall.read (81,753,854 samples, 1.69%)</title><rect x="816.7" y="597" width="20.0" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="819.71" y="607.5" ></text>
</g>
<g >
<title>rw_verify_area (1,551,350 samples, 0.03%)</title><rect x="657.6" y="293" width="0.3" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="660.56" y="303.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (773,269 samples, 0.02%)</title><rect x="856.3" y="533" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="859.31" y="543.5" ></text>
</g>
<g >
<title>runtime.nilinterhash (1,969,510 samples, 0.04%)</title><rect x="237.9" y="629" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="240.88" y="639.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,069,098 samples, 0.06%)</title><rect x="782.1" y="469" width="0.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="785.05" y="479.5" ></text>
</g>
<g >
<title>runtime.lock2 (1,528,620 samples, 0.03%)</title><rect x="1175.2" y="533" width="0.3" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1178.16" y="543.5" ></text>
</g>
<g >
<title>enqueue_task (1,859,917 samples, 0.04%)</title><rect x="434.3" y="277" width="0.5" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="437.32" y="287.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (2,295,268 samples, 0.05%)</title><rect x="23.0" y="501" width="0.5" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="25.96" y="511.5" ></text>
</g>
<g >
<title>lru_gen_del_folio.constprop.0 (2,863,721 samples, 0.06%)</title><rect x="60.1" y="421" width="0.7" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="63.10" y="431.5" ></text>
</g>
<g >
<title>isolate_lru_page (750,379 samples, 0.02%)</title><rect x="1188.5" y="597" width="0.2" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="1191.54" y="607.5" ></text>
</g>
<g >
<title>available_idle_cpu (2,631,673 samples, 0.05%)</title><rect x="374.3" y="357" width="0.6" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="377.29" y="367.5" ></text>
</g>
<g >
<title>__alloc_pages (1,579,172 samples, 0.03%)</title><rect x="215.8" y="565" width="0.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="218.77" y="575.5" ></text>
</g>
<g >
<title>wait_for_completion (767,329 samples, 0.02%)</title><rect x="988.4" y="405" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="991.38" y="415.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (992,101 samples, 0.02%)</title><rect x="416.1" y="453" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="419.13" y="463.5" ></text>
</g>
<g >
<title>charge_memcg (766,531 samples, 0.02%)</title><rect x="798.1" y="357" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="801.07" y="367.5" ></text>
</g>
<g >
<title>_raw_spin_lock (4,103,426 samples, 0.09%)</title><rect x="411.0" y="437" width="1.0" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="413.96" y="447.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (22,341,224 samples, 0.46%)</title><rect x="207.3" y="581" width="5.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="210.33" y="591.5" ></text>
</g>
<g >
<title>do_user_addr_fault (772,819 samples, 0.02%)</title><rect x="570.9" y="373" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="573.87" y="383.5" ></text>
</g>
<g >
<title>__irqentry_text_end (772,183 samples, 0.02%)</title><rect x="781.7" y="501" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="784.68" y="511.5" ></text>
</g>
<g >
<title>__kmalloc_node (1,543,474 samples, 0.03%)</title><rect x="1017.1" y="469" width="0.4" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1020.11" y="479.5" ></text>
</g>
<g >
<title>get_random_u32 (781,326 samples, 0.02%)</title><rect x="941.6" y="325" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="944.60" y="335.5" ></text>
</g>
<g >
<title>__check_object_size (1,360,386 samples, 0.03%)</title><rect x="902.2" y="517" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="905.15" y="527.5" ></text>
</g>
<g >
<title>blk_update_request (485,085 samples, 0.01%)</title><rect x="287.3" y="389" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="290.34" y="399.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (764,227 samples, 0.02%)</title><rect x="574.1" y="373" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="577.05" y="383.5" ></text>
</g>
<g >
<title>dnotify_flush (1,517,673 samples, 0.03%)</title><rect x="287.5" y="533" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="290.46" y="543.5" ></text>
</g>
<g >
<title>try_to_wake_up (438,758 samples, 0.01%)</title><rect x="228.5" y="469" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="231.45" y="479.5" ></text>
</g>
<g >
<title>runtime.entersyscall (8,070,195 samples, 0.17%)</title><rect x="870.7" y="597" width="2.0" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="873.72" y="607.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.write (740,609 samples, 0.02%)</title><rect x="697.4" y="453" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="700.39" y="463.5" ></text>
</g>
<g >
<title>runtime.mstart0 (144,981,682 samples, 3.01%)</title><rect x="17.2" y="741" width="35.4" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="20.18" y="751.5" >run..</text>
</g>
<g >
<title>runtime.preemptone (2,545,668 samples, 0.05%)</title><rect x="26.1" y="677" width="0.6" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="29.07" y="687.5" ></text>
</g>
<g >
<title>__folio_alloc (736,676 samples, 0.02%)</title><rect x="205.5" y="533" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="208.54" y="543.5" ></text>
</g>
<g >
<title>map_create (526,611,044 samples, 10.92%)</title><rect x="908.9" y="517" width="128.9" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="911.94" y="527.5" >map_create</text>
</g>
<g >
<title>runtime.getempty (418,342 samples, 0.01%)</title><rect x="74.2" y="597" width="0.1" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="77.20" y="607.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*copier).copy (771,052 samples, 0.02%)</title><rect x="666.2" y="533" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="669.22" y="543.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (731,136 samples, 0.02%)</title><rect x="1181.3" y="213" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1184.32" y="223.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (438,758 samples, 0.01%)</title><rect x="228.5" y="565" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="231.45" y="575.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (715,991 samples, 0.01%)</title><rect x="621.8" y="389" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="624.76" y="399.5" ></text>
</g>
<g >
<title>lapic_next_deadline (599,816 samples, 0.01%)</title><rect x="31.0" y="533" width="0.2" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="34.00" y="543.5" ></text>
</g>
<g >
<title>__pte_offset_map_lock (758,735 samples, 0.02%)</title><rect x="654.2" y="357" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="657.16" y="367.5" ></text>
</g>
<g >
<title>memchr_inv (4,599,826 samples, 0.10%)</title><rect x="1037.8" y="517" width="1.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1040.77" y="527.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (775,645 samples, 0.02%)</title><rect x="963.3" y="325" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="966.30" y="335.5" ></text>
</g>
<g >
<title>bpf_obj_name_cpy (3,766,549 samples, 0.08%)</title><rect x="1022.1" y="501" width="0.9" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1025.07" y="511.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (487,588 samples, 0.01%)</title><rect x="18.7" y="645" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="21.73" y="655.5" ></text>
</g>
<g >
<title>get_page_from_freelist (743,309 samples, 0.02%)</title><rect x="940.2" y="341" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="943.15" y="351.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1,444,522 samples, 0.03%)</title><rect x="347.9" y="469" width="0.4" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="350.93" y="479.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (773,269 samples, 0.02%)</title><rect x="856.3" y="517" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="859.31" y="527.5" ></text>
</g>
<g >
<title>sysfs_kf_bin_read (751,221 samples, 0.02%)</title><rect x="641.2" y="245" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="644.21" y="255.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (6,019,706 samples, 0.12%)</title><rect x="15.2" y="613" width="1.5" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="18.24" y="623.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (1,507,271 samples, 0.03%)</title><rect x="631.6" y="325" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="634.56" y="335.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3,844,477 samples, 0.08%)</title><rect x="654.0" y="405" width="0.9" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="656.97" y="415.5" ></text>
</g>
<g >
<title>handle_pte_fault (7,381,212 samples, 0.15%)</title><rect x="1082.1" y="469" width="1.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1085.11" y="479.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (7,832,063 samples, 0.16%)</title><rect x="571.6" y="405" width="1.9" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="574.62" y="415.5" ></text>
</g>
<g >
<title>__next_zones_zonelist (774,748 samples, 0.02%)</title><rect x="587.8" y="293" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="590.79" y="303.5" ></text>
</g>
<g >
<title>runtime.(*atomicHeadTailIndex).incTail (721,412 samples, 0.01%)</title><rect x="1189.1" y="549" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="1192.09" y="559.5" ></text>
</g>
<g >
<title>vma_alloc_folio (6,933,750 samples, 0.14%)</title><rect x="607.5" y="357" width="1.7" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="610.51" y="367.5" ></text>
</g>
<g >
<title>__x64_sys_mmap (738,100 samples, 0.02%)</title><rect x="1085.0" y="405" width="0.2" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="1088.02" y="415.5" ></text>
</g>
<g >
<title>error_entry (777,272 samples, 0.02%)</title><rect x="772.8" y="485" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="775.80" y="495.5" ></text>
</g>
<g >
<title>asm_sysvec_call_function_single (632,599 samples, 0.01%)</title><rect x="584.6" y="357" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="587.63" y="367.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (774,705 samples, 0.02%)</title><rect x="847.3" y="469" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="850.31" y="479.5" ></text>
</g>
<g >
<title>runtime.addfinalizer (771,599 samples, 0.02%)</title><rect x="13.1" y="693" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="16.12" y="703.5" ></text>
</g>
<g >
<title>syscall.RawSyscall6 (1,224,390 samples, 0.03%)</title><rect x="870.2" y="613" width="0.3" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="873.23" y="623.5" ></text>
</g>
<g >
<title>wp_page_copy (740,529 samples, 0.02%)</title><rect x="1083.7" y="437" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1086.73" y="447.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (3,513,970 samples, 0.07%)</title><rect x="877.2" y="581" width="0.9" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="880.23" y="591.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (1,544,890 samples, 0.03%)</title><rect x="798.1" y="373" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="801.07" y="383.5" ></text>
</g>
<g >
<title>clear_page_erms (2,129,683 samples, 0.04%)</title><rect x="929.9" y="277" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="932.88" y="287.5" ></text>
</g>
<g >
<title>check_preempt_curr (731,136 samples, 0.02%)</title><rect x="1181.3" y="69" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1184.32" y="79.5" ></text>
</g>
<g >
<title>find_busiest_group (3,633,539 samples, 0.08%)</title><rect x="42.5" y="501" width="0.9" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="45.49" y="511.5" ></text>
</g>
<g >
<title>do_user_addr_fault (763,215 samples, 0.02%)</title><rect x="571.3" y="421" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="574.25" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.unmarshalBtfType (765,907 samples, 0.02%)</title><rect x="663.4" y="485" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="666.40" y="495.5" ></text>
</g>
<g >
<title>bio_endio (485,085 samples, 0.01%)</title><rect x="287.3" y="373" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="290.34" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Func).TypeName (4,604,006 samples, 0.10%)</title><rect x="664.2" y="533" width="1.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="667.16" y="543.5" ></text>
</g>
<g >
<title>runtime.gosched_m (687,561 samples, 0.01%)</title><rect x="196.7" y="709" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="199.74" y="719.5" ></text>
</g>
<g >
<title>__update_load_avg_se (961,704 samples, 0.02%)</title><rect x="462.1" y="373" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="465.10" y="383.5" ></text>
</g>
<g >
<title>futex_wait_queue (1,008,652 samples, 0.02%)</title><rect x="53.5" y="693" width="0.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="56.51" y="703.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (642,381 samples, 0.01%)</title><rect x="319.1" y="517" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="322.07" y="527.5" ></text>
</g>
<g >
<title>runtime.exitsyscall0 (5,167,514 samples, 0.11%)</title><rect x="13.3" y="693" width="1.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="16.31" y="703.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (542,149 samples, 0.01%)</title><rect x="53.6" y="565" width="0.2" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="56.62" y="575.5" ></text>
</g>
<g >
<title>sched_clock_cpu (2,620,953 samples, 0.05%)</title><rect x="404.1" y="373" width="0.7" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="407.11" y="383.5" ></text>
</g>
<g >
<title>do_syscall_64 (511,439 samples, 0.01%)</title><rect x="213.2" y="629" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="216.23" y="639.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (766,033 samples, 0.02%)</title><rect x="709.9" y="357" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="712.94" y="367.5" ></text>
</g>
<g >
<title>runtime.makeslice (7,489,890 samples, 0.16%)</title><rect x="695.7" y="485" width="1.9" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="698.74" y="495.5" ></text>
</g>
<g >
<title>runtime.markrootSpans (3,705,601 samples, 0.08%)</title><rect x="1182.1" y="469" width="0.9" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="1185.06" y="479.5" ></text>
</g>
<g >
<title>_get_random_bytes (781,326 samples, 0.02%)</title><rect x="941.6" y="309" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="944.60" y="319.5" ></text>
</g>
<g >
<title>do_wp_page (760,697 samples, 0.02%)</title><rect x="773.4" y="325" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="776.37" y="335.5" ></text>
</g>
<g >
<title>shuffle_freelist (4,549,835 samples, 0.09%)</title><rect x="930.6" y="325" width="1.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="933.59" y="335.5" ></text>
</g>
<g >
<title>ttwu_do_activate (731,136 samples, 0.02%)</title><rect x="1181.3" y="85" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="1184.32" y="95.5" ></text>
</g>
<g >
<title>rmqueue (442,461 samples, 0.01%)</title><rect x="1000.8" y="325" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1003.83" y="335.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (732,818 samples, 0.02%)</title><rect x="708.1" y="421" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="711.06" y="431.5" ></text>
</g>
<g >
<title>runtime.memhash64 (3,048,294 samples, 0.06%)</title><rect x="582.6" y="453" width="0.7" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="585.56" y="463.5" ></text>
</g>
<g >
<title>__task_rq_lock (2,953,190 samples, 0.06%)</title><rect x="367.5" y="389" width="0.7" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="370.51" y="399.5" ></text>
</g>
<g >
<title>__fget_light (525,756 samples, 0.01%)</title><rect x="18.6" y="565" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="21.57" y="575.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (4,541,452 samples, 0.09%)</title><rect x="862.3" y="565" width="1.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="865.33" y="575.5" ></text>
</g>
<g >
<title>update_cfs_group (554,335 samples, 0.01%)</title><rect x="434.4" y="245" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="437.43" y="255.5" ></text>
</g>
<g >
<title>sched_clock (3,365,518 samples, 0.07%)</title><rect x="405.4" y="373" width="0.8" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="408.41" y="383.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (731,136 samples, 0.02%)</title><rect x="1181.3" y="549" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="1184.32" y="559.5" ></text>
</g>
<g >
<title>irqentry_exit (2,141,700 samples, 0.04%)</title><rect x="130.9" y="645" width="0.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="133.89" y="655.5" ></text>
</g>
<g >
<title>sched_clock_cpu (774,761 samples, 0.02%)</title><rect x="734.8" y="309" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="737.81" y="319.5" ></text>
</g>
<g >
<title>runtime.findObject (743,146 samples, 0.02%)</title><rect x="1176.3" y="549" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1179.32" y="559.5" ></text>
</g>
<g >
<title>mem_cgroup_handle_over_high (3,838,982 samples, 0.08%)</title><rect x="319.7" y="533" width="0.9" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="322.68" y="543.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (77,716,391 samples, 1.61%)</title><rect x="932.3" y="421" width="19.0" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="935.25" y="431.5" ></text>
</g>
<g >
<title>flush_tlb_func (769,672 samples, 0.02%)</title><rect x="586.8" y="293" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="589.80" y="303.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (418,342 samples, 0.01%)</title><rect x="74.2" y="581" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="77.20" y="591.5" ></text>
</g>
<g >
<title>cpuacct_charge (6,009,111 samples, 0.12%)</title><rect x="449.4" y="373" width="1.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="452.45" y="383.5" ></text>
</g>
<g >
<title>_raw_spin_rq_lock_irqsave (17,877,866 samples, 0.37%)</title><rect x="38.0" y="501" width="4.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="40.99" y="511.5" ></text>
</g>
<g >
<title>do_group_exit (27,965,230 samples, 0.58%)</title><rect x="54.3" y="661" width="6.8" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="57.26" y="671.5" ></text>
</g>
<g >
<title>wp_page_copy (675,350 samples, 0.01%)</title><rect x="216.2" y="597" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="219.16" y="607.5" ></text>
</g>
<g >
<title>ttwu_do_activate (629,364 samples, 0.01%)</title><rect x="926.4" y="261" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="929.39" y="271.5" ></text>
</g>
<g >
<title>internal/cpu.doinit (922,345 samples, 0.02%)</title><rect x="1189.5" y="709" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1192.52" y="719.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,427,175 samples, 0.03%)</title><rect x="622.1" y="405" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="625.12" y="415.5" ></text>
</g>
<g >
<title>seq_write (779,006 samples, 0.02%)</title><rect x="836.0" y="389" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="838.97" y="399.5" ></text>
</g>
<g >
<title>do_tkill (1,819,951 samples, 0.04%)</title><rect x="26.2" y="597" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="29.21" y="607.5" ></text>
</g>
<g >
<title>__handle_mm_fault (776,092 samples, 0.02%)</title><rect x="681.1" y="421" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="684.14" y="431.5" ></text>
</g>
<g >
<title>send_signal_locked (739,021 samples, 0.02%)</title><rect x="62.5" y="533" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="65.49" y="543.5" ></text>
</g>
<g >
<title>__x64_sys_futex (1,401,444 samples, 0.03%)</title><rect x="196.4" y="565" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="199.40" y="575.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (598,093 samples, 0.01%)</title><rect x="214.4" y="565" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="217.38" y="575.5" ></text>
</g>
<g >
<title>runtime.newobject (739,448 samples, 0.02%)</title><rect x="681.7" y="485" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="684.70" y="495.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,527,213 samples, 0.03%)</title><rect x="130.5" y="645" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="133.52" y="655.5" ></text>
</g>
<g >
<title>__calc_delta (544,975 samples, 0.01%)</title><rect x="34.3" y="501" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="37.26" y="511.5" ></text>
</g>
<g >
<title>__next_zones_zonelist (775,048 samples, 0.02%)</title><rect x="788.8" y="325" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="791.83" y="335.5" ></text>
</g>
<g >
<title>enqueue_task_fair (459,526 samples, 0.01%)</title><rect x="1010.4" y="245" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="1013.37" y="255.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (2,934,715 samples, 0.06%)</title><rect x="700.0" y="277" width="0.7" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="703.01" y="287.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (779,331 samples, 0.02%)</title><rect x="687.6" y="293" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="690.56" y="303.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (776,498 samples, 0.02%)</title><rect x="708.8" y="437" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="711.80" y="447.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,519,860 samples, 0.07%)</title><rect x="204.9" y="645" width="0.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="207.86" y="655.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (774,959 samples, 0.02%)</title><rect x="638.4" y="421" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="641.44" y="431.5" ></text>
</g>
<g >
<title>get_page_from_freelist (736,676 samples, 0.02%)</title><rect x="205.5" y="501" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="208.54" y="511.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (777,740 samples, 0.02%)</title><rect x="584.1" y="373" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="587.06" y="383.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (4,833,125 samples, 0.10%)</title><rect x="434.2" y="357" width="1.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="437.17" y="367.5" ></text>
</g>
<g >
<title>do_syscall_64 (738,100 samples, 0.02%)</title><rect x="1085.0" y="421" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1088.02" y="431.5" ></text>
</g>
<g >
<title>set_next_entity (951,661 samples, 0.02%)</title><rect x="23.9" y="469" width="0.3" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="26.92" y="479.5" ></text>
</g>
<g >
<title>__folio_alloc (8,440,080 samples, 0.17%)</title><rect x="845.4" y="533" width="2.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="848.44" y="543.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (3,854,692 samples, 0.08%)</title><rect x="749.5" y="309" width="0.9" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="752.50" y="319.5" ></text>
</g>
<g >
<title>runtime.persistentalloc (1,495,305 samples, 0.03%)</title><rect x="1084.8" y="533" width="0.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1087.84" y="543.5" ></text>
</g>
<g >
<title>bio_endio (562,113 samples, 0.01%)</title><rect x="412.2" y="277" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="415.16" y="287.5" ></text>
</g>
<g >
<title>runtime.heapBits.next (1,448,639 samples, 0.03%)</title><rect x="71.5" y="693" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="74.45" y="703.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (753,612 samples, 0.02%)</title><rect x="857.6" y="597" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="860.62" y="607.5" ></text>
</g>
<g >
<title>wake_up_process (2,207,234 samples, 0.05%)</title><rect x="434.2" y="325" width="0.6" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="437.24" y="335.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (6,385,949 samples, 0.13%)</title><rect x="972.1" y="389" width="1.5" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="975.08" y="399.5" ></text>
</g>
<g >
<title>runtime.efaceeq (771,304 samples, 0.02%)</title><rect x="814.1" y="613" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="817.12" y="623.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*copier).copy (372,981,979 samples, 7.73%)</title><rect x="667.5" y="517" width="91.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="670.50" y="527.5" >github.com..</text>
</g>
<g >
<title>handle_pte_fault (4,464,587 samples, 0.09%)</title><rect x="694.6" y="405" width="1.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="697.65" y="415.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (665,534 samples, 0.01%)</title><rect x="53.2" y="757" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="56.18" y="767.5" ></text>
</g>
<g >
<title>__slab_free (774,959 samples, 0.02%)</title><rect x="638.4" y="261" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="641.44" y="271.5" ></text>
</g>
<g >
<title>xa_load (4,510,284 samples, 0.09%)</title><rect x="974.4" y="373" width="1.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="977.36" y="383.5" ></text>
</g>
<g >
<title>enqueue_task_fair (2,521,177 samples, 0.05%)</title><rect x="20.6" y="469" width="0.6" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="23.62" y="479.5" ></text>
</g>
<g >
<title>__alloc_pages (4,504,935 samples, 0.09%)</title><rect x="842.5" y="517" width="1.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="845.47" y="527.5" ></text>
</g>
<g >
<title>anon_inode_getfd (306,644,905 samples, 6.36%)</title><rect x="913.8" y="501" width="75.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="916.84" y="511.5" >anon_ino..</text>
</g>
<g >
<title>syscall_exit_to_user_mode (2,010,957 samples, 0.04%)</title><rect x="212.3" y="549" width="0.5" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="215.30" y="559.5" ></text>
</g>
<g >
<title>get_page_from_freelist (761,900 samples, 0.02%)</title><rect x="1181.0" y="421" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1183.96" y="431.5" ></text>
</g>
<g >
<title>handle_pte_fault (6,767,245 samples, 0.14%)</title><rect x="856.0" y="565" width="1.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="858.96" y="575.5" ></text>
</g>
<g >
<title>error_entry (3,067,429 samples, 0.06%)</title><rect x="783.6" y="501" width="0.7" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="786.56" y="511.5" ></text>
</g>
<g >
<title>runtime.exitsyscall (1,468,372 samples, 0.03%)</title><rect x="640.3" y="357" width="0.4" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="643.30" y="367.5" ></text>
</g>
<g >
<title>check_preempt_curr (16,567,417 samples, 0.34%)</title><rect x="375.9" y="373" width="4.0" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="378.88" y="383.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (2,185,062 samples, 0.05%)</title><rect x="695.2" y="325" width="0.5" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="698.21" y="335.5" ></text>
</g>
<g >
<title>handle_mm_fault (731,136 samples, 0.02%)</title><rect x="1181.3" y="357" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1184.32" y="367.5" ></text>
</g>
<g >
<title>runtime.makeBucketArray (1,517,995 samples, 0.03%)</title><rect x="759.1" y="501" width="0.4" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="762.11" y="511.5" ></text>
</g>
<g >
<title>update_process_times (771,817 samples, 0.02%)</title><rect x="1040.7" y="405" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1043.69" y="415.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (769,248 samples, 0.02%)</title><rect x="682.2" y="469" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="685.25" y="479.5" ></text>
</g>
<g >
<title>ptep_clear_flush (598,093 samples, 0.01%)</title><rect x="214.4" y="581" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="217.38" y="591.5" ></text>
</g>
<g >
<title>try_to_wake_up (697,747 samples, 0.01%)</title><rect x="437.5" y="325" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="440.50" y="335.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,556,589 samples, 0.03%)</title><rect x="836.7" y="469" width="0.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="839.71" y="479.5" ></text>
</g>
<g >
<title>__schedule (4,477,744 samples, 0.09%)</title><rect x="15.4" y="565" width="1.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="18.44" y="575.5" ></text>
</g>
<g >
<title>do_anonymous_page (418,342 samples, 0.01%)</title><rect x="74.2" y="485" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="77.20" y="495.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (1,459,954 samples, 0.03%)</title><rect x="609.8" y="277" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="612.76" y="287.5" ></text>
</g>
<g >
<title>irqentry_exit (2,054,704 samples, 0.04%)</title><rect x="588.3" y="421" width="0.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="591.33" y="431.5" ></text>
</g>
<g >
<title>try_to_wake_up (581,763 samples, 0.01%)</title><rect x="362.8" y="421" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="365.82" y="431.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (15,038,948 samples, 0.31%)</title><rect x="434.0" y="405" width="3.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="437.03" y="415.5" ></text>
</g>
<g >
<title>synchronize_rcu (1,171,935 samples, 0.02%)</title><rect x="988.4" y="437" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="991.38" y="447.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (2,238,871 samples, 0.05%)</title><rect x="757.8" y="405" width="0.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="760.83" y="415.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,098,594 samples, 0.06%)</title><rect x="772.0" y="485" width="0.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="775.05" y="495.5" ></text>
</g>
<g >
<title>cache_from_obj (7,770,991 samples, 0.16%)</title><rect x="499.4" y="421" width="1.9" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="502.38" y="431.5" ></text>
</g>
<g >
<title>memcpy_orig (777,181 samples, 0.02%)</title><rect x="657.4" y="245" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="660.37" y="255.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.LoadSpecAndExtInfosFromReader (777,676 samples, 0.02%)</title><rect x="559.2" y="629" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="562.25" y="639.5" ></text>
</g>
<g >
<title>prepare_task_switch (664,495 samples, 0.01%)</title><rect x="53.3" y="549" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="56.35" y="559.5" ></text>
</g>
<g >
<title>__count_memcg_events (767,828 samples, 0.02%)</title><rect x="798.8" y="421" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="801.83" y="431.5" ></text>
</g>
<g >
<title>futex_wait_queue (2,280,726 samples, 0.05%)</title><rect x="13.8" y="517" width="0.6" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="16.83" y="527.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (642,381 samples, 0.01%)</title><rect x="319.1" y="501" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="322.07" y="511.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (922,345 samples, 0.02%)</title><rect x="1189.5" y="629" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="1192.52" y="639.5" ></text>
</g>
<g >
<title>runtime.bulkBarrierPreWriteSrcOnly (726,345 samples, 0.02%)</title><rect x="621.9" y="437" width="0.2" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="624.94" y="447.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (747,206 samples, 0.02%)</title><rect x="571.4" y="389" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="574.44" y="399.5" ></text>
</g>
<g >
<title>madvise_walk_vmas (1,502,420 samples, 0.03%)</title><rect x="1188.4" y="693" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1191.35" y="703.5" ></text>
</g>
<g >
<title>sched_clock_cpu (932,567 samples, 0.02%)</title><rect x="371.0" y="389" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="373.97" y="399.5" ></text>
</g>
<g >
<title>gcWriteBarrier (1,525,940 samples, 0.03%)</title><rect x="858.2" y="645" width="0.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="861.18" y="655.5" ></text>
</g>
<g >
<title>do_anonymous_page (1,290,014 samples, 0.03%)</title><rect x="204.9" y="581" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="207.86" y="591.5" ></text>
</g>
<g >
<title>check_cfs_rq_runtime (526,720 samples, 0.01%)</title><rect x="438.2" y="421" width="0.1" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="441.18" y="431.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (544,706 samples, 0.01%)</title><rect x="926.3" y="341" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="929.26" y="351.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.indexTypes (162,604,978 samples, 3.37%)</title><rect x="761.3" y="533" width="39.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="764.31" y="543.5" >git..</text>
</g>
<g >
<title>runtime.wbBufFlush (1,525,940 samples, 0.03%)</title><rect x="858.2" y="629" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="861.18" y="639.5" ></text>
</g>
<g >
<title>do_anonymous_page (3,006,928 samples, 0.06%)</title><rect x="760.4" y="405" width="0.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="763.40" y="415.5" ></text>
</g>
<g >
<title>capable (20,830,342 samples, 0.43%)</title><rect x="1023.0" y="501" width="5.1" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="1025.99" y="511.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (711,994 samples, 0.01%)</title><rect x="1184.8" y="613" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="1187.84" y="623.5" ></text>
</g>
<g >
<title>__schedule (767,329 samples, 0.02%)</title><rect x="988.4" y="357" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="991.38" y="367.5" ></text>
</g>
<g >
<title>runtime.scanobject (760,371 samples, 0.02%)</title><rect x="863.3" y="517" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="866.25" y="527.5" ></text>
</g>
<g >
<title>gcWriteBarrier (711,994 samples, 0.01%)</title><rect x="1184.8" y="661" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1187.84" y="671.5" ></text>
</g>
<g >
<title>new_slab (1,404,635 samples, 0.03%)</title><rect x="1035.4" y="405" width="0.3" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="1038.40" y="415.5" ></text>
</g>
<g >
<title>__x64_sys_madvise (435,058 samples, 0.01%)</title><rect x="1189.5" y="469" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1192.52" y="479.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.write (1,532,430 samples, 0.03%)</title><rect x="771.5" y="469" width="0.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="774.48" y="479.5" ></text>
</g>
<g >
<title>__alloc_pages (2,129,683 samples, 0.04%)</title><rect x="929.9" y="309" width="0.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="932.88" y="319.5" ></text>
</g>
<g >
<title>kvmalloc_node (1,857,552 samples, 0.04%)</title><rect x="987.7" y="421" width="0.5" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="990.74" y="431.5" ></text>
</g>
<g >
<title>rep_movs_alternative (4,358,435 samples, 0.09%)</title><rect x="1038.9" y="517" width="1.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1041.89" y="527.5" ></text>
</g>
<g >
<title>migrate_disable (1,451,089 samples, 0.03%)</title><rect x="836.4" y="437" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="839.35" y="447.5" ></text>
</g>
<g >
<title>ptep_clear_flush (2,934,715 samples, 0.06%)</title><rect x="700.0" y="341" width="0.7" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="703.01" y="351.5" ></text>
</g>
<g >
<title>clear_page_erms (1,500,382 samples, 0.03%)</title><rect x="866.8" y="437" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="869.78" y="447.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (711,994 samples, 0.01%)</title><rect x="1184.8" y="629" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1187.84" y="639.5" ></text>
</g>
<g >
<title>try_to_wake_up (746,945 samples, 0.02%)</title><rect x="852.4" y="549" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="855.38" y="559.5" ></text>
</g>
<g >
<title>handle_signal (700,840 samples, 0.01%)</title><rect x="1188.7" y="581" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1191.75" y="591.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (747,206 samples, 0.02%)</title><rect x="571.4" y="213" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="574.44" y="223.5" ></text>
</g>
<g >
<title>__handle_mm_fault (4,464,587 samples, 0.09%)</title><rect x="694.6" y="421" width="1.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="697.65" y="431.5" ></text>
</g>
<g >
<title>irq_exit_rcu (485,085 samples, 0.01%)</title><rect x="287.3" y="501" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="290.34" y="511.5" ></text>
</g>
<g >
<title>fsnotify_perm.part.0 (775,236 samples, 0.02%)</title><rect x="657.7" y="261" width="0.2" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="660.75" y="271.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (715,536 samples, 0.01%)</title><rect x="1188.9" y="405" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="1191.92" y="415.5" ></text>
</g>
<g >
<title>do_user_addr_fault (728,330 samples, 0.02%)</title><rect x="630.1" y="405" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="633.11" y="415.5" ></text>
</g>
<g >
<title>runtime.newobject (778,697 samples, 0.02%)</title><rect x="681.3" y="485" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="684.33" y="495.5" ></text>
</g>
<g >
<title>do_user_addr_fault (4,464,587 samples, 0.09%)</title><rect x="694.6" y="453" width="1.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="697.65" y="463.5" ></text>
</g>
<g >
<title>consume_obj_stock (1,491,543 samples, 0.03%)</title><rect x="943.5" y="405" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="946.46" y="415.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (33,921,106 samples, 0.70%)</title><rect x="197.4" y="709" width="8.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="200.42" y="719.5" ></text>
</g>
<g >
<title>__do_softirq (774,959 samples, 0.02%)</title><rect x="638.4" y="373" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="641.44" y="383.5" ></text>
</g>
<g >
<title>runtime.pcdatavalue1 (764,227 samples, 0.02%)</title><rect x="574.1" y="309" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="577.05" y="319.5" ></text>
</g>
<g >
<title>x86_pmu_enable (1,849,172 samples, 0.04%)</title><rect x="36.4" y="517" width="0.4" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="39.37" y="527.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5,942,025 samples, 0.12%)</title><rect x="640.7" y="341" width="1.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="643.66" y="351.5" ></text>
</g>
<g >
<title>exc_page_fault (1,455,759 samples, 0.03%)</title><rect x="1181.0" y="565" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1183.96" y="575.5" ></text>
</g>
<g >
<title>do_anonymous_page (1,548,008 samples, 0.03%)</title><rect x="772.0" y="389" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="775.05" y="399.5" ></text>
</g>
<g >
<title>runtime.mallocgc (14,701,941 samples, 0.30%)</title><rect x="659.6" y="453" width="3.6" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="662.64" y="463.5" ></text>
</g>
<g >
<title>runtime.scanblock (1,538,654 samples, 0.03%)</title><rect x="82.0" y="677" width="0.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="84.99" y="687.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.loadMgObjects (995,541,076 samples, 20.64%)</title><rect x="559.2" y="677" width="243.6" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="562.25" y="687.5" >github.com/EMnify/giraffe/pkg/eb..</text>
</g>
<g >
<title>runtime.casgstatus (5,198,851 samples, 0.11%)</title><rect x="871.2" y="565" width="1.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="874.23" y="575.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (769,267 samples, 0.02%)</title><rect x="989.8" y="421" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="992.80" y="431.5" ></text>
</g>
<g >
<title>__alloc_pages (18,367,493 samples, 0.38%)</title><rect x="935.7" y="341" width="4.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="938.66" y="351.5" ></text>
</g>
<g >
<title>update_rq_clock (974,743 samples, 0.02%)</title><rect x="48.6" y="565" width="0.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="51.57" y="575.5" ></text>
</g>
<g >
<title>runtime.sweepone (981,773 samples, 0.02%)</title><rect x="1188.0" y="709" width="0.3" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="1191.03" y="719.5" ></text>
</g>
<g >
<title>handle_mm_fault (670,398 samples, 0.01%)</title><rect x="573.9" y="341" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="576.89" y="351.5" ></text>
</g>
<g >
<title>schedule (1,008,652 samples, 0.02%)</title><rect x="53.5" y="677" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="56.51" y="687.5" ></text>
</g>
<g >
<title>internal/godebug.init.0 (624,343 samples, 0.01%)</title><rect x="213.4" y="741" width="0.1" height="15.0" fill="rgb(241,170,40)" rx="2" ry="2" />
<text x="216.36" y="751.5" ></text>
</g>
<g >
<title>task_work_add (3,731,433 samples, 0.08%)</title><rect x="289.9" y="533" width="0.9" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="292.86" y="543.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (1,109,393 samples, 0.02%)</title><rect x="350.3" y="453" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="353.30" y="463.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (754,109 samples, 0.02%)</title><rect x="682.1" y="389" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="685.06" y="399.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (776,651 samples, 0.02%)</title><rect x="1181.7" y="309" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1184.69" y="319.5" ></text>
</g>
<g >
<title>do_anonymous_page (3,628,403 samples, 0.08%)</title><rect x="866.3" y="517" width="0.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="869.25" y="527.5" ></text>
</g>
<g >
<title>enqueue_task (629,364 samples, 0.01%)</title><rect x="926.4" y="245" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="929.39" y="255.5" ></text>
</g>
<g >
<title>handle_mm_fault (11,555,992 samples, 0.24%)</title><rect x="786.2" y="437" width="2.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="789.19" y="447.5" ></text>
</g>
<g >
<title>reflect.Value.SetUint (1,549,928 samples, 0.03%)</title><rect x="810.1" y="629" width="0.4" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="813.09" y="639.5" ></text>
</g>
<g >
<title>handle_mm_fault (4,393,902 samples, 0.09%)</title><rect x="866.3" y="565" width="1.0" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="869.25" y="575.5" ></text>
</g>
<g >
<title>sched_clock_cpu (628,558 samples, 0.01%)</title><rect x="48.6" y="549" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="51.65" y="559.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (770,915 samples, 0.02%)</title><rect x="648.8" y="325" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="651.78" y="335.5" ></text>
</g>
<g >
<title>runtime.gopark (1,401,444 samples, 0.03%)</title><rect x="196.4" y="725" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="199.40" y="735.5" ></text>
</g>
<g >
<title>runtime.(*gcWork).putBatch (754,513 samples, 0.02%)</title><rect x="678.4" y="421" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="681.42" y="431.5" ></text>
</g>
<g >
<title>lru_gen_add_folio (730,856 samples, 0.02%)</title><rect x="633.0" y="245" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="635.99" y="255.5" ></text>
</g>
<g >
<title>perf_ctx_enable (542,149 samples, 0.01%)</title><rect x="53.6" y="597" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="56.62" y="607.5" ></text>
</g>
<g >
<title>runtime.bulkBarrierPreWrite (15,521,316 samples, 0.32%)</title><rect x="754.6" y="469" width="3.8" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="757.58" y="479.5" ></text>
</g>
<g >
<title>runtime.mapassign (67,048,233 samples, 1.39%)</title><rect x="773.7" y="517" width="16.4" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="776.74" y="527.5" ></text>
</g>
<g >
<title>blk_cgroup_congested (761,210 samples, 0.02%)</title><rect x="786.9" y="357" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="789.94" y="367.5" ></text>
</g>
<g >
<title>runtime.shrinkstack (766,763 samples, 0.02%)</title><rect x="72.9" y="645" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="75.91" y="655.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (4,541,452 samples, 0.09%)</title><rect x="862.3" y="597" width="1.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="865.33" y="607.5" ></text>
</g>
<g >
<title>native_write_msr (3,473,529 samples, 0.07%)</title><rect x="31.2" y="533" width="0.8" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="34.15" y="543.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer.func2 (771,599 samples, 0.02%)</title><rect x="13.1" y="709" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="16.12" y="719.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (1,459,954 samples, 0.03%)</title><rect x="609.8" y="325" width="0.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="612.76" y="335.5" ></text>
</g>
<g >
<title>mem_cgroup_wb_domain (562,113 samples, 0.01%)</title><rect x="412.2" y="213" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="415.16" y="223.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (3,921,925 samples, 0.08%)</title><rect x="1013.7" y="437" width="1.0" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="1016.70" y="447.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (450,483 samples, 0.01%)</title><rect x="486.7" y="405" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="489.66" y="415.5" ></text>
</g>
<g >
<title>runtime.newm (840,021 samples, 0.02%)</title><rect x="12.4" y="741" width="0.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="15.38" y="751.5" ></text>
</g>
<g >
<title>enqueue_entity (629,364 samples, 0.01%)</title><rect x="926.4" y="213" width="0.1" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="929.39" y="223.5" ></text>
</g>
<g >
<title>handle_mm_fault (418,342 samples, 0.01%)</title><rect x="74.2" y="533" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="77.20" y="543.5" ></text>
</g>
<g >
<title>bpf_map_init_from_attr (760,673 samples, 0.02%)</title><rect x="1017.5" y="485" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="1020.48" y="495.5" ></text>
</g>
<g >
<title>cache_from_obj (617,262 samples, 0.01%)</title><rect x="523.3" y="469" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="526.27" y="479.5" ></text>
</g>
<g >
<title>runtime.exitsyscall (5,167,514 samples, 0.11%)</title><rect x="13.3" y="725" width="1.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="16.31" y="735.5" ></text>
</g>
<g >
<title>wp_page_copy (2,177,327 samples, 0.05%)</title><rect x="563.6" y="373" width="0.5" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="566.59" y="383.5" ></text>
</g>
<g >
<title>runtime.gopark (712,883 samples, 0.01%)</title><rect x="62.3" y="725" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="65.28" y="735.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (594,929 samples, 0.01%)</title><rect x="1000.7" y="261" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1003.68" y="271.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.loadSpecFromELF (777,676 samples, 0.02%)</title><rect x="559.2" y="613" width="0.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="562.25" y="623.5" ></text>
</g>
<g >
<title>page_counter_try_charge (739,365 samples, 0.02%)</title><rect x="1013.3" y="389" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1016.33" y="399.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (731,159 samples, 0.02%)</title><rect x="613.4" y="421" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="616.39" y="431.5" ></text>
</g>
<g >
<title>exc_page_fault (776,092 samples, 0.02%)</title><rect x="681.1" y="469" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="684.14" y="479.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (4,378,108 samples, 0.09%)</title><rect x="631.4" y="421" width="1.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="634.39" y="431.5" ></text>
</g>
<g >
<title>__do_softirq (530,579 samples, 0.01%)</title><rect x="37.1" y="485" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="40.14" y="495.5" ></text>
</g>
<g >
<title>__mutex_init (2,326,833 samples, 0.05%)</title><rect x="902.5" y="517" width="0.6" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="905.48" y="527.5" ></text>
</g>
<g >
<title>runtime.step (764,227 samples, 0.02%)</title><rect x="574.1" y="277" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="577.05" y="287.5" ></text>
</g>
<g >
<title>runtime.memhash64 (2,957,699 samples, 0.06%)</title><rect x="740.0" y="469" width="0.7" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="743.01" y="479.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (475,409 samples, 0.01%)</title><rect x="1188.2" y="517" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="1191.15" y="527.5" ></text>
</g>
<g >
<title>irq_exit_rcu (1,469,571 samples, 0.03%)</title><rect x="877.4" y="549" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="880.39" y="559.5" ></text>
</g>
<g >
<title>runtime.(*timeHistogram).record (515,966 samples, 0.01%)</title><rect x="249.6" y="597" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="252.63" y="607.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (771,415 samples, 0.02%)</title><rect x="978.5" y="421" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="981.51" y="431.5" ></text>
</g>
<g >
<title>__schedule (566,751 samples, 0.01%)</title><rect x="253.7" y="501" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="256.70" y="511.5" ></text>
</g>
<g >
<title>vma_alloc_folio (2,342,159 samples, 0.05%)</title><rect x="839.7" y="517" width="0.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="842.68" y="527.5" ></text>
</g>
<g >
<title>lru_gen_del_folio.constprop.0 (764,987 samples, 0.02%)</title><rect x="58.1" y="437" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="61.11" y="447.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (771,327 samples, 0.02%)</title><rect x="599.8" y="421" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="602.77" y="431.5" ></text>
</g>
<g >
<title>psi_task_switch (6,761,825 samples, 0.14%)</title><rect x="46.8" y="565" width="1.6" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="49.80" y="575.5" ></text>
</g>
<g >
<title>d_alloc_pseudo (664,495 samples, 0.01%)</title><rect x="53.3" y="645" width="0.2" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="56.35" y="655.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,401,444 samples, 0.03%)</title><rect x="196.4" y="597" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="199.40" y="607.5" ></text>
</g>
<g >
<title>clear_page_erms (779,933 samples, 0.02%)</title><rect x="839.9" y="453" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="842.87" y="463.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,551,842 samples, 0.03%)</title><rect x="763.6" y="485" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="766.56" y="495.5" ></text>
</g>
<g >
<title>idr_get_free (14,452,973 samples, 0.30%)</title><rect x="1032.2" y="469" width="3.5" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="1035.21" y="479.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (582,034 samples, 0.01%)</title><rect x="216.3" y="709" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="219.32" y="719.5" ></text>
</g>
<g >
<title>folio_add_lru (766,033 samples, 0.02%)</title><rect x="709.9" y="341" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="712.94" y="351.5" ></text>
</g>
<g >
<title>__alloc_pages (1,031,555 samples, 0.02%)</title><rect x="204.9" y="533" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="207.86" y="543.5" ></text>
</g>
<g >
<title>runtime.goexit.abi0 (4,604,959,344 samples, 95.47%)</title><rect x="61.8" y="773" width="1126.6" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="64.84" y="783.5" >runtime.goexit.abi0</text>
</g>
<g >
<title>hrtimer_nanosleep (1,486,106 samples, 0.03%)</title><rect x="12.0" y="613" width="0.4" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="15.02" y="623.5" ></text>
</g>
<g >
<title>testing.(*B).run1.func1 (3,980,679,461 samples, 82.53%)</title><rect x="214.6" y="757" width="973.8" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="217.56" y="767.5" >testing.(*B).run1.func1</text>
</g>
<g >
<title>memset_orig (2,206,802 samples, 0.05%)</title><rect x="1036.9" y="501" width="0.5" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1039.86" y="511.5" ></text>
</g>
<g >
<title>bpf_prog_load (3,844,439 samples, 0.08%)</title><rect x="801.8" y="437" width="1.0" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="804.85" y="447.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,548,008 samples, 0.03%)</title><rect x="772.0" y="453" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="775.05" y="463.5" ></text>
</g>
<g >
<title>handle_pte_fault (774,704 samples, 0.02%)</title><rect x="763.8" y="437" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="766.75" y="447.5" ></text>
</g>
<g >
<title>get_timespec64 (653,431 samples, 0.01%)</title><rect x="15.1" y="613" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="18.08" y="623.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,025,647 samples, 0.06%)</title><rect x="710.3" y="309" width="0.8" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="713.31" y="319.5" ></text>
</g>
<g >
<title>refill_stock (459,775 samples, 0.01%)</title><rect x="504.1" y="389" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="507.05" y="399.5" ></text>
</g>
<g >
<title>alloc_fd (8,337,833 samples, 0.17%)</title><rect x="986.6" y="469" width="2.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="989.63" y="479.5" ></text>
</g>
<g >
<title>__calc_delta (598,285 samples, 0.01%)</title><rect x="954.6" y="261" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="957.57" y="271.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (761,318 samples, 0.02%)</title><rect x="1082.2" y="437" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1085.21" y="447.5" ></text>
</g>
<g >
<title>exc_page_fault (770,701 samples, 0.02%)</title><rect x="630.6" y="405" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="633.65" y="415.5" ></text>
</g>
<g >
<title>perf_ctx_enable (664,495 samples, 0.01%)</title><rect x="53.3" y="501" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="56.35" y="511.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (594,929 samples, 0.01%)</title><rect x="1000.7" y="245" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1003.68" y="255.5" ></text>
</g>
<g >
<title>mas_prev (738,100 samples, 0.02%)</title><rect x="1085.0" y="293" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1088.02" y="303.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (3,093,369 samples, 0.06%)</title><rect x="1005.0" y="405" width="0.8" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="1008.03" y="415.5" ></text>
</g>
<g >
<title>_raw_spin_lock (760,497 samples, 0.02%)</title><rect x="584.3" y="373" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="587.25" y="383.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,268,077 samples, 0.03%)</title><rect x="253.5" y="613" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="256.53" y="623.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (1,096,181 samples, 0.02%)</title><rect x="209.9" y="373" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="212.94" y="383.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,002,892 samples, 0.04%)</title><rect x="1174.5" y="517" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1177.48" y="527.5" ></text>
</g>
<g >
<title>exc_page_fault (3,743,096 samples, 0.08%)</title><rect x="760.4" y="485" width="0.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="763.40" y="495.5" ></text>
</g>
<g >
<title>exc_page_fault (760,634 samples, 0.02%)</title><rect x="1185.9" y="661" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1188.93" y="671.5" ></text>
</g>
<g >
<title>vma_alloc_folio (760,634 samples, 0.02%)</title><rect x="1185.9" y="565" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1188.93" y="575.5" ></text>
</g>
<g >
<title>reflect.Value.Field (4,523,201 samples, 0.09%)</title><rect x="811.9" y="645" width="1.2" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="814.95" y="655.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (671,910 samples, 0.01%)</title><rect x="622.1" y="245" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="625.12" y="255.5" ></text>
</g>
<g >
<title>check_ptr_to_btf_access (2,307,830 samples, 0.05%)</title><rect x="801.8" y="357" width="0.6" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="804.85" y="367.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (628,186 samples, 0.01%)</title><rect x="930.2" y="69" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="933.25" y="79.5" ></text>
</g>
<g >
<title>runtime.scanobject (3,779,216 samples, 0.08%)</title><rect x="195.5" y="709" width="0.9" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="198.47" y="719.5" ></text>
</g>
<g >
<title>__folio_alloc (1,475,642 samples, 0.03%)</title><rect x="700.7" y="325" width="0.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="703.73" y="335.5" ></text>
</g>
<g >
<title>perf_ctx_enable (2,679,371 samples, 0.06%)</title><rect x="36.2" y="533" width="0.6" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="39.17" y="543.5" ></text>
</g>
<g >
<title>__alloc_pages (586,737 samples, 0.01%)</title><rect x="1001.6" y="277" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1004.63" y="287.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.progLoad (773,372 samples, 0.02%)</title><rect x="801.7" y="501" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="804.66" y="511.5" ></text>
</g>
<g >
<title>runtime.lock2 (700,840 samples, 0.01%)</title><rect x="1188.7" y="709" width="0.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1191.75" y="719.5" ></text>
</g>
<g >
<title>runtime.findObject (6,597,923 samples, 0.14%)</title><rect x="715.9" y="373" width="1.6" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="718.87" y="383.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (8,796,915 samples, 0.18%)</title><rect x="715.3" y="421" width="2.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="718.33" y="431.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (1,413,953 samples, 0.03%)</title><rect x="1015.0" y="437" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1017.98" y="447.5" ></text>
</g>
<g >
<title>clear_page_erms (736,676 samples, 0.02%)</title><rect x="205.5" y="485" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="208.54" y="495.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (623,150 samples, 0.01%)</title><rect x="213.9" y="389" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="216.92" y="399.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (5,841,263 samples, 0.12%)</title><rect x="945.2" y="389" width="1.5" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="948.22" y="399.5" ></text>
</g>
<g >
<title>clear_page_erms (3,021,020 samples, 0.06%)</title><rect x="861.3" y="245" width="0.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="864.34" y="255.5" ></text>
</g>
<g >
<title>scheduler_tick (598,285 samples, 0.01%)</title><rect x="954.6" y="293" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="957.57" y="303.5" ></text>
</g>
<g >
<title>expand_files (4,541,003 samples, 0.09%)</title><rect x="987.6" y="453" width="1.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="990.56" y="463.5" ></text>
</g>
<g >
<title>check_mem_access (2,307,830 samples, 0.05%)</title><rect x="801.8" y="373" width="0.6" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="804.85" y="383.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (757,602 samples, 0.02%)</title><rect x="1002.5" y="421" width="0.2" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="1005.50" y="431.5" ></text>
</g>
<g >
<title>kthread_blkcg (769,587 samples, 0.02%)</title><rect x="797.9" y="357" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="800.88" y="367.5" ></text>
</g>
<g >
<title>schedule (1,586,688 samples, 0.03%)</title><rect x="61.1" y="693" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="64.10" y="703.5" ></text>
</g>
<g >
<title>sysvec_call_function_single (736,533 samples, 0.02%)</title><rect x="209.7" y="421" width="0.1" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="212.66" y="431.5" ></text>
</g>
<g >
<title>__schedule (16,211,204 samples, 0.34%)</title><rect x="208.1" y="469" width="3.9" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="211.07" y="479.5" ></text>
</g>
<g >
<title>get_page_from_freelist (2,234,029 samples, 0.05%)</title><rect x="685.4" y="325" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="688.40" y="335.5" ></text>
</g>
<g >
<title>__send_signal_locked (739,021 samples, 0.02%)</title><rect x="62.5" y="517" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="65.49" y="527.5" ></text>
</g>
<g >
<title>native_write_msr (27,923,466 samples, 0.58%)</title><rect x="469.2" y="357" width="6.8" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="472.21" y="367.5" ></text>
</g>
<g >
<title>vma_alloc_folio (757,205 samples, 0.02%)</title><rect x="1084.8" y="373" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1087.84" y="383.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (465,246 samples, 0.01%)</title><rect x="523.3" y="405" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="526.31" y="415.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (17,787,773 samples, 0.37%)</title><rect x="38.0" y="453" width="4.4" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="41.01" y="463.5" ></text>
</g>
<g >
<title>handle_mm_fault (589,552 samples, 0.01%)</title><rect x="214.1" y="629" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="217.08" y="639.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (657,152 samples, 0.01%)</title><rect x="363.5" y="405" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="366.47" y="415.5" ></text>
</g>
<g >
<title>__irqentry_text_end (728,805 samples, 0.02%)</title><rect x="704.0" y="453" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="707.00" y="463.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (1,540,440 samples, 0.03%)</title><rect x="61.8" y="597" width="0.4" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="64.84" y="607.5" ></text>
</g>
<g >
<title>runtime.mstart.abi0 (559,743 samples, 0.01%)</title><rect x="1189.3" y="773" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1192.27" y="783.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.newEssentialName (17,735,957 samples, 0.37%)</title><rect x="763.9" y="517" width="4.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="766.94" y="527.5" ></text>
</g>
<g >
<title>runtime.profilealloc (772,819 samples, 0.02%)</title><rect x="570.9" y="453" width="0.2" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="573.87" y="463.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (761,691 samples, 0.02%)</title><rect x="598.0" y="325" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="600.97" y="335.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (7,427,494 samples, 0.15%)</title><rect x="519.0" y="485" width="1.8" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="522.01" y="495.5" ></text>
</g>
<g >
<title>runtime.memmove (23,229,002 samples, 0.48%)</title><rect x="583.5" y="469" width="5.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="586.50" y="479.5" ></text>
</g>
<g >
<title>idle_cpu (736,533 samples, 0.02%)</title><rect x="209.7" y="389" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="212.66" y="399.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.LoadCollectionSpecFromReader (777,676 samples, 0.02%)</title><rect x="559.2" y="645" width="0.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="562.25" y="655.5" ></text>
</g>
<g >
<title>__handle_mm_fault (2,177,327 samples, 0.05%)</title><rect x="563.6" y="421" width="0.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="566.59" y="431.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (623,150 samples, 0.01%)</title><rect x="213.9" y="581" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="216.92" y="591.5" ></text>
</g>
<g >
<title>do_user_addr_fault (772,354 samples, 0.02%)</title><rect x="652.6" y="405" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="655.64" y="415.5" ></text>
</g>
<g >
<title>wake_up_process (626,614 samples, 0.01%)</title><rect x="413.1" y="437" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="416.14" y="447.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (732,676 samples, 0.02%)</title><rect x="1058.4" y="565" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1061.39" y="575.5" ></text>
</g>
<g >
<title>runtime.sysMmap.abi0 (747,206 samples, 0.02%)</title><rect x="571.4" y="293" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="574.44" y="303.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (6,916,962 samples, 0.14%)</title><rect x="781.9" y="501" width="1.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="784.86" y="511.5" ></text>
</g>
<g >
<title>__next_zones_zonelist (764,037 samples, 0.02%)</title><rect x="753.8" y="309" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="756.83" y="319.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (768,378 samples, 0.02%)</title><rect x="1185.6" y="677" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1188.62" y="687.5" ></text>
</g>
<g >
<title>do_user_addr_fault (5,350,018 samples, 0.11%)</title><rect x="709.7" y="437" width="1.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="712.74" y="447.5" ></text>
</g>
<g >
<title>do_vmi_munmap (747,206 samples, 0.02%)</title><rect x="571.4" y="165" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="574.44" y="175.5" ></text>
</g>
<g >
<title>clockevents_program_event (640,577 samples, 0.01%)</title><rect x="15.2" y="533" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="18.24" y="543.5" ></text>
</g>
<g >
<title>enqueue_task (459,526 samples, 0.01%)</title><rect x="1010.4" y="261" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1013.37" y="271.5" ></text>
</g>
<g >
<title>runtime.lock2 (6,031,504 samples, 0.13%)</title><rect x="1176.5" y="549" width="1.5" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1179.50" y="559.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (670,398 samples, 0.01%)</title><rect x="573.9" y="197" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="576.89" y="207.5" ></text>
</g>
<g >
<title>rmqueue (770,150 samples, 0.02%)</title><rect x="1035.6" y="325" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1038.56" y="335.5" ></text>
</g>
<g >
<title>cap_capable (3,966,912 samples, 0.08%)</title><rect x="1024.1" y="485" width="0.9" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1027.06" y="495.5" ></text>
</g>
<g >
<title>__handle_mm_fault (767,277 samples, 0.02%)</title><rect x="658.5" y="341" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="661.51" y="351.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.MapCreate (1,283,102,899 samples, 26.60%)</title><rect x="869.6" y="661" width="313.9" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="872.60" y="671.5" >github.com/cilium/ebpf/internal/sys.MapCre..</text>
</g>
<g >
<title>do_user_addr_fault (981,773 samples, 0.02%)</title><rect x="1188.0" y="629" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1191.03" y="639.5" ></text>
</g>
<g >
<title>runtime.newosproc (840,021 samples, 0.02%)</title><rect x="12.4" y="709" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="15.38" y="719.5" ></text>
</g>
<g >
<title>record_times (663,214 samples, 0.01%)</title><rect x="396.6" y="341" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="399.59" y="351.5" ></text>
</g>
<g >
<title>native_flush_tlb_one_user (2,313,639 samples, 0.05%)</title><rect x="749.7" y="245" width="0.6" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="752.69" y="255.5" ></text>
</g>
<g >
<title>runtime.(*mspan).init (731,613 samples, 0.02%)</title><rect x="631.8" y="293" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="634.75" y="303.5" ></text>
</g>
<g >
<title>wake_up_q (7,614,964 samples, 0.16%)</title><rect x="20.2" y="533" width="1.8" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="23.17" y="543.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (1,250,415 samples, 0.03%)</title><rect x="587.0" y="293" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="589.99" y="303.5" ></text>
</g>
<g >
<title>runtime.nanotime1.abi0 (2,321,523 samples, 0.05%)</title><rect x="73.3" y="645" width="0.6" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="76.29" y="655.5" ></text>
</g>
<g >
<title>do_anonymous_page (6,640,683 samples, 0.14%)</title><rect x="1082.1" y="453" width="1.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1085.11" y="463.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint16 (639,552 samples, 0.01%)</title><rect x="809.7" y="629" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="812.75" y="639.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (5,145,224 samples, 0.11%)</title><rect x="866.1" y="613" width="1.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="869.07" y="623.5" ></text>
</g>
<g >
<title>runtime.exitsyscall (2,028,260 samples, 0.04%)</title><rect x="241.6" y="645" width="0.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="244.57" y="655.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,427,175 samples, 0.03%)</title><rect x="622.1" y="389" width="0.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="625.12" y="399.5" ></text>
</g>
<g >
<title>do_check_common (773,372 samples, 0.02%)</title><rect x="801.7" y="309" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="804.66" y="319.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (766,303 samples, 0.02%)</title><rect x="799.6" y="485" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="802.58" y="495.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (700,840 samples, 0.01%)</title><rect x="1188.7" y="677" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1191.75" y="687.5" ></text>
</g>
<g >
<title>do_syscall_64 (739,021 samples, 0.02%)</title><rect x="62.5" y="613" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="65.49" y="623.5" ></text>
</g>
<g >
<title>indexbytebody (2,330,577 samples, 0.05%)</title><rect x="655.7" y="453" width="0.5" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="658.66" y="463.5" ></text>
</g>
<g >
<title>__x64_sys_futex (18,733,553 samples, 0.39%)</title><rect x="207.7" y="549" width="4.6" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="210.69" y="559.5" ></text>
</g>
<g >
<title>clear_page_erms (3,025,647 samples, 0.06%)</title><rect x="710.3" y="293" width="0.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="713.31" y="303.5" ></text>
</g>
<g >
<title>check_preempt_wakeup (642,381 samples, 0.01%)</title><rect x="319.1" y="373" width="0.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="322.07" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Func).copy (749,585 samples, 0.02%)</title><rect x="667.1" y="517" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="670.14" y="527.5" ></text>
</g>
<g >
<title>do_anonymous_page (11,472,968 samples, 0.24%)</title><rect x="844.7" y="565" width="2.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="847.70" y="575.5" ></text>
</g>
<g >
<title>asm_sysvec_call_function_single (1,454,961 samples, 0.03%)</title><rect x="131.6" y="677" width="0.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="134.60" y="687.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (1,627,610 samples, 0.03%)</title><rect x="293.7" y="581" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="296.65" y="591.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (735,193 samples, 0.02%)</title><rect x="632.6" y="421" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="635.63" y="431.5" ></text>
</g>
<g >
<title>do_anonymous_page (766,256 samples, 0.02%)</title><rect x="734.4" y="389" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="737.44" y="399.5" ></text>
</g>
<g >
<title>try_to_wake_up (769,267 samples, 0.02%)</title><rect x="989.8" y="357" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="992.80" y="367.5" ></text>
</g>
<g >
<title>update_cfs_group (2,492,064 samples, 0.05%)</title><rect x="390.0" y="341" width="0.6" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="392.96" y="351.5" ></text>
</g>
<g >
<title>__switch_to_asm (582,938 samples, 0.01%)</title><rect x="53.0" y="773" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="56.01" y="783.5" ></text>
</g>
<g >
<title>handle_mm_fault (731,613 samples, 0.02%)</title><rect x="631.8" y="229" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="634.75" y="239.5" ></text>
</g>
<g >
<title>__folio_alloc (4,504,935 samples, 0.09%)</title><rect x="842.5" y="533" width="1.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="845.47" y="543.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (642,381 samples, 0.01%)</title><rect x="319.1" y="469" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="322.07" y="479.5" ></text>
</g>
<g >
<title>do_syscall_64 (640,865 samples, 0.01%)</title><rect x="18.6" y="645" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="21.56" y="655.5" ></text>
</g>
<g >
<title>do_user_addr_fault (12,586,345 samples, 0.26%)</title><rect x="685.2" y="453" width="3.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="688.21" y="463.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (1,096,541 samples, 0.02%)</title><rect x="428.0" y="389" width="0.2" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="430.98" y="399.5" ></text>
</g>
<g >
<title>native_apic_msr_eoi_write (632,750 samples, 0.01%)</title><rect x="877.2" y="533" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="880.23" y="543.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (770,915 samples, 0.02%)</title><rect x="648.8" y="389" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="651.78" y="399.5" ></text>
</g>
<g >
<title>__folio_alloc (2,313,544 samples, 0.05%)</title><rect x="699.4" y="341" width="0.6" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="702.45" y="351.5" ></text>
</g>
<g >
<title>update_rq_clock (1,238,372 samples, 0.03%)</title><rect x="409.6" y="405" width="0.3" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="412.62" y="415.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (598,285 samples, 0.01%)</title><rect x="954.6" y="373" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="957.57" y="383.5" ></text>
</g>
<g >
<title>__handle_mm_fault (761,900 samples, 0.02%)</title><rect x="1181.0" y="517" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1183.96" y="527.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (1,545,769 samples, 0.03%)</title><rect x="787.3" y="341" width="0.4" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="790.32" y="351.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (731,136 samples, 0.02%)</title><rect x="1181.3" y="533" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="1184.32" y="543.5" ></text>
</g>
<g >
<title>idr_preload (2,287,004 samples, 0.05%)</title><rect x="1036.3" y="501" width="0.6" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="1039.30" y="511.5" ></text>
</g>
<g >
<title>syscall.RawSyscall6 (1,335,107 samples, 0.03%)</title><rect x="1078.8" y="597" width="0.4" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="1081.84" y="607.5" ></text>
</g>
<g >
<title>native_flush_tlb_one_user (736,676 samples, 0.02%)</title><rect x="205.5" y="373" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="208.54" y="383.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (1,504,640 samples, 0.03%)</title><rect x="931.7" y="373" width="0.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="934.70" y="383.5" ></text>
</g>
<g >
<title>ptep_clear_flush (670,398 samples, 0.01%)</title><rect x="573.9" y="261" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="576.89" y="271.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (1,520,620 samples, 0.03%)</title><rect x="857.8" y="645" width="0.4" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="860.80" y="655.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (16,238,718 samples, 0.34%)</title><rect x="677.0" y="437" width="3.9" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="679.97" y="447.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (664,495 samples, 0.01%)</title><rect x="53.3" y="533" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="56.35" y="543.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,556,589 samples, 0.03%)</title><rect x="836.7" y="597" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="839.71" y="607.5" ></text>
</g>
<g >
<title>security_file_permission (775,236 samples, 0.02%)</title><rect x="657.7" y="277" width="0.2" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="660.75" y="287.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast (7,493,674 samples, 0.16%)</title><rect x="249.8" y="613" width="1.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="252.76" y="623.5" ></text>
</g>
<g >
<title>__fput (771,505 samples, 0.02%)</title><rect x="841.6" y="421" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="844.55" y="431.5" ></text>
</g>
<g >
<title>runtime.findObject (760,371 samples, 0.02%)</title><rect x="863.3" y="501" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="866.25" y="511.5" ></text>
</g>
<g >
<title>charge_memcg (767,615 samples, 0.02%)</title><rect x="597.8" y="325" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="600.79" y="335.5" ></text>
</g>
<g >
<title>bufio.(*Scanner).Scan (11,611,675 samples, 0.24%)</title><rect x="655.1" y="469" width="2.8" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="658.10" y="479.5" ></text>
</g>
<g >
<title>__smp_call_single_queue (13,578,232 samples, 0.28%)</title><rect x="400.8" y="373" width="3.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="403.79" y="383.5" ></text>
</g>
<g >
<title>flush_tlb_func (1,545,769 samples, 0.03%)</title><rect x="787.3" y="325" width="0.4" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="790.32" y="335.5" ></text>
</g>
<g >
<title>update_process_times (598,285 samples, 0.01%)</title><rect x="954.6" y="309" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="957.57" y="319.5" ></text>
</g>
<g >
<title>rmqueue_bulk (1,547,747 samples, 0.03%)</title><rect x="753.5" y="245" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="756.45" y="255.5" ></text>
</g>
<g >
<title>runtime.mallocgc (5,973,848 samples, 0.12%)</title><rect x="838.0" y="645" width="1.5" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="841.03" y="655.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (770,915 samples, 0.02%)</title><rect x="648.8" y="341" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="651.78" y="351.5" ></text>
</g>
<g >
<title>apparmor_capable (8,943,234 samples, 0.19%)</title><rect x="1025.4" y="469" width="2.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1028.36" y="479.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (731,136 samples, 0.02%)</title><rect x="1181.3" y="197" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1184.32" y="207.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (747,206 samples, 0.02%)</title><rect x="571.4" y="277" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="574.44" y="287.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (2,382,202 samples, 0.05%)</title><rect x="949.2" y="357" width="0.6" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="952.21" y="367.5" ></text>
</g>
<g >
<title>gosave_systemstack_switch (776,692 samples, 0.02%)</title><rect x="842.1" y="613" width="0.2" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="845.09" y="623.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (750,505 samples, 0.02%)</title><rect x="131.4" y="677" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="134.42" y="687.5" ></text>
</g>
<g >
<title>do_wp_page (636,619 samples, 0.01%)</title><rect x="214.2" y="613" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="217.22" y="623.5" ></text>
</g>
<g >
<title>memcg_list_lru_alloc (776,731 samples, 0.02%)</title><rect x="965.2" y="405" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="968.15" y="415.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (992,101 samples, 0.02%)</title><rect x="416.1" y="405" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="419.13" y="415.5" ></text>
</g>
<g >
<title>__pte_offset_map_lock (780,734 samples, 0.02%)</title><rect x="654.0" y="373" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="656.97" y="383.5" ></text>
</g>
<g >
<title>runtime.mallocgc (11,405,817 samples, 0.24%)</title><rect x="642.5" y="453" width="2.8" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="645.48" y="463.5" ></text>
</g>
<g >
<title>apparmor_file_alloc_security (4,511,912 samples, 0.09%)</title><rect x="920.6" y="405" width="1.1" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="923.64" y="415.5" ></text>
</g>
<g >
<title>get_page_from_freelist (759,478 samples, 0.02%)</title><rect x="706.2" y="325" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="709.17" y="335.5" ></text>
</g>
<g >
<title>get_page_from_freelist (755,265 samples, 0.02%)</title><rect x="622.3" y="277" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="625.28" y="287.5" ></text>
</g>
<g >
<title>schedule (16,353,357 samples, 0.34%)</title><rect x="208.0" y="485" width="4.0" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="211.03" y="495.5" ></text>
</g>
<g >
<title>wp_page_copy (6,621,495 samples, 0.14%)</title><rect x="685.9" y="373" width="1.7" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="688.94" y="383.5" ></text>
</g>
<g >
<title>schedule (5,379,129 samples, 0.11%)</title><rect x="15.4" y="581" width="1.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="18.39" y="591.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (2,332,505 samples, 0.05%)</title><rect x="54.7" y="469" width="0.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="57.69" y="479.5" ></text>
</g>
<g >
<title>handle_mm_fault (760,634 samples, 0.02%)</title><rect x="1185.9" y="629" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1188.93" y="639.5" ></text>
</g>
<g >
<title>runtime.reentersyscall (8,070,195 samples, 0.17%)</title><rect x="870.7" y="581" width="2.0" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="873.72" y="591.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (465,246 samples, 0.01%)</title><rect x="523.3" y="453" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="526.31" y="463.5" ></text>
</g>
<g >
<title>blk_cgroup_congested (735,021 samples, 0.02%)</title><rect x="760.4" y="373" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="763.40" y="383.5" ></text>
</g>
<g >
<title>__collapse_huge_page_copy.isra.0 (1,504,874 samples, 0.03%)</title><rect x="861.0" y="293" width="0.3" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="863.97" y="303.5" ></text>
</g>
<g >
<title>radix_tree_delete_item (533,477 samples, 0.01%)</title><rect x="413.7" y="453" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="416.72" y="463.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (732,931 samples, 0.02%)</title><rect x="688.3" y="437" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="691.29" y="447.5" ></text>
</g>
<g >
<title>runtime.persistentalloc1 (1,495,305 samples, 0.03%)</title><rect x="1084.8" y="501" width="0.4" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="1087.84" y="511.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.splitNull (1,545,245 samples, 0.03%)</title><rect x="657.9" y="469" width="0.4" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="660.94" y="479.5" ></text>
</g>
<g >
<title>try_to_wake_up (731,136 samples, 0.02%)</title><rect x="1181.3" y="101" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="1184.32" y="111.5" ></text>
</g>
<g >
<title>_raw_spin_lock (1,986,339 samples, 0.04%)</title><rect x="512.9" y="469" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="515.90" y="479.5" ></text>
</g>
<g >
<title>hook_file_alloc_security (6,642,025 samples, 0.14%)</title><rect x="921.7" y="405" width="1.7" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="924.74" y="415.5" ></text>
</g>
<g >
<title>syscall.Syscall (511,412 samples, 0.01%)</title><rect x="240.7" y="661" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="243.70" y="671.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (770,915 samples, 0.02%)</title><rect x="648.8" y="373" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="651.78" y="383.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (714,353 samples, 0.01%)</title><rect x="630.8" y="437" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="633.84" y="447.5" ></text>
</g>
<g >
<title>get_page_from_freelist (731,136 samples, 0.02%)</title><rect x="1181.3" y="245" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1184.32" y="255.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (1,279,724 samples, 0.03%)</title><rect x="11.5" y="709" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="14.48" y="719.5" ></text>
</g>
<g >
<title>refill_stock (499,503 samples, 0.01%)</title><rect x="503.9" y="373" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="506.93" y="383.5" ></text>
</g>
<g >
<title>__rcu_read_lock (754,298 samples, 0.02%)</title><rect x="1011.1" y="405" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1014.12" y="415.5" ></text>
</g>
<g >
<title>d_alloc_pseudo (92,755,456 samples, 1.92%)</title><rect x="954.9" y="453" width="22.7" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="957.88" y="463.5" >d..</text>
</g>
<g >
<title>runtime.(*mcache).releaseAll (1,540,440 samples, 0.03%)</title><rect x="61.8" y="629" width="0.4" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="64.84" y="639.5" ></text>
</g>
<g >
<title>resched_curr (1,033,248 samples, 0.02%)</title><rect x="379.4" y="357" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="382.37" y="367.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3,006,928 samples, 0.06%)</title><rect x="760.4" y="437" width="0.7" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="763.40" y="447.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (731,136 samples, 0.02%)</title><rect x="1181.3" y="133" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1184.32" y="143.5" ></text>
</g>
<g >
<title>update_cfs_group (963,133 samples, 0.02%)</title><rect x="33.8" y="517" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="36.83" y="527.5" ></text>
</g>
<g >
<title>runtime.markroot (3,781,081 samples, 0.08%)</title><rect x="862.3" y="517" width="1.0" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="865.33" y="527.5" ></text>
</g>
<g >
<title>__alloc_pages (2,305,008 samples, 0.05%)</title><rect x="654.3" y="325" width="0.6" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="657.34" y="335.5" ></text>
</g>
<g >
<title>runtime.memmove (623,150 samples, 0.01%)</title><rect x="213.9" y="597" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="216.92" y="607.5" ></text>
</g>
<g >
<title>clear_page_erms (757,205 samples, 0.02%)</title><rect x="1084.8" y="309" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1087.84" y="319.5" ></text>
</g>
<g >
<title>sync_regs (715,482 samples, 0.01%)</title><rect x="847.7" y="661" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="850.69" y="671.5" ></text>
</g>
<g >
<title>ttwu_do_activate (606,417 samples, 0.01%)</title><rect x="530.1" y="357" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="533.08" y="367.5" ></text>
</g>
<g >
<title>native_write_msr (752,964 samples, 0.02%)</title><rect x="1174.6" y="437" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1177.63" y="447.5" ></text>
</g>
<g >
<title>runtime.gcBgMarkWorker.func2 (545,270,894 samples, 11.30%)</title><rect x="63.0" y="725" width="133.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="66.01" y="735.5" >runtime.gcBgMark..</text>
</g>
<g >
<title>runtime.ifaceeq (732,175 samples, 0.02%)</title><rect x="735.0" y="485" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="738.00" y="495.5" ></text>
</g>
<g >
<title>native_set_pte (774,996 samples, 0.02%)</title><rect x="787.1" y="357" width="0.2" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="790.13" y="367.5" ></text>
</g>
<g >
<title>alloc_empty_file (147,910,914 samples, 3.07%)</title><rect x="917.1" y="437" width="36.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="920.11" y="447.5" >all..</text>
</g>
<g >
<title>internal/godebug.lookup (623,150 samples, 0.01%)</title><rect x="213.9" y="645" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="216.92" y="655.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).int64 (779,055 samples, 0.02%)</title><rect x="809.6" y="629" width="0.1" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="812.56" y="639.5" ></text>
</g>
<g >
<title>psi_group_change (13,594,862 samples, 0.28%)</title><rect x="393.3" y="341" width="3.3" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="396.27" y="351.5" ></text>
</g>
<g >
<title>__mmput (27,773,635 samples, 0.58%)</title><rect x="54.3" y="597" width="6.8" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="57.31" y="607.5" ></text>
</g>
<g >
<title>runtime.wbMove (3,674,796 samples, 0.08%)</title><rect x="691.7" y="485" width="0.9" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="694.73" y="495.5" ></text>
</g>
<g >
<title>ptep_clear_flush (636,619 samples, 0.01%)</title><rect x="214.2" y="581" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="217.22" y="591.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (992,101 samples, 0.02%)</title><rect x="416.1" y="389" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="419.13" y="399.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (777,311 samples, 0.02%)</title><rect x="682.8" y="389" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="685.82" y="399.5" ></text>
</g>
<g >
<title>x86_pmu_enable (720,574 samples, 0.01%)</title><rect x="61.2" y="597" width="0.2" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="64.20" y="607.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (700,840 samples, 0.01%)</title><rect x="1188.7" y="629" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1191.75" y="639.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (751,800 samples, 0.02%)</title><rect x="942.6" y="405" width="0.1" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="945.55" y="415.5" ></text>
</g>
<g >
<title>runtime.(*mspan).ensureSwept (1,531,003 samples, 0.03%)</title><rect x="226.9" y="597" width="0.4" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="229.89" y="607.5" ></text>
</g>
<g >
<title>syscall.Syscall (852,894,242 samples, 17.68%)</title><rect x="870.5" y="613" width="208.7" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="873.53" y="623.5" >syscall.Syscall</text>
</g>
<g >
<title>runtime.bulkBarrierPreWrite (3,674,796 samples, 0.08%)</title><rect x="691.7" y="469" width="0.9" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="694.73" y="479.5" ></text>
</g>
<g >
<title>handle_pte_fault (757,205 samples, 0.02%)</title><rect x="1084.8" y="405" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1087.84" y="415.5" ></text>
</g>
<g >
<title>wp_page_copy (776,498 samples, 0.02%)</title><rect x="708.8" y="309" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="711.80" y="319.5" ></text>
</g>
<g >
<title>runtime.(*unwinder).next (770,714 samples, 0.02%)</title><rect x="645.1" y="341" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="648.09" y="351.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (2,307,265 samples, 0.05%)</title><rect x="789.0" y="437" width="0.6" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="792.02" y="447.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (778,966 samples, 0.02%)</title><rect x="826.1" y="437" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="829.12" y="447.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (5,497,481 samples, 0.11%)</title><rect x="485.2" y="373" width="1.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="488.16" y="383.5" ></text>
</g>
<g >
<title>native_write_msr (443,731 samples, 0.01%)</title><rect x="209.4" y="373" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="212.40" y="383.5" ></text>
</g>
<g >
<title>runtime.makemap (1,517,995 samples, 0.03%)</title><rect x="759.1" y="517" width="0.4" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="762.11" y="527.5" ></text>
</g>
<g >
<title>do_syscall_64 (20,997,888 samples, 0.44%)</title><rect x="207.7" y="565" width="5.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="210.66" y="575.5" ></text>
</g>
<g >
<title>vma_alloc_folio (1,556,589 samples, 0.03%)</title><rect x="836.7" y="517" width="0.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="839.71" y="527.5" ></text>
</g>
<g >
<title>exc_page_fault (1,433,591 samples, 0.03%)</title><rect x="188.2" y="613" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="191.19" y="623.5" ></text>
</g>
<g >
<title>runtime.scanblock (1,606,848 samples, 0.03%)</title><rect x="73.9" y="661" width="0.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="76.90" y="671.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*FeatureTest).execute-fm (763,562 samples, 0.02%)</title><rect x="1184.0" y="677" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="1187.04" y="687.5" ></text>
</g>
<g >
<title>__alloc_pages (777,603 samples, 0.02%)</title><rect x="644.9" y="245" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="647.90" y="255.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (771,817 samples, 0.02%)</title><rect x="1040.7" y="517" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1043.69" y="527.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (734,099 samples, 0.02%)</title><rect x="705.3" y="405" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="708.26" y="415.5" ></text>
</g>
<g >
<title>runtime.madvise.abi0 (1,502,420 samples, 0.03%)</title><rect x="1188.4" y="773" width="0.3" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="1191.35" y="783.5" ></text>
</g>
<g >
<title>rcu_core_si (2,112,925 samples, 0.04%)</title><rect x="412.6" y="357" width="0.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="415.62" y="367.5" ></text>
</g>
<g >
<title>runtime.cpuinit (922,345 samples, 0.02%)</title><rect x="1189.5" y="741" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="1192.52" y="751.5" ></text>
</g>
<g >
<title>dequeue_task_fair (734,300 samples, 0.02%)</title><rect x="12.0" y="533" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="15.03" y="543.5" ></text>
</g>
<g >
<title>__handle_mm_fault (2,718,355 samples, 0.06%)</title><rect x="1186.4" y="629" width="0.7" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1189.43" y="639.5" ></text>
</g>
<g >
<title>golang.org/x/sys/unix.Close (2,093,082 samples, 0.04%)</title><rect x="558.7" y="693" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="561.74" y="703.5" ></text>
</g>
<g >
<title>entry_SYSRETQ_unsafe_stack (1,422,574 samples, 0.03%)</title><rect x="1059.7" y="581" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1062.66" y="591.5" ></text>
</g>
<g >
<title>release_pte_folio (748,175 samples, 0.02%)</title><rect x="861.0" y="261" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="863.97" y="271.5" ></text>
</g>
<g >
<title>security_capable (8,852,130 samples, 0.18%)</title><rect x="1018.6" y="469" width="2.2" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="1021.59" y="479.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (664,495 samples, 0.01%)</title><rect x="53.3" y="517" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="56.35" y="527.5" ></text>
</g>
<g >
<title>get_page_from_freelist (760,634 samples, 0.02%)</title><rect x="1185.9" y="517" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1188.93" y="527.5" ></text>
</g>
<g >
<title>lapic_next_deadline (640,577 samples, 0.01%)</title><rect x="15.2" y="517" width="0.2" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="18.24" y="527.5" ></text>
</g>
<g >
<title>do_send_sig_info (739,021 samples, 0.02%)</title><rect x="62.5" y="549" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="65.49" y="559.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (5,057,741 samples, 0.10%)</title><rect x="350.6" y="437" width="1.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="353.61" y="447.5" ></text>
</g>
<g >
<title>release_pages (741,209 samples, 0.02%)</title><rect x="686.3" y="309" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="689.31" y="319.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (775,645 samples, 0.02%)</title><rect x="963.3" y="293" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="966.30" y="303.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (438,758 samples, 0.01%)</title><rect x="228.5" y="549" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="231.45" y="559.5" ></text>
</g>
<g >
<title>pick_next_task_fair (2,713,947 samples, 0.06%)</title><rect x="23.5" y="485" width="0.7" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="26.52" y="495.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (555,072 samples, 0.01%)</title><rect x="527.2" y="453" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="530.16" y="463.5" ></text>
</g>
<g >
<title>__irqentry_text_end (740,022 samples, 0.02%)</title><rect x="839.5" y="629" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="842.50" y="639.5" ></text>
</g>
<g >
<title>try_to_wake_up (773,978 samples, 0.02%)</title><rect x="948.3" y="277" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="951.33" y="287.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1,716,788 samples, 0.04%)</title><rect x="369.9" y="389" width="0.5" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="372.93" y="399.5" ></text>
</g>
<g >
<title>pick_next_task (767,329 samples, 0.02%)</title><rect x="988.4" y="341" width="0.2" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="991.38" y="351.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (2,038,757 samples, 0.04%)</title><rect x="433.5" y="421" width="0.5" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="436.53" y="431.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (776,498 samples, 0.02%)</title><rect x="708.8" y="229" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="711.80" y="239.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (598,285 samples, 0.01%)</title><rect x="954.6" y="357" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="957.57" y="367.5" ></text>
</g>
<g >
<title>__schedule (1,008,652 samples, 0.02%)</title><rect x="53.5" y="661" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="56.51" y="671.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (730,856 samples, 0.02%)</title><rect x="633.0" y="309" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="635.99" y="319.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (778,058 samples, 0.02%)</title><rect x="912.0" y="501" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="915.03" y="511.5" ></text>
</g>
<g >
<title>runtime.mapaccess2_fast32 (765,085 samples, 0.02%)</title><rect x="645.3" y="469" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="648.27" y="479.5" ></text>
</g>
<g >
<title>__handle_mm_fault (598,093 samples, 0.01%)</title><rect x="214.4" y="645" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="217.38" y="655.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (974,211 samples, 0.02%)</title><rect x="363.1" y="405" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="366.12" y="415.5" ></text>
</g>
<g >
<title>release_pages (10,224,232 samples, 0.21%)</title><rect x="58.3" y="437" width="2.5" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="61.30" y="447.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (1,506,551 samples, 0.03%)</title><rect x="697.0" y="453" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="700.02" y="463.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.(*FD).Close (914,152 samples, 0.02%)</title><rect x="1185.4" y="709" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1188.36" y="719.5" ></text>
</g>
<g >
<title>charge_memcg (778,273 samples, 0.02%)</title><rect x="694.6" y="357" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="697.65" y="367.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (728,330 samples, 0.02%)</title><rect x="630.1" y="437" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="633.11" y="447.5" ></text>
</g>
<g >
<title>prepare_task_switch (717,312 samples, 0.01%)</title><rect x="61.5" y="597" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="64.52" y="607.5" ></text>
</g>
<g >
<title>memcg_account_kmem (778,275 samples, 0.02%)</title><rect x="1012.2" y="405" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="1015.21" y="415.5" ></text>
</g>
<g >
<title>count_memcg_events.constprop.0 (753,712 samples, 0.02%)</title><rect x="734.6" y="421" width="0.2" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="737.63" y="431.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (544,706 samples, 0.01%)</title><rect x="926.3" y="309" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="929.26" y="319.5" ></text>
</g>
<g >
<title>handle_pte_fault (759,478 samples, 0.02%)</title><rect x="706.2" y="405" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="709.17" y="415.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (740,774 samples, 0.02%)</title><rect x="708.2" y="453" width="0.2" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="711.24" y="463.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.loadKernelSpec (428,057,740 samples, 8.87%)</title><rect x="559.4" y="533" width="104.8" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="562.44" y="543.5" >github.com/c..</text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (594,929 samples, 0.01%)</title><rect x="1000.7" y="277" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1003.68" y="287.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,466,568 samples, 0.03%)</title><rect x="704.2" y="421" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="707.18" y="431.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (948,871 samples, 0.02%)</title><rect x="444.6" y="389" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="447.65" y="399.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (2,761,972 samples, 0.06%)</title><rect x="10.6" y="709" width="0.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.61" y="719.5" ></text>
</g>
<g >
<title>try_charge_memcg (716,363 samples, 0.01%)</title><rect x="624.6" y="309" width="0.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="627.61" y="319.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime_field (771,887 samples, 0.02%)</title><rect x="645.6" y="293" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="648.65" y="303.5" ></text>
</g>
<g >
<title>do_user_addr_fault (624,343 samples, 0.01%)</title><rect x="213.4" y="693" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="216.36" y="703.5" ></text>
</g>
<g >
<title>set_next_buddy (1,264,061 samples, 0.03%)</title><rect x="379.6" y="357" width="0.3" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="382.62" y="367.5" ></text>
</g>
<g >
<title>runtime.mallocgc (776,692 samples, 0.02%)</title><rect x="842.1" y="661" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="845.09" y="671.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (734,099 samples, 0.02%)</title><rect x="705.3" y="421" width="0.1" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="708.26" y="431.5" ></text>
</g>
<g >
<title>__folio_alloc (4,268,500 samples, 0.09%)</title><rect x="1082.7" y="421" width="1.0" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1085.69" y="431.5" ></text>
</g>
<g >
<title>free_unref_page_list (2,332,505 samples, 0.05%)</title><rect x="54.7" y="501" width="0.6" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="57.69" y="511.5" ></text>
</g>
<g >
<title>wake_up_process (746,945 samples, 0.02%)</title><rect x="852.4" y="565" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="855.38" y="575.5" ></text>
</g>
<g >
<title>runtime.mallocgc (2,326,365 samples, 0.05%)</title><rect x="708.4" y="469" width="0.6" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="711.42" y="479.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (8,796,915 samples, 0.18%)</title><rect x="715.3" y="405" width="2.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="718.33" y="415.5" ></text>
</g>
<g >
<title>madvise_walk_vmas (5,280,578 samples, 0.11%)</title><rect x="860.8" y="373" width="1.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="863.79" y="383.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (82,922,735 samples, 1.72%)</title><rect x="29.1" y="629" width="20.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="32.10" y="639.5" ></text>
</g>
<g >
<title>runtime.callers.func1 (772,320 samples, 0.02%)</title><rect x="652.3" y="373" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="655.27" y="383.5" ></text>
</g>
<g >
<title>runtime.mProf_Malloc (772,819 samples, 0.02%)</title><rect x="570.9" y="437" width="0.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="573.87" y="447.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (771,817 samples, 0.02%)</title><rect x="1040.7" y="485" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1043.69" y="495.5" ></text>
</g>
<g >
<title>vma_alloc_folio (760,697 samples, 0.02%)</title><rect x="773.4" y="293" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="776.37" y="303.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (4,559,185 samples, 0.09%)</title><rect x="397.2" y="293" width="1.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="400.16" y="303.5" ></text>
</g>
<g >
<title>syscall.pread (766,773 samples, 0.02%)</title><rect x="12.7" y="741" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="15.67" y="751.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.parseBTF (777,676 samples, 0.02%)</title><rect x="559.2" y="581" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="562.25" y="591.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.glob..func12 (773,372 samples, 0.02%)</title><rect x="801.7" y="517" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="804.66" y="527.5" ></text>
</g>
<g >
<title>rmqueue (713,562 samples, 0.01%)</title><rect x="685.8" y="309" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="688.77" y="319.5" ></text>
</g>
<g >
<title>_raw_spin_lock (1,737,361 samples, 0.04%)</title><rect x="367.8" y="357" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="370.81" y="367.5" ></text>
</g>
<g >
<title>pfn_pte (773,279 samples, 0.02%)</title><rect x="749.3" y="341" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="752.31" y="351.5" ></text>
</g>
<g >
<title>runtime.mallocgc (11,444,702 samples, 0.24%)</title><rect x="571.4" y="437" width="2.8" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="574.44" y="447.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (1,411,649 samples, 0.03%)</title><rect x="877.7" y="501" width="0.4" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="880.75" y="511.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (465,246 samples, 0.01%)</title><rect x="523.3" y="421" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="526.31" y="431.5" ></text>
</g>
<g >
<title>runtime.findObject (2,928,979 samples, 0.06%)</title><rect x="572.6" y="309" width="0.7" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="575.56" y="319.5" ></text>
</g>
<g >
<title>madvise_collapse (1,502,420 samples, 0.03%)</title><rect x="1188.4" y="661" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1191.35" y="671.5" ></text>
</g>
<g >
<title>do_syscall_64 (34,139,937 samples, 0.71%)</title><rect x="53.3" y="757" width="8.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="56.35" y="767.5" ></text>
</g>
<g >
<title>charge_memcg (772,532 samples, 0.02%)</title><rect x="747.8" y="325" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="750.80" y="335.5" ></text>
</g>
<g >
<title>x86_pmu_disable (694,450 samples, 0.01%)</title><rect x="196.4" y="405" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="199.40" y="415.5" ></text>
</g>
<g >
<title>begin_current_label_crit_section (5,627,398 samples, 0.12%)</title><rect x="925.0" y="373" width="1.4" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="928.01" y="383.5" ></text>
</g>
<g >
<title>__irqentry_text_end (777,057 samples, 0.02%)</title><rect x="662.9" y="437" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="665.86" y="447.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (747,206 samples, 0.02%)</title><rect x="571.4" y="357" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="574.44" y="367.5" ></text>
</g>
<g >
<title>_raw_spin_lock (1,954,912 samples, 0.04%)</title><rect x="423.3" y="437" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="426.34" y="447.5" ></text>
</g>
<g >
<title>error_entry (741,138 samples, 0.02%)</title><rect x="701.3" y="469" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="704.27" y="479.5" ></text>
</g>
<g >
<title>__do_softirq (2,112,925 samples, 0.04%)</title><rect x="412.6" y="373" width="0.5" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="415.62" y="383.5" ></text>
</g>
<g >
<title>__irqentry_text_end (765,766 samples, 0.02%)</title><rect x="188.0" y="629" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="191.00" y="639.5" ></text>
</g>
<g >
<title>dentry_unlink_inode (2,739,536 samples, 0.06%)</title><rect x="514.1" y="469" width="0.6" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="517.07" y="479.5" ></text>
</g>
<g >
<title>runtime.save (904,324 samples, 0.02%)</title><rect x="246.1" y="597" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="249.12" y="607.5" ></text>
</g>
<g >
<title>runtime.casgstatus (5,256,256 samples, 0.11%)</title><rect x="248.5" y="613" width="1.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="251.47" y="623.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (694,450 samples, 0.01%)</title><rect x="196.4" y="453" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="199.40" y="463.5" ></text>
</g>
<g >
<title>get_page_from_freelist (586,737 samples, 0.01%)</title><rect x="1001.6" y="261" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1004.63" y="271.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (691,029 samples, 0.01%)</title><rect x="12.2" y="549" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="15.21" y="559.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (713,403 samples, 0.01%)</title><rect x="18.5" y="661" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="21.54" y="671.5" ></text>
</g>
<g >
<title>do_user_addr_fault (715,536 samples, 0.01%)</title><rect x="1188.9" y="517" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1191.92" y="527.5" ></text>
</g>
<g >
<title>sched_clock_cpu (7,963,714 samples, 0.17%)</title><rect x="484.8" y="421" width="2.0" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="487.82" y="431.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (5,222,368 samples, 0.11%)</title><rect x="1181.7" y="565" width="1.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1184.69" y="575.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (3,844,439 samples, 0.08%)</title><rect x="801.8" y="517" width="1.0" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="804.85" y="527.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (882,409,703 samples, 18.29%)</title><rect x="315.5" y="549" width="215.9" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="318.51" y="559.5" >exit_to_user_mode_loop</text>
</g>
<g >
<title>wake_up_process (629,364 samples, 0.01%)</title><rect x="926.4" y="293" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="929.39" y="303.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (774,761 samples, 0.02%)</title><rect x="734.8" y="485" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="737.81" y="495.5" ></text>
</g>
<g >
<title>handle_pte_fault (4,321,822 samples, 0.09%)</title><rect x="624.1" y="373" width="1.0" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="627.07" y="383.5" ></text>
</g>
<g >
<title>runtime.tgkill.abi0 (2,291,579 samples, 0.05%)</title><rect x="26.1" y="661" width="0.6" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="29.14" y="671.5" ></text>
</g>
<g >
<title>runtime.casgstatus (938,910 samples, 0.02%)</title><rect x="243.0" y="629" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="246.02" y="639.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (1,293,584 samples, 0.03%)</title><rect x="57.6" y="437" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="60.59" y="447.5" ></text>
</g>
<g >
<title>array_map_alloc (130,412,178 samples, 2.70%)</title><rect x="988.9" y="501" width="31.9" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="991.86" y="511.5" >ar..</text>
</g>
<g >
<title>__next_zones_zonelist (779,914 samples, 0.02%)</title><rect x="840.1" y="485" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="843.06" y="495.5" ></text>
</g>
<g >
<title>runtime.mcall (1,401,444 samples, 0.03%)</title><rect x="196.4" y="709" width="0.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="199.40" y="719.5" ></text>
</g>
<g >
<title>runtime.memmove (7,114,857 samples, 0.15%)</title><rect x="1186.1" y="709" width="1.8" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1189.11" y="719.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (922,345 samples, 0.02%)</title><rect x="1189.5" y="661" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1192.52" y="671.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.testGetMapsInfo (184,272,452 samples, 3.82%)</title><rect x="802.8" y="709" width="45.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="805.79" y="719.5" >gith..</text>
</g>
<g >
<title>tick_sched_handle (772,957 samples, 0.02%)</title><rect x="639.4" y="357" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="642.36" y="367.5" ></text>
</g>
<g >
<title>runtime.(*mcache).allocLarge (774,187 samples, 0.02%)</title><rect x="658.3" y="437" width="0.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="661.32" y="447.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,887,473 samples, 0.08%)</title><rect x="964.0" y="405" width="1.0" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="967.01" y="415.5" ></text>
</g>
<g >
<title>pick_file (3,557,449 samples, 0.07%)</title><rect x="291.6" y="549" width="0.9" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="294.65" y="559.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (84,446,614 samples, 1.75%)</title><rect x="536.8" y="613" width="20.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="539.78" y="623.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,562,245 samples, 0.03%)</title><rect x="839.7" y="469" width="0.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="842.68" y="479.5" ></text>
</g>
<g >
<title>__call_rcu_common.constprop.0 (11,791,024 samples, 0.24%)</title><rect x="414.3" y="469" width="2.9" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="417.27" y="479.5" ></text>
</g>
<g >
<title>rmqueue (774,705 samples, 0.02%)</title><rect x="847.3" y="485" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="850.31" y="495.5" ></text>
</g>
<g >
<title>asm_sysvec_call_function_single (4,339,894 samples, 0.09%)</title><rect x="203.4" y="693" width="1.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="206.44" y="703.5" ></text>
</g>
<g >
<title>prepare_task_switch (1,234,505 samples, 0.03%)</title><rect x="53.8" y="661" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="56.82" y="671.5" ></text>
</g>
<g >
<title>runtime.lock2 (5,285,817 samples, 0.11%)</title><rect x="227.3" y="597" width="1.3" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="230.27" y="607.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.CORERelocate (428,057,740 samples, 8.87%)</title><rect x="559.4" y="565" width="104.8" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="562.44" y="575.5" >github.com/c..</text>
</g>
<g >
<title>enqueue_task_fair (1,350,791 samples, 0.03%)</title><rect x="434.3" y="261" width="0.4" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="437.32" y="271.5" ></text>
</g>
<g >
<title>runtime.notetsleep (487,588 samples, 0.01%)</title><rect x="18.7" y="693" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="21.73" y="703.5" ></text>
</g>
<g >
<title>fput (2,660,715 samples, 0.06%)</title><rect x="290.8" y="549" width="0.6" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="293.77" y="559.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,887,565 samples, 0.06%)</title><rect x="215.6" y="677" width="0.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="218.62" y="687.5" ></text>
</g>
<g >
<title>vma_alloc_folio (731,613 samples, 0.02%)</title><rect x="631.8" y="165" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="634.75" y="175.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (750,505 samples, 0.02%)</title><rect x="131.4" y="613" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="134.42" y="623.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6,202,815 samples, 0.13%)</title><rect x="656.4" y="357" width="1.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="659.42" y="367.5" ></text>
</g>
<g >
<title>runtime.makeslice (2,308,171 samples, 0.05%)</title><rect x="658.3" y="469" width="0.6" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="661.32" y="479.5" ></text>
</g>
<g >
<title>do_user_addr_fault (18,200,310 samples, 0.38%)</title><rect x="583.9" y="421" width="4.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="586.88" y="431.5" ></text>
</g>
<g >
<title>runtime.memmove (9,941,975 samples, 0.21%)</title><rect x="709.0" y="485" width="2.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="711.99" y="495.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (770,915 samples, 0.02%)</title><rect x="648.8" y="357" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="651.78" y="367.5" ></text>
</g>
<g >
<title>schedule (8,537,090 samples, 0.18%)</title><rect x="22.8" y="533" width="2.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="25.80" y="543.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (6,681,846 samples, 0.14%)</title><rect x="860.6" y="597" width="1.7" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="863.62" y="607.5" ></text>
</g>
<g >
<title>error_entry (745,739 samples, 0.02%)</title><rect x="160.0" y="661" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="163.01" y="671.5" ></text>
</g>
<g >
<title>handle_mm_fault (778,859 samples, 0.02%)</title><rect x="691.4" y="373" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="694.37" y="383.5" ></text>
</g>
<g >
<title>states_equal (768,264 samples, 0.02%)</title><rect x="802.4" y="357" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="805.41" y="367.5" ></text>
</g>
<g >
<title>sysvec_call_function_single (706,109 samples, 0.01%)</title><rect x="131.8" y="661" width="0.2" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="134.79" y="671.5" ></text>
</g>
<g >
<title>do_epoll_pwait.part.0 (581,447 samples, 0.01%)</title><rect x="18.6" y="613" width="0.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="21.57" y="623.5" ></text>
</g>
<g >
<title>idr_alloc_cyclic (19,692,841 samples, 0.41%)</title><rect x="1031.5" y="501" width="4.8" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="1034.48" y="511.5" ></text>
</g>
<g >
<title>enqueue_entity (606,417 samples, 0.01%)</title><rect x="530.1" y="309" width="0.1" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="533.08" y="319.5" ></text>
</g>
<g >
<title>ttwu_do_activate (438,758 samples, 0.01%)</title><rect x="228.5" y="453" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="231.45" y="463.5" ></text>
</g>
<g >
<title>free_pages_and_swap_cache (3,885,979 samples, 0.08%)</title><rect x="54.3" y="533" width="1.0" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="57.31" y="543.5" ></text>
</g>
<g >
<title>asm_common_interrupt (562,113 samples, 0.01%)</title><rect x="412.2" y="437" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="415.16" y="447.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,556,589 samples, 0.03%)</title><rect x="836.7" y="581" width="0.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="839.71" y="591.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (2,724,060 samples, 0.06%)</title><rect x="1035.1" y="437" width="0.6" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1038.08" y="447.5" ></text>
</g>
<g >
<title>queue_work_on (223,897,021 samples, 4.64%)</title><rect x="358.9" y="453" width="54.8" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="361.95" y="463.5" >queue..</text>
</g>
<g >
<title>select_idle_sibling (439,598 samples, 0.01%)</title><rect x="416.3" y="309" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="419.27" y="319.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (1,493,170 samples, 0.03%)</title><rect x="205.2" y="517" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="208.17" y="527.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.ProgLoad (773,372 samples, 0.02%)</title><rect x="801.7" y="485" width="0.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="804.66" y="495.5" ></text>
</g>
<g >
<title>shuffle_freelist (6,820,982 samples, 0.14%)</title><rect x="940.9" y="357" width="1.7" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="943.88" y="367.5" ></text>
</g>
<g >
<title>regsafe (768,264 samples, 0.02%)</title><rect x="802.4" y="341" width="0.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="805.41" y="351.5" ></text>
</g>
<g >
<title>native_apic_msr_eoi_write (775,645 samples, 0.02%)</title><rect x="963.3" y="277" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="966.30" y="287.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4,587,648 samples, 0.10%)</title><rect x="856.5" y="485" width="1.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="859.50" y="495.5" ></text>
</g>
<g >
<title>runtime.tracebackPCs (764,227 samples, 0.02%)</title><rect x="574.1" y="341" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="577.05" y="351.5" ></text>
</g>
<g >
<title>sync_regs (1,466,265 samples, 0.03%)</title><rect x="705.4" y="453" width="0.4" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="708.44" y="463.5" ></text>
</g>
<g >
<title>get_page_from_freelist (757,205 samples, 0.02%)</title><rect x="1084.8" y="325" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1087.84" y="335.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).push (722,016 samples, 0.01%)</title><rect x="702.0" y="405" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="705.03" y="415.5" ></text>
</g>
<g >
<title>sync_regs (769,878 samples, 0.02%)</title><rect x="789.6" y="485" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="792.58" y="495.5" ></text>
</g>
<g >
<title>handle_mm_fault (636,619 samples, 0.01%)</title><rect x="214.2" y="661" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="217.22" y="671.5" ></text>
</g>
<g >
<title>update_blocked_averages (773,766 samples, 0.02%)</title><rect x="877.6" y="485" width="0.1" height="15.0" fill="rgb(240,163,38)" rx="2" ry="2" />
<text x="880.56" y="495.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (732,963 samples, 0.02%)</title><rect x="696.5" y="405" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="699.47" y="415.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (772,957 samples, 0.02%)</title><rect x="639.4" y="389" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="642.36" y="399.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (636,619 samples, 0.01%)</title><rect x="214.2" y="565" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="217.22" y="575.5" ></text>
</g>
<g >
<title>zap_pte_range (17,935,313 samples, 0.37%)</title><rect x="56.7" y="501" width="4.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="59.72" y="511.5" ></text>
</g>
<g >
<title>get_page_from_freelist (13,093,238 samples, 0.27%)</title><rect x="750.6" y="293" width="3.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="753.63" y="303.5" ></text>
</g>
<g >
<title>clear_page_erms (6,160,482 samples, 0.13%)</title><rect x="607.5" y="293" width="1.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="610.51" y="303.5" ></text>
</g>
<g >
<title>wake_up_process (642,381 samples, 0.01%)</title><rect x="319.1" y="437" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="322.07" y="447.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irq (750,379 samples, 0.02%)</title><rect x="1188.5" y="549" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1191.54" y="559.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (732,963 samples, 0.02%)</title><rect x="696.5" y="357" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="699.47" y="367.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (1,250,415 samples, 0.03%)</title><rect x="587.0" y="261" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="589.99" y="271.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,844,477 samples, 0.08%)</title><rect x="654.0" y="437" width="0.9" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="656.97" y="447.5" ></text>
</g>
<g >
<title>runtime.(*mspan).refillAllocCache (770,917 samples, 0.02%)</title><rect x="663.0" y="421" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="666.05" y="431.5" ></text>
</g>
<g >
<title>exc_page_fault (760,047 samples, 0.02%)</title><rect x="759.3" y="405" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="762.29" y="415.5" ></text>
</g>
<g >
<title>__alloc_pages (4,364,233 samples, 0.09%)</title><rect x="610.1" y="309" width="1.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="613.12" y="319.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (725,573 samples, 0.02%)</title><rect x="1084.3" y="405" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="1087.28" y="415.5" ></text>
</g>
<g >
<title>rb_insert_color (808,087 samples, 0.02%)</title><rect x="389.8" y="341" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="392.76" y="351.5" ></text>
</g>
<g >
<title>tick_program_event (6,027,761 samples, 0.12%)</title><rect x="30.7" y="565" width="1.5" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="33.70" y="575.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,051,245,792 samples, 21.79%)</title><rect x="277.6" y="597" width="257.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="280.57" y="607.5" >do_syscall_64</text>
</g>
<g >
<title>_raw_spin_lock_irqsave (636,239 samples, 0.01%)</title><rect x="363.0" y="405" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="365.96" y="415.5" ></text>
</g>
<g >
<title>mmap_region (747,206 samples, 0.02%)</title><rect x="571.4" y="181" width="0.2" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="574.44" y="191.5" ></text>
</g>
<g >
<title>rmqueue (1,473,902 samples, 0.03%)</title><rect x="962.9" y="309" width="0.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="965.94" y="319.5" ></text>
</g>
<g >
<title>__kmalloc_node (1,521,530 samples, 0.03%)</title><rect x="940.5" y="341" width="0.4" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="943.51" y="351.5" ></text>
</g>
<g >
<title>__folio_throttle_swaprate (773,995 samples, 0.02%)</title><rect x="786.4" y="373" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="789.37" y="383.5" ></text>
</g>
<g >
<title>_copy_from_user (1,506,953 samples, 0.03%)</title><rect x="1040.1" y="533" width="0.4" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1043.15" y="543.5" ></text>
</g>
<g >
<title>__check_object_size (775,533 samples, 0.02%)</title><rect x="818.2" y="453" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="821.21" y="463.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.mapGaugeEbpf.mapsInfo.func1 (771,505 samples, 0.02%)</title><rect x="841.6" y="677" width="0.1" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="844.55" y="687.5" ></text>
</g>
<g >
<title>__radix_tree_replace (1,505,200 samples, 0.03%)</title><rect x="1035.7" y="453" width="0.4" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="1038.75" y="463.5" ></text>
</g>
<g >
<title>runtime.findRunnable (1,436,948 samples, 0.03%)</title><rect x="1188.9" y="693" width="0.4" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="1191.92" y="703.5" ></text>
</g>
<g >
<title>__schedule (3,060,136 samples, 0.06%)</title><rect x="512.2" y="469" width="0.7" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="515.15" y="479.5" ></text>
</g>
<g >
<title>runtime.(*gcControllerState).update (715,664 samples, 0.01%)</title><rect x="631.4" y="405" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="634.39" y="415.5" ></text>
</g>
<g >
<title>enqueue_task (773,978 samples, 0.02%)</title><rect x="948.3" y="245" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="951.33" y="255.5" ></text>
</g>
<g >
<title>do_anonymous_page (1,427,175 samples, 0.03%)</title><rect x="622.1" y="341" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="625.12" y="351.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (665,534 samples, 0.01%)</title><rect x="53.2" y="693" width="0.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="56.18" y="703.5" ></text>
</g>
<g >
<title>runtime.gcstopm (1,436,948 samples, 0.03%)</title><rect x="1188.9" y="677" width="0.4" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="1191.92" y="687.5" ></text>
</g>
<g >
<title>pfn_pte (765,499 samples, 0.02%)</title><rect x="867.1" y="517" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="870.14" y="527.5" ></text>
</g>
<g >
<title>set_next_buddy (478,117 samples, 0.01%)</title><rect x="15.9" y="533" width="0.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="18.92" y="543.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (1,553,237 samples, 0.03%)</title><rect x="798.4" y="357" width="0.4" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="801.45" y="367.5" ></text>
</g>
<g >
<title>handle_mm_fault (728,330 samples, 0.02%)</title><rect x="630.1" y="389" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="633.11" y="399.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,558,509 samples, 0.07%)</title><rect x="13.7" y="597" width="0.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="16.66" y="607.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (636,619 samples, 0.01%)</title><rect x="214.2" y="709" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="217.22" y="719.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (708,317 samples, 0.01%)</title><rect x="624.8" y="325" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="627.78" y="335.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,857,552 samples, 0.04%)</title><rect x="987.7" y="357" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="990.74" y="367.5" ></text>
</g>
<g >
<title>runtime.(*gcWork).put (418,342 samples, 0.01%)</title><rect x="74.2" y="629" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="77.20" y="639.5" ></text>
</g>
<g >
<title>do_anonymous_page (759,478 samples, 0.02%)</title><rect x="706.2" y="389" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="709.17" y="399.5" ></text>
</g>
<g >
<title>handle_mm_fault (6,723,901 samples, 0.14%)</title><rect x="699.4" y="421" width="1.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="702.45" y="431.5" ></text>
</g>
<g >
<title>pick_next_task (2,713,947 samples, 0.06%)</title><rect x="23.5" y="501" width="0.7" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="26.52" y="511.5" ></text>
</g>
<g >
<title>ext4_finish_bio (485,085 samples, 0.01%)</title><rect x="287.3" y="341" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="290.34" y="351.5" ></text>
</g>
<g >
<title>enqueue_task (544,706 samples, 0.01%)</title><rect x="926.3" y="213" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="929.26" y="223.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,519,860 samples, 0.07%)</title><rect x="204.9" y="677" width="0.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="207.86" y="687.5" ></text>
</g>
<g >
<title>runtime.mProf_Malloc (764,227 samples, 0.02%)</title><rect x="574.1" y="405" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="577.05" y="415.5" ></text>
</g>
<g >
<title>runtime.schedule (29,977,720 samples, 0.62%)</title><rect x="205.9" y="661" width="7.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="208.90" y="671.5" ></text>
</g>
<g >
<title>get_page_from_freelist (770,701 samples, 0.02%)</title><rect x="630.6" y="245" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="633.65" y="255.5" ></text>
</g>
<g >
<title>runtime.acquirep (883,938 samples, 0.02%)</title><rect x="62.8" y="645" width="0.2" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text x="65.79" y="655.5" ></text>
</g>
<g >
<title>enqueue_task (705,104 samples, 0.01%)</title><rect x="293.8" y="421" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="296.84" y="431.5" ></text>
</g>
<g >
<title>runtime.stopm (1,401,444 samples, 0.03%)</title><rect x="196.4" y="645" width="0.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="199.40" y="655.5" ></text>
</g>
<g >
<title>dequeue_task (485,325 samples, 0.01%)</title><rect x="13.9" y="469" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="16.86" y="479.5" ></text>
</g>
<g >
<title>syscall.Syscall (81,753,854 samples, 1.69%)</title><rect x="816.7" y="581" width="20.0" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="819.71" y="591.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.newEssentialName (761,259 samples, 0.02%)</title><rect x="602.0" y="501" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="604.96" y="511.5" ></text>
</g>
<g >
<title>handle_mm_fault (10,351,505 samples, 0.21%)</title><rect x="597.2" y="421" width="2.6" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="600.24" y="431.5" ></text>
</g>
<g >
<title>__flush_smp_call_function_queue (736,676 samples, 0.02%)</title><rect x="205.5" y="405" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="208.54" y="415.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (758,352 samples, 0.02%)</title><rect x="943.3" y="389" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="946.27" y="399.5" ></text>
</g>
<g >
<title>do_wp_page (2,916,699 samples, 0.06%)</title><rect x="695.0" y="389" width="0.7" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="698.03" y="399.5" ></text>
</g>
<g >
<title>runtime.(*hmap).newoverflow (763,858 samples, 0.02%)</title><rect x="601.6" y="469" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="604.59" y="479.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (562,113 samples, 0.01%)</title><rect x="412.2" y="389" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="415.16" y="399.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).decref (771,505 samples, 0.02%)</title><rect x="841.6" y="613" width="0.1" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="844.55" y="623.5" ></text>
</g>
<g >
<title>mod_memcg_state (752,270 samples, 0.02%)</title><rect x="1012.4" y="405" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1015.40" y="415.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (777,311 samples, 0.02%)</title><rect x="682.8" y="421" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="685.82" y="431.5" ></text>
</g>
<g >
<title>sched_clock_cpu (628,186 samples, 0.01%)</title><rect x="930.2" y="85" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="933.25" y="95.5" ></text>
</g>
<g >
<title>pick_next_task (609,276 samples, 0.01%)</title><rect x="14.1" y="469" width="0.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="17.10" y="479.5" ></text>
</g>
<g >
<title>blk_update_request (562,113 samples, 0.01%)</title><rect x="412.2" y="293" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="415.16" y="303.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.unmarshalBtfType (6,034,822 samples, 0.13%)</title><rect x="637.2" y="469" width="1.4" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="640.15" y="479.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (769,267 samples, 0.02%)</title><rect x="989.8" y="453" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="992.80" y="463.5" ></text>
</g>
<g >
<title>dput (552,817 samples, 0.01%)</title><rect x="527.9" y="501" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="530.88" y="511.5" ></text>
</g>
<g >
<title>__x64_sys_futex (505,836 samples, 0.01%)</title><rect x="19.6" y="597" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="22.60" y="607.5" ></text>
</g>
<g >
<title>runtime.strhash (2,312,148 samples, 0.05%)</title><rect x="800.3" y="517" width="0.6" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="803.34" y="527.5" ></text>
</g>
<g >
<title>exc_page_fault (1,556,589 samples, 0.03%)</title><rect x="836.7" y="613" width="0.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="839.71" y="623.5" ></text>
</g>
<g >
<title>update_rq_clock (647,681 samples, 0.01%)</title><rect x="488.6" y="453" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="491.58" y="463.5" ></text>
</g>
<g >
<title>clear_page_erms (2,271,907 samples, 0.05%)</title><rect x="760.6" y="325" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="763.58" y="335.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (1,802,950 samples, 0.04%)</title><rect x="534.9" y="597" width="0.4" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="537.87" y="607.5" ></text>
</g>
<g >
<title>_atomic_dec_and_lock (483,704 samples, 0.01%)</title><rect x="506.6" y="437" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="509.63" y="447.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (715,536 samples, 0.01%)</title><rect x="1188.9" y="373" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1191.92" y="383.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (23,760,016 samples, 0.49%)</title><rect x="19.1" y="613" width="5.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="22.13" y="623.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (96,386,674 samples, 2.00%)</title><rect x="27.7" y="677" width="23.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="30.67" y="687.5" >e..</text>
</g>
<g >
<title>clear_page_erms (634,485 samples, 0.01%)</title><rect x="1035.4" y="325" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1038.40" y="335.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (1,103,691 samples, 0.02%)</title><rect x="62.5" y="725" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="65.46" y="735.5" ></text>
</g>
<g >
<title>__irqentry_text_end (773,504 samples, 0.02%)</title><rect x="682.4" y="469" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="685.44" y="479.5" ></text>
</g>
<g >
<title>runtime.memmove (15,130,909 samples, 0.31%)</title><rect x="697.8" y="485" width="3.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="700.75" y="495.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (2,238,871 samples, 0.05%)</title><rect x="757.8" y="421" width="0.6" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="760.83" y="431.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (5,981,234 samples, 0.12%)</title><rect x="860.6" y="501" width="1.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="863.62" y="511.5" ></text>
</g>
<g >
<title>do_anonymous_page (770,701 samples, 0.02%)</title><rect x="630.6" y="325" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="633.65" y="335.5" ></text>
</g>
<g >
<title>do_mmap (738,100 samples, 0.02%)</title><rect x="1085.0" y="357" width="0.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="1088.02" y="367.5" ></text>
</g>
<g >
<title>irq_exit_rcu (701,326 samples, 0.01%)</title><rect x="253.5" y="581" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="256.53" y="591.5" ></text>
</g>
<g >
<title>mas_walk (763,844 samples, 0.02%)</title><rect x="754.0" y="405" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="757.02" y="415.5" ></text>
</g>
<g >
<title>runtime.findObject (748,986 samples, 0.02%)</title><rect x="758.2" y="389" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="761.19" y="399.5" ></text>
</g>
<g >
<title>ksys_mmap_pgoff (747,206 samples, 0.02%)</title><rect x="571.4" y="229" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="574.44" y="239.5" ></text>
</g>
<g >
<title>exc_page_fault (7,462,375 samples, 0.15%)</title><rect x="699.4" y="453" width="1.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="702.45" y="463.5" ></text>
</g>
<g >
<title>runtime.greyobject (777,311 samples, 0.02%)</title><rect x="682.8" y="341" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="685.82" y="351.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (718,800 samples, 0.01%)</title><rect x="632.5" y="421" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="635.46" y="431.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (705,104 samples, 0.01%)</title><rect x="293.8" y="501" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="296.84" y="511.5" ></text>
</g>
<g >
<title>runtime.newstack (2,239,398 samples, 0.05%)</title><rect x="1188.7" y="757" width="0.6" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="1191.72" y="767.5" ></text>
</g>
<g >
<title>runtime.findObject (736,789 samples, 0.02%)</title><rect x="704.7" y="389" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="707.71" y="399.5" ></text>
</g>
<g >
<title>exc_page_fault (11,472,968 samples, 0.24%)</title><rect x="844.7" y="645" width="2.8" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="847.70" y="655.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (3,875,866 samples, 0.08%)</title><rect x="772.0" y="501" width="1.0" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="775.05" y="511.5" ></text>
</g>
<g >
<title>runtime.ifaceeq (770,699 samples, 0.02%)</title><rect x="735.5" y="469" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="738.54" y="479.5" ></text>
</g>
<g >
<title>exc_page_fault (623,150 samples, 0.01%)</title><rect x="213.9" y="565" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="216.92" y="575.5" ></text>
</g>
<g >
<title>__handle_mm_fault (28,493,272 samples, 0.59%)</title><rect x="747.0" y="405" width="7.0" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="750.05" y="415.5" ></text>
</g>
<g >
<title>runtime.initsig (559,743 samples, 0.01%)</title><rect x="1189.3" y="709" width="0.1" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="1192.27" y="719.5" ></text>
</g>
<g >
<title>do_user_addr_fault (613,839 samples, 0.01%)</title><rect x="12.4" y="629" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="15.38" y="639.5" ></text>
</g>
<g >
<title>cpuacct_charge (746,945 samples, 0.02%)</title><rect x="852.4" y="453" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="855.38" y="463.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (1,096,181 samples, 0.02%)</title><rect x="209.9" y="341" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="212.94" y="351.5" ></text>
</g>
<g >
<title>__irqentry_text_end (737,547 samples, 0.02%)</title><rect x="623.7" y="453" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="626.71" y="463.5" ></text>
</g>
<g >
<title>syscall.pread (8,180,954 samples, 0.17%)</title><rect x="640.1" y="389" width="2.0" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="643.11" y="399.5" ></text>
</g>
<g >
<title>set_next_entity (1,177,260 samples, 0.02%)</title><rect x="464.7" y="421" width="0.3" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="467.68" y="431.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (737,957 samples, 0.02%)</title><rect x="633.5" y="373" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="636.53" y="383.5" ></text>
</g>
<g >
<title>exc_page_fault (776,651 samples, 0.02%)</title><rect x="1181.7" y="421" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1184.69" y="431.5" ></text>
</g>
<g >
<title>__cond_resched (286,488,462 samples, 5.94%)</title><rect x="418.7" y="469" width="70.0" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="421.66" y="479.5" >__cond_..</text>
</g>
<g >
<title>tlb_flush_mmu (12,386,329 samples, 0.26%)</title><rect x="58.0" y="485" width="3.0" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="60.95" y="495.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (761,318 samples, 0.02%)</title><rect x="1082.2" y="405" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="1085.21" y="415.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (1,476,108 samples, 0.03%)</title><rect x="692.3" y="437" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="695.27" y="447.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (1,549,483 samples, 0.03%)</title><rect x="769.0" y="501" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="772.04" y="511.5" ></text>
</g>
<g >
<title>runtime.mstart.abi0 (144,981,682 samples, 3.01%)</title><rect x="17.2" y="757" width="35.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="20.18" y="767.5" >run..</text>
</g>
<g >
<title>__zone_watermark_ok (776,454 samples, 0.02%)</title><rect x="994.1" y="341" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="997.13" y="351.5" ></text>
</g>
<g >
<title>exc_page_fault (613,839 samples, 0.01%)</title><rect x="12.4" y="645" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="15.38" y="655.5" ></text>
</g>
<g >
<title>handle_signal (772,321 samples, 0.02%)</title><rect x="1084.6" y="421" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1087.65" y="431.5" ></text>
</g>
<g >
<title>runtime.entersyscall (770,557 samples, 0.02%)</title><rect x="640.1" y="357" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="643.11" y="367.5" ></text>
</g>
<g >
<title>__rcu_read_lock (1,757,823 samples, 0.04%)</title><rect x="490.5" y="437" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="493.52" y="447.5" ></text>
</g>
<g >
<title>vma_alloc_folio (4,504,935 samples, 0.09%)</title><rect x="842.5" y="549" width="1.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="845.47" y="559.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (1,001,066 samples, 0.02%)</title><rect x="30.1" y="549" width="0.3" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="33.12" y="559.5" ></text>
</g>
<g >
<title>lockref_put_return (10,652,902 samples, 0.22%)</title><rect x="514.9" y="469" width="2.6" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" />
<text x="517.91" y="479.5" ></text>
</g>
<g >
<title>[unknown] (571,546 samples, 0.01%)</title><rect x="869.8" y="645" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="872.75" y="655.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,433,591 samples, 0.03%)</title><rect x="188.2" y="629" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="191.19" y="639.5" ></text>
</g>
<g >
<title>runtime.gcMarkDone (3,634,699 samples, 0.08%)</title><rect x="61.8" y="741" width="0.9" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="64.84" y="751.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (3,083,124 samples, 0.06%)</title><rect x="771.1" y="485" width="0.8" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="774.10" y="495.5" ></text>
</g>
<g >
<title>runtime.greyobject (986,718 samples, 0.02%)</title><rect x="74.1" y="645" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="77.06" y="655.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (760,047 samples, 0.02%)</title><rect x="759.3" y="421" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="762.29" y="431.5" ></text>
</g>
<g >
<title>__alloc_pages (775,002 samples, 0.02%)</title><rect x="772.2" y="341" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="775.23" y="351.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (459,526 samples, 0.01%)</title><rect x="1010.4" y="357" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1013.37" y="367.5" ></text>
</g>
<g >
<title>perf_ctx_enable (23,676,802 samples, 0.49%)</title><rect x="427.5" y="405" width="5.8" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="430.47" y="415.5" ></text>
</g>
<g >
<title>set_next_buddy (444,736 samples, 0.01%)</title><rect x="208.9" y="437" width="0.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="211.94" y="447.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.copyTypes (387,930,729 samples, 8.04%)</title><rect x="666.4" y="533" width="94.9" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="669.41" y="543.5" >github.com/..</text>
</g>
<g >
<title>x86_pmu_disable (1,125,827 samples, 0.02%)</title><rect x="476.0" y="389" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="479.04" y="399.5" ></text>
</g>
<g >
<title>next_uptodate_page (589,552 samples, 0.01%)</title><rect x="214.1" y="533" width="0.1" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="217.08" y="543.5" ></text>
</g>
<g >
<title>sched_clock_cpu (510,716 samples, 0.01%)</title><rect x="43.4" y="517" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="46.45" y="527.5" ></text>
</g>
<g >
<title>__schedule (665,534 samples, 0.01%)</title><rect x="53.2" y="661" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="56.18" y="671.5" ></text>
</g>
<g >
<title>psi_task_change (28,852,118 samples, 0.60%)</title><rect x="391.3" y="357" width="7.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="394.34" y="367.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,197,399 samples, 0.05%)</title><rect x="704.2" y="453" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="707.18" y="463.5" ></text>
</g>
<g >
<title>bpf_seq_read (77,109,072 samples, 1.60%)</title><rect x="817.8" y="469" width="18.9" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="820.84" y="479.5" ></text>
</g>
<g >
<title>do_user_addr_fault (777,603 samples, 0.02%)</title><rect x="644.9" y="373" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="647.90" y="383.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5,280,578 samples, 0.11%)</title><rect x="860.8" y="437" width="1.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="863.79" y="447.5" ></text>
</g>
<g >
<title>dequeue_task (720,067 samples, 0.01%)</title><rect x="16.5" y="565" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="19.53" y="575.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (740,337 samples, 0.02%)</title><rect x="1041.4" y="485" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1044.37" y="495.5" ></text>
</g>
<g >
<title>__x64_sys_epoll_pwait (581,447 samples, 0.01%)</title><rect x="18.6" y="629" width="0.1" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="21.57" y="639.5" ></text>
</g>
<g >
<title>rmqueue (2,111,784 samples, 0.04%)</title><rect x="1083.2" y="373" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1086.21" y="383.5" ></text>
</g>
<g >
<title>runtime.makeslice (782,489 samples, 0.02%)</title><rect x="719.0" y="501" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="721.96" y="511.5" ></text>
</g>
<g >
<title>do_user_addr_fault (528,819 samples, 0.01%)</title><rect x="1189.7" y="677" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1192.74" y="687.5" ></text>
</g>
<g >
<title>gosave_systemstack_switch (471,874 samples, 0.01%)</title><rect x="225.3" y="645" width="0.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="228.33" y="655.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (670,398 samples, 0.01%)</title><rect x="573.9" y="245" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="576.89" y="255.5" ></text>
</g>
<g >
<title>__folio_alloc (1,556,589 samples, 0.03%)</title><rect x="836.7" y="501" width="0.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="839.71" y="511.5" ></text>
</g>
<g >
<title>runtime.newobject (2,313,853 samples, 0.05%)</title><rect x="663.6" y="485" width="0.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="666.59" y="495.5" ></text>
</g>
<g >
<title>runtime.memmove (2,311,308 samples, 0.05%)</title><rect x="10.0" y="677" width="0.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="13.00" y="687.5" ></text>
</g>
<g >
<title>folio_add_lru (730,856 samples, 0.02%)</title><rect x="633.0" y="293" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="635.99" y="303.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (5,222,368 samples, 0.11%)</title><rect x="1181.7" y="533" width="1.3" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="1184.69" y="543.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (734,099 samples, 0.02%)</title><rect x="705.3" y="453" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="708.26" y="463.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (775,533 samples, 0.02%)</title><rect x="818.2" y="437" width="0.2" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="821.21" y="447.5" ></text>
</g>
<g >
<title>native_flush_tlb_one_user (737,890 samples, 0.02%)</title><rect x="203.8" y="597" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="206.78" y="607.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (731,136 samples, 0.02%)</title><rect x="1181.3" y="165" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1184.32" y="175.5" ></text>
</g>
<g >
<title>runtime.typehash (752,036 samples, 0.02%)</title><rect x="758.4" y="485" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="761.37" y="495.5" ></text>
</g>
<g >
<title>do_futex (2,803,841 samples, 0.06%)</title><rect x="13.7" y="549" width="0.7" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="16.73" y="559.5" ></text>
</g>
<g >
<title>error_entry (1,421,340 samples, 0.03%)</title><rect x="588.8" y="453" width="0.4" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="591.83" y="463.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (5,243,167 samples, 0.11%)</title><rect x="694.5" y="485" width="1.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="697.46" y="495.5" ></text>
</g>
<g >
<title>rcu_core_si (6,608,558 samples, 0.14%)</title><rect x="435.8" y="341" width="1.6" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="438.81" y="351.5" ></text>
</g>
<g >
<title>should_failslab (2,111,788 samples, 0.04%)</title><rect x="1016.4" y="437" width="0.5" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="1019.42" y="447.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (12,368,884 samples, 0.26%)</title><rect x="796.6" y="501" width="3.0" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="799.56" y="511.5" ></text>
</g>
<g >
<title>wake_up_process (758,352 samples, 0.02%)</title><rect x="943.3" y="309" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="946.27" y="319.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (628,186 samples, 0.01%)</title><rect x="930.2" y="197" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="933.25" y="207.5" ></text>
</g>
<g >
<title>runtime.bulkBarrierPreWrite (10,272,413 samples, 0.21%)</title><rect x="702.4" y="469" width="2.5" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="705.38" y="479.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.isra.0 (412,970 samples, 0.01%)</title><rect x="36.5" y="485" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="39.45" y="495.5" ></text>
</g>
<g >
<title>check_cfs_rq_runtime (927,395 samples, 0.02%)</title><rect x="440.7" y="405" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="443.74" y="415.5" ></text>
</g>
<g >
<title>rcu_segcblist_enqueue (782,716 samples, 0.02%)</title><rect x="417.2" y="469" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="420.16" y="479.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (571,012 samples, 0.01%)</title><rect x="48.6" y="501" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="51.65" y="511.5" ></text>
</g>
<g >
<title>check_helper_call (773,372 samples, 0.02%)</title><rect x="801.7" y="277" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="804.66" y="287.5" ></text>
</g>
<g >
<title>__irqentry_text_end (742,968 samples, 0.02%)</title><rect x="61.8" y="565" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="64.84" y="575.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,548,008 samples, 0.03%)</title><rect x="772.0" y="437" width="0.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="775.05" y="447.5" ></text>
</g>
<g >
<title>__d_alloc (664,495 samples, 0.01%)</title><rect x="53.3" y="629" width="0.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="56.35" y="639.5" ></text>
</g>
<g >
<title>runtime.mallocgc (6,763,204 samples, 0.14%)</title><rect x="695.9" y="469" width="1.7" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="698.92" y="479.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (435,058 samples, 0.01%)</title><rect x="1189.5" y="501" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1192.52" y="511.5" ></text>
</g>
<g >
<title>runtime.(*mcache).prepareForSweep (1,436,948 samples, 0.03%)</title><rect x="1188.9" y="629" width="0.4" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text x="1191.92" y="639.5" ></text>
</g>
<g >
<title>__handle_mm_fault (981,773 samples, 0.02%)</title><rect x="1188.0" y="597" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1191.03" y="607.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irq (709,373 samples, 0.01%)</title><rect x="318.7" y="533" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="321.67" y="543.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (552,503 samples, 0.01%)</title><rect x="416.1" y="341" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="419.13" y="351.5" ></text>
</g>
<g >
<title>new_slab (586,737 samples, 0.01%)</title><rect x="1001.6" y="309" width="0.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="1004.63" y="319.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (4,541,452 samples, 0.09%)</title><rect x="862.3" y="533" width="1.1" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="865.33" y="543.5" ></text>
</g>
<g >
<title>blk_cgroup_congested (742,873 samples, 0.02%)</title><rect x="585.2" y="309" width="0.1" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="588.16" y="319.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (752,902 samples, 0.02%)</title><rect x="681.9" y="453" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="684.88" y="463.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (2,158,419 samples, 0.04%)</title><rect x="404.2" y="341" width="0.6" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="407.22" y="351.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (763,215 samples, 0.02%)</title><rect x="571.3" y="405" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="574.25" y="415.5" ></text>
</g>
<g >
<title>try_to_wake_up (7,022,073 samples, 0.15%)</title><rect x="20.3" y="517" width="1.7" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="23.29" y="527.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (598,285 samples, 0.01%)</title><rect x="954.6" y="405" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="957.57" y="415.5" ></text>
</g>
<g >
<title>enqueue_entity (29,447,144 samples, 0.61%)</title><rect x="382.4" y="341" width="7.2" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="385.40" y="351.5" ></text>
</g>
<g >
<title>do_user_addr_fault (698,493 samples, 0.01%)</title><rect x="632.1" y="325" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="635.11" y="335.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (5,612,329 samples, 0.12%)</title><rect x="502.8" y="421" width="1.4" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="505.79" y="431.5" ></text>
</g>
<g >
<title>ptep_clear_flush (1,553,237 samples, 0.03%)</title><rect x="798.4" y="373" width="0.4" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="801.45" y="383.5" ></text>
</g>
<g >
<title>runtime.memmove (37,685,156 samples, 0.78%)</title><rect x="745.4" y="485" width="9.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="748.36" y="495.5" ></text>
</g>
<g >
<title>__handle_mm_fault (670,398 samples, 0.01%)</title><rect x="573.9" y="325" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="576.89" y="335.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (2,231,466 samples, 0.05%)</title><rect x="189.4" y="661" width="0.6" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="192.45" y="671.5" ></text>
</g>
<g >
<title>exc_page_fault (528,819 samples, 0.01%)</title><rect x="1189.7" y="693" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1192.74" y="703.5" ></text>
</g>
<g >
<title>update_sg_lb_stats (736,533 samples, 0.02%)</title><rect x="210.2" y="357" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="213.21" y="367.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (1,525,001 samples, 0.03%)</title><rect x="691.2" y="437" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="694.18" y="447.5" ></text>
</g>
<g >
<title>runtime.findObject (718,710 samples, 0.01%)</title><rect x="630.5" y="341" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="633.47" y="351.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (779,331 samples, 0.02%)</title><rect x="687.6" y="325" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="690.56" y="335.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.splitNull (765,705 samples, 0.02%)</title><rect x="655.5" y="453" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="658.48" y="463.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (760,047 samples, 0.02%)</title><rect x="759.3" y="293" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="762.29" y="303.5" ></text>
</g>
<g >
<title>runtime.pcdatavalue1 (772,320 samples, 0.02%)</title><rect x="652.3" y="325" width="0.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="655.27" y="335.5" ></text>
</g>
<g >
<title>runtime.goschedImpl (2,137,788 samples, 0.04%)</title><rect x="1188.7" y="725" width="0.6" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1191.75" y="735.5" ></text>
</g>
<g >
<title>delete_node (616,570 samples, 0.01%)</title><rect x="353.8" y="405" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="356.81" y="415.5" ></text>
</g>
<g >
<title>runtime.gcBgMarkWorker (550,046,838 samples, 11.40%)</title><rect x="61.8" y="757" width="134.6" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="64.84" y="767.5" >runtime.gcBgMarkW..</text>
</g>
<g >
<title>runtime.interhash (6,757,039 samples, 0.14%)</title><rect x="743.7" y="485" width="1.7" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="746.70" y="495.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (781,334 samples, 0.02%)</title><rect x="711.1" y="421" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="714.05" y="431.5" ></text>
</g>
<g >
<title>chacha_block_generic (759,815 samples, 0.02%)</title><rect x="931.3" y="261" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="934.33" y="271.5" ></text>
</g>
<g >
<title>runtime.pcvalue (773,766 samples, 0.02%)</title><rect x="771.9" y="357" width="0.1" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="774.86" y="367.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (763,215 samples, 0.02%)</title><rect x="571.3" y="453" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="574.25" y="463.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (7,530,385 samples, 0.16%)</title><rect x="649.0" y="389" width="1.8" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="651.96" y="399.5" ></text>
</g>
<g >
<title>syscall.write (540,979 samples, 0.01%)</title><rect x="213.7" y="565" width="0.1" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="216.66" y="575.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (12,855,760 samples, 0.27%)</title><rect x="946.7" y="405" width="3.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="949.65" y="415.5" ></text>
</g>
<g >
<title>__alloc_pages (418,342 samples, 0.01%)</title><rect x="74.2" y="437" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="77.20" y="447.5" ></text>
</g>
<g >
<title>do_anonymous_page (731,136 samples, 0.02%)</title><rect x="1181.3" y="309" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1184.32" y="319.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).push (3,519,860 samples, 0.07%)</title><rect x="204.9" y="693" width="0.8" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="207.86" y="703.5" ></text>
</g>
<g >
<title>perf_ctx_disable (437,675 samples, 0.01%)</title><rect x="36.1" y="533" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="39.06" y="543.5" ></text>
</g>
<g >
<title>native_write_msr (624,385 samples, 0.01%)</title><rect x="587.1" y="229" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="590.15" y="239.5" ></text>
</g>
<g >
<title>schedule (68,727,903 samples, 1.42%)</title><rect x="32.3" y="597" width="16.8" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="35.25" y="607.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (634,351 samples, 0.01%)</title><rect x="588.3" y="405" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="591.33" y="415.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (776,651 samples, 0.02%)</title><rect x="1181.7" y="325" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="1184.69" y="335.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (4,624,338 samples, 0.10%)</title><rect x="654.0" y="469" width="1.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="656.97" y="479.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes (192,944,045 samples, 4.00%)</title><rect x="605.6" y="485" width="47.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="608.63" y="495.5" >gith..</text>
</g>
<g >
<title>____fput (771,505 samples, 0.02%)</title><rect x="841.6" y="437" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="844.55" y="447.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,544,149 samples, 0.03%)</title><rect x="782.1" y="453" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="785.05" y="463.5" ></text>
</g>
<g >
<title>__fput (834,798,142 samples, 17.31%)</title><rect x="323.1" y="501" width="204.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="326.08" y="511.5" >__fput</text>
</g>
<g >
<title>allocate_slab (586,737 samples, 0.01%)</title><rect x="1001.6" y="293" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1004.63" y="303.5" ></text>
</g>
<g >
<title>__collapse_huge_page_isolate (750,379 samples, 0.02%)</title><rect x="1188.5" y="613" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1191.54" y="623.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,718,355 samples, 0.06%)</title><rect x="1186.4" y="661" width="0.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1189.43" y="671.5" ></text>
</g>
<g >
<title>sched_clock (571,012 samples, 0.01%)</title><rect x="48.6" y="533" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="51.65" y="543.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (5,222,368 samples, 0.11%)</title><rect x="1181.7" y="549" width="1.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1184.69" y="559.5" ></text>
</g>
<g >
<title>native_write_msr (1,255,774 samples, 0.03%)</title><rect x="427.2" y="373" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="430.17" y="383.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (30,402,710 samples, 0.63%)</title><rect x="54.3" y="725" width="7.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="57.26" y="735.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (778,359 samples, 0.02%)</title><rect x="798.3" y="357" width="0.1" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="801.26" y="367.5" ></text>
</g>
<g >
<title>mod_objcg_state (1,057,706 samples, 0.02%)</title><rect x="1010.5" y="405" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="1013.48" y="415.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_safe_stack (736,533 samples, 0.02%)</title><rect x="212.8" y="581" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="215.79" y="591.5" ></text>
</g>
<g >
<title>update_cfs_group (1,119,885 samples, 0.02%)</title><rect x="34.9" y="533" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="37.92" y="543.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.BPF (855,495,139 samples, 17.74%)</title><rect x="869.9" y="645" width="209.3" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="872.89" y="655.5" >github.com/cilium/ebpf/inte..</text>
</g>
<g >
<title>vfs_read (4,484,789 samples, 0.09%)</title><rect x="640.7" y="293" width="1.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="643.66" y="303.5" ></text>
</g>
<g >
<title>pick_next_task_fair (103,041,592 samples, 2.14%)</title><rect x="438.9" y="421" width="25.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="441.95" y="431.5" >p..</text>
</g>
<g >
<title>_raw_spin_lock (2,646,180 samples, 0.05%)</title><rect x="368.2" y="389" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="371.23" y="399.5" ></text>
</g>
<g >
<title>x86_pmu_enable (602,960 samples, 0.01%)</title><rect x="23.3" y="453" width="0.1" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="26.29" y="463.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (2,532,462 samples, 0.05%)</title><rect x="388.4" y="309" width="0.6" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="391.41" y="319.5" ></text>
</g>
<g >
<title>new_slab (29,700,993 samples, 0.62%)</title><rect x="935.3" y="389" width="7.3" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="938.28" y="399.5" ></text>
</g>
<g >
<title>psi_flags_change (1,429,637 samples, 0.03%)</title><rect x="391.0" y="357" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="393.99" y="367.5" ></text>
</g>
<g >
<title>do_nanosleep (6,019,706 samples, 0.12%)</title><rect x="15.2" y="597" width="1.5" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="18.24" y="607.5" ></text>
</g>
<g >
<title>_raw_spin_lock (2,900,970 samples, 0.06%)</title><rect x="978.7" y="437" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="981.70" y="447.5" ></text>
</g>
<g >
<title>runtime.mstart0 (9,123,382 samples, 0.19%)</title><rect x="14.8" y="725" width="2.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="17.77" y="735.5" ></text>
</g>
<g >
<title>runtime.(*scavengerState).park (29,977,720 samples, 0.62%)</title><rect x="205.9" y="725" width="7.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="208.90" y="735.5" ></text>
</g>
<g >
<title>__handle_mm_fault (763,858 samples, 0.02%)</title><rect x="601.6" y="389" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="604.59" y="399.5" ></text>
</g>
<g >
<title>__update_load_avg_se (505,000 samples, 0.01%)</title><rect x="34.8" y="501" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="37.80" y="511.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (36,396,338 samples, 0.75%)</title><rect x="467.4" y="405" width="8.9" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="470.41" y="415.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).reset (776,273 samples, 0.02%)</title><rect x="696.7" y="389" width="0.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="699.65" y="399.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (3,071,364 samples, 0.06%)</title><rect x="782.8" y="453" width="0.8" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="785.81" y="463.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (776,692 samples, 0.02%)</title><rect x="842.1" y="629" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="845.09" y="639.5" ></text>
</g>
<g >
<title>folio_putback_lru (748,175 samples, 0.02%)</title><rect x="861.0" y="245" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="863.97" y="255.5" ></text>
</g>
<g >
<title>__rcu_read_lock (768,923 samples, 0.02%)</title><rect x="746.7" y="421" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="749.67" y="431.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (706,326 samples, 0.01%)</title><rect x="625.0" y="293" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="627.96" y="303.5" ></text>
</g>
<g >
<title>memcg_list_lru_alloc (8,845,958 samples, 0.18%)</title><rect x="973.6" y="389" width="2.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="976.64" y="399.5" ></text>
</g>
<g >
<title>exc_page_fault (3,668,913 samples, 0.08%)</title><rect x="130.5" y="661" width="0.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="133.52" y="671.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (1,545,557 samples, 0.03%)</title><rect x="648.6" y="437" width="0.4" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="651.59" y="447.5" ></text>
</g>
<g >
<title>new_slab (757,396 samples, 0.02%)</title><rect x="940.7" y="293" width="0.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="943.70" y="303.5" ></text>
</g>
<g >
<title>check_func_arg (773,372 samples, 0.02%)</title><rect x="801.7" y="261" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="804.66" y="271.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (746,945 samples, 0.02%)</title><rect x="852.4" y="645" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="855.38" y="655.5" ></text>
</g>
<g >
<title>__calc_delta (418,458 samples, 0.01%)</title><rect x="208.7" y="373" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="211.71" y="383.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (745,380 samples, 0.02%)</title><rect x="188.4" y="565" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="191.36" y="575.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions.func4 (743,501 samples, 0.02%)</title><rect x="1183.9" y="677" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1186.85" y="687.5" ></text>
</g>
<g >
<title>__handle_mm_fault (770,701 samples, 0.02%)</title><rect x="630.6" y="357" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="633.65" y="367.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (598,093 samples, 0.01%)</title><rect x="214.4" y="533" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="217.38" y="543.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (739,021 samples, 0.02%)</title><rect x="62.5" y="629" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="65.49" y="639.5" ></text>
</g>
<g >
<title>_find_next_bit (767,277 samples, 0.02%)</title><rect x="658.5" y="213" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="661.51" y="223.5" ></text>
</g>
<g >
<title>send_signal_locked (698,498 samples, 0.01%)</title><rect x="26.3" y="549" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="29.29" y="559.5" ></text>
</g>
<g >
<title>xas_descend (749,072 samples, 0.02%)</title><rect x="974.4" y="357" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="977.36" y="367.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).value (35,046,476 samples, 0.73%)</title><rect x="804.9" y="661" width="8.5" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="807.86" y="671.5" ></text>
</g>
<g >
<title>charge_memcg (782,416 samples, 0.02%)</title><rect x="844.7" y="533" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="847.70" y="543.5" ></text>
</g>
<g >
<title>prepare_task_switch (1,397,419 samples, 0.03%)</title><rect x="210.8" y="453" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="213.80" y="463.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,690,933 samples, 0.08%)</title><rect x="632.8" y="421" width="0.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="635.81" y="431.5" ></text>
</g>
<g >
<title>internal/godebug.parse (623,150 samples, 0.01%)</title><rect x="213.9" y="661" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="216.92" y="671.5" ></text>
</g>
<g >
<title>kernfs_file_read_iter (2,292,533 samples, 0.05%)</title><rect x="640.8" y="261" width="0.6" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="643.83" y="271.5" ></text>
</g>
<g >
<title>__pte_alloc (770,701 samples, 0.02%)</title><rect x="630.6" y="309" width="0.2" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="633.65" y="319.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (706,326 samples, 0.01%)</title><rect x="625.0" y="261" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="627.96" y="271.5" ></text>
</g>
<g >
<title>exit_mmap (27,773,635 samples, 0.58%)</title><rect x="54.3" y="581" width="6.8" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="57.31" y="591.5" ></text>
</g>
<g >
<title>os.(*File).Write (540,979 samples, 0.01%)</title><rect x="213.7" y="597" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="216.66" y="607.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.fixupProbeReadKernel (773,372 samples, 0.02%)</title><rect x="801.7" y="565" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="804.66" y="575.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (3,879,083 samples, 0.08%)</title><rect x="816.9" y="469" width="0.9" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="819.90" y="479.5" ></text>
</g>
<g >
<title>rb_insert_color (1,913,507 samples, 0.04%)</title><rect x="459.2" y="405" width="0.5" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="462.21" y="415.5" ></text>
</g>
<g >
<title>enqueue_entity (545,440 samples, 0.01%)</title><rect x="437.5" y="261" width="0.2" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="440.53" y="271.5" ></text>
</g>
<g >
<title>update_load_avg (1,187,703 samples, 0.02%)</title><rect x="44.4" y="485" width="0.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="47.36" y="495.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (544,706 samples, 0.01%)</title><rect x="926.3" y="293" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="929.26" y="303.5" ></text>
</g>
<g >
<title>tick_sched_timer (771,817 samples, 0.02%)</title><rect x="1040.7" y="437" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1043.69" y="447.5" ></text>
</g>
<g >
<title>dequeue_entity (932,322 samples, 0.02%)</title><rect x="208.3" y="421" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="211.32" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.unmarshalBtfArray (715,215 samples, 0.01%)</title><rect x="634.3" y="469" width="0.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="637.26" y="479.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (1,507,271 samples, 0.03%)</title><rect x="631.6" y="357" width="0.3" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="634.56" y="367.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (773,978 samples, 0.02%)</title><rect x="948.3" y="309" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="951.33" y="319.5" ></text>
</g>
<g >
<title>kthread_is_per_cpu (463,756 samples, 0.01%)</title><rect x="363.4" y="405" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="366.35" y="415.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (731,136 samples, 0.02%)</title><rect x="1181.3" y="501" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1184.32" y="511.5" ></text>
</g>
<g >
<title>strings.LastIndex (11,571,971 samples, 0.24%)</title><rect x="565.2" y="469" width="2.9" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="568.24" y="479.5" ></text>
</g>
<g >
<title>runtime.newobject (3,785,509 samples, 0.08%)</title><rect x="701.5" y="485" width="0.9" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="704.45" y="495.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,404,635 samples, 0.03%)</title><rect x="1035.4" y="341" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1038.40" y="351.5" ></text>
</g>
<g >
<title>__alloc_pages (1,562,245 samples, 0.03%)</title><rect x="839.7" y="485" width="0.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="842.68" y="495.5" ></text>
</g>
<g >
<title>runtime.findObject (680,481 samples, 0.01%)</title><rect x="1081.1" y="597" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1084.10" y="607.5" ></text>
</g>
<g >
<title>__x64_sys_nanosleep (84,326,649 samples, 1.75%)</title><rect x="28.8" y="645" width="20.6" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="31.76" y="655.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (774,761 samples, 0.02%)</title><rect x="734.8" y="245" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="737.81" y="255.5" ></text>
</g>
<g >
<title>handle_mm_fault (772,354 samples, 0.02%)</title><rect x="652.6" y="389" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="655.64" y="399.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.loadMg (777,676 samples, 0.02%)</title><rect x="559.2" y="661" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="562.25" y="671.5" ></text>
</g>
<g >
<title>exc_page_fault (13,319,276 samples, 0.28%)</title><rect x="685.2" y="469" width="3.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="688.21" y="479.5" ></text>
</g>
<g >
<title>x86_pmu_enable (661,125 samples, 0.01%)</title><rect x="12.2" y="501" width="0.2" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="15.21" y="511.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (1,218,233 samples, 0.03%)</title><rect x="362.3" y="405" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="365.32" y="415.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,937,914 samples, 0.04%)</title><rect x="1186.6" y="533" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1189.62" y="543.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (3,082,181 samples, 0.06%)</title><rect x="839.5" y="645" width="0.7" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="842.50" y="655.5" ></text>
</g>
<g >
<title>runtime.sysmon (2,238,389 samples, 0.05%)</title><rect x="11.8" y="693" width="0.6" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="14.83" y="703.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (510,716 samples, 0.01%)</title><rect x="43.4" y="485" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="46.45" y="495.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (478,386 samples, 0.01%)</title><rect x="412.5" y="373" width="0.1" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="415.48" y="383.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (465,246 samples, 0.01%)</title><rect x="523.3" y="437" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="526.31" y="447.5" ></text>
</g>
<g >
<title>blkcg_maybe_throttle_current (602,335 samples, 0.01%)</title><rect x="315.4" y="549" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="318.37" y="559.5" ></text>
</g>
<g >
<title>clear_page_erms (26,595,979 samples, 0.55%)</title><rect x="994.3" y="325" width="6.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="997.32" y="335.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (829,720,768 samples, 17.20%)</title><rect x="875.9" y="597" width="202.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="878.87" y="607.5" >runtime/internal/syscall.S..</text>
</g>
<g >
<title>handle_mm_fault (2,342,159 samples, 0.05%)</title><rect x="839.7" y="581" width="0.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="842.68" y="591.5" ></text>
</g>
<g >
<title>rcu_core_si (701,326 samples, 0.01%)</title><rect x="253.5" y="533" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="256.53" y="543.5" ></text>
</g>
<g >
<title>do_send_sig_info (772,396 samples, 0.02%)</title><rect x="26.3" y="565" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="29.27" y="575.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (665,534 samples, 0.01%)</title><rect x="53.2" y="773" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="56.18" y="783.5" ></text>
</g>
<g >
<title>__folio_alloc (1,937,914 samples, 0.04%)</title><rect x="1186.6" y="565" width="0.5" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1189.62" y="575.5" ></text>
</g>
<g >
<title>ptep_clear_flush (675,350 samples, 0.01%)</title><rect x="216.2" y="581" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="219.16" y="591.5" ></text>
</g>
<g >
<title>gcWriteBarrier (752,902 samples, 0.02%)</title><rect x="681.9" y="485" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="684.88" y="495.5" ></text>
</g>
<g >
<title>do_anonymous_page (3,063,743 samples, 0.06%)</title><rect x="654.2" y="373" width="0.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="657.16" y="383.5" ></text>
</g>
<g >
<title>sysvec_call_function_single (632,599 samples, 0.01%)</title><rect x="584.6" y="341" width="0.2" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="587.63" y="351.5" ></text>
</g>
<g >
<title>sync.(*Map).LoadOrStore (623,150 samples, 0.01%)</title><rect x="213.9" y="629" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="216.92" y="639.5" ></text>
</g>
<g >
<title>do_check (3,844,439 samples, 0.08%)</title><rect x="801.8" y="389" width="1.0" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="804.85" y="399.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (506,364 samples, 0.01%)</title><rect x="1188.0" y="517" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="1191.03" y="527.5" ></text>
</g>
<g >
<title>do_wp_page (8,090,445 samples, 0.17%)</title><rect x="609.2" y="373" width="2.0" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="612.20" y="383.5" ></text>
</g>
<g >
<title>policy_nodemask (749,505 samples, 0.02%)</title><rect x="1001.9" y="373" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="1004.94" y="383.5" ></text>
</g>
<g >
<title>lru_gen_add_folio (695,442 samples, 0.01%)</title><rect x="624.1" y="277" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="627.07" y="287.5" ></text>
</g>
<g >
<title>do_user_addr_fault (598,093 samples, 0.01%)</title><rect x="214.4" y="677" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="217.38" y="687.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries (3,978,643,071 samples, 82.48%)</title><rect x="214.6" y="725" width="973.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="217.56" y="735.5" >github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries</text>
</g>
<g >
<title>__folio_alloc (759,478 samples, 0.02%)</title><rect x="706.2" y="357" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="709.17" y="367.5" ></text>
</g>
<g >
<title>apparmor_file_free_security (20,744,446 samples, 0.43%)</title><rect x="333.5" y="485" width="5.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="336.51" y="495.5" ></text>
</g>
<g >
<title>do_user_addr_fault (770,701 samples, 0.02%)</title><rect x="630.6" y="389" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="633.65" y="399.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.applyRelocations (428,057,740 samples, 8.87%)</title><rect x="559.4" y="581" width="104.8" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="562.44" y="591.5" >github.com/c..</text>
</g>
<g >
<title>__mod_memcg_state (767,189 samples, 0.02%)</title><rect x="950.7" y="357" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="953.70" y="367.5" ></text>
</g>
<g >
<title>irqentry_exit (738,474 samples, 0.02%)</title><rect x="701.1" y="437" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="704.09" y="447.5" ></text>
</g>
<g >
<title>runtime.exitsyscall (12,230,398 samples, 0.25%)</title><rect x="872.7" y="597" width="3.0" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="875.69" y="607.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Const).copy (1,479,093 samples, 0.03%)</title><rect x="681.5" y="501" width="0.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="684.52" y="511.5" ></text>
</g>
<g >
<title>handle_pte_fault (624,343 samples, 0.01%)</title><rect x="213.4" y="645" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="216.36" y="655.5" ></text>
</g>
<g >
<title>runtime.mapaccess2 (7,541,462 samples, 0.16%)</title><rect x="813.9" y="629" width="1.9" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="816.95" y="639.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (774,704 samples, 0.02%)</title><rect x="763.8" y="405" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="766.75" y="415.5" ></text>
</g>
<g >
<title>bpf_map_get_curr_or_next (14,426,814 samples, 0.30%)</title><rect x="826.3" y="437" width="3.5" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="829.31" y="447.5" ></text>
</g>
<g >
<title>runtime.mapassign (64,157,167 samples, 1.33%)</title><rect x="574.2" y="485" width="15.7" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="577.24" y="495.5" ></text>
</g>
<g >
<title>try_to_wake_up (629,364 samples, 0.01%)</title><rect x="926.4" y="277" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="929.39" y="287.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).push (1,540,440 samples, 0.03%)</title><rect x="61.8" y="581" width="0.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="64.84" y="591.5" ></text>
</g>
<g >
<title>__next_zones_zonelist (607,512 samples, 0.01%)</title><rect x="866.6" y="453" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="869.63" y="463.5" ></text>
</g>
<g >
<title>io.ReadAtLeast (87,053,642 samples, 1.80%)</title><rect x="815.8" y="661" width="21.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="818.79" y="671.5" >i..</text>
</g>
<g >
<title>__irqentry_text_end (2,250,256 samples, 0.05%)</title><rect x="130.0" y="677" width="0.5" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="132.97" y="687.5" ></text>
</g>
<g >
<title>mmput (27,773,635 samples, 0.58%)</title><rect x="54.3" y="613" width="6.8" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="57.31" y="623.5" ></text>
</g>
<g >
<title>blk_mq_end_request (485,085 samples, 0.01%)</title><rect x="287.3" y="405" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="290.34" y="415.5" ></text>
</g>
<g >
<title>update_load_avg (1,482,345 samples, 0.03%)</title><rect x="34.6" y="517" width="0.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="37.56" y="527.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (722,016 samples, 0.01%)</title><rect x="702.0" y="437" width="0.2" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="705.03" y="447.5" ></text>
</g>
<g >
<title>alloc_fdtable (1,857,552 samples, 0.04%)</title><rect x="987.7" y="437" width="0.5" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="990.74" y="447.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (3,167,796 samples, 0.07%)</title><rect x="209.1" y="453" width="0.7" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="212.07" y="463.5" ></text>
</g>
<g >
<title>handle_mm_fault (770,701 samples, 0.02%)</title><rect x="630.6" y="373" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="633.65" y="383.5" ></text>
</g>
<g >
<title>runtime.incidlelocked (566,243 samples, 0.01%)</title><rect x="25.9" y="677" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="28.89" y="687.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (589,552 samples, 0.01%)</title><rect x="214.1" y="677" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="217.08" y="687.5" ></text>
</g>
<g >
<title>do_wp_page (6,197,071 samples, 0.13%)</title><rect x="797.3" y="405" width="1.5" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="800.31" y="415.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (6,989,638 samples, 0.14%)</title><rect x="860.6" y="613" width="1.7" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="863.62" y="623.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (992,101 samples, 0.02%)</title><rect x="416.1" y="421" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="419.13" y="431.5" ></text>
</g>
<g >
<title>bpf_check (3,844,439 samples, 0.08%)</title><rect x="801.8" y="421" width="1.0" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="804.85" y="431.5" ></text>
</g>
<g >
<title>__folio_alloc (728,330 samples, 0.02%)</title><rect x="630.1" y="309" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="633.11" y="319.5" ></text>
</g>
<g >
<title>update_min_vruntime (413,573 samples, 0.01%)</title><rect x="35.3" y="533" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="38.34" y="543.5" ></text>
</g>
<g >
<title>security_file_free (3,607,167 samples, 0.07%)</title><rect x="529.3" y="501" width="0.9" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="532.35" y="511.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer (771,599 samples, 0.02%)</title><rect x="13.1" y="741" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="16.12" y="751.5" ></text>
</g>
<g >
<title>exc_page_fault (3,690,933 samples, 0.08%)</title><rect x="632.8" y="405" width="0.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="635.81" y="415.5" ></text>
</g>
<g >
<title>wp_page_copy (2,916,699 samples, 0.06%)</title><rect x="695.0" y="373" width="0.7" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="698.03" y="383.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (731,136 samples, 0.02%)</title><rect x="1181.3" y="181" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1184.32" y="191.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (459,526 samples, 0.01%)</title><rect x="1010.4" y="405" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1013.37" y="415.5" ></text>
</g>
<g >
<title>futex_wait_queue (1,401,444 samples, 0.03%)</title><rect x="196.4" y="517" width="0.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="199.40" y="527.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (1,481,726 samples, 0.03%)</title><rect x="685.9" y="357" width="0.4" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="688.94" y="367.5" ></text>
</g>
<g >
<title>runtime.newobject (3,857,585 samples, 0.08%)</title><rect x="706.4" y="485" width="0.9" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="709.36" y="495.5" ></text>
</g>
<g >
<title>__folio_throttle_swaprate (1,546,605 samples, 0.03%)</title><rect x="797.7" y="373" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="800.69" y="383.5" ></text>
</g>
<g >
<title>runtime.unlock2 (2,193,450 samples, 0.05%)</title><rect x="234.3" y="581" width="0.5" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="237.30" y="591.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (680,593 samples, 0.01%)</title><rect x="423.8" y="437" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="426.82" y="447.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocMSpanLocked (731,136 samples, 0.02%)</title><rect x="1181.3" y="453" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="1184.32" y="463.5" ></text>
</g>
<g >
<title>x86_pmu_disable (731,019 samples, 0.02%)</title><rect x="209.2" y="405" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="212.19" y="415.5" ></text>
</g>
<g >
<title>clear_page_erms (3,046,817 samples, 0.06%)</title><rect x="856.5" y="469" width="0.7" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="859.50" y="479.5" ></text>
</g>
<g >
<title>__handle_mm_fault (8,140,070 samples, 0.17%)</title><rect x="855.6" y="581" width="2.0" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="858.63" y="591.5" ></text>
</g>
<g >
<title>rmqueue (774,526 samples, 0.02%)</title><rect x="563.9" y="293" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="566.93" y="303.5" ></text>
</g>
<g >
<title>propagate_protected_usage (739,365 samples, 0.02%)</title><rect x="1013.3" y="373" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1016.33" y="383.5" ></text>
</g>
<g >
<title>perf_ctx_enable (480,628 samples, 0.01%)</title><rect x="54.0" y="613" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="57.00" y="623.5" ></text>
</g>
<g >
<title>prepare_task_switch (694,450 samples, 0.01%)</title><rect x="196.4" y="469" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="199.40" y="479.5" ></text>
</g>
<g >
<title>get_sigframe (700,840 samples, 0.01%)</title><rect x="1188.7" y="549" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="1191.75" y="559.5" ></text>
</g>
<g >
<title>runtime.findObject (664,786 samples, 0.01%)</title><rect x="72.8" y="613" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="75.75" y="623.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (438,758 samples, 0.01%)</title><rect x="228.5" y="533" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="231.45" y="543.5" ></text>
</g>
<g >
<title>prepare_task_switch (753,859 samples, 0.02%)</title><rect x="53.6" y="645" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="56.57" y="655.5" ></text>
</g>
<g >
<title>exc_page_fault (772,819 samples, 0.02%)</title><rect x="570.9" y="389" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="573.87" y="399.5" ></text>
</g>
<g >
<title>handle_mm_fault (4,464,587 samples, 0.09%)</title><rect x="694.6" y="437" width="1.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="697.65" y="447.5" ></text>
</g>
<g >
<title>runtime.growslice (718,710 samples, 0.01%)</title><rect x="630.5" y="437" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="633.47" y="447.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (510,716 samples, 0.01%)</title><rect x="43.4" y="453" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="46.45" y="463.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,291,692 samples, 0.03%)</title><rect x="878.1" y="581" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="881.09" y="591.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (7,530,385 samples, 0.16%)</title><rect x="649.0" y="357" width="1.8" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="651.96" y="367.5" ></text>
</g>
<g >
<title>clear_page_erms (772,354 samples, 0.02%)</title><rect x="652.6" y="261" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="655.64" y="271.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (529,211 samples, 0.01%)</title><rect x="351.8" y="453" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="354.85" y="463.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (736,168 samples, 0.02%)</title><rect x="761.1" y="437" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="764.13" y="447.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (730,856 samples, 0.02%)</title><rect x="633.0" y="277" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="635.99" y="287.5" ></text>
</g>
<g >
<title>__alloc_pages (6,933,750 samples, 0.14%)</title><rect x="607.5" y="325" width="1.7" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="610.51" y="335.5" ></text>
</g>
<g >
<title>handle_mm_fault (743,480 samples, 0.02%)</title><rect x="634.1" y="389" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="637.08" y="399.5" ></text>
</g>
<g >
<title>vma_alloc_folio (8,440,080 samples, 0.17%)</title><rect x="845.4" y="549" width="2.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="848.44" y="559.5" ></text>
</g>
<g >
<title>do_user_addr_fault (746,494 samples, 0.02%)</title><rect x="62.8" y="517" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="65.79" y="527.5" ></text>
</g>
<g >
<title>__irqentry_text_end (1,491,859 samples, 0.03%)</title><rect x="704.9" y="453" width="0.4" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="707.89" y="463.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (487,588 samples, 0.01%)</title><rect x="18.7" y="661" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="21.73" y="671.5" ></text>
</g>
<g >
<title>vma_alloc_folio (14,624,699 samples, 0.30%)</title><rect x="750.4" y="341" width="3.6" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="753.44" y="351.5" ></text>
</g>
<g >
<title>exc_page_fault (731,613 samples, 0.02%)</title><rect x="631.8" y="261" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="634.75" y="271.5" ></text>
</g>
<g >
<title>exc_page_fault (2,342,159 samples, 0.05%)</title><rect x="839.7" y="613" width="0.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="842.68" y="623.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (2,185,062 samples, 0.05%)</title><rect x="695.2" y="293" width="0.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="698.21" y="303.5" ></text>
</g>
<g >
<title>runtime.schedule (1,473,273 samples, 0.03%)</title><rect x="196.9" y="661" width="0.4" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="199.91" y="671.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (776,498 samples, 0.02%)</title><rect x="708.8" y="277" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="711.80" y="287.5" ></text>
</g>
<g >
<title>__handle_mm_fault (7,381,212 samples, 0.15%)</title><rect x="1082.1" y="485" width="1.8" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1085.11" y="495.5" ></text>
</g>
<g >
<title>runtime.pcvalue (772,320 samples, 0.02%)</title><rect x="652.3" y="309" width="0.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="655.27" y="319.5" ></text>
</g>
<g >
<title>runtime.profilealloc (762,772 samples, 0.02%)</title><rect x="773.6" y="453" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="776.56" y="463.5" ></text>
</g>
<g >
<title>__alloc_pages (774,526 samples, 0.02%)</title><rect x="563.9" y="325" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="566.93" y="335.5" ></text>
</g>
<g >
<title>update_rq_clock (484,538 samples, 0.01%)</title><rect x="44.7" y="501" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="47.69" y="511.5" ></text>
</g>
<g >
<title>__folio_alloc (1,495,374 samples, 0.03%)</title><rect x="624.2" y="325" width="0.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="627.24" y="335.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (472,570 samples, 0.01%)</title><rect x="23.3" y="437" width="0.1" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="26.32" y="447.5" ></text>
</g>
<g >
<title>runtime.(*consistentHeapStats).release (775,658 samples, 0.02%)</title><rect x="631.6" y="293" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="634.56" y="303.5" ></text>
</g>
<g >
<title>perf_ctx_enable (661,125 samples, 0.01%)</title><rect x="12.2" y="517" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="15.21" y="527.5" ></text>
</g>
<g >
<title>runtime.gopark (1,141,245 samples, 0.02%)</title><rect x="62.7" y="741" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="65.73" y="751.5" ></text>
</g>
<g >
<title>runtime.findObject (992,236 samples, 0.02%)</title><rect x="226.1" y="645" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="229.08" y="655.5" ></text>
</g>
<g >
<title>get_page_from_freelist (418,342 samples, 0.01%)</title><rect x="74.2" y="421" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="77.20" y="431.5" ></text>
</g>
<g >
<title>runtime.schedule (1,401,444 samples, 0.03%)</title><rect x="196.4" y="677" width="0.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="199.40" y="687.5" ></text>
</g>
<g >
<title>bpf_map_area_alloc (2,250,634 samples, 0.05%)</title><rect x="1021.3" y="501" width="0.6" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1024.32" y="511.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (778,697 samples, 0.02%)</title><rect x="681.3" y="437" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="684.33" y="447.5" ></text>
</g>
<g >
<title>runtime.gcWriteBarrier2 (734,091 samples, 0.02%)</title><rect x="758.9" y="517" width="0.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="761.93" y="527.5" ></text>
</g>
<g >
<title>_copy_to_iter (1,557,724 samples, 0.03%)</title><rect x="656.8" y="261" width="0.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="659.80" y="271.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (2,316,662 samples, 0.05%)</title><rect x="711.6" y="437" width="0.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="714.62" y="447.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (1,525,940 samples, 0.03%)</title><rect x="858.2" y="597" width="0.3" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="861.18" y="607.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,673,406 samples, 0.08%)</title><rect x="563.6" y="485" width="0.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="566.59" y="495.5" ></text>
</g>
<g >
<title>runtime.stkbucket (497,603 samples, 0.01%)</title><rect x="1185.8" y="645" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="1188.81" y="655.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (540,979 samples, 0.01%)</title><rect x="213.7" y="517" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="216.66" y="527.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (770,150 samples, 0.02%)</title><rect x="1035.6" y="309" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1038.56" y="319.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (7,530,385 samples, 0.16%)</title><rect x="649.0" y="405" width="1.8" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="651.96" y="415.5" ></text>
</g>
<g >
<title>folio_add_lru (771,474 samples, 0.02%)</title><rect x="607.3" y="341" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="610.32" y="351.5" ></text>
</g>
<g >
<title>unmap_region (747,206 samples, 0.02%)</title><rect x="571.4" y="133" width="0.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="574.44" y="143.5" ></text>
</g>
<g >
<title>__radix_tree_replace (776,879 samples, 0.02%)</title><rect x="1032.0" y="469" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="1035.02" y="479.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (571,012 samples, 0.01%)</title><rect x="48.6" y="517" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="51.65" y="527.5" ></text>
</g>
<g >
<title>do_madvise (1,502,420 samples, 0.03%)</title><rect x="1188.4" y="709" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1191.35" y="719.5" ></text>
</g>
<g >
<title>handle_pte_fault (3,844,477 samples, 0.08%)</title><rect x="654.0" y="389" width="0.9" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="656.97" y="399.5" ></text>
</g>
<g >
<title>native_write_msr (413,209 samples, 0.01%)</title><rect x="53.7" y="549" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="56.66" y="559.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (736,526 samples, 0.02%)</title><rect x="585.5" y="325" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="588.53" y="335.5" ></text>
</g>
<g >
<title>rcu_core (2,112,925 samples, 0.04%)</title><rect x="412.6" y="341" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="415.62" y="351.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (2,207,234 samples, 0.05%)</title><rect x="434.2" y="341" width="0.6" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="437.24" y="351.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (2,934,715 samples, 0.06%)</title><rect x="700.0" y="293" width="0.7" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="703.01" y="303.5" ></text>
</g>
<g >
<title>runtime.memmove (1,467,786 samples, 0.03%)</title><rect x="633.9" y="453" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="636.90" y="463.5" ></text>
</g>
<g >
<title>runtime.pcvalue (764,227 samples, 0.02%)</title><rect x="574.1" y="293" width="0.1" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="577.05" y="303.5" ></text>
</g>
<g >
<title>runtime.makeBucketArray (11,444,702 samples, 0.24%)</title><rect x="571.4" y="469" width="2.8" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="574.44" y="479.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (6,296,841 samples, 0.13%)</title><rect x="485.1" y="389" width="1.6" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="488.12" y="399.5" ></text>
</g>
<g >
<title>free_unref_page_commit (2,332,505 samples, 0.05%)</title><rect x="54.7" y="485" width="0.6" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="57.69" y="495.5" ></text>
</g>
<g >
<title>sched_clock_cpu (1,168,559 samples, 0.02%)</title><rect x="398.4" y="357" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="401.39" y="367.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Write (540,979 samples, 0.01%)</title><rect x="213.7" y="581" width="0.1" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="216.66" y="591.5" ></text>
</g>
<g >
<title>wake_up_process (438,758 samples, 0.01%)</title><rect x="228.5" y="485" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="231.45" y="495.5" ></text>
</g>
<g >
<title>error_entry (781,484 samples, 0.02%)</title><rect x="847.5" y="661" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="850.50" y="671.5" ></text>
</g>
<g >
<title>alloc_charge_hpage (3,021,020 samples, 0.06%)</title><rect x="861.3" y="293" width="0.8" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="864.34" y="303.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (2,991,756 samples, 0.06%)</title><rect x="951.8" y="421" width="0.8" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="954.83" y="431.5" ></text>
</g>
<g >
<title>put_cpu_partial (3,756,463 samples, 0.08%)</title><rect x="497.5" y="405" width="0.9" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="500.46" y="415.5" ></text>
</g>
<g >
<title>__do_softirq (701,326 samples, 0.01%)</title><rect x="253.5" y="549" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="256.53" y="559.5" ></text>
</g>
<g >
<title>count_memcg_events.constprop.0 (767,828 samples, 0.02%)</title><rect x="798.8" y="437" width="0.2" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="801.83" y="447.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (636,179 samples, 0.01%)</title><rect x="563.8" y="357" width="0.1" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="566.78" y="367.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (628,186 samples, 0.01%)</title><rect x="930.2" y="213" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="933.25" y="223.5" ></text>
</g>
<g >
<title>__folio_alloc (4,364,233 samples, 0.09%)</title><rect x="610.1" y="325" width="1.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="613.12" y="335.5" ></text>
</g>
<g >
<title>vma_alloc_folio (4,587,648 samples, 0.10%)</title><rect x="856.5" y="533" width="1.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="859.50" y="543.5" ></text>
</g>
<g >
<title>runtime.retryOnEAGAIN (840,021 samples, 0.02%)</title><rect x="12.4" y="693" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="15.38" y="703.5" ></text>
</g>
<g >
<title>runtime.profilealloc (722,283 samples, 0.01%)</title><rect x="691.6" y="453" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="694.56" y="463.5" ></text>
</g>
<g >
<title>_find_next_and_bit (622,296 samples, 0.01%)</title><rect x="37.8" y="501" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="40.84" y="511.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (1,250,415 samples, 0.03%)</title><rect x="587.0" y="277" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="589.99" y="287.5" ></text>
</g>
<g >
<title>runtime.callers (772,320 samples, 0.02%)</title><rect x="652.3" y="405" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="655.27" y="415.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (665,534 samples, 0.01%)</title><rect x="53.2" y="725" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="56.18" y="735.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (770,917 samples, 0.02%)</title><rect x="663.0" y="437" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="666.05" y="447.5" ></text>
</g>
<g >
<title>native_write_msr (437,675 samples, 0.01%)</title><rect x="36.1" y="501" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="39.06" y="511.5" ></text>
</g>
<g >
<title>__sigqueue_alloc (645,283 samples, 0.01%)</title><rect x="26.3" y="517" width="0.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="29.29" y="527.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (772,957 samples, 0.02%)</title><rect x="639.4" y="293" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="642.36" y="303.5" ></text>
</g>
<g >
<title>__folio_alloc (3,865,253 samples, 0.08%)</title><rect x="788.1" y="341" width="0.9" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="791.07" y="351.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,002,892 samples, 0.04%)</title><rect x="1174.5" y="533" width="0.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1177.48" y="543.5" ></text>
</g>
<g >
<title>runtime.tracebackPCs (772,320 samples, 0.02%)</title><rect x="652.3" y="357" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="655.27" y="367.5" ></text>
</g>
<g >
<title>mod_memcg_state (758,274 samples, 0.02%)</title><rect x="976.4" y="357" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="979.37" y="367.5" ></text>
</g>
<g >
<title>handle_pte_fault (10,351,505 samples, 0.21%)</title><rect x="597.2" y="389" width="2.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="600.24" y="399.5" ></text>
</g>
<g >
<title>exc_page_fault (14,007,821 samples, 0.29%)</title><rect x="597.2" y="453" width="3.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="600.24" y="463.5" ></text>
</g>
<g >
<title>error_entry (2,311,308 samples, 0.05%)</title><rect x="10.0" y="661" width="0.6" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="13.00" y="671.5" ></text>
</g>
<g >
<title>__update_blocked_fair (773,766 samples, 0.02%)</title><rect x="877.6" y="469" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="880.56" y="479.5" ></text>
</g>
<g >
<title>_find_next_zero_bit (8,787,109 samples, 0.18%)</title><rect x="983.7" y="469" width="2.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="986.72" y="479.5" ></text>
</g>
<g >
<title>perf_ctx_enable (720,574 samples, 0.01%)</title><rect x="61.2" y="613" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="64.20" y="623.5" ></text>
</g>
<g >
<title>runtime.lock2 (4,200,466 samples, 0.09%)</title><rect x="233.3" y="581" width="1.0" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="236.27" y="591.5" ></text>
</g>
<g >
<title>runtime.entersyscall (765,699 samples, 0.02%)</title><rect x="816.7" y="565" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="819.71" y="575.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast (760,408 samples, 0.02%)</title><rect x="875.7" y="597" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="878.68" y="607.5" ></text>
</g>
<g >
<title>perf_ctx_disable (1,255,774 samples, 0.03%)</title><rect x="427.2" y="405" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="430.17" y="415.5" ></text>
</g>
<g >
<title>security_bpf (771,385 samples, 0.02%)</title><rect x="1040.0" y="517" width="0.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="1042.96" y="527.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (767,246 samples, 0.02%)</title><rect x="586.4" y="261" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="589.43" y="271.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,502,420 samples, 0.03%)</title><rect x="1188.4" y="741" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1191.35" y="751.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (528,819 samples, 0.01%)</title><rect x="1189.7" y="709" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1192.74" y="719.5" ></text>
</g>
<g >
<title>do_syscall_64 (92,317,323 samples, 1.91%)</title><rect x="28.6" y="661" width="22.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="31.57" y="671.5" >d..</text>
</g>
<g >
<title>iput (19,783,582 samples, 0.41%)</title><rect x="506.9" y="437" width="4.9" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="509.94" y="447.5" ></text>
</g>
<g >
<title>rmqueue (1,540,831 samples, 0.03%)</title><rect x="857.2" y="469" width="0.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="860.24" y="479.5" ></text>
</g>
<g >
<title>psi_task_switch (783,399 samples, 0.02%)</title><rect x="488.0" y="453" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="491.04" y="463.5" ></text>
</g>
<g >
<title>__folio_alloc (688,211 samples, 0.01%)</title><rect x="188.2" y="501" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="191.19" y="511.5" ></text>
</g>
<g >
<title>runtime.mallocgc (735,664 samples, 0.02%)</title><rect x="697.6" y="485" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="700.57" y="495.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (732,963 samples, 0.02%)</title><rect x="696.5" y="421" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="699.47" y="431.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (773,978 samples, 0.02%)</title><rect x="948.3" y="389" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="951.33" y="399.5" ></text>
</g>
<g >
<title>idr_find (782,449 samples, 0.02%)</title><rect x="26.5" y="549" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="29.46" y="559.5" ></text>
</g>
<g >
<title>mod_objcg_state (1,526,563 samples, 0.03%)</title><rect x="967.0" y="389" width="0.4" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="970.01" y="399.5" ></text>
</g>
<g >
<title>_raw_spin_trylock (4,744,846 samples, 0.10%)</title><rect x="332.4" y="485" width="1.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="335.35" y="495.5" ></text>
</g>
<g >
<title>vma_alloc_folio (736,676 samples, 0.02%)</title><rect x="205.5" y="549" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="208.54" y="559.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (860,046 samples, 0.02%)</title><rect x="212.6" y="533" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="215.58" y="543.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Func).copy (39,352,769 samples, 0.82%)</title><rect x="683.0" y="501" width="9.6" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="686.01" y="511.5" ></text>
</g>
<g >
<title>update_cfs_group (438,758 samples, 0.01%)</title><rect x="228.5" y="421" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="231.45" y="431.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (772,957 samples, 0.02%)</title><rect x="639.4" y="453" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="642.36" y="463.5" ></text>
</g>
<g >
<title>runtime.findObject (2,266,580 samples, 0.05%)</title><rect x="649.7" y="325" width="0.6" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="652.70" y="335.5" ></text>
</g>
<g >
<title>__x64_sys_pread64 (4,484,789 samples, 0.09%)</title><rect x="640.7" y="309" width="1.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="643.66" y="319.5" ></text>
</g>
<g >
<title>release_pages (3,885,979 samples, 0.08%)</title><rect x="54.3" y="517" width="1.0" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="57.31" y="527.5" ></text>
</g>
<g >
<title>mod_memcg_state (767,189 samples, 0.02%)</title><rect x="950.7" y="373" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="953.70" y="383.5" ></text>
</g>
<g >
<title>alloc_pages (20,639,233 samples, 0.43%)</title><rect x="935.3" y="357" width="5.0" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="938.28" y="367.5" ></text>
</g>
<g >
<title>fsnotify_perm.part.0 (1,483,939 samples, 0.03%)</title><rect x="641.4" y="245" width="0.4" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="644.39" y="255.5" ></text>
</g>
<g >
<title>pick_next_task_fair (3,429,233 samples, 0.07%)</title><rect x="209.9" y="437" width="0.8" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="212.87" y="447.5" ></text>
</g>
<g >
<title>allocate_slab (757,396 samples, 0.02%)</title><rect x="940.7" y="277" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="943.70" y="287.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (779,331 samples, 0.02%)</title><rect x="687.6" y="341" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="690.56" y="351.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions.func1 (1,415,382 samples, 0.03%)</title><rect x="1185.0" y="645" width="0.4" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1188.02" y="655.5" ></text>
</g>
<g >
<title>rcu_core_si (774,959 samples, 0.02%)</title><rect x="638.4" y="357" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="641.44" y="367.5" ></text>
</g>
<g >
<title>prepare_task_switch (725,573 samples, 0.02%)</title><rect x="1084.3" y="421" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1087.28" y="431.5" ></text>
</g>
<g >
<title>get_any_partial (773,982 samples, 0.02%)</title><rect x="993.6" y="405" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="996.56" y="415.5" ></text>
</g>
<g >
<title>load_balance (23,181,819 samples, 0.48%)</title><rect x="37.8" y="517" width="5.6" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="40.76" y="527.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (734,486 samples, 0.02%)</title><rect x="704.4" y="405" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="707.35" y="415.5" ></text>
</g>
<g >
<title>runtime.setsig (559,743 samples, 0.01%)</title><rect x="1189.3" y="693" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="1192.27" y="703.5" ></text>
</g>
<g >
<title>entry_SYSRETQ_unsafe_stack (466,561 samples, 0.01%)</title><rect x="536.7" y="613" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="539.67" y="623.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (766,707 samples, 0.02%)</title><rect x="658.7" y="437" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="661.69" y="447.5" ></text>
</g>
<g >
<title>futex_wait (2,803,841 samples, 0.06%)</title><rect x="13.7" y="533" width="0.7" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="16.73" y="543.5" ></text>
</g>
<g >
<title>do_syscall_64 (487,588 samples, 0.01%)</title><rect x="18.7" y="629" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="21.73" y="639.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,598,926 samples, 0.03%)</title><rect x="12.0" y="661" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="14.99" y="671.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.unmarshalBtfMembers (681,158 samples, 0.01%)</title><rect x="663.2" y="485" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="666.24" y="495.5" ></text>
</g>
<g >
<title>do_anonymous_page (8,467,772 samples, 0.18%)</title><rect x="607.1" y="373" width="2.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="610.13" y="383.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (20,228,208 samples, 0.42%)</title><rect x="354.0" y="421" width="4.9" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="356.96" y="431.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (657,962 samples, 0.01%)</title><rect x="213.0" y="581" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="215.98" y="591.5" ></text>
</g>
<g >
<title>asm_sysvec_call_function_single (748,574 samples, 0.02%)</title><rect x="159.8" y="661" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="162.83" y="671.5" ></text>
</g>
<g >
<title>task_work_run (818,791 samples, 0.02%)</title><rect x="532.9" y="549" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="535.85" y="559.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (9,675,817 samples, 0.20%)</title><rect x="855.4" y="645" width="2.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="858.44" y="655.5" ></text>
</g>
<g >
<title>strings.LastIndex (774,427 samples, 0.02%)</title><rect x="800.9" y="517" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="803.90" y="527.5" ></text>
</g>
<g >
<title>__schedule (1,954,334 samples, 0.04%)</title><rect x="13.9" y="485" width="0.4" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="16.86" y="495.5" ></text>
</g>
<g >
<title>__schedule (626,412 samples, 0.01%)</title><rect x="1003.2" y="421" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1006.24" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*Deque[*github.com/cilium/ebpf/btf.Type]).Push (17,207,081 samples, 0.36%)</title><rect x="713.3" y="469" width="4.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="716.27" y="479.5" ></text>
</g>
<g >
<title>wp_page_copy (598,093 samples, 0.01%)</title><rect x="214.4" y="597" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="217.38" y="607.5" ></text>
</g>
<g >
<title>reflect.Value.Field (757,328 samples, 0.02%)</title><rect x="837.7" y="661" width="0.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="840.66" y="671.5" ></text>
</g>
<g >
<title>filemap_map_pages (589,552 samples, 0.01%)</title><rect x="214.1" y="549" width="0.1" height="15.0" fill="rgb(229,112,27)" rx="2" ry="2" />
<text x="217.08" y="559.5" ></text>
</g>
<g >
<title>wp_page_copy (767,277 samples, 0.02%)</title><rect x="658.5" y="293" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="661.51" y="303.5" ></text>
</g>
<g >
<title>vma_alloc_folio (731,136 samples, 0.02%)</title><rect x="1181.3" y="293" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1184.32" y="303.5" ></text>
</g>
<g >
<title>runtime.memhash64 (3,760,083 samples, 0.08%)</title><rect x="744.3" y="469" width="0.9" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="747.25" y="479.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (776,627 samples, 0.02%)</title><rect x="620.5" y="421" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="623.45" y="431.5" ></text>
</g>
<g >
<title>backtrack_insn (773,372 samples, 0.02%)</title><rect x="801.7" y="229" width="0.1" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="804.66" y="239.5" ></text>
</g>
<g >
<title>runtime.callers.func1 (773,766 samples, 0.02%)</title><rect x="771.9" y="421" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="774.86" y="431.5" ></text>
</g>
<g >
<title>security_file_alloc (1,503,889 samples, 0.03%)</title><rect x="952.6" y="421" width="0.3" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="955.56" y="431.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (829,917 samples, 0.02%)</title><rect x="423.1" y="437" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="426.14" y="447.5" ></text>
</g>
<g >
<title>do_mmap (747,206 samples, 0.02%)</title><rect x="571.4" y="197" width="0.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="574.44" y="207.5" ></text>
</g>
<g >
<title>arch_get_unmapped_area_topdown (738,100 samples, 0.02%)</title><rect x="1085.0" y="325" width="0.2" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="1088.02" y="335.5" ></text>
</g>
<g >
<title>futex_wait_setup (686,556 samples, 0.01%)</title><rect x="212.0" y="501" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="215.03" y="511.5" ></text>
</g>
<g >
<title>is_state_visited (768,264 samples, 0.02%)</title><rect x="802.4" y="373" width="0.2" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="805.41" y="383.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (2,301,735 samples, 0.05%)</title><rect x="586.1" y="293" width="0.5" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="589.05" y="303.5" ></text>
</g>
<g >
<title>do_anonymous_page (772,354 samples, 0.02%)</title><rect x="652.6" y="341" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="655.64" y="351.5" ></text>
</g>
<g >
<title>__radix_tree_preload (775,942 samples, 0.02%)</title><rect x="912.2" y="501" width="0.2" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="915.22" y="511.5" ></text>
</g>
<g >
<title>runtime.mProf_Malloc (497,603 samples, 0.01%)</title><rect x="1185.8" y="661" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="1188.81" y="671.5" ></text>
</g>
<g >
<title>__next_zones_zonelist (665,167 samples, 0.01%)</title><rect x="599.6" y="309" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="602.61" y="319.5" ></text>
</g>
<g >
<title>security_bpf_map_alloc (755,231 samples, 0.02%)</title><rect x="1037.6" y="501" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1040.58" y="511.5" ></text>
</g>
<g >
<title>__bpf_map_area_alloc (2,355,125 samples, 0.05%)</title><rect x="989.4" y="485" width="0.6" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="992.41" y="495.5" ></text>
</g>
<g >
<title>runtime.reentersyscall (770,557 samples, 0.02%)</title><rect x="640.1" y="341" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="643.11" y="351.5" ></text>
</g>
<g >
<title>update_process_times (771,887 samples, 0.02%)</title><rect x="645.6" y="325" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="648.65" y="335.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (732,963 samples, 0.02%)</title><rect x="696.5" y="453" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="699.47" y="463.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (773,766 samples, 0.02%)</title><rect x="771.9" y="437" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="774.86" y="447.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (981,773 samples, 0.02%)</title><rect x="1188.0" y="693" width="0.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="1191.03" y="703.5" ></text>
</g>
<g >
<title>arch_do_signal_or_restart (27,965,230 samples, 0.58%)</title><rect x="54.3" y="693" width="6.8" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="57.26" y="703.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (758,752 samples, 0.02%)</title><rect x="11.3" y="709" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="14.30" y="719.5" ></text>
</g>
<g >
<title>__x64_sys_tgkill (1,819,951 samples, 0.04%)</title><rect x="26.2" y="613" width="0.5" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="29.21" y="623.5" ></text>
</g>
<g >
<title>__handle_mm_fault (528,819 samples, 0.01%)</title><rect x="1189.7" y="645" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1192.74" y="655.5" ></text>
</g>
<g >
<title>runtime.finishsweep_m (585,101 samples, 0.01%)</title><rect x="863.4" y="565" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="866.44" y="575.5" ></text>
</g>
<g >
<title>madvise_vma_behavior (5,280,578 samples, 0.11%)</title><rect x="860.8" y="357" width="1.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="863.79" y="367.5" ></text>
</g>
<g >
<title>do_anonymous_page (743,480 samples, 0.02%)</title><rect x="634.1" y="341" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="637.08" y="351.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (771,887 samples, 0.02%)</title><rect x="645.6" y="405" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="648.65" y="415.5" ></text>
</g>
<g >
<title>runtime.makemap (2,285,397 samples, 0.05%)</title><rect x="773.2" y="517" width="0.5" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="776.18" y="527.5" ></text>
</g>
<g >
<title>mod_objcg_state (778,103 samples, 0.02%)</title><rect x="967.4" y="405" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="970.38" y="415.5" ></text>
</g>
<g >
<title>rmqueue_bulk (442,461 samples, 0.01%)</title><rect x="1000.8" y="293" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1003.83" y="303.5" ></text>
</g>
<g >
<title>handle_pte_fault (27,720,923 samples, 0.57%)</title><rect x="747.2" y="389" width="6.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="750.23" y="399.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (544,706 samples, 0.01%)</title><rect x="926.3" y="277" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="929.26" y="287.5" ></text>
</g>
<g >
<title>runtime.(*unwinder).resolveInternal (773,766 samples, 0.02%)</title><rect x="771.9" y="373" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="774.86" y="383.5" ></text>
</g>
<g >
<title>os.(*file).close (771,505 samples, 0.02%)</title><rect x="841.6" y="645" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="844.55" y="655.5" ></text>
</g>
<g >
<title>exc_page_fault (4,504,935 samples, 0.09%)</title><rect x="842.5" y="645" width="1.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="845.47" y="655.5" ></text>
</g>
<g >
<title>runtime.markrootSpans (3,781,081 samples, 0.08%)</title><rect x="862.3" y="501" width="1.0" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="865.33" y="511.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (731,136 samples, 0.02%)</title><rect x="1181.3" y="581" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1184.32" y="591.5" ></text>
</g>
<g >
<title>exc_page_fault (3,499,772 samples, 0.07%)</title><rect x="1186.4" y="677" width="0.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1189.43" y="687.5" ></text>
</g>
<g >
<title>page_counter_try_charge (778,273 samples, 0.02%)</title><rect x="694.6" y="325" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="697.65" y="335.5" ></text>
</g>
<g >
<title>tick_sched_handle (771,887 samples, 0.02%)</title><rect x="645.6" y="341" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="648.65" y="351.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (3,442,460 samples, 0.07%)</title><rect x="368.9" y="373" width="0.9" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="371.92" y="383.5" ></text>
</g>
<g >
<title>do_user_addr_fault (760,047 samples, 0.02%)</title><rect x="759.3" y="389" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="762.29" y="399.5" ></text>
</g>
<g >
<title>perf_ctx_disable (731,019 samples, 0.02%)</title><rect x="209.2" y="421" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="212.19" y="431.5" ></text>
</g>
<g >
<title>get_page_from_freelist (774,526 samples, 0.02%)</title><rect x="563.9" y="309" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="566.93" y="319.5" ></text>
</g>
<g >
<title>down_read_trylock (768,077 samples, 0.02%)</title><rect x="746.9" y="421" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="749.86" y="431.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (746,945 samples, 0.02%)</title><rect x="852.4" y="613" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="855.38" y="623.5" ></text>
</g>
<g >
<title>mas_walk (613,839 samples, 0.01%)</title><rect x="12.4" y="597" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="15.38" y="607.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (6,009,731 samples, 0.12%)</title><rect x="842.3" y="677" width="1.5" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="845.28" y="687.5" ></text>
</g>
<g >
<title>memset_orig (4,474,372 samples, 0.09%)</title><rect x="1015.3" y="437" width="1.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1018.33" y="447.5" ></text>
</g>
<g >
<title>alloc_file_pseudo (268,615,090 samples, 5.57%)</title><rect x="914.4" y="469" width="65.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="917.39" y="479.5" >alloc_f..</text>
</g>
<g >
<title>__sysvec_call_function_single (2,871,537 samples, 0.06%)</title><rect x="203.4" y="661" width="0.7" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="206.44" y="671.5" ></text>
</g>
<g >
<title>runtime.gcmarknewobject (760,700 samples, 0.02%)</title><rect x="863.8" y="613" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="866.77" y="623.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (773,372 samples, 0.02%)</title><rect x="801.7" y="421" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="804.66" y="431.5" ></text>
</g>
<g >
<title>runtime.memhash64 (778,856 samples, 0.02%)</title><rect x="785.1" y="485" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="788.06" y="495.5" ></text>
</g>
<g >
<title>mod_memcg_state (778,275 samples, 0.02%)</title><rect x="1012.2" y="389" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1015.21" y="399.5" ></text>
</g>
<g >
<title>unmap_vmas (23,887,656 samples, 0.50%)</title><rect x="55.3" y="565" width="5.8" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="58.26" y="575.5" ></text>
</g>
<g >
<title>do_fault (589,552 samples, 0.01%)</title><rect x="214.1" y="581" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="217.08" y="591.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (776,498 samples, 0.02%)</title><rect x="708.8" y="261" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="711.80" y="271.5" ></text>
</g>
<g >
<title>get_timespec64 (932,014 samples, 0.02%)</title><rect x="28.9" y="629" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="31.87" y="639.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (766,281 samples, 0.02%)</title><rect x="858.7" y="629" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="861.74" y="639.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (24,307,472 samples, 0.50%)</title><rect x="207.2" y="597" width="5.9" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="210.19" y="607.5" ></text>
</g>
<g >
<title>error_entry (742,277 samples, 0.02%)</title><rect x="204.5" y="693" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="207.50" y="703.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (2,305,860 samples, 0.05%)</title><rect x="747.8" y="341" width="0.6" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="750.80" y="351.5" ></text>
</g>
<g >
<title>do_anonymous_page (760,634 samples, 0.02%)</title><rect x="1185.9" y="581" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1188.93" y="591.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (774,526 samples, 0.02%)</title><rect x="563.9" y="277" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="566.93" y="287.5" ></text>
</g>
<g >
<title>array_map_alloc_check (2,316,487 samples, 0.05%)</title><rect x="1020.8" y="501" width="0.5" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="1023.76" y="511.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.fixupAndValidate (773,372 samples, 0.02%)</title><rect x="801.7" y="581" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="804.66" y="591.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (5,191,350 samples, 0.11%)</title><rect x="651.0" y="421" width="1.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="654.00" y="431.5" ></text>
</g>
<g >
<title>do_anonymous_page (2,234,029 samples, 0.05%)</title><rect x="685.4" y="389" width="0.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="688.40" y="399.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (34,139,937 samples, 0.71%)</title><rect x="53.3" y="773" width="8.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="56.35" y="783.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (772,354 samples, 0.02%)</title><rect x="652.6" y="437" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="655.64" y="447.5" ></text>
</g>
<g >
<title>kmem_cache_free (774,959 samples, 0.02%)</title><rect x="638.4" y="277" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="641.44" y="287.5" ></text>
</g>
<g >
<title>vma_alloc_folio (777,603 samples, 0.02%)</title><rect x="644.9" y="277" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="647.90" y="287.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (2,111,438 samples, 0.04%)</title><rect x="939.6" y="293" width="0.6" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="942.64" y="303.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (774,959 samples, 0.02%)</title><rect x="638.4" y="389" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="641.44" y="399.5" ></text>
</g>
<g >
<title>runtime.getempty (776,651 samples, 0.02%)</title><rect x="1181.7" y="453" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="1184.69" y="463.5" ></text>
</g>
<g >
<title>__rcu_read_lock (593,427 samples, 0.01%)</title><rect x="946.5" y="373" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="949.51" y="383.5" ></text>
</g>
<g >
<title>consume_obj_stock (773,636 samples, 0.02%)</title><rect x="971.9" y="389" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="974.89" y="399.5" ></text>
</g>
<g >
<title>runtime.bulkBarrierPreWriteSrcOnly (735,114 samples, 0.02%)</title><rect x="712.5" y="469" width="0.2" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="715.54" y="479.5" ></text>
</g>
<g >
<title>runtime.mallocgc (1,554,733 samples, 0.03%)</title><rect x="682.6" y="469" width="0.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="685.63" y="479.5" ></text>
</g>
<g >
<title>runtime.trygetfull (757,349 samples, 0.02%)</title><rect x="67.4" y="677" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="70.42" y="687.5" ></text>
</g>
<g >
<title>__alloc_pages (1,937,914 samples, 0.04%)</title><rect x="1186.6" y="549" width="0.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1189.62" y="559.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (776,498 samples, 0.02%)</title><rect x="708.8" y="245" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="711.80" y="255.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,455,759 samples, 0.03%)</title><rect x="1181.0" y="581" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1183.96" y="591.5" ></text>
</g>
<g >
<title>memset_orig (760,119 samples, 0.02%)</title><rect x="988.2" y="437" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="991.20" y="447.5" ></text>
</g>
<g >
<title>native_write_msr (9,361,526 samples, 0.19%)</title><rect x="401.4" y="341" width="2.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="404.38" y="351.5" ></text>
</g>
<g >
<title>__mod_node_page_state (671,910 samples, 0.01%)</title><rect x="622.1" y="229" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="625.12" y="239.5" ></text>
</g>
<g >
<title>exc_page_fault (777,603 samples, 0.02%)</title><rect x="644.9" y="389" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="647.90" y="399.5" ></text>
</g>
<g >
<title>sync.(*Map).LoadAndDelete (7,455,406 samples, 0.15%)</title><rect x="237.2" y="661" width="1.8" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="240.19" y="671.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (68,811,012 samples, 1.43%)</title><rect x="1041.6" y="549" width="16.8" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="1044.55" y="559.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (9,472,642 samples, 0.20%)</title><rect x="22.6" y="565" width="2.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="25.60" y="575.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).reset (585,101 samples, 0.01%)</title><rect x="863.4" y="549" width="0.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="866.44" y="559.5" ></text>
</g>
<g >
<title>do_anonymous_page (6,767,245 samples, 0.14%)</title><rect x="856.0" y="549" width="1.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="858.96" y="559.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer.func1 (2,594,160 samples, 0.05%)</title><rect x="225.4" y="645" width="0.7" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="228.45" y="655.5" ></text>
</g>
<g >
<title>__handle_mm_fault (766,256 samples, 0.02%)</title><rect x="734.4" y="421" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="737.44" y="431.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (716,363 samples, 0.01%)</title><rect x="624.6" y="325" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="627.61" y="335.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (9,008,963 samples, 0.19%)</title><rect x="406.7" y="341" width="2.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="409.74" y="351.5" ></text>
</g>
<g >
<title>handle_mm_fault (11,121,420 samples, 0.23%)</title><rect x="685.2" y="437" width="2.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="688.21" y="447.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (922,345 samples, 0.02%)</title><rect x="1189.5" y="565" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1192.52" y="575.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (1,268,411 samples, 0.03%)</title><rect x="529.0" y="501" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="531.98" y="511.5" ></text>
</g>
<g >
<title>enqueue_task (606,417 samples, 0.01%)</title><rect x="530.1" y="341" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="533.08" y="351.5" ></text>
</g>
<g >
<title>try_to_wake_up (439,598 samples, 0.01%)</title><rect x="416.3" y="341" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="419.27" y="351.5" ></text>
</g>
<g >
<title>__alloc_pages (2,234,029 samples, 0.05%)</title><rect x="685.4" y="341" width="0.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="688.40" y="351.5" ></text>
</g>
<g >
<title>exc_page_fault (31,567,107 samples, 0.65%)</title><rect x="746.7" y="453" width="7.7" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="749.67" y="463.5" ></text>
</g>
<g >
<title>check_preempt_wakeup (1,243,032 samples, 0.03%)</title><rect x="379.9" y="373" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="382.93" y="383.5" ></text>
</g>
<g >
<title>runtime.scanblock (664,786 samples, 0.01%)</title><rect x="72.8" y="629" width="0.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="75.75" y="639.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (28,090,542 samples, 0.58%)</title><rect x="18.9" y="629" width="6.9" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="21.94" y="639.5" ></text>
</g>
<g >
<title>do_user_addr_fault (10,824,045 samples, 0.22%)</title><rect x="796.7" y="469" width="2.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="799.74" y="479.5" ></text>
</g>
<g >
<title>tick_do_update_jiffies64 (779,331 samples, 0.02%)</title><rect x="687.6" y="245" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="690.56" y="255.5" ></text>
</g>
<g >
<title>runtime.modtimer (511,439 samples, 0.01%)</title><rect x="213.2" y="709" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="216.23" y="719.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (2,101,206 samples, 0.04%)</title><rect x="573.5" y="421" width="0.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="576.54" y="431.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (771,474 samples, 0.02%)</title><rect x="607.3" y="325" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="610.32" y="335.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (750,505 samples, 0.02%)</title><rect x="131.4" y="661" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="134.42" y="671.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (7,864,399 samples, 0.16%)</title><rect x="454.0" y="373" width="1.9" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="457.03" y="383.5" ></text>
</g>
<g >
<title>runtime.handoffp (28,557,994 samples, 0.59%)</title><rect x="18.9" y="677" width="7.0" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="21.90" y="687.5" ></text>
</g>
<g >
<title>__mem_cgroup_threshold (782,416 samples, 0.02%)</title><rect x="844.7" y="517" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="847.70" y="527.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (772,957 samples, 0.02%)</title><rect x="639.4" y="421" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="642.36" y="431.5" ></text>
</g>
<g >
<title>runtime.sysAlloc (738,100 samples, 0.02%)</title><rect x="1085.0" y="485" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="1088.02" y="495.5" ></text>
</g>
<g >
<title>rmqueue_bulk (774,705 samples, 0.02%)</title><rect x="847.3" y="453" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="850.31" y="463.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (4,476,088 samples, 0.09%)</title><rect x="970.8" y="389" width="1.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="973.80" y="399.5" ></text>
</g>
<g >
<title>exc_page_fault (728,330 samples, 0.02%)</title><rect x="630.1" y="421" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="633.11" y="431.5" ></text>
</g>
<g >
<title>runtime.stopm (4,208,890 samples, 0.09%)</title><rect x="13.5" y="645" width="1.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="16.55" y="655.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (772,321 samples, 0.02%)</title><rect x="1084.6" y="469" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1087.65" y="479.5" ></text>
</g>
<g >
<title>runtime.mProf_Malloc (772,320 samples, 0.02%)</title><rect x="652.3" y="421" width="0.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="655.27" y="431.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (421,111 samples, 0.01%)</title><rect x="412.3" y="373" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="415.29" y="383.5" ></text>
</g>
<g >
<title>should_failslab (1,494,226 samples, 0.03%)</title><rect x="952.9" y="421" width="0.4" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="955.93" y="431.5" ></text>
</g>
<g >
<title>x64_setup_rt_frame (700,840 samples, 0.01%)</title><rect x="1188.7" y="565" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1191.75" y="575.5" ></text>
</g>
<g >
<title>blk_cgroup_congested (777,018 samples, 0.02%)</title><rect x="797.7" y="357" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="800.69" y="367.5" ></text>
</g>
<g >
<title>enqueue_task (5,508,110 samples, 0.11%)</title><rect x="20.6" y="485" width="1.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="23.55" y="495.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (732,963 samples, 0.02%)</title><rect x="696.5" y="373" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="699.47" y="383.5" ></text>
</g>
<g >
<title>___slab_alloc (757,396 samples, 0.02%)</title><rect x="940.7" y="309" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="943.70" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Enum).copy (4,604,496 samples, 0.10%)</title><rect x="681.9" y="501" width="1.1" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="684.88" y="511.5" ></text>
</g>
<g >
<title>newidle_balance (767,329 samples, 0.02%)</title><rect x="988.4" y="309" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="991.38" y="319.5" ></text>
</g>
<g >
<title>runtime.pidleget (1,561,710 samples, 0.03%)</title><rect x="251.0" y="549" width="0.4" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="253.99" y="559.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (613,839 samples, 0.01%)</title><rect x="12.4" y="613" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="15.38" y="623.5" ></text>
</g>
<g >
<title>do_syscall_64 (660,972,208 samples, 13.70%)</title><rect x="896.7" y="565" width="161.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="899.69" y="575.5" >do_syscall_64</text>
</g>
<g >
<title>runtime.memmove (770,701 samples, 0.02%)</title><rect x="630.6" y="437" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="633.65" y="447.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (776,627 samples, 0.02%)</title><rect x="620.5" y="437" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="623.45" y="447.5" ></text>
</g>
<g >
<title>error_entry (754,513 samples, 0.02%)</title><rect x="678.4" y="389" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="681.42" y="399.5" ></text>
</g>
<g >
<title>refill_obj_stock (5,455,925 samples, 0.11%)</title><rect x="502.8" y="405" width="1.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="505.83" y="415.5" ></text>
</g>
<g >
<title>task_work_run (771,505 samples, 0.02%)</title><rect x="841.6" y="453" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="844.55" y="463.5" ></text>
</g>
<g >
<title>runtime.mallocgc (739,448 samples, 0.02%)</title><rect x="681.7" y="469" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="684.70" y="479.5" ></text>
</g>
<g >
<title>hrtimer_reprogram (6,298,050 samples, 0.13%)</title><rect x="30.6" y="581" width="1.6" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="33.64" y="591.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (731,547 samples, 0.02%)</title><rect x="692.1" y="453" width="0.2" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="695.09" y="463.5" ></text>
</g>
<g >
<title>handle_mm_fault (772,819 samples, 0.02%)</title><rect x="570.9" y="357" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="573.87" y="367.5" ></text>
</g>
<g >
<title>restore_fpregs_from_fpstate (629,633 samples, 0.01%)</title><rect x="212.6" y="501" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="215.61" y="511.5" ></text>
</g>
<g >
<title>do_send_specific (739,021 samples, 0.02%)</title><rect x="62.5" y="565" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="65.49" y="575.5" ></text>
</g>
<g >
<title>wq_select_unbound_cpu (2,410,872 samples, 0.05%)</title><rect x="409.9" y="421" width="0.6" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="412.92" y="431.5" ></text>
</g>
<g >
<title>perf_ctx_disable (2,741,590 samples, 0.06%)</title><rect x="46.0" y="517" width="0.6" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="48.96" y="527.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (2,185,062 samples, 0.05%)</title><rect x="695.2" y="309" width="0.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="698.21" y="319.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (5,981,234 samples, 0.12%)</title><rect x="860.6" y="533" width="1.5" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="863.62" y="543.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (511,439 samples, 0.01%)</title><rect x="213.2" y="661" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="216.23" y="671.5" ></text>
</g>
<g >
<title>__alloc_pages (1,475,642 samples, 0.03%)</title><rect x="700.7" y="309" width="0.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="703.73" y="319.5" ></text>
</g>
<g >
<title>update_cfs_group (1,177,433 samples, 0.02%)</title><rect x="208.6" y="421" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="211.55" y="431.5" ></text>
</g>
<g >
<title>runtime.mallocgc (9,123,382 samples, 0.19%)</title><rect x="14.8" y="757" width="2.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="17.77" y="767.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.NewMapWithOptions (1,379,601,974 samples, 28.60%)</title><rect x="847.9" y="709" width="337.5" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="850.87" y="719.5" >github.com/cilium/ebpf.NewMapWithOptions</text>
</g>
<g >
<title>ptep_clear_flush (1,534,177 samples, 0.03%)</title><rect x="598.2" y="341" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="601.16" y="351.5" ></text>
</g>
<g >
<title>setup_object (757,295 samples, 0.02%)</title><rect x="1002.3" y="357" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1005.32" y="367.5" ></text>
</g>
<g >
<title>runtime.notesleep (24,628,130 samples, 0.51%)</title><rect x="207.1" y="613" width="6.0" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="210.11" y="623.5" ></text>
</g>
<g >
<title>runtime.persistentalloc.func1 (1,495,305 samples, 0.03%)</title><rect x="1084.8" y="517" width="0.4" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="1087.84" y="527.5" ></text>
</g>
<g >
<title>memcpy_orig (783,581 samples, 0.02%)</title><rect x="835.8" y="389" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="838.78" y="399.5" ></text>
</g>
<g >
<title>do_wp_page (623,150 samples, 0.01%)</title><rect x="213.9" y="485" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="216.92" y="495.5" ></text>
</g>
<g >
<title>syscall.Syscall.abi0 (1,296,313,040 samples, 26.87%)</title><rect x="240.8" y="661" width="317.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="243.83" y="671.5" >syscall.Syscall.abi0</text>
</g>
<g >
<title>hrtimer_interrupt (771,887 samples, 0.02%)</title><rect x="645.6" y="389" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="648.65" y="399.5" ></text>
</g>
<g >
<title>aeshashbody (1,539,237 samples, 0.03%)</title><rect x="763.2" y="517" width="0.4" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="766.19" y="527.5" ></text>
</g>
<g >
<title>update_cfs_group (769,267 samples, 0.02%)</title><rect x="989.8" y="293" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="992.80" y="303.5" ></text>
</g>
<g >
<title>runtime.morestack.abi0 (2,239,398 samples, 0.05%)</title><rect x="1188.7" y="773" width="0.6" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="1191.72" y="783.5" ></text>
</g>
<g >
<title>runtime.memmove (6,720,605 samples, 0.14%)</title><rect x="759.7" y="517" width="1.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="762.67" y="527.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*Deque[*github.com/cilium/ebpf/btf.Type]).Push-fm (17,935,890 samples, 0.37%)</title><rect x="713.1" y="485" width="4.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="716.10" y="495.5" ></text>
</g>
<g >
<title>__folio_alloc (775,002 samples, 0.02%)</title><rect x="772.2" y="357" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="775.23" y="367.5" ></text>
</g>
<g >
<title>dentry_unlink_inode (30,017,725 samples, 0.62%)</title><rect x="504.4" y="453" width="7.4" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="507.44" y="463.5" ></text>
</g>
<g >
<title>exc_page_fault (757,205 samples, 0.02%)</title><rect x="1084.8" y="469" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1087.84" y="479.5" ></text>
</g>
<g >
<title>__schedule (1,425,329 samples, 0.03%)</title><rect x="12.0" y="565" width="0.4" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="15.03" y="575.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,475,642 samples, 0.03%)</title><rect x="700.7" y="293" width="0.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="703.73" y="303.5" ></text>
</g>
<g >
<title>handle_mm_fault (11,472,968 samples, 0.24%)</title><rect x="844.7" y="613" width="2.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="847.70" y="623.5" ></text>
</g>
<g >
<title>do_user_addr_fault (30,794,116 samples, 0.64%)</title><rect x="746.7" y="437" width="7.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="749.67" y="447.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (725,573 samples, 0.02%)</title><rect x="1084.3" y="485" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1087.28" y="495.5" ></text>
</g>
<g >
<title>runtime.stopm (1,436,948 samples, 0.03%)</title><rect x="1188.9" y="661" width="0.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="1191.92" y="671.5" ></text>
</g>
<g >
<title>flush_tlb_func (1,534,177 samples, 0.03%)</title><rect x="598.2" y="309" width="0.3" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="601.16" y="319.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (10,555,717 samples, 0.22%)</title><rect x="1010.9" y="421" width="2.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1013.93" y="431.5" ></text>
</g>
<g >
<title>futex_wait_queue (16,580,137 samples, 0.34%)</title><rect x="208.0" y="501" width="4.0" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="210.98" y="511.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (777,422 samples, 0.02%)</title><rect x="682.6" y="437" width="0.2" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="685.63" y="447.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (7,530,385 samples, 0.16%)</title><rect x="649.0" y="373" width="1.8" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="651.96" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Func).TypeName (6,169,415 samples, 0.13%)</title><rect x="559.4" y="501" width="1.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="562.44" y="511.5" ></text>
</g>
<g >
<title>__anon_inode_getfile (277,559,267 samples, 5.75%)</title><rect x="914.0" y="485" width="67.9" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="917.02" y="495.5" >__anon_..</text>
</g>
<g >
<title>handle_pte_fault (760,047 samples, 0.02%)</title><rect x="759.3" y="341" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="762.29" y="351.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*FeatureTest).execute-fm (773,372 samples, 0.02%)</title><rect x="801.7" y="549" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="804.66" y="559.5" ></text>
</g>
<g >
<title>zap_pmd_range.isra.0 (23,887,656 samples, 0.50%)</title><rect x="55.3" y="517" width="5.8" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="58.26" y="527.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,006,928 samples, 0.06%)</title><rect x="760.4" y="469" width="0.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="763.40" y="479.5" ></text>
</g>
<g >
<title>__folio_throttle_swaprate (742,873 samples, 0.02%)</title><rect x="585.2" y="325" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="588.16" y="335.5" ></text>
</g>
<g >
<title>wp_page_copy (12,321,902 samples, 0.26%)</title><rect x="585.0" y="341" width="3.0" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="587.97" y="351.5" ></text>
</g>
<g >
<title>__next_zones_zonelist (728,330 samples, 0.02%)</title><rect x="630.1" y="293" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="633.11" y="303.5" ></text>
</g>
<g >
<title>runtime.sysMap (747,206 samples, 0.02%)</title><rect x="571.4" y="325" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="574.44" y="335.5" ></text>
</g>
<g >
<title>__switch_to (860,507 samples, 0.02%)</title><rect x="52.8" y="773" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="55.80" y="783.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.assignValues (994,763,400 samples, 20.62%)</title><rect x="559.4" y="645" width="243.4" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="562.44" y="655.5" >github.com/cilium/ebpf.assignVal..</text>
</g>
<g >
<title>rcu_segcblist_enqueue (3,181,707 samples, 0.07%)</title><rect x="416.4" y="453" width="0.8" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="419.38" y="463.5" ></text>
</g>
<g >
<title>handle_pte_fault (2,177,327 samples, 0.05%)</title><rect x="563.6" y="405" width="0.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="566.59" y="415.5" ></text>
</g>
<g >
<title>runtime.madvise.abi0 (435,058 samples, 0.01%)</title><rect x="1189.5" y="517" width="0.1" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="1192.52" y="527.5" ></text>
</g>
<g >
<title>mntput (4,815,211 samples, 0.10%)</title><rect x="517.7" y="485" width="1.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="520.74" y="495.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.isra.0 (4,074,751 samples, 0.08%)</title><rect x="429.0" y="357" width="1.0" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="432.01" y="367.5" ></text>
</g>
<g >
<title>__folio_alloc (418,342 samples, 0.01%)</title><rect x="74.2" y="453" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="77.20" y="463.5" ></text>
</g>
<g >
<title>check_mem_size_reg (773,372 samples, 0.02%)</title><rect x="801.7" y="245" width="0.1" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="804.66" y="255.5" ></text>
</g>
<g >
<title>__handle_mm_fault (728,330 samples, 0.02%)</title><rect x="630.1" y="373" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="633.11" y="383.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (797,169 samples, 0.02%)</title><rect x="449.3" y="357" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="452.25" y="367.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (623,150 samples, 0.01%)</title><rect x="213.9" y="405" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="216.92" y="415.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,502,420 samples, 0.03%)</title><rect x="1188.4" y="757" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1191.35" y="767.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,598,926 samples, 0.03%)</title><rect x="12.0" y="645" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="14.99" y="655.5" ></text>
</g>
<g >
<title>cache_from_obj (746,592 samples, 0.02%)</title><rect x="491.3" y="437" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="494.29" y="447.5" ></text>
</g>
<g >
<title>handle_pte_fault (10,806,675 samples, 0.22%)</title><rect x="786.4" y="405" width="2.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="789.37" y="415.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (2,111,784 samples, 0.04%)</title><rect x="1083.2" y="357" width="0.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1086.21" y="367.5" ></text>
</g>
<g >
<title>slab_pre_alloc_hook.constprop.0 (36,716,359 samples, 0.76%)</title><rect x="967.6" y="405" width="9.0" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="970.57" y="415.5" ></text>
</g>
<g >
<title>asm_common_interrupt (485,085 samples, 0.01%)</title><rect x="287.3" y="533" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="290.34" y="543.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (741,209 samples, 0.02%)</title><rect x="686.3" y="357" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="689.31" y="367.5" ></text>
</g>
<g >
<title>runtime.clone.abi0 (840,021 samples, 0.02%)</title><rect x="12.4" y="677" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="15.38" y="687.5" ></text>
</g>
<g >
<title>runtime.interequal (760,480 samples, 0.02%)</title><rect x="717.7" y="501" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="720.67" y="511.5" ></text>
</g>
<g >
<title>os.(*File).ReadAt (8,180,954 samples, 0.17%)</title><rect x="640.1" y="421" width="2.0" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="643.11" y="431.5" ></text>
</g>
<g >
<title>tick_sched_timer (771,887 samples, 0.02%)</title><rect x="645.6" y="357" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="648.65" y="367.5" ></text>
</g>
<g >
<title>runtime.goschedImpl (1,473,273 samples, 0.03%)</title><rect x="196.9" y="677" width="0.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="199.91" y="687.5" ></text>
</g>
<g >
<title>dequeue_entity (636,476 samples, 0.01%)</title><rect x="15.8" y="517" width="0.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="18.77" y="527.5" ></text>
</g>
<g >
<title>runtime.findObject (1,525,940 samples, 0.03%)</title><rect x="858.2" y="565" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="861.18" y="575.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,455,759 samples, 0.03%)</title><rect x="1181.0" y="533" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1183.96" y="543.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes.func2 (48,229,592 samples, 1.00%)</title><rect x="622.5" y="469" width="11.8" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="625.46" y="479.5" ></text>
</g>
<g >
<title>copy_fpstate_to_sigframe (700,840 samples, 0.01%)</title><rect x="1188.7" y="533" width="0.2" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="1191.75" y="543.5" ></text>
</g>
<g >
<title>__handle_mm_fault (636,619 samples, 0.01%)</title><rect x="214.2" y="645" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="217.22" y="655.5" ></text>
</g>
<g >
<title>runtime.findRunnable (5,167,514 samples, 0.11%)</title><rect x="13.3" y="661" width="1.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="16.31" y="671.5" ></text>
</g>
<g >
<title>__mod_node_page_state (721,539 samples, 0.01%)</title><rect x="60.6" y="405" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="63.62" y="415.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (747,206 samples, 0.02%)</title><rect x="571.4" y="405" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="574.44" y="415.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (688,211 samples, 0.01%)</title><rect x="188.2" y="437" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="191.19" y="447.5" ></text>
</g>
<g >
<title>irq_exit_rcu (736,533 samples, 0.02%)</title><rect x="209.7" y="405" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="212.66" y="415.5" ></text>
</g>
<g >
<title>handle_pte_fault (2,887,565 samples, 0.06%)</title><rect x="215.6" y="629" width="0.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="218.62" y="639.5" ></text>
</g>
<g >
<title>do_user_addr_fault (5,079,938 samples, 0.11%)</title><rect x="623.9" y="421" width="1.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="626.89" y="431.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (741,209 samples, 0.02%)</title><rect x="686.3" y="325" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="689.31" y="335.5" ></text>
</g>
<g >
<title>__irqentry_text_end (1,510,722 samples, 0.03%)</title><rect x="684.7" y="485" width="0.3" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="687.66" y="495.5" ></text>
</g>
<g >
<title>capable (769,871 samples, 0.02%)</title><rect x="908.0" y="517" width="0.2" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="911.05" y="527.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (3,824,943 samples, 0.08%)</title><rect x="13.6" y="613" width="1.0" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="16.62" y="623.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (1,737,361 samples, 0.04%)</title><rect x="367.8" y="373" width="0.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="370.81" y="383.5" ></text>
</g>
<g >
<title>runtime.mstart.abi0 (2,238,389 samples, 0.05%)</title><rect x="11.8" y="741" width="0.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="14.83" y="751.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (700,840 samples, 0.01%)</title><rect x="1188.7" y="613" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1191.75" y="623.5" ></text>
</g>
<g >
<title>update_rt_rq_load_avg (602,790 samples, 0.01%)</title><rect x="44.8" y="501" width="0.2" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="47.81" y="511.5" ></text>
</g>
<g >
<title>os.(*File).ReadAt (762,852 samples, 0.02%)</title><rect x="12.9" y="741" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="15.94" y="751.5" ></text>
</g>
<g >
<title>runtime.profilealloc (772,320 samples, 0.02%)</title><rect x="652.3" y="437" width="0.2" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="655.27" y="447.5" ></text>
</g>
<g >
<title>btf_find_by_name_kind (2,307,830 samples, 0.05%)</title><rect x="801.8" y="325" width="0.6" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="804.85" y="335.5" ></text>
</g>
<g >
<title>ptep_clear_flush (623,150 samples, 0.01%)</title><rect x="213.9" y="453" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="216.92" y="463.5" ></text>
</g>
<g >
<title>rcu_core (701,326 samples, 0.01%)</title><rect x="253.5" y="517" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="256.53" y="527.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (757,205 samples, 0.02%)</title><rect x="1084.8" y="485" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1087.84" y="495.5" ></text>
</g>
<g >
<title>runtime.mallocgc (10,742,605 samples, 0.22%)</title><rect x="769.4" y="501" width="2.6" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="772.42" y="511.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (8,333,723 samples, 0.17%)</title><rect x="965.3" y="405" width="2.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="968.34" y="415.5" ></text>
</g>
<g >
<title>runtime.(*mcache).allocLarge (747,206 samples, 0.02%)</title><rect x="571.4" y="421" width="0.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="574.44" y="431.5" ></text>
</g>
<g >
<title>file_free_rcu (701,326 samples, 0.01%)</title><rect x="253.5" y="485" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="256.53" y="495.5" ></text>
</g>
<g >
<title>irqentry_exit (777,194 samples, 0.02%)</title><rect x="643.0" y="405" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="646.04" y="415.5" ></text>
</g>
<g >
<title>runtime.mallocgc (3,090,992 samples, 0.06%)</title><rect x="711.4" y="469" width="0.8" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="714.43" y="479.5" ></text>
</g>
<g >
<title>sched_clock (2,158,419 samples, 0.04%)</title><rect x="404.2" y="357" width="0.6" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="407.22" y="367.5" ></text>
</g>
<g >
<title>enqueue_task (545,440 samples, 0.01%)</title><rect x="437.5" y="293" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="440.53" y="303.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (762,772 samples, 0.02%)</title><rect x="773.6" y="405" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="776.56" y="415.5" ></text>
</g>
<g >
<title>dput (409,487,461 samples, 8.49%)</title><rect x="417.3" y="485" width="100.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="420.35" y="495.5" >dput</text>
</g>
<g >
<title>on_each_cpu_cond_mask (670,398 samples, 0.01%)</title><rect x="573.9" y="213" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="576.89" y="223.5" ></text>
</g>
<g >
<title>bpf_map_release (292,135,353 samples, 6.06%)</title><rect x="342.8" y="485" width="71.5" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="345.81" y="495.5" >bpf_map_..</text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (857,932 samples, 0.02%)</title><rect x="293.8" y="549" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="296.84" y="559.5" ></text>
</g>
<g >
<title>folio_end_writeback (562,113 samples, 0.01%)</title><rect x="412.2" y="229" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="415.16" y="239.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (706,326 samples, 0.01%)</title><rect x="625.0" y="309" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="627.96" y="319.5" ></text>
</g>
<g >
<title>ptep_clear_flush (1,493,170 samples, 0.03%)</title><rect x="205.2" y="549" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="208.17" y="559.5" ></text>
</g>
<g >
<title>wq_select_unbound_cpu (1,744,174 samples, 0.04%)</title><rect x="413.3" y="437" width="0.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="416.29" y="447.5" ></text>
</g>
<g >
<title>runtime.markrootSpans (31,463,006 samples, 0.65%)</title><rect x="74.3" y="677" width="7.7" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="77.30" y="687.5" ></text>
</g>
<g >
<title>__rcu_read_lock (760,487 samples, 0.02%)</title><rect x="1002.7" y="421" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1005.69" y="431.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (629,364 samples, 0.01%)</title><rect x="926.4" y="389" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="929.39" y="399.5" ></text>
</g>
<g >
<title>do_wp_page (670,398 samples, 0.01%)</title><rect x="573.9" y="293" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="576.89" y="303.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (446,062 samples, 0.01%)</title><rect x="44.3" y="485" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="47.25" y="495.5" ></text>
</g>
<g >
<title>do_user_addr_fault (623,150 samples, 0.01%)</title><rect x="213.9" y="549" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="216.92" y="559.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (598,285 samples, 0.01%)</title><rect x="954.6" y="389" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="957.57" y="399.5" ></text>
</g>
<g >
<title>__folio_alloc (2,797,182 samples, 0.06%)</title><rect x="587.3" y="309" width="0.7" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="590.30" y="319.5" ></text>
</g>
<g >
<title>psi_flags_change (1,557,729 samples, 0.03%)</title><rect x="479.2" y="421" width="0.4" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="482.23" y="431.5" ></text>
</g>
<g >
<title>bpf_map_seq_show (27,287,269 samples, 0.57%)</title><rect x="830.0" y="453" width="6.7" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="833.03" y="463.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (771,505 samples, 0.02%)</title><rect x="841.6" y="549" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="844.55" y="559.5" ></text>
</g>
<g >
<title>asm_sysvec_call_function_single (736,676 samples, 0.02%)</title><rect x="205.5" y="469" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="208.54" y="479.5" ></text>
</g>
<g >
<title>do_wp_page (26,191,746 samples, 0.54%)</title><rect x="747.6" y="373" width="6.4" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="750.61" y="383.5" ></text>
</g>
<g >
<title>sched_clock (5,231,887 samples, 0.11%)</title><rect x="397.0" y="325" width="1.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="400.04" y="335.5" ></text>
</g>
<g >
<title>psi_task_change (758,352 samples, 0.02%)</title><rect x="943.3" y="245" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="946.27" y="255.5" ></text>
</g>
<g >
<title>handle_pte_fault (766,660 samples, 0.02%)</title><rect x="782.2" y="421" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="785.24" y="431.5" ></text>
</g>
<g >
<title>runtime.greyobject (6,753,467 samples, 0.14%)</title><rect x="69.8" y="693" width="1.7" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="72.80" y="703.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (1,534,698 samples, 0.03%)</title><rect x="906.2" y="517" width="0.4" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="909.21" y="527.5" ></text>
</g>
<g >
<title>runtime.(*itabTableType).add (528,819 samples, 0.01%)</title><rect x="1189.7" y="725" width="0.2" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="1192.74" y="735.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (760,697 samples, 0.02%)</title><rect x="773.4" y="213" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="776.37" y="223.5" ></text>
</g>
<g >
<title>handle_mm_fault (598,093 samples, 0.01%)</title><rect x="214.4" y="661" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="217.38" y="671.5" ></text>
</g>
<g >
<title>[[vdso]] (1,487,698 samples, 0.03%)</title><rect x="18.2" y="677" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="21.15" y="687.5" ></text>
</g>
<g >
<title>crng_make_state (781,326 samples, 0.02%)</title><rect x="941.6" y="293" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="944.60" y="303.5" ></text>
</g>
<g >
<title>runtime.deferreturn (2,674,403 samples, 0.06%)</title><rect x="1184.7" y="677" width="0.7" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1187.71" y="687.5" ></text>
</g>
<g >
<title>ttwu_do_activate (544,706 samples, 0.01%)</title><rect x="926.3" y="229" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="929.26" y="239.5" ></text>
</g>
<g >
<title>runtime.callers.func1 (722,283 samples, 0.01%)</title><rect x="691.6" y="389" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="694.56" y="399.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (15,038,948 samples, 0.31%)</title><rect x="434.0" y="421" width="3.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="437.03" y="431.5" ></text>
</g>
<g >
<title>virtblk_request_done (562,113 samples, 0.01%)</title><rect x="412.2" y="325" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="415.16" y="335.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.write (767,277 samples, 0.02%)</title><rect x="658.5" y="421" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="661.51" y="431.5" ></text>
</g>
<g >
<title>syscall.Syscall (1,279,724 samples, 0.03%)</title><rect x="11.5" y="725" width="0.3" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="14.48" y="735.5" ></text>
</g>
<g >
<title>handle_pte_fault (670,398 samples, 0.01%)</title><rect x="573.9" y="309" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="576.89" y="319.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (732,963 samples, 0.02%)</title><rect x="696.5" y="437" width="0.2" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="699.47" y="447.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (739,310 samples, 0.02%)</title><rect x="691.9" y="453" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="694.91" y="463.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (769,267 samples, 0.02%)</title><rect x="989.8" y="405" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="992.80" y="415.5" ></text>
</g>
<g >
<title>policy_node (567,468 samples, 0.01%)</title><rect x="1000.9" y="357" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="1003.93" y="367.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Typedef).copy (1,464,384 samples, 0.03%)</title><rect x="712.2" y="501" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="715.18" y="511.5" ></text>
</g>
<g >
<title>try_to_wake_up (758,352 samples, 0.02%)</title><rect x="943.3" y="293" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="946.27" y="303.5" ></text>
</g>
<g >
<title>try_charge_memcg (3,798,984 samples, 0.08%)</title><rect x="1012.6" y="405" width="0.9" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1015.58" y="415.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (777,422 samples, 0.02%)</title><rect x="682.6" y="453" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="685.63" y="463.5" ></text>
</g>
<g >
<title>gcWriteBarrier (23,555,410 samples, 0.49%)</title><rect x="675.2" y="501" width="5.7" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="678.19" y="511.5" ></text>
</g>
<g >
<title>runtime.mcall (1,473,273 samples, 0.03%)</title><rect x="196.9" y="709" width="0.4" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="199.91" y="719.5" ></text>
</g>
<g >
<title>clear_page_erms (3,774,545 samples, 0.08%)</title><rect x="842.6" y="485" width="1.0" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="845.65" y="495.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (613,839 samples, 0.01%)</title><rect x="12.4" y="661" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="15.38" y="671.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (762,852 samples, 0.02%)</title><rect x="12.9" y="677" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="15.94" y="687.5" ></text>
</g>
<g >
<title>syscall.pread (6,974,464 samples, 0.14%)</title><rect x="656.2" y="405" width="1.7" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="659.23" y="415.5" ></text>
</g>
<g >
<title>bpf_map_area_alloc (112,400,457 samples, 2.33%)</title><rect x="990.0" y="485" width="27.5" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="992.99" y="495.5" >b..</text>
</g>
<g >
<title>[unknown] (11,660,744 samples, 0.24%)</title><rect x="10.0" y="757" width="2.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="767.5" ></text>
</g>
<g >
<title>error_entry (777,508 samples, 0.02%)</title><rect x="14.6" y="741" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="17.58" y="751.5" ></text>
</g>
<g >
<title>security_file_alloc (36,317,295 samples, 0.75%)</title><rect x="923.4" y="405" width="8.9" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="926.37" y="415.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (613,272 samples, 0.01%)</title><rect x="54.0" y="629" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="56.97" y="639.5" ></text>
</g>
<g >
<title>do_user_addr_fault (731,136 samples, 0.02%)</title><rect x="1181.3" y="373" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1184.32" y="383.5" ></text>
</g>
<g >
<title>handle_pte_fault (4,504,935 samples, 0.09%)</title><rect x="842.5" y="581" width="1.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="845.47" y="591.5" ></text>
</g>
<g >
<title>__collapse_huge_page_copy_succeeded.isra.0 (748,175 samples, 0.02%)</title><rect x="861.0" y="277" width="0.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="863.97" y="287.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,112,925 samples, 0.04%)</title><rect x="412.6" y="389" width="0.5" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="415.62" y="399.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (759,678 samples, 0.02%)</title><rect x="625.3" y="389" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="628.31" y="399.5" ></text>
</g>
<g >
<title>gcWriteBarrier (10,266,915 samples, 0.21%)</title><rect x="715.0" y="453" width="2.5" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="717.97" y="463.5" ></text>
</g>
<g >
<title>__folio_alloc (5,067,855 samples, 0.11%)</title><rect x="598.5" y="325" width="1.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="601.53" y="335.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.loadRawSpec (428,057,740 samples, 8.87%)</title><rect x="559.4" y="517" width="104.8" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="562.44" y="527.5" >github.com/c..</text>
</g>
<g >
<title>schedule_timeout (767,329 samples, 0.02%)</title><rect x="988.4" y="389" width="0.2" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="991.38" y="399.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (4,398,560 samples, 0.09%)</title><rect x="686.5" y="325" width="1.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="689.49" y="335.5" ></text>
</g>
<g >
<title>handle_pte_fault (760,634 samples, 0.02%)</title><rect x="1185.9" y="597" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1188.93" y="607.5" ></text>
</g>
<g >
<title>__handle_mm_fault (4,504,935 samples, 0.09%)</title><rect x="842.5" y="597" width="1.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="845.47" y="607.5" ></text>
</g>
<g >
<title>do_futex (1,401,444 samples, 0.03%)</title><rect x="196.4" y="549" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="199.40" y="559.5" ></text>
</g>
<g >
<title>switch_fpu_return (4,416,736 samples, 0.09%)</title><rect x="531.8" y="549" width="1.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="534.77" y="559.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (15,431,716 samples, 0.32%)</title><rect x="596.9" y="469" width="3.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="599.89" y="479.5" ></text>
</g>
<g >
<title>__handle_mm_fault (757,205 samples, 0.02%)</title><rect x="1084.8" y="421" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1087.84" y="431.5" ></text>
</g>
<g >
<title>runtime.spanOfHeap (2,841,491 samples, 0.06%)</title><rect x="234.9" y="597" width="0.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="237.89" y="607.5" ></text>
</g>
<g >
<title>amd_clear_divider (1,806,293 samples, 0.04%)</title><rect x="292.8" y="581" width="0.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="295.79" y="591.5" ></text>
</g>
<g >
<title>__irqentry_text_end (3,086,641 samples, 0.06%)</title><rect x="795.8" y="501" width="0.8" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="798.80" y="511.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (718,710 samples, 0.01%)</title><rect x="630.5" y="373" width="0.1" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="633.47" y="383.5" ></text>
</g>
<g >
<title>tick_sched_timer (779,331 samples, 0.02%)</title><rect x="687.6" y="277" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="690.56" y="287.5" ></text>
</g>
<g >
<title>handle_pte_fault (1,548,008 samples, 0.03%)</title><rect x="772.0" y="405" width="0.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="775.05" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Pointer).copy (6,160,792 samples, 0.13%)</title><rect x="705.8" y="501" width="1.5" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="708.80" y="511.5" ></text>
</g>
<g >
<title>__alloc_pages (2,022,434 samples, 0.04%)</title><rect x="587.3" y="293" width="0.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="590.30" y="303.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (594,929 samples, 0.01%)</title><rect x="1000.7" y="293" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1003.68" y="303.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (772,957 samples, 0.02%)</title><rect x="639.4" y="437" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="642.36" y="447.5" ></text>
</g>
<g >
<title>__folio_alloc (773,298 samples, 0.02%)</title><rect x="797.5" y="373" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="800.50" y="383.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint32 (2,955,944 samples, 0.06%)</title><rect x="811.2" y="645" width="0.7" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="814.22" y="655.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (2,142,182 samples, 0.04%)</title><rect x="60.1" y="405" width="0.5" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="63.10" y="415.5" ></text>
</g>
<g >
<title>__schedule (664,495 samples, 0.01%)</title><rect x="53.3" y="565" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="56.35" y="575.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.parseBTF (253,492,921 samples, 5.26%)</title><rect x="602.1" y="501" width="62.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="605.14" y="511.5" >github..</text>
</g>
<g >
<title>vm_unmapped_area (738,100 samples, 0.02%)</title><rect x="1085.0" y="309" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1088.02" y="319.5" ></text>
</g>
<g >
<title>bpf_seq_write (1,562,587 samples, 0.03%)</title><rect x="835.8" y="405" width="0.4" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="838.78" y="415.5" ></text>
</g>
<g >
<title>syscall.Close (771,505 samples, 0.02%)</title><rect x="841.6" y="581" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="844.55" y="591.5" ></text>
</g>
<g >
<title>find_task_by_vpid (782,449 samples, 0.02%)</title><rect x="26.5" y="565" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="29.46" y="575.5" ></text>
</g>
<g >
<title>idr_get_next_ul (5,426,625 samples, 0.11%)</title><rect x="828.3" y="405" width="1.4" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="831.33" y="415.5" ></text>
</g>
<g >
<title>amd_clear_divider (718,803 samples, 0.01%)</title><rect x="1040.9" y="549" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1043.88" y="559.5" ></text>
</g>
<g >
<title>queue_work_on (937,252 samples, 0.02%)</title><rect x="414.0" y="469" width="0.3" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="417.04" y="479.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (738,362 samples, 0.02%)</title><rect x="932.1" y="389" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="935.07" y="399.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (770,701 samples, 0.02%)</title><rect x="630.6" y="421" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="633.65" y="431.5" ></text>
</g>
<g >
<title>runtime.step (772,320 samples, 0.02%)</title><rect x="652.3" y="293" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="655.27" y="303.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (766,622 samples, 0.02%)</title><rect x="563.6" y="357" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="566.59" y="367.5" ></text>
</g>
<g >
<title>__handle_mm_fault (760,047 samples, 0.02%)</title><rect x="759.3" y="357" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="762.29" y="367.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (3,854,692 samples, 0.08%)</title><rect x="749.5" y="325" width="0.9" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="752.50" y="335.5" ></text>
</g>
<g >
<title>psi_group_change (3,617,849 samples, 0.08%)</title><rect x="47.2" y="549" width="0.8" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="50.15" y="559.5" ></text>
</g>
<g >
<title>folio_add_lru (780,441 samples, 0.02%)</title><rect x="1186.4" y="565" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1189.43" y="575.5" ></text>
</g>
<g >
<title>do_read_fault (624,343 samples, 0.01%)</title><rect x="213.4" y="613" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="216.36" y="623.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (2,185,062 samples, 0.05%)</title><rect x="695.2" y="341" width="0.5" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="698.21" y="351.5" ></text>
</g>
<g >
<title>__handle_mm_fault (18,845,835 samples, 0.39%)</title><rect x="606.6" y="405" width="4.6" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="609.57" y="415.5" ></text>
</g>
<g >
<title>runtime.assertI2I2 (778,720 samples, 0.02%)</title><rect x="841.4" y="661" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="844.36" y="671.5" ></text>
</g>
<g >
<title>handle_pte_fault (3,519,860 samples, 0.07%)</title><rect x="204.9" y="597" width="0.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="207.86" y="607.5" ></text>
</g>
<g >
<title>do_nanosleep (1,486,106 samples, 0.03%)</title><rect x="12.0" y="597" width="0.4" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="15.02" y="607.5" ></text>
</g>
<g >
<title>__rcu_read_lock (745,494 samples, 0.02%)</title><rect x="948.1" y="389" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="951.15" y="399.5" ></text>
</g>
<g >
<title>handle_pte_fault (772,354 samples, 0.02%)</title><rect x="652.6" y="357" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="655.64" y="367.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (19,520,178 samples, 0.40%)</title><rect x="878.4" y="581" width="4.8" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="881.41" y="591.5" ></text>
</g>
<g >
<title>runtime.wakep (757,125 samples, 0.02%)</title><rect x="863.6" y="549" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="866.58" y="559.5" ></text>
</g>
<g >
<title>internal/reflectlite.rtype.Comparable (718,319 samples, 0.01%)</title><rect x="1183.5" y="661" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1186.49" y="671.5" ></text>
</g>
<g >
<title>__alloc_pages (688,211 samples, 0.01%)</title><rect x="188.2" y="485" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="191.19" y="495.5" ></text>
</g>
<g >
<title>runtime.interhash (4,603,977 samples, 0.10%)</title><rect x="582.4" y="469" width="1.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="585.37" y="479.5" ></text>
</g>
<g >
<title>enqueue_task (758,352 samples, 0.02%)</title><rect x="943.3" y="261" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="946.27" y="271.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (571,012 samples, 0.01%)</title><rect x="48.6" y="485" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="51.65" y="495.5" ></text>
</g>
<g >
<title>__rcu_read_lock (619,782 samples, 0.01%)</title><rect x="517.8" y="469" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="520.82" y="479.5" ></text>
</g>
<g >
<title>runtime.acquirep (477,464 samples, 0.01%)</title><rect x="250.9" y="549" width="0.1" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text x="253.87" y="559.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (776,651 samples, 0.02%)</title><rect x="1181.7" y="277" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1184.69" y="287.5" ></text>
</g>
<g >
<title>runtime.unlock2 (2,307,291 samples, 0.05%)</title><rect x="1178.0" y="549" width="0.5" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="1180.98" y="559.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (1,545,190 samples, 0.03%)</title><rect x="571.1" y="469" width="0.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="574.06" y="479.5" ></text>
</g>
<g >
<title>__free_one_page (2,231,144 samples, 0.05%)</title><rect x="59.4" y="373" width="0.5" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="62.38" y="383.5" ></text>
</g>
<g >
<title>vma_alloc_folio (2,313,544 samples, 0.05%)</title><rect x="699.4" y="357" width="0.6" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="702.45" y="367.5" ></text>
</g>
<g >
<title>runtime.(*timeHistogram).record (612,220 samples, 0.01%)</title><rect x="874.1" y="565" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="877.14" y="575.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (521,735 samples, 0.01%)</title><rect x="11.2" y="693" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="14.16" y="703.5" ></text>
</g>
<g >
<title>irqentry_exit (654,949 samples, 0.01%)</title><rect x="1174.8" y="501" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1177.81" y="511.5" ></text>
</g>
<g >
<title>kfree (1,110,163 samples, 0.02%)</title><rect x="498.1" y="325" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="501.07" y="335.5" ></text>
</g>
<g >
<title>__folio_alloc (760,697 samples, 0.02%)</title><rect x="773.4" y="277" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="776.37" y="287.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (773,978 samples, 0.02%)</title><rect x="948.3" y="325" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="951.33" y="335.5" ></text>
</g>
<g >
<title>blkcg_maybe_throttle_current (1,870,071 samples, 0.04%)</title><rect x="319.2" y="533" width="0.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="322.23" y="543.5" ></text>
</g>
<g >
<title>runtime.step (773,766 samples, 0.02%)</title><rect x="771.9" y="341" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="774.86" y="351.5" ></text>
</g>
<g >
<title>__radix_tree_preload (2,287,004 samples, 0.05%)</title><rect x="1036.3" y="485" width="0.6" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="1039.30" y="495.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (4,402,264 samples, 0.09%)</title><rect x="397.2" y="277" width="1.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="400.20" y="287.5" ></text>
</g>
<g >
<title>bpf_map_put (267,556,469 samples, 5.55%)</title><rect x="348.4" y="469" width="65.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="351.40" y="479.5" >bpf_map..</text>
</g>
<g >
<title>switch_fpu_return (860,046 samples, 0.02%)</title><rect x="212.6" y="517" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="215.58" y="527.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).uncacheSpan (2,155,173 samples, 0.04%)</title><rect x="631.9" y="389" width="0.6" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="634.93" y="399.5" ></text>
</g>
<g >
<title>handle_mm_fault (981,773 samples, 0.02%)</title><rect x="1188.0" y="613" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1191.03" y="623.5" ></text>
</g>
<g >
<title>madvise_collapse (5,280,578 samples, 0.11%)</title><rect x="860.8" y="341" width="1.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="863.79" y="351.5" ></text>
</g>
<g >
<title>__do_softirq (7,595,114 samples, 0.16%)</title><rect x="435.8" y="357" width="1.9" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="438.81" y="367.5" ></text>
</g>
<g >
<title>update_rq_clock (17,467,817 samples, 0.36%)</title><rect x="404.8" y="389" width="4.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="407.75" y="399.5" ></text>
</g>
<g >
<title>runtime.typedmemmove (15,521,316 samples, 0.32%)</title><rect x="754.6" y="485" width="3.8" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="757.58" y="495.5" ></text>
</g>
<g >
<title>handle_mm_fault (15,880,167 samples, 0.33%)</title><rect x="584.3" y="405" width="3.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="587.25" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readStringTable (42,529,264 samples, 0.88%)</title><rect x="652.8" y="485" width="10.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="655.83" y="495.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (715,991 samples, 0.01%)</title><rect x="621.8" y="405" width="0.1" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="624.76" y="415.5" ></text>
</g>
<g >
<title>exc_page_fault (598,093 samples, 0.01%)</title><rect x="214.4" y="693" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="217.38" y="703.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,021,020 samples, 0.06%)</title><rect x="861.3" y="261" width="0.8" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="864.34" y="271.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (1,348,115 samples, 0.03%)</title><rect x="913.5" y="501" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="916.51" y="511.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (720,574 samples, 0.01%)</title><rect x="61.2" y="629" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="64.20" y="639.5" ></text>
</g>
<g >
<title>folio_add_lru (1,406,328 samples, 0.03%)</title><rect x="856.0" y="517" width="0.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="858.96" y="527.5" ></text>
</g>
<g >
<title>sync.(*Map).Load (8,950,712 samples, 0.19%)</title><rect x="813.6" y="645" width="2.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="816.60" y="655.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (5,981,234 samples, 0.12%)</title><rect x="860.6" y="549" width="1.5" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="863.62" y="559.5" ></text>
</g>
<g >
<title>__irqentry_text_end (764,180 samples, 0.02%)</title><rect x="746.1" y="469" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="749.11" y="479.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (772,321 samples, 0.02%)</title><rect x="1084.6" y="453" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1087.65" y="463.5" ></text>
</g>
<g >
<title>runtime.addfinalizer (396,133,249 samples, 8.21%)</title><rect x="1081.6" y="565" width="96.9" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="1084.63" y="575.5" >runtime.add..</text>
</g>
<g >
<title>sync_regs (765,473 samples, 0.02%)</title><rect x="790.0" y="501" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="792.96" y="511.5" ></text>
</g>
<g >
<title>exc_page_fault (731,136 samples, 0.02%)</title><rect x="1181.3" y="389" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1184.32" y="399.5" ></text>
</g>
<g >
<title>place_entity (626,304 samples, 0.01%)</title><rect x="389.6" y="341" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="392.61" y="351.5" ></text>
</g>
<g >
<title>mas_walk (763,215 samples, 0.02%)</title><rect x="571.3" y="389" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="574.25" y="399.5" ></text>
</g>
<g >
<title>_raw_spin_lock (17,787,773 samples, 0.37%)</title><rect x="38.0" y="469" width="4.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="41.01" y="479.5" ></text>
</g>
<g >
<title>clear_page_erms (757,396 samples, 0.02%)</title><rect x="940.7" y="229" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="943.70" y="239.5" ></text>
</g>
<g >
<title>dequeue_task_fair (2,859,195 samples, 0.06%)</title><rect x="208.2" y="437" width="0.7" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="211.24" y="447.5" ></text>
</g>
<g >
<title>do_user_addr_fault (731,613 samples, 0.02%)</title><rect x="631.8" y="245" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="634.75" y="255.5" ></text>
</g>
<g >
<title>clear_page_erms (1,556,589 samples, 0.03%)</title><rect x="836.7" y="453" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="839.71" y="463.5" ></text>
</g>
<g >
<title>consume_obj_stock (3,697,910 samples, 0.08%)</title><rect x="1011.3" y="405" width="0.9" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1014.30" y="415.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (747,206 samples, 0.02%)</title><rect x="571.4" y="373" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="574.44" y="383.5" ></text>
</g>
<g >
<title>__irqentry_text_end (753,279 samples, 0.02%)</title><rect x="709.6" y="469" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="712.56" y="479.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (579,512 samples, 0.01%)</title><rect x="1041.1" y="549" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1044.05" y="559.5" ></text>
</g>
<g >
<title>perf_ctx_disable (694,450 samples, 0.01%)</title><rect x="196.4" y="421" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="199.40" y="431.5" ></text>
</g>
<g >
<title>exc_page_fault (1,509,297 samples, 0.03%)</title><rect x="865.0" y="565" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="867.96" y="575.5" ></text>
</g>
<g >
<title>runtime.finishsweep_m (776,273 samples, 0.02%)</title><rect x="696.7" y="405" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="699.65" y="415.5" ></text>
</g>
<g >
<title>lru_add_fn (730,856 samples, 0.02%)</title><rect x="633.0" y="261" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="635.99" y="271.5" ></text>
</g>
<g >
<title>irqentry_exit (1,504,207 samples, 0.03%)</title><rect x="1084.1" y="517" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1087.09" y="527.5" ></text>
</g>
<g >
<title>__alloc_pages (2,313,544 samples, 0.05%)</title><rect x="699.4" y="325" width="0.6" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="702.45" y="335.5" ></text>
</g>
<g >
<title>rcu_do_batch (701,326 samples, 0.01%)</title><rect x="253.5" y="501" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="256.53" y="511.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (778,697 samples, 0.02%)</title><rect x="681.3" y="453" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="684.33" y="463.5" ></text>
</g>
<g >
<title>bufio.(*Reader).Read (10,461,936 samples, 0.22%)</title><rect x="639.6" y="453" width="2.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="642.55" y="463.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (670,398 samples, 0.01%)</title><rect x="573.9" y="229" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="576.89" y="239.5" ></text>
</g>
<g >
<title>pick_next_entity (2,618,189 samples, 0.05%)</title><rect x="438.3" y="421" width="0.6" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="441.31" y="431.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (506,364 samples, 0.01%)</title><rect x="1188.0" y="533" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1191.03" y="543.5" ></text>
</g>
<g >
<title>runtime.gcStart.func2 (585,101 samples, 0.01%)</title><rect x="863.4" y="581" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="866.44" y="591.5" ></text>
</g>
<g >
<title>irqentry_exit (779,861 samples, 0.02%)</title><rect x="654.9" y="437" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="657.91" y="447.5" ></text>
</g>
<g >
<title>wp_page_copy (475,409 samples, 0.01%)</title><rect x="1188.2" y="549" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1191.15" y="559.5" ></text>
</g>
<g >
<title>runtime.gcenable.func1 (38,849,726 samples, 0.81%)</title><rect x="196.4" y="757" width="9.5" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="199.40" y="767.5" ></text>
</g>
<g >
<title>__x64_sys_tgkill (739,021 samples, 0.02%)</title><rect x="62.5" y="597" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="65.49" y="607.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (698,493 samples, 0.01%)</title><rect x="632.1" y="357" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="635.11" y="367.5" ></text>
</g>
<g >
<title>exc_page_fault (698,493 samples, 0.01%)</title><rect x="632.1" y="341" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="635.11" y="351.5" ></text>
</g>
<g >
<title>bpf_check (773,372 samples, 0.02%)</title><rect x="801.7" y="325" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="804.66" y="335.5" ></text>
</g>
<g >
<title>task_work_run (861,522,859 samples, 17.86%)</title><rect x="320.6" y="533" width="210.8" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="323.62" y="543.5" >task_work_run</text>
</g>
<g >
<title>perf_ctx_enable (738,276 samples, 0.02%)</title><rect x="23.3" y="469" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="26.26" y="479.5" ></text>
</g>
<g >
<title>do_user_addr_fault (797,472 samples, 0.02%)</title><rect x="62.0" y="533" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="65.02" y="543.5" ></text>
</g>
<g >
<title>handle_pte_fault (16,558,217 samples, 0.34%)</title><rect x="607.1" y="389" width="4.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="610.13" y="399.5" ></text>
</g>
<g >
<title>do_wp_page (475,409 samples, 0.01%)</title><rect x="1188.2" y="565" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="1191.15" y="575.5" ></text>
</g>
<g >
<title>update_curr (434,853 samples, 0.01%)</title><rect x="21.0" y="421" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="24.00" y="431.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (18,459,805 samples, 0.38%)</title><rect x="676.4" y="485" width="4.5" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="679.43" y="495.5" ></text>
</g>
<g >
<title>runtime.makeslice (11,768,927 samples, 0.24%)</title><rect x="630.8" y="453" width="2.9" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="633.84" y="463.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (776,651 samples, 0.02%)</title><rect x="1181.7" y="437" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1184.69" y="447.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (746,494 samples, 0.02%)</title><rect x="62.8" y="549" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="65.79" y="559.5" ></text>
</g>
<g >
<title>bufio.(*Reader).Read (84,721,558 samples, 1.76%)</title><rect x="816.0" y="645" width="20.7" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="818.98" y="655.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (5,222,368 samples, 0.11%)</title><rect x="1181.7" y="517" width="1.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1184.69" y="527.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).value (18,306,873 samples, 0.38%)</title><rect x="806.0" y="645" width="4.5" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="808.99" y="655.5" ></text>
</g>
<g >
<title>bpf_iter_run_prog (774,829 samples, 0.02%)</title><rect x="818.4" y="453" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="821.40" y="463.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (760,047 samples, 0.02%)</title><rect x="759.3" y="277" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="762.29" y="287.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (4,541,452 samples, 0.09%)</title><rect x="862.3" y="549" width="1.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="865.33" y="559.5" ></text>
</g>
<g >
<title>psi_task_change (2,261,211 samples, 0.05%)</title><rect x="21.3" y="469" width="0.5" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="24.28" y="479.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (777,422 samples, 0.02%)</title><rect x="682.6" y="421" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="685.63" y="431.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (778,809 samples, 0.02%)</title><rect x="772.4" y="437" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="775.42" y="447.5" ></text>
</g>
<g >
<title>__get_random_u32_below (781,326 samples, 0.02%)</title><rect x="941.6" y="341" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="944.60" y="351.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (1,507,271 samples, 0.03%)</title><rect x="631.6" y="309" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="634.56" y="319.5" ></text>
</g>
<g >
<title>__irqentry_text_end (751,024 samples, 0.02%)</title><rect x="694.3" y="485" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="697.27" y="495.5" ></text>
</g>
<g >
<title>strings.LastIndex (16,964,626 samples, 0.35%)</title><rect x="764.1" y="501" width="4.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="767.13" y="511.5" ></text>
</g>
<g >
<title>runtime.unlock2 (718,611 samples, 0.01%)</title><rect x="81.8" y="661" width="0.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="84.82" y="671.5" ></text>
</g>
<g >
<title>_raw_spin_lock (4,191,671 samples, 0.09%)</title><rect x="915.5" y="453" width="1.0" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="918.52" y="463.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (772,321 samples, 0.02%)</title><rect x="1084.6" y="485" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1087.65" y="495.5" ></text>
</g>
<g >
<title>perf_ctx_enable (573,903 samples, 0.01%)</title><rect x="209.4" y="421" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="212.37" y="431.5" ></text>
</g>
<g >
<title>runtime.mstart0 (2,238,389 samples, 0.05%)</title><rect x="11.8" y="725" width="0.6" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="14.83" y="735.5" ></text>
</g>
<g >
<title>runtime.slicebytetostring (16,253,535 samples, 0.34%)</title><rect x="659.3" y="469" width="3.9" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="662.26" y="479.5" ></text>
</g>
<g >
<title>runtime.findObject (754,109 samples, 0.02%)</title><rect x="682.1" y="341" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="685.06" y="351.5" ></text>
</g>
<g >
<title>_raw_spin_lock (2,336,754 samples, 0.05%)</title><rect x="985.9" y="469" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="988.87" y="479.5" ></text>
</g>
<g >
<title>__free_slab (2,220,504 samples, 0.05%)</title><rect x="497.8" y="341" width="0.5" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="500.79" y="351.5" ></text>
</g>
<g >
<title>idr_alloc_cyclic (737,410 samples, 0.02%)</title><rect x="908.4" y="517" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="911.42" y="527.5" ></text>
</g>
<g >
<title>enqueue_task (746,945 samples, 0.02%)</title><rect x="852.4" y="517" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="855.38" y="527.5" ></text>
</g>
<g >
<title>futex_wait (18,438,086 samples, 0.38%)</title><rect x="207.7" y="517" width="4.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="210.72" y="527.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (772,321 samples, 0.02%)</title><rect x="1084.6" y="533" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1087.65" y="543.5" ></text>
</g>
<g >
<title>folio_lruvec_lock_irq (750,379 samples, 0.02%)</title><rect x="1188.5" y="565" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="1191.54" y="575.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer (404,949,902 samples, 8.40%)</title><rect x="1079.9" y="613" width="99.0" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="1082.85" y="623.5" >runtime.Set..</text>
</g>
<g >
<title>apparmor_capable (2,891,765 samples, 0.06%)</title><rect x="1023.4" y="485" width="0.7" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1026.35" y="495.5" ></text>
</g>
<g >
<title>runtime.newobject (35,858,789 samples, 0.74%)</title><rect x="858.7" y="645" width="8.8" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="861.74" y="655.5" ></text>
</g>
<g >
<title>begin_current_label_crit_section (709,992 samples, 0.01%)</title><rect x="926.5" y="389" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="929.54" y="399.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (759,478 samples, 0.02%)</title><rect x="706.2" y="485" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="709.17" y="495.5" ></text>
</g>
<g >
<title>folio_add_lru (766,622 samples, 0.02%)</title><rect x="563.6" y="341" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="566.59" y="351.5" ></text>
</g>
<g >
<title>clear_page_erms (759,478 samples, 0.02%)</title><rect x="706.2" y="309" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="709.17" y="319.5" ></text>
</g>
<g >
<title>runtime.globrunqget (740,650 samples, 0.02%)</title><rect x="197.1" y="629" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="200.09" y="639.5" ></text>
</g>
<g >
<title>rb_erase (3,226,228 samples, 0.07%)</title><rect x="458.4" y="405" width="0.8" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="461.42" y="415.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (725,573 samples, 0.02%)</title><rect x="1084.3" y="389" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1087.28" y="399.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (751,322 samples, 0.02%)</title><rect x="866.1" y="565" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="869.07" y="575.5" ></text>
</g>
<g >
<title>enqueue_task_fair (769,267 samples, 0.02%)</title><rect x="989.8" y="309" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="992.80" y="319.5" ></text>
</g>
<g >
<title>runtime.growslice (2,026,615 samples, 0.04%)</title><rect x="1185.6" y="709" width="0.5" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1188.62" y="719.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (518,945 samples, 0.01%)</title><rect x="534.7" y="597" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="537.74" y="607.5" ></text>
</g>
<g >
<title>clear_page_erms (1,031,555 samples, 0.02%)</title><rect x="204.9" y="501" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="207.86" y="511.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (742,155 samples, 0.02%)</title><rect x="700.9" y="261" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="703.91" y="271.5" ></text>
</g>
<g >
<title>runtime.memhash64 (3,820,279 samples, 0.08%)</title><rect x="814.7" y="597" width="0.9" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="817.67" y="607.5" ></text>
</g>
<g >
<title>runtime.step (589,552 samples, 0.01%)</title><rect x="214.1" y="693" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="217.08" y="703.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (17,877,866 samples, 0.37%)</title><rect x="38.0" y="485" width="4.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="40.99" y="495.5" ></text>
</g>
<g >
<title>memcpy_orig (751,221 samples, 0.02%)</title><rect x="641.2" y="229" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="644.21" y="239.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,519,968 samples, 0.03%)</title><rect x="734.4" y="453" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="737.44" y="463.5" ></text>
</g>
<g >
<title>flush_tlb_func (626,030 samples, 0.01%)</title><rect x="587.0" y="245" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="589.99" y="255.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (771,887 samples, 0.02%)</title><rect x="645.6" y="373" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="648.65" y="383.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (738,474 samples, 0.02%)</title><rect x="701.1" y="421" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="704.09" y="431.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (1,089,408 samples, 0.02%)</title><rect x="488.2" y="453" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="491.24" y="463.5" ></text>
</g>
<g >
<title>handle_pte_fault (777,603 samples, 0.02%)</title><rect x="644.9" y="325" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="647.90" y="335.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (775,645 samples, 0.02%)</title><rect x="963.3" y="309" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="966.30" y="319.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (736,789 samples, 0.02%)</title><rect x="704.7" y="421" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="707.71" y="431.5" ></text>
</g>
<g >
<title>folio_isolate_lru (750,379 samples, 0.02%)</title><rect x="1188.5" y="581" width="0.2" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" />
<text x="1191.54" y="591.5" ></text>
</g>
<g >
<title>syscall.Syscall (773,372 samples, 0.02%)</title><rect x="801.7" y="437" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="804.66" y="447.5" ></text>
</g>
<g >
<title>__do_softirq (1,469,571 samples, 0.03%)</title><rect x="877.4" y="517" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="880.39" y="527.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (771,505 samples, 0.02%)</title><rect x="841.6" y="533" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="844.55" y="543.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (3,039,080 samples, 0.06%)</title><rect x="45.9" y="533" width="0.8" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="48.94" y="543.5" ></text>
</g>
<g >
<title>resched_curr (2,692,508 samples, 0.06%)</title><rect x="378.6" y="341" width="0.7" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="381.59" y="351.5" ></text>
</g>
<g >
<title>free_unref_page_list (2,231,144 samples, 0.05%)</title><rect x="59.4" y="421" width="0.5" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="62.38" y="431.5" ></text>
</g>
<g >
<title>runtime.preemptone (739,021 samples, 0.02%)</title><rect x="62.5" y="661" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="65.49" y="671.5" ></text>
</g>
<g >
<title>runtime.startm (28,437,307 samples, 0.59%)</title><rect x="18.9" y="661" width="7.0" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="21.90" y="671.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (1,507,271 samples, 0.03%)</title><rect x="631.6" y="373" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="634.56" y="383.5" ></text>
</g>
<g >
<title>do_wp_page (767,277 samples, 0.02%)</title><rect x="658.5" y="309" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="661.51" y="319.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).push (777,508 samples, 0.02%)</title><rect x="14.6" y="757" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="17.58" y="767.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (642,381 samples, 0.01%)</title><rect x="319.1" y="453" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="322.07" y="463.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (487,287 samples, 0.01%)</title><rect x="1189.6" y="501" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1192.62" y="511.5" ></text>
</g>
<g >
<title>runtime.retake (32,313,524 samples, 0.67%)</title><rect x="18.8" y="693" width="8.0" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="21.85" y="703.5" ></text>
</g>
<g >
<title>enqueue_task_fair (3,105,242 samples, 0.06%)</title><rect x="398.7" y="373" width="0.7" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="401.68" y="383.5" ></text>
</g>
<g >
<title>__irqentry_text_end (737,435 samples, 0.02%)</title><rect x="79.5" y="661" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="82.49" y="671.5" ></text>
</g>
<g >
<title>security_file_free (26,467,825 samples, 0.55%)</title><rect x="520.8" y="485" width="6.5" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="523.82" y="495.5" ></text>
</g>
<g >
<title>encoding/binary.dataSize (9,644,880 samples, 0.20%)</title><rect x="813.4" y="661" width="2.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="816.43" y="671.5" ></text>
</g>
<g >
<title>runtime.newobject (763,753 samples, 0.02%)</title><rect x="1183.1" y="629" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1186.14" y="639.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (730,831 samples, 0.02%)</title><rect x="704.5" y="405" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="707.53" y="415.5" ></text>
</g>
<g >
<title>__kmalloc (1,541,145 samples, 0.03%)</title><rect x="656.4" y="261" width="0.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="659.42" y="271.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (4,398,560 samples, 0.09%)</title><rect x="686.5" y="341" width="1.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="689.49" y="351.5" ></text>
</g>
<g >
<title>put_prev_entity (468,386 samples, 0.01%)</title><rect x="23.8" y="469" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="26.81" y="479.5" ></text>
</g>
<g >
<title>runtime.usleep.abi0 (104,781,339 samples, 2.17%)</title><rect x="26.8" y="693" width="25.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="29.78" y="703.5" >r..</text>
</g>
<g >
<title>idr_get_next (6,197,413 samples, 0.13%)</title><rect x="828.3" y="421" width="1.5" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="831.33" y="431.5" ></text>
</g>
<g >
<title>__rcu_read_lock (632,243 samples, 0.01%)</title><rect x="512.0" y="469" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="515.00" y="479.5" ></text>
</g>
<g >
<title>reg_set_min_max (768,345 samples, 0.02%)</title><rect x="802.6" y="373" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="805.60" y="383.5" ></text>
</g>
<g >
<title>runtime.makechan (598,093 samples, 0.01%)</title><rect x="214.4" y="725" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="217.38" y="735.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*FeatureTest).execute (4,973,504 samples, 0.10%)</title><rect x="868.2" y="645" width="1.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="871.20" y="655.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (1,240,074 samples, 0.03%)</title><rect x="16.0" y="549" width="0.3" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="19.04" y="559.5" ></text>
</g>
<g >
<title>get_unmapped_area (738,100 samples, 0.02%)</title><rect x="1085.0" y="341" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="1088.02" y="351.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (734,099 samples, 0.02%)</title><rect x="705.3" y="437" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="708.26" y="447.5" ></text>
</g>
<g >
<title>__handle_mm_fault (772,354 samples, 0.02%)</title><rect x="652.6" y="373" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="655.64" y="383.5" ></text>
</g>
<g >
<title>__pte_offset_map (766,256 samples, 0.02%)</title><rect x="734.4" y="373" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="737.44" y="383.5" ></text>
</g>
<g >
<title>__mem_cgroup_uncharge_list (1,553,474 samples, 0.03%)</title><rect x="54.3" y="501" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="57.31" y="511.5" ></text>
</g>
<g >
<title>runtime.callers (722,283 samples, 0.01%)</title><rect x="691.6" y="421" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="694.56" y="431.5" ></text>
</g>
<g >
<title>task_tick_fair (598,285 samples, 0.01%)</title><rect x="954.6" y="277" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="957.57" y="287.5" ></text>
</g>
<g >
<title>available_idle_cpu (1,520,859 samples, 0.03%)</title><rect x="373.2" y="373" width="0.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="376.24" y="383.5" ></text>
</g>
<g >
<title>runtime.(*gcWork).init (776,651 samples, 0.02%)</title><rect x="1181.7" y="469" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1184.69" y="479.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (1,493,170 samples, 0.03%)</title><rect x="205.2" y="501" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="208.17" y="511.5" ></text>
</g>
<g >
<title>reflect.Value.Elem (2,328,282 samples, 0.05%)</title><rect x="837.1" y="661" width="0.6" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="840.09" y="671.5" ></text>
</g>
<g >
<title>runtime.tracebackPCs (770,714 samples, 0.02%)</title><rect x="645.1" y="357" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="648.09" y="367.5" ></text>
</g>
<g >
<title>runtime.mallocgc (3,785,509 samples, 0.08%)</title><rect x="701.5" y="469" width="0.9" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="704.45" y="479.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (755,335 samples, 0.02%)</title><rect x="949.6" y="341" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="952.61" y="351.5" ></text>
</g>
<g >
<title>handle_pte_fault (487,287 samples, 0.01%)</title><rect x="1189.6" y="421" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1192.62" y="431.5" ></text>
</g>
<g >
<title>os.(*File).Read (81,753,854 samples, 1.69%)</title><rect x="816.7" y="629" width="20.0" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="819.71" y="639.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer.func2 (397,675,396 samples, 8.24%)</title><rect x="1081.6" y="581" width="97.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="1084.63" y="591.5" >runtime.Set..</text>
</g>
<g >
<title>mod_node_page_state (669,589 samples, 0.01%)</title><rect x="1001.8" y="373" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="1004.78" y="383.5" ></text>
</g>
<g >
<title>do_wp_page (675,350 samples, 0.01%)</title><rect x="216.2" y="613" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="219.16" y="623.5" ></text>
</g>
<g >
<title>handle_pte_fault (2,718,355 samples, 0.06%)</title><rect x="1186.4" y="613" width="0.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1189.43" y="623.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (782,416 samples, 0.02%)</title><rect x="844.7" y="549" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="847.70" y="559.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (732,963 samples, 0.02%)</title><rect x="696.5" y="389" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="699.47" y="399.5" ></text>
</g>
<g >
<title>runtime.schedule (1,436,948 samples, 0.03%)</title><rect x="1188.9" y="709" width="0.4" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="1191.92" y="719.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (769,784 samples, 0.02%)</title><rect x="965.0" y="405" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="967.97" y="415.5" ></text>
</g>
<g >
<title>rmqueue_bulk (774,197 samples, 0.02%)</title><rect x="788.6" y="261" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="791.64" y="271.5" ></text>
</g>
<g >
<title>native_write_msr (694,450 samples, 0.01%)</title><rect x="196.4" y="389" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="199.40" y="399.5" ></text>
</g>
<g >
<title>exit_mm (27,965,230 samples, 0.58%)</title><rect x="54.3" y="629" width="6.8" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="57.26" y="639.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (922,345 samples, 0.02%)</title><rect x="1189.5" y="597" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1192.52" y="607.5" ></text>
</g>
<g >
<title>__rcu_read_lock (650,650 samples, 0.01%)</title><rect x="495.9" y="421" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="498.94" y="431.5" ></text>
</g>
<g >
<title>file_free_rcu (3,931,982 samples, 0.08%)</title><rect x="435.9" y="293" width="1.0" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="438.93" y="303.5" ></text>
</g>
<g >
<title>handle_mm_fault (715,536 samples, 0.01%)</title><rect x="1188.9" y="501" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1191.92" y="511.5" ></text>
</g>
<g >
<title>blk_mq_end_request (562,113 samples, 0.01%)</title><rect x="412.2" y="309" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="415.16" y="319.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (778,246 samples, 0.02%)</title><rect x="659.4" y="453" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="662.45" y="463.5" ></text>
</g>
<g >
<title>exc_page_fault (763,858 samples, 0.02%)</title><rect x="601.6" y="437" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="604.59" y="447.5" ></text>
</g>
<g >
<title>do_user_addr_fault (760,697 samples, 0.02%)</title><rect x="773.4" y="389" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="776.37" y="399.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (715,536 samples, 0.01%)</title><rect x="1188.9" y="389" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1191.92" y="399.5" ></text>
</g>
<g >
<title>runtime.gcStart (1,342,226 samples, 0.03%)</title><rect x="863.4" y="613" width="0.4" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="866.44" y="623.5" ></text>
</g>
<g >
<title>__free_one_page (2,332,505 samples, 0.05%)</title><rect x="54.7" y="453" width="0.6" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="57.69" y="463.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (7,262,456 samples, 0.15%)</title><rect x="407.1" y="309" width="1.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="410.13" y="319.5" ></text>
</g>
<g >
<title>collapse_huge_page (1,502,420 samples, 0.03%)</title><rect x="1188.4" y="629" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1191.35" y="639.5" ></text>
</g>
<g >
<title>__alloc_pages (1,495,537 samples, 0.03%)</title><rect x="633.2" y="277" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="636.17" y="287.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (4,541,452 samples, 0.09%)</title><rect x="862.3" y="581" width="1.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="865.33" y="591.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (774,761 samples, 0.02%)</title><rect x="734.8" y="277" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="737.81" y="287.5" ></text>
</g>
<g >
<title>handle_mm_fault (760,047 samples, 0.02%)</title><rect x="759.3" y="373" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="762.29" y="383.5" ></text>
</g>
<g >
<title>runtime.findRunnable (1,473,273 samples, 0.03%)</title><rect x="196.9" y="645" width="0.4" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="199.91" y="655.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (661,125 samples, 0.01%)</title><rect x="12.2" y="533" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="15.21" y="543.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (4,541,452 samples, 0.09%)</title><rect x="862.3" y="613" width="1.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="865.33" y="623.5" ></text>
</g>
<g >
<title>runtime.mallocgc (922,345 samples, 0.02%)</title><rect x="1189.5" y="677" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1192.52" y="687.5" ></text>
</g>
<g >
<title>dequeue_task_fair (636,476 samples, 0.01%)</title><rect x="15.8" y="533" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="18.77" y="543.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,579,172 samples, 0.03%)</title><rect x="215.8" y="549" width="0.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="218.77" y="559.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Pread (8,180,954 samples, 0.17%)</title><rect x="640.1" y="405" width="2.0" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="643.11" y="415.5" ></text>
</g>
<g >
<title>_copy_from_user (559,743 samples, 0.01%)</title><rect x="1189.3" y="597" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1192.27" y="607.5" ></text>
</g>
<g >
<title>radix_tree_iter_replace (1,505,200 samples, 0.03%)</title><rect x="1035.7" y="469" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1038.75" y="479.5" ></text>
</g>
<g >
<title>__irqentry_text_end (1,539,476 samples, 0.03%)</title><rect x="605.6" y="469" width="0.4" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="608.63" y="479.5" ></text>
</g>
<g >
<title>psi_task_switch (457,224 samples, 0.01%)</title><rect x="24.7" y="501" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="27.68" y="511.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (776,651 samples, 0.02%)</title><rect x="1181.7" y="293" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="1184.69" y="303.5" ></text>
</g>
<g >
<title>runtime.findObject (732,818 samples, 0.02%)</title><rect x="708.1" y="405" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="711.06" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.walkType (740,530 samples, 0.02%)</title><rect x="758.7" y="517" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="761.75" y="527.5" ></text>
</g>
<g >
<title>x86_pmu_disable (634,874 samples, 0.01%)</title><rect x="36.8" y="533" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="39.82" y="543.5" ></text>
</g>
<g >
<title>[[vdso]] (2,321,523 samples, 0.05%)</title><rect x="73.3" y="629" width="0.6" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="76.29" y="639.5" ></text>
</g>
<g >
<title>__alloc_pages (8,440,080 samples, 0.17%)</title><rect x="845.4" y="517" width="2.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="848.44" y="527.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (642,381 samples, 0.01%)</title><rect x="319.1" y="485" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="322.07" y="495.5" ></text>
</g>
<g >
<title>handle_mm_fault (760,697 samples, 0.02%)</title><rect x="773.4" y="373" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="776.37" y="383.5" ></text>
</g>
<g >
<title>__alloc_pages (27,814,894 samples, 0.58%)</title><rect x="994.1" y="357" width="6.8" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="997.13" y="367.5" ></text>
</g>
<g >
<title>unmap_page_range (747,206 samples, 0.02%)</title><rect x="571.4" y="85" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="574.44" y="95.5" ></text>
</g>
<g >
<title>handle_mm_fault (763,858 samples, 0.02%)</title><rect x="601.6" y="405" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="604.59" y="415.5" ></text>
</g>
<g >
<title>__folio_alloc (4,587,648 samples, 0.10%)</title><rect x="856.5" y="517" width="1.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="859.50" y="527.5" ></text>
</g>
<g >
<title>__handle_mm_fault (688,211 samples, 0.01%)</title><rect x="188.2" y="565" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="191.19" y="575.5" ></text>
</g>
<g >
<title>sync_regs (728,512 samples, 0.02%)</title><rect x="843.6" y="661" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="846.57" y="671.5" ></text>
</g>
<g >
<title>__count_memcg_events (772,819 samples, 0.02%)</title><rect x="570.9" y="325" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="573.87" y="335.5" ></text>
</g>
<g >
<title>testing.(*B).Run (1,394,367 samples, 0.03%)</title><rect x="213.6" y="661" width="0.3" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="216.58" y="671.5" ></text>
</g>
<g >
<title>_raw_spin_lock (2,994,245 samples, 0.06%)</title><rect x="466.6" y="405" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="469.60" y="415.5" ></text>
</g>
<g >
<title>ttwu_do_activate (5,831,187 samples, 0.12%)</title><rect x="20.5" y="501" width="1.4" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="23.50" y="511.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (606,417 samples, 0.01%)</title><rect x="530.1" y="437" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="533.08" y="447.5" ></text>
</g>
<g >
<title>psi_flags_change (1,243,043 samples, 0.03%)</title><rect x="476.4" y="437" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="479.35" y="447.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (670,398 samples, 0.01%)</title><rect x="573.9" y="389" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="576.89" y="399.5" ></text>
</g>
<g >
<title>wp_page_copy (777,603 samples, 0.02%)</title><rect x="644.9" y="293" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="647.90" y="303.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,887,565 samples, 0.06%)</title><rect x="215.6" y="661" width="0.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="218.62" y="671.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (781,417 samples, 0.02%)</title><rect x="1187.1" y="645" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1190.10" y="655.5" ></text>
</g>
<g >
<title>update_load_avg (9,445,112 samples, 0.20%)</title><rect x="387.3" y="325" width="2.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="390.25" y="335.5" ></text>
</g>
<g >
<title>_raw_spin_lock (594,979 samples, 0.01%)</title><rect x="1174.5" y="405" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1177.48" y="415.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (624,385 samples, 0.01%)</title><rect x="587.1" y="245" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="590.15" y="255.5" ></text>
</g>
<g >
<title>handle_pte_fault (4,569,348 samples, 0.09%)</title><rect x="709.9" y="389" width="1.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="712.94" y="399.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (778,402 samples, 0.02%)</title><rect x="902.0" y="517" width="0.2" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="904.96" y="527.5" ></text>
</g>
<g >
<title>__schedule (651,143 samples, 0.01%)</title><rect x="877.9" y="469" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="880.93" y="479.5" ></text>
</g>
<g >
<title>__calc_delta (772,396 samples, 0.02%)</title><rect x="444.5" y="389" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="447.46" y="399.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,455,759 samples, 0.03%)</title><rect x="1181.0" y="549" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1183.96" y="559.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (628,186 samples, 0.01%)</title><rect x="930.2" y="229" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="933.25" y="239.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (754,109 samples, 0.02%)</title><rect x="682.1" y="373" width="0.1" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="685.06" y="383.5" ></text>
</g>
<g >
<title>__handle_mm_fault (731,613 samples, 0.02%)</title><rect x="631.8" y="213" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="634.75" y="223.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.(*FD).Close (1,379,289,286 samples, 28.59%)</title><rect x="221.3" y="693" width="337.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="224.32" y="703.5" >github.com/cilium/ebpf/internal/sys.(*FD).Close</text>
</g>
<g >
<title>flush_tlb_mm_range (2,934,715 samples, 0.06%)</title><rect x="700.0" y="325" width="0.7" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="703.01" y="335.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (645,283 samples, 0.01%)</title><rect x="26.3" y="501" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="29.29" y="511.5" ></text>
</g>
<g >
<title>mod_objcg_state (752,771 samples, 0.02%)</title><rect x="949.8" y="405" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="952.80" y="415.5" ></text>
</g>
<g >
<title>clear_page_erms (1,495,374 samples, 0.03%)</title><rect x="624.2" y="277" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="627.24" y="287.5" ></text>
</g>
<g >
<title>tlb_batch_pages_flush (3,885,979 samples, 0.08%)</title><rect x="54.3" y="549" width="1.0" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="57.31" y="559.5" ></text>
</g>
<g >
<title>runtime.reentersyscall (765,699 samples, 0.02%)</title><rect x="816.7" y="549" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="819.71" y="559.5" ></text>
</g>
<g >
<title>__folio_alloc (3,803,315 samples, 0.08%)</title><rect x="710.1" y="341" width="1.0" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="713.12" y="351.5" ></text>
</g>
<g >
<title>internal/godebug.update (623,150 samples, 0.01%)</title><rect x="213.9" y="677" width="0.2" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="216.92" y="687.5" ></text>
</g>
<g >
<title>__folio_alloc (757,205 samples, 0.02%)</title><rect x="1084.8" y="357" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1087.84" y="367.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (752,902 samples, 0.02%)</title><rect x="681.9" y="437" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="684.88" y="447.5" ></text>
</g>
<g >
<title>__alloc_pages (770,701 samples, 0.02%)</title><rect x="630.6" y="261" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="633.65" y="271.5" ></text>
</g>
<g >
<title>folio_end_writeback (485,085 samples, 0.01%)</title><rect x="287.3" y="325" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="290.34" y="335.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (566,751 samples, 0.01%)</title><rect x="253.7" y="533" width="0.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="256.70" y="543.5" ></text>
</g>
<g >
<title>tick_sched_timer (2,170,137 samples, 0.04%)</title><rect x="434.8" y="341" width="0.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="437.82" y="351.5" ></text>
</g>
<g >
<title>__update_load_avg_se (2,178,928 samples, 0.05%)</title><rect x="389.0" y="309" width="0.6" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="392.03" y="319.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (7,751,506 samples, 0.16%)</title><rect x="435.8" y="373" width="1.9" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="438.81" y="383.5" ></text>
</g>
<g >
<title>runtime.forEachP (1,103,691 samples, 0.02%)</title><rect x="62.5" y="693" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="65.46" y="703.5" ></text>
</g>
<g >
<title>psi_task_change (544,706 samples, 0.01%)</title><rect x="926.3" y="197" width="0.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="929.26" y="207.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*FuncProto).copy (726,851 samples, 0.02%)</title><rect x="667.3" y="517" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="670.33" y="527.5" ></text>
</g>
<g >
<title>ptep_clear_flush (767,277 samples, 0.02%)</title><rect x="658.5" y="277" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="661.51" y="287.5" ></text>
</g>
<g >
<title>rmqueue_bulk (720,275 samples, 0.01%)</title><rect x="963.1" y="277" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="966.13" y="287.5" ></text>
</g>
<g >
<title>__x64_sys_futex (9,466,326 samples, 0.20%)</title><rect x="19.8" y="581" width="2.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="22.76" y="591.5" ></text>
</g>
<g >
<title>__schedule (725,573 samples, 0.02%)</title><rect x="1084.3" y="437" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1087.28" y="447.5" ></text>
</g>
<g >
<title>do_wp_page (9,665,483 samples, 0.20%)</title><rect x="597.4" y="373" width="2.4" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="600.41" y="383.5" ></text>
</g>
<g >
<title>account_process_tick (771,887 samples, 0.02%)</title><rect x="645.6" y="309" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="648.65" y="319.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (5,238,109 samples, 0.11%)</title><rect x="760.0" y="501" width="1.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="763.03" y="511.5" ></text>
</g>
<g >
<title>native_flush_tlb_one_user (737,559 samples, 0.02%)</title><rect x="700.6" y="245" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="703.55" y="255.5" ></text>
</g>
<g >
<title>runtime.profilealloc (497,603 samples, 0.01%)</title><rect x="1185.8" y="677" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="1188.81" y="687.5" ></text>
</g>
<g >
<title>do_user_addr_fault (743,480 samples, 0.02%)</title><rect x="634.1" y="405" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="637.08" y="415.5" ></text>
</g>
<g >
<title>enqueue_task_fair (545,440 samples, 0.01%)</title><rect x="437.5" y="277" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="440.53" y="287.5" ></text>
</g>
<g >
<title>update_blocked_averages (767,329 samples, 0.02%)</title><rect x="988.4" y="293" width="0.2" height="15.0" fill="rgb(240,163,38)" rx="2" ry="2" />
<text x="991.38" y="303.5" ></text>
</g>
<g >
<title>pick_next_task (111,446,102 samples, 2.31%)</title><rect x="437.7" y="437" width="27.3" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="440.74" y="447.5" >p..</text>
</g>
<g >
<title>get_page_from_freelist (1,495,374 samples, 0.03%)</title><rect x="624.2" y="293" width="0.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="627.24" y="303.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (731,136 samples, 0.02%)</title><rect x="1181.3" y="405" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1184.32" y="415.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (736,789 samples, 0.02%)</title><rect x="704.7" y="437" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="707.71" y="447.5" ></text>
</g>
<g >
<title>handle_pte_fault (766,256 samples, 0.02%)</title><rect x="734.4" y="405" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="737.44" y="415.5" ></text>
</g>
<g >
<title>__count_memcg_events (772,532 samples, 0.02%)</title><rect x="747.8" y="309" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="750.80" y="319.5" ></text>
</g>
<g >
<title>alloc_file_pseudo (664,495 samples, 0.01%)</title><rect x="53.3" y="661" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="56.35" y="671.5" ></text>
</g>
<g >
<title>runtime.acquirep (1,436,948 samples, 0.03%)</title><rect x="1188.9" y="645" width="0.4" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text x="1191.92" y="655.5" ></text>
</g>
<g >
<title>security_bpf_map (771,077 samples, 0.02%)</title><rect x="1037.4" y="501" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="1040.40" y="511.5" ></text>
</g>
<g >
<title>kmem_cache_free (52,811,248 samples, 1.09%)</title><rect x="491.5" y="437" width="12.9" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="494.48" y="447.5" ></text>
</g>
<g >
<title>handle_pte_fault (1,556,589 samples, 0.03%)</title><rect x="836.7" y="549" width="0.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="839.71" y="559.5" ></text>
</g>
<g >
<title>do_syscall_64 (7,647,551 samples, 0.16%)</title><rect x="15.1" y="645" width="1.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="18.08" y="655.5" ></text>
</g>
<g >
<title>handle_pte_fault (623,150 samples, 0.01%)</title><rect x="213.9" y="501" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="216.92" y="511.5" ></text>
</g>
<g >
<title>runtime.park_m (1,141,245 samples, 0.02%)</title><rect x="62.7" y="709" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="65.73" y="719.5" ></text>
</g>
<g >
<title>__alloc_pages (760,634 samples, 0.02%)</title><rect x="1185.9" y="533" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1188.93" y="543.5" ></text>
</g>
<g >
<title>tlb_batch_pages_flush (12,386,329 samples, 0.26%)</title><rect x="58.0" y="469" width="3.0" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="60.95" y="479.5" ></text>
</g>
<g >
<title>btf_nested_type_is_trusted (2,307,830 samples, 0.05%)</title><rect x="801.8" y="341" width="0.6" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="804.85" y="351.5" ></text>
</g>
<g >
<title>__update_load_avg_se (1,110,967 samples, 0.02%)</title><rect x="445.3" y="389" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="448.31" y="399.5" ></text>
</g>
<g >
<title>memcg_check_events (768,024 samples, 0.02%)</title><rect x="748.2" y="325" width="0.2" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="751.17" y="335.5" ></text>
</g>
<g >
<title>bpf_map_init_from_attr (777,459 samples, 0.02%)</title><rect x="1021.9" y="501" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="1024.88" y="511.5" ></text>
</g>
<g >
<title>native_write_msr (731,019 samples, 0.02%)</title><rect x="209.2" y="389" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="212.19" y="399.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (1,529,746 samples, 0.03%)</title><rect x="1058.6" y="565" width="0.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="1061.57" y="575.5" ></text>
</g>
<g >
<title>exc_page_fault (487,287 samples, 0.01%)</title><rect x="1189.6" y="485" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1192.62" y="495.5" ></text>
</g>
<g >
<title>runtime.retake (538,050 samples, 0.01%)</title><rect x="17.2" y="709" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="20.23" y="719.5" ></text>
</g>
<g >
<title>update_curr (4,206,384 samples, 0.09%)</title><rect x="386.2" y="325" width="1.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="389.22" y="335.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (2,934,715 samples, 0.06%)</title><rect x="700.0" y="309" width="0.7" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="703.01" y="319.5" ></text>
</g>
<g >
<title>___slab_alloc (38,040,509 samples, 0.79%)</title><rect x="993.2" y="421" width="9.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="996.20" y="431.5" ></text>
</g>
<g >
<title>clear_page_erms (418,342 samples, 0.01%)</title><rect x="74.2" y="405" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="77.20" y="415.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,342,159 samples, 0.05%)</title><rect x="839.7" y="597" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="842.68" y="607.5" ></text>
</g>
<g >
<title>runtime.pidleput (799,570 samples, 0.02%)</title><rect x="206.5" y="629" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="209.48" y="639.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (19,466,549 samples, 0.40%)</title><rect x="1006.0" y="421" width="4.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1008.98" y="431.5" ></text>
</g>
<g >
<title>try_to_wake_up (2,207,234 samples, 0.05%)</title><rect x="434.2" y="309" width="0.6" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="437.24" y="319.5" ></text>
</g>
<g >
<title>handle_pte_fault (698,493 samples, 0.01%)</title><rect x="632.1" y="277" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="635.11" y="287.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (776,498 samples, 0.02%)</title><rect x="708.8" y="421" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="711.80" y="431.5" ></text>
</g>
<g >
<title>reweight_entity (1,177,433 samples, 0.02%)</title><rect x="208.6" y="405" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="211.55" y="415.5" ></text>
</g>
<g >
<title>exc_page_fault (760,697 samples, 0.02%)</title><rect x="773.4" y="405" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="776.37" y="415.5" ></text>
</g>
<g >
<title>slab_pre_alloc_hook.constprop.0 (664,495 samples, 0.01%)</title><rect x="53.3" y="597" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="56.35" y="607.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).uncacheSpan (883,938 samples, 0.02%)</title><rect x="62.8" y="597" width="0.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="65.79" y="607.5" ></text>
</g>
<g >
<title>wake_up_process (628,186 samples, 0.01%)</title><rect x="930.2" y="165" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="933.25" y="175.5" ></text>
</g>
<g >
<title>__update_blocked_fair (767,329 samples, 0.02%)</title><rect x="988.4" y="277" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="991.38" y="287.5" ></text>
</g>
<g >
<title>rcu_do_batch (5,958,816 samples, 0.12%)</title><rect x="435.9" y="309" width="1.5" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="438.93" y="319.5" ></text>
</g>
<g >
<title>__alloc_pages (1,556,589 samples, 0.03%)</title><rect x="836.7" y="485" width="0.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="839.71" y="495.5" ></text>
</g>
<g >
<title>__folio_alloc (1,579,172 samples, 0.03%)</title><rect x="215.8" y="581" width="0.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="218.77" y="591.5" ></text>
</g>
<g >
<title>runtime.gcDrain (540,737,559 samples, 11.21%)</title><rect x="63.2" y="709" width="132.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="66.19" y="719.5" >runtime.gcDrain</text>
</g>
<g >
<title>wp_page_copy (636,619 samples, 0.01%)</title><rect x="214.2" y="597" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="217.22" y="607.5" ></text>
</g>
<g >
<title>vma_alloc_folio (4,939,275 samples, 0.10%)</title><rect x="1082.5" y="437" width="1.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1085.52" y="447.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (774,761 samples, 0.02%)</title><rect x="734.8" y="405" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="737.81" y="415.5" ></text>
</g>
<g >
<title>exc_page_fault (715,536 samples, 0.01%)</title><rect x="1188.9" y="533" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1191.92" y="543.5" ></text>
</g>
<g >
<title>_raw_spin_lock (705,351 samples, 0.01%)</title><rect x="845.1" y="549" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="848.07" y="559.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (1,473,998 samples, 0.03%)</title><rect x="23.1" y="485" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="26.08" y="495.5" ></text>
</g>
<g >
<title>try_to_wake_up (705,104 samples, 0.01%)</title><rect x="293.8" y="453" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="296.84" y="463.5" ></text>
</g>
<g >
<title>native_write_msr (477,665 samples, 0.01%)</title><rect x="23.1" y="437" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="26.14" y="447.5" ></text>
</g>
<g >
<title>irqentry_exit (766,303 samples, 0.02%)</title><rect x="799.6" y="453" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="802.58" y="463.5" ></text>
</g>
<g >
<title>do_wp_page (740,529 samples, 0.02%)</title><rect x="1083.7" y="453" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="1086.73" y="463.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions.func4 (1,415,382 samples, 0.03%)</title><rect x="1185.0" y="661" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1188.02" y="671.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (767,277 samples, 0.02%)</title><rect x="658.5" y="405" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="661.51" y="415.5" ></text>
</g>
<g >
<title>__kmalloc_node (1,857,552 samples, 0.04%)</title><rect x="987.7" y="405" width="0.5" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="990.74" y="415.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (760,634 samples, 0.02%)</title><rect x="1185.9" y="677" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1188.93" y="687.5" ></text>
</g>
<g >
<title>native_flush_tlb_one_user (1,553,237 samples, 0.03%)</title><rect x="798.4" y="325" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="801.45" y="335.5" ></text>
</g>
<g >
<title>exc_page_fault (4,624,338 samples, 0.10%)</title><rect x="654.0" y="453" width="1.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="656.97" y="463.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (606,417 samples, 0.01%)</title><rect x="530.1" y="405" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="533.08" y="415.5" ></text>
</g>
<g >
<title>setup_object (751,672 samples, 0.02%)</title><rect x="963.8" y="341" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="966.83" y="351.5" ></text>
</g>
<g >
<title>runtime.newInlineUnwinder (764,227 samples, 0.02%)</title><rect x="574.1" y="325" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="577.05" y="335.5" ></text>
</g>
<g >
<title>clear_page_erms (777,603 samples, 0.02%)</title><rect x="644.9" y="213" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="647.90" y="223.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (459,526 samples, 0.01%)</title><rect x="1010.4" y="373" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1013.37" y="383.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (7,530,385 samples, 0.16%)</title><rect x="649.0" y="421" width="1.8" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="651.96" y="431.5" ></text>
</g>
<g >
<title>runtime.mallocgc (3,857,585 samples, 0.08%)</title><rect x="706.4" y="469" width="0.9" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="709.36" y="479.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.unmarshalBtfParams (5,307,032 samples, 0.11%)</title><rect x="635.9" y="469" width="1.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="638.85" y="479.5" ></text>
</g>
<g >
<title>ptep_clear_flush (3,854,692 samples, 0.08%)</title><rect x="749.5" y="341" width="0.9" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="752.50" y="351.5" ></text>
</g>
<g >
<title>runtime.notewakeup (28,266,019 samples, 0.59%)</title><rect x="18.9" y="645" width="7.0" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="21.94" y="655.5" ></text>
</g>
<g >
<title>__handle_mm_fault (624,343 samples, 0.01%)</title><rect x="213.4" y="661" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="216.36" y="671.5" ></text>
</g>
<g >
<title>sysfs_kf_bin_read (777,181 samples, 0.02%)</title><rect x="657.4" y="261" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="660.37" y="271.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (1,493,170 samples, 0.03%)</title><rect x="205.2" y="533" width="0.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="208.17" y="543.5" ></text>
</g>
<g >
<title>handle_mm_fault (8,122,816 samples, 0.17%)</title><rect x="1082.1" y="501" width="2.0" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1085.11" y="511.5" ></text>
</g>
<g >
<title>do_user_addr_fault (19,620,259 samples, 0.41%)</title><rect x="606.4" y="437" width="4.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="609.38" y="447.5" ></text>
</g>
<g >
<title>generic_smp_call_function_single_interrupt (2,139,153 samples, 0.04%)</title><rect x="203.4" y="645" width="0.6" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="206.44" y="655.5" ></text>
</g>
<g >
<title>apparmor_file_alloc_security (7,158,043 samples, 0.15%)</title><rect x="924.6" y="389" width="1.8" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="927.64" y="399.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (992,101 samples, 0.02%)</title><rect x="416.1" y="373" width="0.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="419.13" y="383.5" ></text>
</g>
<g >
<title>rmqueue (688,211 samples, 0.01%)</title><rect x="188.2" y="453" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="191.19" y="463.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (8,696,138 samples, 0.18%)</title><rect x="406.8" y="325" width="2.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="409.78" y="335.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,519,968 samples, 0.03%)</title><rect x="734.4" y="437" width="0.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="737.44" y="447.5" ></text>
</g>
<g >
<title>put_prev_entity (69,408,686 samples, 1.44%)</title><rect x="441.4" y="405" width="17.0" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="444.44" y="415.5" ></text>
</g>
<g >
<title>perf_event_task_tick (772,957 samples, 0.02%)</title><rect x="639.4" y="309" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="642.36" y="319.5" ></text>
</g>
<g >
<title>sysvec_call_function_single (4,339,894 samples, 0.09%)</title><rect x="203.4" y="677" width="1.1" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="206.44" y="687.5" ></text>
</g>
<g >
<title>wp_page_copy (10,032,680 samples, 0.21%)</title><rect x="786.6" y="373" width="2.4" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="789.56" y="383.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (758,321 samples, 0.02%)</title><rect x="986.4" y="469" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="989.44" y="479.5" ></text>
</g>
<g >
<title>runtime.mProf_Malloc (762,772 samples, 0.02%)</title><rect x="773.6" y="437" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="776.56" y="447.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (606,417 samples, 0.01%)</title><rect x="530.1" y="421" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="533.08" y="431.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (425,030 samples, 0.01%)</title><rect x="1082.1" y="437" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1085.11" y="447.5" ></text>
</g>
<g >
<title>alloc_pages (12,844,776 samples, 0.27%)</title><rect x="960.2" y="357" width="3.1" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="963.16" y="367.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (1,010,079 samples, 0.02%)</title><rect x="312.8" y="565" width="0.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="315.81" y="575.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (18,776,919 samples, 0.39%)</title><rect x="428.7" y="373" width="4.6" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="431.67" y="383.5" ></text>
</g>
<g >
<title>handle_mm_fault (28,493,272 samples, 0.59%)</title><rect x="747.0" y="421" width="7.0" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="750.05" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.newFD (664,114 samples, 0.01%)</title><rect x="1183.3" y="645" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1186.33" y="655.5" ></text>
</g>
<g >
<title>runtime.scanobject (754,109 samples, 0.02%)</title><rect x="682.1" y="357" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="685.06" y="367.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (33,109,400 samples, 0.69%)</title><rect x="746.3" y="469" width="8.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="749.29" y="479.5" ></text>
</g>
<g >
<title>security_capable (12,486,715 samples, 0.26%)</title><rect x="1025.0" y="485" width="3.1" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="1028.03" y="495.5" ></text>
</g>
<g >
<title>clear_page_erms (2,313,544 samples, 0.05%)</title><rect x="699.4" y="293" width="0.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="702.45" y="303.5" ></text>
</g>
<g >
<title>native_apic_msr_eoi_write (632,599 samples, 0.01%)</title><rect x="584.6" y="309" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="587.63" y="319.5" ></text>
</g>
<g >
<title>__rcu_read_lock (565,543 samples, 0.01%)</title><rect x="467.7" y="389" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="470.72" y="399.5" ></text>
</g>
<g >
<title>scheduler_tick (916,720 samples, 0.02%)</title><rect x="435.1" y="293" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="438.12" y="303.5" ></text>
</g>
<g >
<title>folio_add_lru (731,637 samples, 0.02%)</title><rect x="695.0" y="357" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="698.03" y="367.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (769,222 samples, 0.02%)</title><rect x="770.9" y="485" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="773.91" y="495.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (770,807 samples, 0.02%)</title><rect x="611.2" y="421" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="614.18" y="431.5" ></text>
</g>
<g >
<title>__handle_mm_fault (2,952,976 samples, 0.06%)</title><rect x="632.8" y="357" width="0.7" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="635.81" y="367.5" ></text>
</g>
<g >
<title>ttwu_do_activate (642,381 samples, 0.01%)</title><rect x="319.1" y="405" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="322.07" y="415.5" ></text>
</g>
<g >
<title>memcg_alloc_slab_cgroups (2,882,462 samples, 0.06%)</title><rect x="1001.1" y="373" width="0.7" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1004.07" y="383.5" ></text>
</g>
<g >
<title>__handle_mm_fault (766,660 samples, 0.02%)</title><rect x="782.2" y="437" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="785.24" y="447.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,202,815 samples, 0.13%)</title><rect x="656.4" y="341" width="1.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="659.42" y="351.5" ></text>
</g>
<g >
<title>perf_ctx_disable (477,665 samples, 0.01%)</title><rect x="23.1" y="469" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="26.14" y="479.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (528,819 samples, 0.01%)</title><rect x="1189.7" y="581" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="1192.74" y="591.5" ></text>
</g>
<g >
<title>scheduler_tick (771,817 samples, 0.02%)</title><rect x="1040.7" y="389" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1043.69" y="399.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Int).TypeName (763,042 samples, 0.02%)</title><rect x="665.3" y="533" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="668.28" y="543.5" ></text>
</g>
<g >
<title>syscall.RawSyscall6 (2,052,126 samples, 0.04%)</title><rect x="557.4" y="629" width="0.5" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="560.44" y="639.5" ></text>
</g>
<g >
<title>virtblk_request_done (485,085 samples, 0.01%)</title><rect x="287.3" y="421" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="290.34" y="431.5" ></text>
</g>
<g >
<title>do_syscall_64 (540,979 samples, 0.01%)</title><rect x="213.7" y="501" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="216.66" y="511.5" ></text>
</g>
<g >
<title>do_user_addr_fault (4,504,935 samples, 0.09%)</title><rect x="842.5" y="629" width="1.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="845.47" y="639.5" ></text>
</g>
<g >
<title>runtime.typehash (3,845,989 samples, 0.08%)</title><rect x="740.7" y="485" width="1.0" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="743.73" y="495.5" ></text>
</g>
<g >
<title>os.(*File).Close (771,505 samples, 0.02%)</title><rect x="841.6" y="661" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="844.55" y="671.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (1,413,138 samples, 0.03%)</title><rect x="409.3" y="405" width="0.3" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="412.27" y="415.5" ></text>
</g>
<g >
<title>runtime.gcStart.func2 (776,273 samples, 0.02%)</title><rect x="696.7" y="421" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="699.65" y="431.5" ></text>
</g>
<g >
<title>clear_page_erms (1,579,172 samples, 0.03%)</title><rect x="215.8" y="533" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="218.77" y="543.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (1,476,108 samples, 0.03%)</title><rect x="692.3" y="453" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="695.27" y="463.5" ></text>
</g>
<g >
<title>x86_pmu_disable (477,665 samples, 0.01%)</title><rect x="23.1" y="453" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="26.14" y="463.5" ></text>
</g>
<g >
<title>__slab_free (13,403,111 samples, 0.28%)</title><rect x="496.1" y="421" width="3.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="499.10" y="431.5" ></text>
</g>
<g >
<title>kthread_is_per_cpu (1,090,134 samples, 0.02%)</title><rect x="370.6" y="389" width="0.3" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="373.63" y="399.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (1,737,361 samples, 0.04%)</title><rect x="367.8" y="341" width="0.4" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="370.81" y="351.5" ></text>
</g>
<g >
<title>main.main (1,682,292 samples, 0.03%)</title><rect x="213.5" y="741" width="0.4" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="216.51" y="751.5" ></text>
</g>
<g >
<title>syscall.Syscall.abi0 (854,118,632 samples, 17.71%)</title><rect x="870.2" y="629" width="209.0" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="873.23" y="639.5" >syscall.Syscall.abi0</text>
</g>
<g >
<title>futex_wait (1,401,444 samples, 0.03%)</title><rect x="196.4" y="533" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="199.40" y="543.5" ></text>
</g>
<g >
<title>check_heap_object (775,533 samples, 0.02%)</title><rect x="818.2" y="421" width="0.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="821.21" y="431.5" ></text>
</g>
<g >
<title>__x64_sys_epoll_ctl (511,439 samples, 0.01%)</title><rect x="213.2" y="613" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="216.23" y="623.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (1,384,534 samples, 0.03%)</title><rect x="352.1" y="437" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="355.06" y="447.5" ></text>
</g>
<g >
<title>try_to_wake_up (606,417 samples, 0.01%)</title><rect x="530.1" y="373" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="533.08" y="383.5" ></text>
</g>
<g >
<title>do_wp_page (10,806,675 samples, 0.22%)</title><rect x="786.4" y="389" width="2.6" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="789.37" y="399.5" ></text>
</g>
<g >
<title>runtime.(*pageAlloc).allocToCache (5,280,578 samples, 0.11%)</title><rect x="860.8" y="485" width="1.3" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="863.79" y="495.5" ></text>
</g>
<g >
<title>sync_regs (754,193 samples, 0.02%)</title><rect x="754.4" y="469" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="757.39" y="479.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (459,526 samples, 0.01%)</title><rect x="1010.4" y="389" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1013.37" y="399.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (771,879 samples, 0.02%)</title><rect x="652.5" y="437" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="655.45" y="447.5" ></text>
</g>
<g >
<title>do_anonymous_page (686,022 samples, 0.01%)</title><rect x="597.2" y="373" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="600.24" y="383.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (637,570 samples, 0.01%)</title><rect x="486.5" y="373" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="489.50" y="383.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.write (1,334,937 samples, 0.03%)</title><rect x="573.7" y="405" width="0.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="576.73" y="415.5" ></text>
</g>
<g >
<title>runtime.gcMarkDone.func1 (1,103,691 samples, 0.02%)</title><rect x="62.5" y="709" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="65.46" y="719.5" ></text>
</g>
<g >
<title>__virt_addr_valid (775,533 samples, 0.02%)</title><rect x="818.2" y="405" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="821.21" y="415.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (718,710 samples, 0.01%)</title><rect x="630.5" y="405" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="633.47" y="415.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).uncacheSpan (1,540,440 samples, 0.03%)</title><rect x="61.8" y="613" width="0.4" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="64.84" y="623.5" ></text>
</g>
<g >
<title>ext4_finish_bio (562,113 samples, 0.01%)</title><rect x="412.2" y="245" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="415.16" y="255.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint32 (4,439,318 samples, 0.09%)</title><rect x="611.7" y="469" width="1.1" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="614.75" y="479.5" ></text>
</g>
<g >
<title>dequeue_entity (5,928,711 samples, 0.12%)</title><rect x="33.5" y="533" width="1.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="36.47" y="543.5" ></text>
</g>
<g >
<title>__handle_mm_fault (2,887,565 samples, 0.06%)</title><rect x="215.6" y="645" width="0.7" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="218.62" y="655.5" ></text>
</g>
<g >
<title>runtime.makeBucketArray (2,285,397 samples, 0.05%)</title><rect x="773.2" y="501" width="0.5" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="776.18" y="511.5" ></text>
</g>
<g >
<title>__kmalloc (770,144 samples, 0.02%)</title><rect x="641.0" y="245" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="644.02" y="255.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (56,245,602 samples, 1.17%)</title><rect x="424.0" y="437" width="13.7" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="426.98" y="447.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (736,789 samples, 0.02%)</title><rect x="704.7" y="405" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="707.71" y="415.5" ></text>
</g>
<g >
<title>task_work_add (1,492,192 samples, 0.03%)</title><rect x="288.2" y="517" width="0.4" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="291.20" y="527.5" ></text>
</g>
<g >
<title>security_d_instantiate (504,598 samples, 0.01%)</title><rect x="980.0" y="453" width="0.1" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="982.98" y="463.5" ></text>
</g>
<g >
<title>clockevents_program_event (752,964 samples, 0.02%)</title><rect x="1174.6" y="453" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="1177.63" y="463.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (443,731 samples, 0.01%)</title><rect x="209.4" y="389" width="0.1" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="212.40" y="399.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (624,343 samples, 0.01%)</title><rect x="213.4" y="725" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="216.36" y="735.5" ></text>
</g>
<g >
<title>sync_regs (1,510,776 samples, 0.03%)</title><rect x="867.5" y="645" width="0.4" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="870.51" y="655.5" ></text>
</g>
<g >
<title>schedule (2,280,726 samples, 0.05%)</title><rect x="13.8" y="501" width="0.6" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="16.83" y="511.5" ></text>
</g>
<g >
<title>runtime.doaddtimer (511,439 samples, 0.01%)</title><rect x="213.2" y="693" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="216.23" y="703.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (770,788 samples, 0.02%)</title><rect x="829.7" y="405" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="832.65" y="415.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (974,414 samples, 0.02%)</title><rect x="16.7" y="629" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="19.71" y="639.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (654,949 samples, 0.01%)</title><rect x="1174.8" y="485" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1177.81" y="495.5" ></text>
</g>
<g >
<title>runtime.(*gcWork).tryGet (754,119 samples, 0.02%)</title><rect x="63.0" y="709" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="66.01" y="719.5" ></text>
</g>
<g >
<title>ttwu_do_activate (459,526 samples, 0.01%)</title><rect x="1010.4" y="277" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="1013.37" y="287.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (1,547,747 samples, 0.03%)</title><rect x="753.5" y="261" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="756.45" y="271.5" ></text>
</g>
<g >
<title>runtime.procyield.abi0 (3,856,611 samples, 0.08%)</title><rect x="71.8" y="661" width="1.0" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="74.81" y="671.5" ></text>
</g>
<g >
<title>do_anonymous_page (2,313,544 samples, 0.05%)</title><rect x="699.4" y="373" width="0.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="702.45" y="383.5" ></text>
</g>
<g >
<title>page_remove_rmap (2,863,867 samples, 0.06%)</title><rect x="57.3" y="485" width="0.7" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="60.25" y="495.5" ></text>
</g>
<g >
<title>irqentry_exit (1,468,357 samples, 0.03%)</title><rect x="204.1" y="661" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="207.14" y="671.5" ></text>
</g>
<g >
<title>pick_next_task (566,751 samples, 0.01%)</title><rect x="253.7" y="485" width="0.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="256.70" y="495.5" ></text>
</g>
<g >
<title>do_wp_page (715,536 samples, 0.01%)</title><rect x="1188.9" y="453" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="1191.92" y="463.5" ></text>
</g>
<g >
<title>exc_page_fault (3,098,594 samples, 0.06%)</title><rect x="772.0" y="469" width="0.8" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="775.05" y="479.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (556,285 samples, 0.01%)</title><rect x="62.1" y="437" width="0.1" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="65.08" y="447.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes (777,676 samples, 0.02%)</title><rect x="559.2" y="565" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="562.25" y="575.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (13,020,265 samples, 0.27%)</title><rect x="844.3" y="661" width="3.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="847.32" y="671.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.unmarshalBtfMembers (5,014,187 samples, 0.10%)</title><rect x="634.6" y="469" width="1.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="637.63" y="479.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (738,100 samples, 0.02%)</title><rect x="1085.0" y="373" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1088.02" y="383.5" ></text>
</g>
<g >
<title>pick_next_entity (1,927,517 samples, 0.04%)</title><rect x="441.0" y="405" width="0.4" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="443.97" y="415.5" ></text>
</g>
<g >
<title>clear_page_erms (11,370,874 samples, 0.24%)</title><rect x="960.2" y="309" width="2.7" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="963.16" y="319.5" ></text>
</g>
<g >
<title>cache_from_obj (2,058,151 samples, 0.04%)</title><rect x="526.7" y="453" width="0.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="529.66" y="463.5" ></text>
</g>
<g >
<title>runtime.makeslicecopy (3,067,139 samples, 0.06%)</title><rect x="708.2" y="485" width="0.8" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="711.24" y="495.5" ></text>
</g>
<g >
<title>vma_alloc_folio (761,900 samples, 0.02%)</title><rect x="1181.0" y="469" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1183.96" y="479.5" ></text>
</g>
<g >
<title>do_user_addr_fault (11,472,968 samples, 0.24%)</title><rect x="844.7" y="629" width="2.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="847.70" y="639.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (857,932 samples, 0.02%)</title><rect x="293.8" y="565" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="296.84" y="575.5" ></text>
</g>
<g >
<title>io.(*SectionReader).Read (6,974,464 samples, 0.14%)</title><rect x="656.2" y="453" width="1.7" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="659.23" y="463.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (738,100 samples, 0.02%)</title><rect x="1085.0" y="437" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1088.02" y="447.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*stringTable).Lookup (16,702,266 samples, 0.35%)</title><rect x="625.5" y="453" width="4.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="628.50" y="463.5" ></text>
</g>
<g >
<title>runtime.(*mspan).ensureSwept (1,733,266 samples, 0.04%)</title><rect x="232.9" y="581" width="0.4" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="235.85" y="591.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (1,293,584 samples, 0.03%)</title><rect x="57.6" y="453" width="0.3" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="60.59" y="463.5" ></text>
</g>
<g >
<title>cpuacct_charge (615,871 samples, 0.01%)</title><rect x="34.4" y="501" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="37.41" y="511.5" ></text>
</g>
<g >
<title>irqentry_exit (745,380 samples, 0.02%)</title><rect x="188.4" y="597" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="191.36" y="607.5" ></text>
</g>
<g >
<title>runtime.mcall (5,167,514 samples, 0.11%)</title><rect x="13.3" y="709" width="1.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="16.31" y="719.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (506,364 samples, 0.01%)</title><rect x="1188.0" y="549" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="1191.03" y="559.5" ></text>
</g>
<g >
<title>__alloc_pages (752,799 samples, 0.02%)</title><rect x="960.0" y="357" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="962.98" y="367.5" ></text>
</g>
<g >
<title>runtime.mallocgc (1,517,995 samples, 0.03%)</title><rect x="759.1" y="469" width="0.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="762.11" y="479.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (774,761 samples, 0.02%)</title><rect x="734.8" y="261" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="737.81" y="271.5" ></text>
</g>
<g >
<title>bpf_iter_run_prog (22,780,530 samples, 0.47%)</title><rect x="830.8" y="437" width="5.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="833.78" y="447.5" ></text>
</g>
<g >
<title>get_page_from_freelist (2,305,008 samples, 0.05%)</title><rect x="654.3" y="309" width="0.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="657.34" y="319.5" ></text>
</g>
<g >
<title>runtime.stopm (883,938 samples, 0.02%)</title><rect x="62.8" y="661" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="65.79" y="671.5" ></text>
</g>
<g >
<title>handle_mm_fault (9,282,416 samples, 0.19%)</title><rect x="796.9" y="453" width="2.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="799.93" y="463.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (715,991 samples, 0.01%)</title><rect x="621.8" y="437" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="624.76" y="447.5" ></text>
</g>
<g >
<title>kmem_cache_free (566,884 samples, 0.01%)</title><rect x="511.9" y="453" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="514.86" y="463.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap.func1 (778,567 samples, 0.02%)</title><rect x="854.0" y="661" width="0.2" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="856.97" y="671.5" ></text>
</g>
<g >
<title>ptep_clear_flush (715,536 samples, 0.01%)</title><rect x="1188.9" y="421" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="1191.92" y="431.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_safe_stack (5,562,440 samples, 0.12%)</title><rect x="535.3" y="613" width="1.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="538.31" y="623.5" ></text>
</g>
<g >
<title>blk_complete_reqs (562,113 samples, 0.01%)</title><rect x="412.2" y="341" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="415.16" y="351.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (2,276,318 samples, 0.05%)</title><rect x="570.3" y="437" width="0.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="573.32" y="447.5" ></text>
</g>
<g >
<title>_raw_spin_trylock (731,136 samples, 0.02%)</title><rect x="1181.3" y="229" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1184.32" y="239.5" ></text>
</g>
<g >
<title>__alloc_pages (772,354 samples, 0.02%)</title><rect x="652.6" y="293" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="655.64" y="303.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (30,308,121 samples, 0.63%)</title><rect x="254.0" y="613" width="7.4" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="257.03" y="623.5" ></text>
</g>
<g >
<title>update_load_avg (1,397,015 samples, 0.03%)</title><rect x="390.6" y="341" width="0.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="393.61" y="351.5" ></text>
</g>
<g >
<title>update_rq_clock (706,994 samples, 0.01%)</title><rect x="196.6" y="469" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="199.57" y="479.5" ></text>
</g>
<g >
<title>wp_page_copy (528,819 samples, 0.01%)</title><rect x="1189.7" y="597" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1192.74" y="607.5" ></text>
</g>
<g >
<title>do_user_addr_fault (776,498 samples, 0.02%)</title><rect x="708.8" y="389" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="711.80" y="399.5" ></text>
</g>
<g >
<title>runtime.nilinterhash (6,079,226 samples, 0.13%)</title><rect x="814.3" y="613" width="1.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="817.31" y="623.5" ></text>
</g>
<g >
<title>_atomic_dec_and_lock (18,998,522 samples, 0.39%)</title><rect x="507.1" y="421" width="4.7" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="510.13" y="431.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (777,016 samples, 0.02%)</title><rect x="37.1" y="533" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="40.08" y="543.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (718,710 samples, 0.01%)</title><rect x="630.5" y="389" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="633.47" y="399.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (438,758 samples, 0.01%)</title><rect x="228.5" y="501" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="231.45" y="511.5" ></text>
</g>
<g >
<title>runtime.godebugNotify (623,150 samples, 0.01%)</title><rect x="213.9" y="693" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="216.92" y="703.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (757,640 samples, 0.02%)</title><rect x="988.7" y="469" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="991.67" y="479.5" ></text>
</g>
<g >
<title>runtime.removespecial (25,666,386 samples, 0.53%)</title><rect x="228.6" y="597" width="6.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="231.56" y="607.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (3,724,140 samples, 0.08%)</title><rect x="585.7" y="325" width="0.9" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="588.71" y="335.5" ></text>
</g>
<g >
<title>__handle_mm_fault (776,651 samples, 0.02%)</title><rect x="1181.7" y="373" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1184.69" y="383.5" ></text>
</g>
<g >
<title>runtime.(*fixalloc).alloc (3,026,163 samples, 0.06%)</title><rect x="1084.5" y="549" width="0.7" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1087.46" y="559.5" ></text>
</g>
<g >
<title>__sysvec_call_function_single (736,676 samples, 0.02%)</title><rect x="205.5" y="437" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="208.54" y="447.5" ></text>
</g>
<g >
<title>init_file (54,743,420 samples, 1.13%)</title><rect x="918.9" y="421" width="13.4" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="921.86" y="431.5" ></text>
</g>
<g >
<title>locks_remove_posix (5,311,316 samples, 0.11%)</title><rect x="288.6" y="533" width="1.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="291.56" y="543.5" ></text>
</g>
<g >
<title>encoding/binary.intDataSize (2,250,079 samples, 0.05%)</title><rect x="840.2" y="677" width="0.6" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="843.25" y="687.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (766,773 samples, 0.02%)</title><rect x="12.7" y="709" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="15.67" y="719.5" ></text>
</g>
<g >
<title>runtime.deferprocStack (1,478,014 samples, 0.03%)</title><rect x="1184.3" y="677" width="0.4" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="1187.35" y="687.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (1,436,948 samples, 0.03%)</title><rect x="1188.9" y="581" width="0.4" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="1191.92" y="591.5" ></text>
</g>
<g >
<title>prepare_task_switch (45,919,121 samples, 0.95%)</title><rect x="465.1" y="437" width="11.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="468.12" y="447.5" ></text>
</g>
<g >
<title>__calc_delta (434,853 samples, 0.01%)</title><rect x="21.0" y="405" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="24.00" y="415.5" ></text>
</g>
<g >
<title>select_task_rq_fair (439,598 samples, 0.01%)</title><rect x="416.3" y="325" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="419.27" y="335.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (771,777 samples, 0.02%)</title><rect x="772.6" y="437" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="775.61" y="447.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (2,316,662 samples, 0.05%)</title><rect x="711.6" y="453" width="0.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="714.62" y="463.5" ></text>
</g>
<g >
<title>[unknown] (7,340,702 samples, 0.15%)</title><rect x="10.0" y="741" width="1.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="751.5" ></text>
</g>
<g >
<title>anon_inode_getfd (2,205,819 samples, 0.05%)</title><rect x="906.6" y="517" width="0.5" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="909.58" y="527.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*stringTable).lookup (771,910 samples, 0.02%)</title><rect x="620.6" y="469" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="623.64" y="479.5" ></text>
</g>
<g >
<title>detach_tasks (499,641 samples, 0.01%)</title><rect x="42.4" y="501" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="45.36" y="511.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (1,659,604 samples, 0.03%)</title><rect x="50.7" y="629" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="53.69" y="639.5" ></text>
</g>
<g >
<title>exc_page_fault (418,342 samples, 0.01%)</title><rect x="74.2" y="565" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="77.20" y="575.5" ></text>
</g>
<g >
<title>handle_mm_fault (776,092 samples, 0.02%)</title><rect x="681.1" y="437" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="684.14" y="447.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (606,417 samples, 0.01%)</title><rect x="530.1" y="485" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="533.08" y="495.5" ></text>
</g>
<g >
<title>__rcu_read_lock (779,125 samples, 0.02%)</title><rect x="942.7" y="405" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="945.73" y="415.5" ></text>
</g>
<g >
<title>rmqueue_bulk (773,268 samples, 0.02%)</title><rect x="609.0" y="261" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="612.01" y="271.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (459,526 samples, 0.01%)</title><rect x="1010.4" y="325" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1013.37" y="335.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (1,493,170 samples, 0.03%)</title><rect x="205.2" y="485" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="208.17" y="495.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,556,589 samples, 0.03%)</title><rect x="836.7" y="629" width="0.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="839.71" y="639.5" ></text>
</g>
<g >
<title>runtime.tracebackPCs (722,283 samples, 0.01%)</title><rect x="691.6" y="373" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="694.56" y="383.5" ></text>
</g>
<g >
<title>schedule (725,573 samples, 0.02%)</title><rect x="1084.3" y="453" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1087.28" y="463.5" ></text>
</g>
<g >
<title>_compound_head (5,952,343 samples, 0.12%)</title><rect x="55.3" y="501" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="58.26" y="511.5" ></text>
</g>
<g >
<title>vma_alloc_folio (772,354 samples, 0.02%)</title><rect x="652.6" y="325" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="655.64" y="335.5" ></text>
</g>
<g >
<title>__d_alloc (90,121,149 samples, 1.87%)</title><rect x="954.9" y="437" width="22.0" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="957.88" y="447.5" >_..</text>
</g>
<g >
<title>__irqentry_text_end (1,530,403 samples, 0.03%)</title><rect x="733.7" y="485" width="0.4" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="736.69" y="495.5" ></text>
</g>
<g >
<title>prepare_task_switch (2,009,339 samples, 0.04%)</title><rect x="24.2" y="501" width="0.5" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="27.19" y="511.5" ></text>
</g>
<g >
<title>clear_page_erms (2,022,434 samples, 0.04%)</title><rect x="587.3" y="261" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="590.30" y="271.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.testCreateMapGaugeEbpf (995,541,076 samples, 20.64%)</title><rect x="559.2" y="709" width="243.6" height="15.0" fill="rgb(207,12,2)" rx="2" ry="2" />
<text x="562.25" y="719.5" >github.com/EMnify/giraffe/pkg/eb..</text>
</g>
<g >
<title>exit_to_user_mode_prepare (1,411,649 samples, 0.03%)</title><rect x="877.7" y="517" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="880.75" y="527.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (701,326 samples, 0.01%)</title><rect x="253.5" y="565" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="256.53" y="575.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (765,304 samples, 0.02%)</title><rect x="748.0" y="325" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="750.99" y="335.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,427,175 samples, 0.03%)</title><rect x="622.1" y="437" width="0.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="625.12" y="447.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_lru (80,514,416 samples, 1.67%)</title><rect x="956.9" y="421" width="19.7" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="959.86" y="431.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (778,859 samples, 0.02%)</title><rect x="691.4" y="421" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="694.37" y="431.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (754,109 samples, 0.02%)</title><rect x="682.1" y="421" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="685.06" y="431.5" ></text>
</g>
<g >
<title>update_curr (556,677 samples, 0.01%)</title><rect x="208.7" y="389" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="211.67" y="399.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (744,988 samples, 0.02%)</title><rect x="461.9" y="373" width="0.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="464.92" y="383.5" ></text>
</g>
<g >
<title>handle_pte_fault (2,342,159 samples, 0.05%)</title><rect x="839.7" y="549" width="0.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="842.68" y="559.5" ></text>
</g>
<g >
<title>alloc_pages (29,160,895 samples, 0.60%)</title><rect x="993.9" y="373" width="7.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="996.94" y="383.5" ></text>
</g>
<g >
<title>update_process_times (1,520,043 samples, 0.03%)</title><rect x="435.0" y="309" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="437.98" y="319.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint32 (777,676 samples, 0.02%)</title><rect x="559.2" y="549" width="0.2" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="562.25" y="559.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast (623,940 samples, 0.01%)</title><rect x="251.8" y="629" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="254.75" y="639.5" ></text>
</g>
<g >
<title>_raw_spin_lock (2,636,820 samples, 0.05%)</title><rect x="331.7" y="485" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="334.71" y="495.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (711,994 samples, 0.01%)</title><rect x="1184.8" y="597" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1187.84" y="607.5" ></text>
</g>
<g >
<title>flush_tlb_func (737,890 samples, 0.02%)</title><rect x="203.8" y="613" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="206.78" y="623.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (695,442 samples, 0.01%)</title><rect x="624.1" y="341" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="627.07" y="351.5" ></text>
</g>
<g >
<title>__send_signal_locked (645,283 samples, 0.01%)</title><rect x="26.3" y="533" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="29.29" y="543.5" ></text>
</g>
<g >
<title>__alloc_pages (3,021,020 samples, 0.06%)</title><rect x="861.3" y="277" width="0.8" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="864.34" y="287.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,509,297 samples, 0.03%)</title><rect x="865.0" y="581" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="867.96" y="591.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions (1,378,826,538 samples, 28.59%)</title><rect x="848.1" y="693" width="337.3" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="851.06" y="703.5" >github.com/cilium/ebpf.newMapWithOptions</text>
</g>
<g >
<title>do_check_common (3,844,439 samples, 0.08%)</title><rect x="801.8" y="405" width="1.0" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="804.85" y="415.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (1,348,115 samples, 0.03%)</title><rect x="913.5" y="485" width="0.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="916.51" y="495.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Pread (762,852 samples, 0.02%)</title><rect x="12.9" y="725" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="15.94" y="735.5" ></text>
</g>
<g >
<title>do_read_fault (589,552 samples, 0.01%)</title><rect x="214.1" y="565" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="217.08" y="575.5" ></text>
</g>
<g >
<title>clear_page_erms (15,497,245 samples, 0.32%)</title><rect x="935.7" y="309" width="3.7" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="938.66" y="319.5" ></text>
</g>
<g >
<title>vm_area_free_rcu_cb (774,959 samples, 0.02%)</title><rect x="638.4" y="309" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="641.44" y="319.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (776,627 samples, 0.02%)</title><rect x="620.5" y="389" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="623.45" y="399.5" ></text>
</g>
<g >
<title>__alloc_pages (755,265 samples, 0.02%)</title><rect x="622.3" y="293" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="625.28" y="303.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).push (981,773 samples, 0.02%)</title><rect x="1188.0" y="677" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1191.03" y="687.5" ></text>
</g>
<g >
<title>runtime.mapaccess2 (466,115 samples, 0.01%)</title><rect x="237.0" y="661" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="240.04" y="671.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (2,318,291 samples, 0.05%)</title><rect x="448.9" y="373" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="451.88" y="383.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,994,959 samples, 0.04%)</title><rect x="26.2" y="629" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="29.21" y="639.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*Deque[*github.com/cilium/ebpf/btf.Type]).Push-fm (778,811 samples, 0.02%)</title><rect x="717.5" y="501" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="720.48" y="511.5" ></text>
</g>
<g >
<title>mntput (3,120,032 samples, 0.06%)</title><rect x="528.2" y="501" width="0.8" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="531.21" y="511.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (1,420,353 samples, 0.03%)</title><rect x="588.5" y="405" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="591.48" y="415.5" ></text>
</g>
<g >
<title>runtime.mProf_Malloc (773,766 samples, 0.02%)</title><rect x="771.9" y="469" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="774.86" y="479.5" ></text>
</g>
<g >
<title>timekeeping_advance (779,331 samples, 0.02%)</title><rect x="687.6" y="229" width="0.2" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="690.56" y="239.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (43,790,739 samples, 0.91%)</title><rect x="226.3" y="645" width="10.7" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="229.33" y="655.5" ></text>
</g>
<g >
<title>__alloc_pages (731,136 samples, 0.02%)</title><rect x="1181.3" y="261" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1184.32" y="271.5" ></text>
</g>
<g >
<title>apparmor_capable (767,931 samples, 0.02%)</title><rect x="1017.9" y="469" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1020.86" y="479.5" ></text>
</g>
<g >
<title>do_futex (18,733,553 samples, 0.39%)</title><rect x="207.7" y="533" width="4.6" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="210.69" y="543.5" ></text>
</g>
<g >
<title>runtime.findObject (9,597,241 samples, 0.20%)</title><rect x="678.6" y="421" width="2.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="681.60" y="431.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast (4,875,817 samples, 0.10%)</title><rect x="874.3" y="581" width="1.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="877.29" y="591.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (629,364 samples, 0.01%)</title><rect x="926.4" y="357" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="929.39" y="367.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (629,364 samples, 0.01%)</title><rect x="926.4" y="373" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="929.39" y="383.5" ></text>
</g>
<g >
<title>runtime.bulkBarrierPreWriteSrcOnly (718,710 samples, 0.01%)</title><rect x="630.5" y="421" width="0.1" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="633.47" y="431.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocker).tryAcquire (743,707 samples, 0.02%)</title><rect x="205.7" y="709" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="208.72" y="719.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (767,615 samples, 0.02%)</title><rect x="597.8" y="341" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="600.79" y="351.5" ></text>
</g>
<g >
<title>wake_up_process (421,111 samples, 0.01%)</title><rect x="412.3" y="341" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="415.29" y="351.5" ></text>
</g>
<g >
<title>testing.runBenchmarks.func1 (1,394,367 samples, 0.03%)</title><rect x="213.6" y="677" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="216.58" y="687.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (707,712 samples, 0.01%)</title><rect x="691.0" y="453" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="694.01" y="463.5" ></text>
</g>
<g >
<title>_get_random_bytes (759,815 samples, 0.02%)</title><rect x="931.3" y="277" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="934.33" y="287.5" ></text>
</g>
<g >
<title>enqueue_task_fair (773,978 samples, 0.02%)</title><rect x="948.3" y="229" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="951.33" y="239.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (657,037 samples, 0.01%)</title><rect x="413.0" y="309" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="415.98" y="319.5" ></text>
</g>
<g >
<title>__handle_mm_fault (698,493 samples, 0.01%)</title><rect x="632.1" y="293" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="635.11" y="303.5" ></text>
</g>
<g >
<title>bpf_map_put_uref (14,596,397 samples, 0.30%)</title><rect x="339.2" y="485" width="3.6" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="342.23" y="495.5" ></text>
</g>
<g >
<title>ptep_clear_flush (1,545,769 samples, 0.03%)</title><rect x="787.3" y="357" width="0.4" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="790.32" y="367.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (769,615 samples, 0.02%)</title><rect x="694.8" y="357" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="697.84" y="367.5" ></text>
</g>
<g >
<title>runtime.typedslicecopy (10,272,413 samples, 0.21%)</title><rect x="702.4" y="485" width="2.5" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="705.38" y="495.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (740,252 samples, 0.02%)</title><rect x="612.8" y="469" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="615.83" y="479.5" ></text>
</g>
<g >
<title>do_wp_page (776,498 samples, 0.02%)</title><rect x="708.8" y="325" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="711.80" y="335.5" ></text>
</g>
<g >
<title>tick_sched_do_timer (779,331 samples, 0.02%)</title><rect x="687.6" y="261" width="0.2" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="690.56" y="271.5" ></text>
</g>
<g >
<title>set_next_entity (553,279 samples, 0.01%)</title><rect x="210.6" y="421" width="0.1" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="213.58" y="431.5" ></text>
</g>
<g >
<title>rep_movs_alternative (1,557,724 samples, 0.03%)</title><rect x="656.8" y="245" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="659.80" y="255.5" ></text>
</g>
<g >
<title>runtime.mallocgc (11,796,007 samples, 0.24%)</title><rect x="688.8" y="469" width="2.9" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="691.85" y="479.5" ></text>
</g>
<g >
<title>runtime.(*gcWork).put (2,958,991 samples, 0.06%)</title><rect x="187.8" y="661" width="0.7" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="190.82" y="671.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (736,287 samples, 0.02%)</title><rect x="712.4" y="437" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="715.36" y="447.5" ></text>
</g>
<g >
<title>do_user_addr_fault (636,619 samples, 0.01%)</title><rect x="214.2" y="677" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="217.22" y="687.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (8,172,612 samples, 0.17%)</title><rect x="865.3" y="629" width="2.0" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="868.33" y="639.5" ></text>
</g>
<g >
<title>irqentry_exit (1,501,366 samples, 0.03%)</title><rect x="625.1" y="421" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="628.13" y="431.5" ></text>
</g>
<g >
<title>ttwu_do_activate (1,009,048 samples, 0.02%)</title><rect x="409.0" y="405" width="0.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="412.03" y="415.5" ></text>
</g>
<g >
<title>handle_mm_fault (698,493 samples, 0.01%)</title><rect x="632.1" y="309" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="635.11" y="319.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (774,197 samples, 0.02%)</title><rect x="788.6" y="277" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="791.64" y="287.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (2,884,989 samples, 0.06%)</title><rect x="600.0" y="421" width="0.7" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="602.96" y="431.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (3,450,056 samples, 0.07%)</title><rect x="412.3" y="421" width="0.8" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="415.29" y="431.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (1,521,530 samples, 0.03%)</title><rect x="940.5" y="325" width="0.4" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="943.51" y="335.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (661,125 samples, 0.01%)</title><rect x="12.2" y="485" width="0.2" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="15.21" y="495.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (631,684 samples, 0.01%)</title><rect x="366.7" y="389" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="369.71" y="399.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,342,159 samples, 0.05%)</title><rect x="839.7" y="629" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="842.68" y="639.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (2,238,871 samples, 0.05%)</title><rect x="757.8" y="437" width="0.6" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="760.83" y="447.5" ></text>
</g>
<g >
<title>do_futex (9,353,192 samples, 0.19%)</title><rect x="19.8" y="565" width="2.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="22.79" y="575.5" ></text>
</g>
<g >
<title>__pte_offset_map_lock (773,024 samples, 0.02%)</title><rect x="786.8" y="357" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="789.75" y="367.5" ></text>
</g>
<g >
<title>wp_page_copy (760,697 samples, 0.02%)</title><rect x="773.4" y="309" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="776.37" y="319.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (7,530,385 samples, 0.16%)</title><rect x="649.0" y="437" width="1.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="651.96" y="447.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (671,910 samples, 0.01%)</title><rect x="622.1" y="325" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="625.12" y="335.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (2,606,957 samples, 0.05%)</title><rect x="27.0" y="677" width="0.7" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="30.03" y="687.5" ></text>
</g>
<g >
<title>do_syscall_64 (80,988,155 samples, 1.68%)</title><rect x="816.9" y="533" width="19.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="819.90" y="543.5" ></text>
</g>
<g >
<title>do_anonymous_page (2,718,355 samples, 0.06%)</title><rect x="1186.4" y="597" width="0.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1189.43" y="607.5" ></text>
</g>
<g >
<title>runtime.callers.func1 (764,227 samples, 0.02%)</title><rect x="574.1" y="357" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="577.05" y="367.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (731,159 samples, 0.02%)</title><rect x="613.4" y="453" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="616.39" y="463.5" ></text>
</g>
<g >
<title>handle_pte_fault (598,093 samples, 0.01%)</title><rect x="214.4" y="629" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="217.38" y="639.5" ></text>
</g>
<g >
<title>psi_task_switch (40,198,527 samples, 0.83%)</title><rect x="476.9" y="437" width="9.9" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="479.94" y="447.5" ></text>
</g>
<g >
<title>handle_pte_fault (767,277 samples, 0.02%)</title><rect x="658.5" y="325" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="661.51" y="335.5" ></text>
</g>
<g >
<title>irqentry_exit (770,807 samples, 0.02%)</title><rect x="611.2" y="437" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="614.18" y="447.5" ></text>
</g>
<g >
<title>crng_fast_key_erasure (781,326 samples, 0.02%)</title><rect x="941.6" y="277" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="944.60" y="287.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.newFD (771,599 samples, 0.02%)</title><rect x="13.1" y="757" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="16.12" y="767.5" ></text>
</g>
<g >
<title>native_write_msr (661,125 samples, 0.01%)</title><rect x="12.2" y="469" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="15.21" y="479.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (773,978 samples, 0.02%)</title><rect x="948.3" y="373" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="951.33" y="383.5" ></text>
</g>
<g >
<title>__handle_mm_fault (556,285 samples, 0.01%)</title><rect x="62.1" y="501" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="65.08" y="511.5" ></text>
</g>
<g >
<title>errors.Is (3,081,554 samples, 0.06%)</title><rect x="840.8" y="677" width="0.8" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="843.80" y="687.5" ></text>
</g>
<g >
<title>do_epoll_wait (581,447 samples, 0.01%)</title><rect x="18.6" y="597" width="0.1" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="21.57" y="607.5" ></text>
</g>
<g >
<title>memset_orig (2,292,010 samples, 0.05%)</title><rect x="951.3" y="421" width="0.5" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="954.26" y="431.5" ></text>
</g>
<g >
<title>runtime.findObject (112,478,093 samples, 2.33%)</title><rect x="132.7" y="677" width="27.5" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="135.68" y="687.5" >r..</text>
</g>
<g >
<title>apparmor_file_free_security (4,602,925 samples, 0.10%)</title><rect x="522.1" y="469" width="1.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="525.15" y="479.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (470,378 samples, 0.01%)</title><rect x="406.6" y="341" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="409.63" y="351.5" ></text>
</g>
<g >
<title>handle_mm_fault (487,287 samples, 0.01%)</title><rect x="1189.6" y="453" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1192.62" y="463.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (2,301,735 samples, 0.05%)</title><rect x="586.1" y="277" width="0.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="589.05" y="287.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,844,439 samples, 0.08%)</title><rect x="801.8" y="485" width="1.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="804.85" y="495.5" ></text>
</g>
<g >
<title>x2apic_send_IPI (1,299,589 samples, 0.03%)</title><rect x="403.7" y="341" width="0.3" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="406.67" y="351.5" ></text>
</g>
<g >
<title>try_to_wake_up (628,186 samples, 0.01%)</title><rect x="930.2" y="149" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="933.25" y="159.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (571,546 samples, 0.01%)</title><rect x="869.8" y="613" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="872.75" y="623.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (767,277 samples, 0.02%)</title><rect x="658.5" y="437" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="661.51" y="447.5" ></text>
</g>
<g >
<title>pte_alloc_one (770,701 samples, 0.02%)</title><rect x="630.6" y="293" width="0.2" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="633.65" y="303.5" ></text>
</g>
<g >
<title>__alloc_pages (4,268,500 samples, 0.09%)</title><rect x="1082.7" y="405" width="1.0" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1085.69" y="415.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (771,817 samples, 0.02%)</title><rect x="1040.7" y="357" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="1043.69" y="367.5" ></text>
</g>
<g >
<title>wp_page_copy (4,410,357 samples, 0.09%)</title><rect x="700.0" y="357" width="1.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="703.01" y="367.5" ></text>
</g>
<g >
<title>filp_close (774,133 samples, 0.02%)</title><rect x="292.5" y="565" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="295.52" y="575.5" ></text>
</g>
<g >
<title>memcg_alloc_slab_cgroups (775,645 samples, 0.02%)</title><rect x="963.3" y="357" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="966.30" y="367.5" ></text>
</g>
<g >
<title>bpf_map_put (2,933,856 samples, 0.06%)</title><rect x="818.6" y="453" width="0.7" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="821.59" y="463.5" ></text>
</g>
<g >
<title>exc_page_fault (778,859 samples, 0.02%)</title><rect x="691.4" y="405" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="694.37" y="415.5" ></text>
</g>
<g >
<title>idr_remove (28,135,685 samples, 0.58%)</title><rect x="352.1" y="453" width="6.8" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="355.06" y="463.5" ></text>
</g>
<g >
<title>runtime.newarray (1,517,995 samples, 0.03%)</title><rect x="759.1" y="485" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="762.11" y="495.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.BPF (742,345 samples, 0.02%)</title><rect x="869.4" y="661" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="872.42" y="671.5" ></text>
</g>
<g >
<title>__cond_resched (1,416,065 samples, 0.03%)</title><rect x="318.3" y="533" width="0.4" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="321.32" y="543.5" ></text>
</g>
<g >
<title>try_charge_memcg (778,273 samples, 0.02%)</title><rect x="694.6" y="341" width="0.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="697.65" y="351.5" ></text>
</g>
<g >
<title>syscall.init (636,619 samples, 0.01%)</title><rect x="214.2" y="725" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="217.22" y="735.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (1,698,872 samples, 0.04%)</title><rect x="426.8" y="405" width="0.4" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="429.75" y="415.5" ></text>
</g>
<g >
<title>__check_object_size (776,163 samples, 0.02%)</title><rect x="901.8" y="517" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="904.77" y="527.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (7,152,387 samples, 0.15%)</title><rect x="434.0" y="389" width="1.8" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="437.03" y="399.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).uncacheSpan (1,436,948 samples, 0.03%)</title><rect x="1188.9" y="597" width="0.4" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="1191.92" y="607.5" ></text>
</g>
<g >
<title>wake_up_process (705,104 samples, 0.01%)</title><rect x="293.8" y="469" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="296.84" y="479.5" ></text>
</g>
<g >
<title>runtime.mapassign (1,554,393 samples, 0.03%)</title><rect x="801.3" y="533" width="0.4" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="804.28" y="543.5" ></text>
</g>
<g >
<title>schedule (651,143 samples, 0.01%)</title><rect x="877.9" y="485" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="880.93" y="495.5" ></text>
</g>
<g >
<title>runtime.assertI2I2 (769,867 samples, 0.02%)</title><rect x="1183.7" y="661" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="1186.66" y="671.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge_pages (1,984,521 samples, 0.04%)</title><rect x="503.6" y="389" width="0.5" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="506.57" y="399.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (492,178 samples, 0.01%)</title><rect x="14.0" y="469" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="16.98" y="479.5" ></text>
</g>
<g >
<title>__mod_node_page_state (761,691 samples, 0.02%)</title><rect x="598.0" y="293" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="600.97" y="303.5" ></text>
</g>
<g >
<title>runtime.funcMaxSPDelta (589,552 samples, 0.01%)</title><rect x="214.1" y="709" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="217.08" y="719.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,952,976 samples, 0.06%)</title><rect x="632.8" y="373" width="0.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="635.81" y="383.5" ></text>
</g>
<g >
<title>runtime.casgstatus (2,768,410 samples, 0.06%)</title><rect x="873.6" y="581" width="0.7" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="876.61" y="591.5" ></text>
</g>
<g >
<title>mtree_range_walk (767,589 samples, 0.02%)</title><rect x="799.2" y="421" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="802.20" y="431.5" ></text>
</g>
<g >
<title>reweight_entity (771,547 samples, 0.02%)</title><rect x="35.0" y="517" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="38.01" y="527.5" ></text>
</g>
<g >
<title>update_blocked_averages (5,639,755 samples, 0.12%)</title><rect x="43.6" y="517" width="1.4" height="15.0" fill="rgb(240,163,38)" rx="2" ry="2" />
<text x="46.57" y="527.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (1,525,001 samples, 0.03%)</title><rect x="691.2" y="453" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="694.18" y="463.5" ></text>
</g>
<g >
<title>__x64_sys_pread64 (6,202,815 samples, 0.13%)</title><rect x="656.4" y="325" width="1.5" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="659.42" y="335.5" ></text>
</g>
<g >
<title>__free_pages (1,110,341 samples, 0.02%)</title><rect x="497.8" y="325" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="500.79" y="335.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (598,093 samples, 0.01%)</title><rect x="214.4" y="709" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="217.38" y="719.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.walkType (19,471,840 samples, 0.40%)</title><rect x="712.7" y="501" width="4.8" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="715.72" y="511.5" ></text>
</g>
<g >
<title>lru_add_fn (695,442 samples, 0.01%)</title><rect x="624.1" y="293" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="627.07" y="303.5" ></text>
</g>
<g >
<title>__kmalloc_node (775,645 samples, 0.02%)</title><rect x="963.3" y="341" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="966.30" y="351.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (566,751 samples, 0.01%)</title><rect x="253.7" y="549" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="256.70" y="559.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (715,991 samples, 0.01%)</title><rect x="621.8" y="421" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="624.76" y="431.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (5,981,234 samples, 0.12%)</title><rect x="860.6" y="565" width="1.5" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="863.62" y="575.5" ></text>
</g>
<g >
<title>native_write_msr (1,088,291 samples, 0.02%)</title><rect x="36.6" y="485" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="39.56" y="495.5" ></text>
</g>
<g >
<title>gcWriteBarrier (728,633 samples, 0.02%)</title><rect x="667.0" y="517" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="669.96" y="527.5" ></text>
</g>
<g >
<title>do_user_addr_fault (6,723,901 samples, 0.14%)</title><rect x="699.4" y="437" width="1.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="702.45" y="447.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (771,474 samples, 0.02%)</title><rect x="607.3" y="357" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="610.32" y="367.5" ></text>
</g>
<g >
<title>update_load_avg (417,821 samples, 0.01%)</title><rect x="21.1" y="453" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="24.14" y="463.5" ></text>
</g>
<g >
<title>__slab_free (1,062,736 samples, 0.02%)</title><rect x="491.0" y="437" width="0.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="494.03" y="447.5" ></text>
</g>
<g >
<title>runtime.callers (770,714 samples, 0.02%)</title><rect x="645.1" y="405" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="648.09" y="415.5" ></text>
</g>
<g >
<title>_raw_spin_lock (1,218,233 samples, 0.03%)</title><rect x="362.3" y="421" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="365.32" y="431.5" ></text>
</g>
<g >
<title>__alloc_pages (1,857,552 samples, 0.04%)</title><rect x="987.7" y="373" width="0.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="990.74" y="383.5" ></text>
</g>
<g >
<title>__rcu_read_lock (770,291 samples, 0.02%)</title><rect x="912.4" y="501" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="915.41" y="511.5" ></text>
</g>
<g >
<title>testing.(*B).runN (1,682,292 samples, 0.03%)</title><rect x="213.5" y="693" width="0.4" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="216.51" y="703.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (3,454,288 samples, 0.07%)</title><rect x="25.0" y="613" width="0.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="27.97" y="623.5" ></text>
</g>
<g >
<title>handle_mm_fault (759,478 samples, 0.02%)</title><rect x="706.2" y="437" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="709.17" y="447.5" ></text>
</g>
<g >
<title>discard_slab (2,220,504 samples, 0.05%)</title><rect x="497.8" y="373" width="0.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="500.79" y="383.5" ></text>
</g>
<g >
<title>runtime.interhash (4,621,161 samples, 0.10%)</title><rect x="784.3" y="501" width="1.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="787.31" y="511.5" ></text>
</g>
<g >
<title>up_read (780,390 samples, 0.02%)</title><rect x="588.1" y="405" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="591.14" y="415.5" ></text>
</g>
<g >
<title>__handle_mm_fault (1,427,175 samples, 0.03%)</title><rect x="622.1" y="373" width="0.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="625.12" y="383.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4,364,233 samples, 0.09%)</title><rect x="610.1" y="293" width="1.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="613.12" y="303.5" ></text>
</g>
<g >
<title>___slab_alloc (19,674,819 samples, 0.41%)</title><rect x="959.2" y="405" width="4.8" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="962.20" y="415.5" ></text>
</g>
<g >
<title>__folio_alloc (1,290,014 samples, 0.03%)</title><rect x="204.9" y="549" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="207.86" y="559.5" ></text>
</g>
<g >
<title>__anon_inode_getfile (664,495 samples, 0.01%)</title><rect x="53.3" y="677" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="56.35" y="687.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (1,504,207 samples, 0.03%)</title><rect x="1084.1" y="501" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1087.09" y="511.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (777,422 samples, 0.02%)</title><rect x="682.6" y="405" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="685.63" y="415.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.write (760,047 samples, 0.02%)</title><rect x="759.3" y="437" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="762.29" y="447.5" ></text>
</g>
<g >
<title>irq_exit_rcu (530,579 samples, 0.01%)</title><rect x="37.1" y="517" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="40.14" y="527.5" ></text>
</g>
<g >
<title>gcWriteBarrier (732,818 samples, 0.02%)</title><rect x="708.1" y="485" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="711.06" y="495.5" ></text>
</g>
<g >
<title>___slab_alloc (1,959,261 samples, 0.04%)</title><rect x="1035.3" y="421" width="0.4" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="1038.27" y="431.5" ></text>
</g>
<g >
<title>runtime.(*pageAlloc).update (732,963 samples, 0.02%)</title><rect x="696.5" y="309" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="699.47" y="319.5" ></text>
</g>
<g >
<title>__handle_mm_fault (10,806,675 samples, 0.22%)</title><rect x="786.4" y="421" width="2.6" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="789.37" y="431.5" ></text>
</g>
<g >
<title>runtime.makeslice (9,832,910 samples, 0.20%)</title><rect x="837.8" y="661" width="2.4" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="840.84" y="671.5" ></text>
</g>
<g >
<title>handle_pte_fault (6,971,860 samples, 0.14%)</title><rect x="797.1" y="421" width="1.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="800.12" y="431.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (3,710,815 samples, 0.08%)</title><rect x="912.6" y="501" width="0.9" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="915.60" y="511.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (772,354 samples, 0.02%)</title><rect x="652.6" y="453" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="655.64" y="463.5" ></text>
</g>
<g >
<title>ptep_clear_flush (706,326 samples, 0.01%)</title><rect x="625.0" y="325" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="627.96" y="335.5" ></text>
</g>
<g >
<title>errors.Is (5,750,210 samples, 0.12%)</title><rect x="852.6" y="661" width="1.4" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="855.56" y="671.5" ></text>
</g>
<g >
<title>runtime.startTheWorldWithSema (1,818,125 samples, 0.04%)</title><rect x="61.8" y="677" width="0.5" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="64.84" y="687.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (442,461 samples, 0.01%)</title><rect x="1000.8" y="309" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1003.83" y="319.5" ></text>
</g>
<g >
<title>__alloc_pages (760,697 samples, 0.02%)</title><rect x="773.4" y="261" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="776.37" y="271.5" ></text>
</g>
<g >
<title>clear_page_erms (775,002 samples, 0.02%)</title><rect x="772.2" y="309" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="775.23" y="319.5" ></text>
</g>
<g >
<title>___slab_alloc (773,650 samples, 0.02%)</title><rect x="990.7" y="437" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="993.72" y="447.5" ></text>
</g>
<g >
<title>folio_add_lru (741,209 samples, 0.02%)</title><rect x="686.3" y="341" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="689.31" y="351.5" ></text>
</g>
<g >
<title>runtime.sigaction (559,743 samples, 0.01%)</title><rect x="1189.3" y="677" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1192.27" y="687.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (1,525,940 samples, 0.03%)</title><rect x="858.2" y="613" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="861.18" y="623.5" ></text>
</g>
<g >
<title>wake_up_process (769,267 samples, 0.02%)</title><rect x="989.8" y="373" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="992.80" y="383.5" ></text>
</g>
<g >
<title>ttwu_do_activate (773,978 samples, 0.02%)</title><rect x="948.3" y="261" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="951.33" y="271.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (629,364 samples, 0.01%)</title><rect x="926.4" y="341" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="929.39" y="351.5" ></text>
</g>
<g >
<title>migrate_enable (781,168 samples, 0.02%)</title><rect x="836.2" y="421" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="839.16" y="431.5" ></text>
</g>
<g >
<title>bpf_obj_name_cpy (2,250,359 samples, 0.05%)</title><rect x="907.5" y="517" width="0.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="910.49" y="527.5" ></text>
</g>
<g >
<title>irqentry_exit (737,957 samples, 0.02%)</title><rect x="633.5" y="389" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="636.53" y="399.5" ></text>
</g>
<g >
<title>allocate_slab (16,510,448 samples, 0.34%)</title><rect x="960.0" y="373" width="4.0" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="962.98" y="383.5" ></text>
</g>
<g >
<title>__irqentry_text_end (3,035,682 samples, 0.06%)</title><rect x="596.2" y="469" width="0.7" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="599.15" y="479.5" ></text>
</g>
<g >
<title>____fput (831,865 samples, 0.02%)</title><rect x="318.1" y="533" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="321.12" y="543.5" ></text>
</g>
<g >
<title>switch_fpu_return (3,547,028 samples, 0.07%)</title><rect x="533.9" y="565" width="0.8" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="536.87" y="575.5" ></text>
</g>
<g >
<title>runtime.mstartm0 (559,743 samples, 0.01%)</title><rect x="1189.3" y="725" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="1192.27" y="735.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (3,844,439 samples, 0.08%)</title><rect x="801.8" y="469" width="1.0" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="804.85" y="479.5" ></text>
</g>
<g >
<title>runtime.markroot (3,705,601 samples, 0.08%)</title><rect x="1182.1" y="485" width="0.9" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="1185.06" y="495.5" ></text>
</g>
<g >
<title>get_page_from_freelist (688,211 samples, 0.01%)</title><rect x="188.2" y="469" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="191.19" y="479.5" ></text>
</g>
<g >
<title>runtime.findObject (747,630 samples, 0.02%)</title><rect x="649.1" y="341" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="652.15" y="351.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (5,962,876 samples, 0.12%)</title><rect x="650.8" y="437" width="1.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="653.81" y="447.5" ></text>
</g>
<g >
<title>enqueue_entity (743,373 samples, 0.02%)</title><rect x="20.7" y="453" width="0.2" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="23.69" y="463.5" ></text>
</g>
<g >
<title>syscall.Syscall6 (8,180,954 samples, 0.17%)</title><rect x="640.1" y="373" width="2.0" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="643.11" y="383.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (769,267 samples, 0.02%)</title><rect x="989.8" y="469" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="992.80" y="479.5" ></text>
</g>
<g >
<title>runtime.usleep.abi0 (834,535 samples, 0.02%)</title><rect x="52.4" y="709" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="55.44" y="719.5" ></text>
</g>
<g >
<title>runtime.mallocgc (27,824,535 samples, 0.58%)</title><rect x="645.8" y="453" width="6.8" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="648.84" y="463.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (2,231,144 samples, 0.05%)</title><rect x="59.4" y="389" width="0.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="62.38" y="399.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (4,362,960 samples, 0.09%)</title><rect x="51.3" y="677" width="1.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="54.34" y="687.5" ></text>
</g>
<g >
<title>rmqueue_bulk (713,562 samples, 0.01%)</title><rect x="685.8" y="277" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="688.77" y="287.5" ></text>
</g>
<g >
<title>runtime.(*mcache).prepareForSweep (1,540,440 samples, 0.03%)</title><rect x="61.8" y="645" width="0.4" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text x="64.84" y="655.5" ></text>
</g>
<g >
<title>__x64_sys_rt_sigaction (559,743 samples, 0.01%)</title><rect x="1189.3" y="613" width="0.1" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" />
<text x="1192.27" y="623.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (4,310,940 samples, 0.09%)</title><rect x="35.9" y="549" width="1.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="38.92" y="559.5" ></text>
</g>
<g >
<title>runtime.growslice (726,345 samples, 0.02%)</title><rect x="621.9" y="453" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="624.94" y="463.5" ></text>
</g>
<g >
<title>__mod_memcg_state (758,274 samples, 0.02%)</title><rect x="976.4" y="341" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="979.37" y="351.5" ></text>
</g>
<g >
<title>runtime.createfing (650,969 samples, 0.01%)</title><rect x="1080.9" y="597" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1083.95" y="607.5" ></text>
</g>
<g >
<title>runtime.getempty (2,958,991 samples, 0.06%)</title><rect x="187.8" y="645" width="0.7" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="190.82" y="655.5" ></text>
</g>
<g >
<title>__folio_throttle_swaprate (735,021 samples, 0.02%)</title><rect x="760.4" y="389" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="763.40" y="399.5" ></text>
</g>
<g >
<title>idr_alloc_u32 (17,492,888 samples, 0.36%)</title><rect x="1031.8" y="485" width="4.3" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" />
<text x="1034.84" y="495.5" ></text>
</g>
<g >
<title>pick_next_task (33,771,727 samples, 0.70%)</title><rect x="37.3" y="565" width="8.3" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="40.31" y="575.5" ></text>
</g>
<g >
<title>runtime.typehash (1,540,768 samples, 0.03%)</title><rect x="589.6" y="469" width="0.3" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="592.56" y="479.5" ></text>
</g>
<g >
<title>ttwu_do_activate (628,186 samples, 0.01%)</title><rect x="930.2" y="133" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="933.25" y="143.5" ></text>
</g>
<g >
<title>pick_next_task (476,818 samples, 0.01%)</title><rect x="16.3" y="549" width="0.2" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="19.34" y="559.5" ></text>
</g>
<g >
<title>mapgauge.test (4,823,558,999 samples, 100.00%)</title><rect x="10.0" y="789" width="1180.0" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="13.00" y="799.5" >mapgauge.test</text>
</g>
<g >
<title>__folio_alloc (2,342,159 samples, 0.05%)</title><rect x="839.7" y="501" width="0.5" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="842.68" y="511.5" ></text>
</g>
<g >
<title>do_syscall_64 (5,942,025 samples, 0.12%)</title><rect x="640.7" y="325" width="1.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="643.66" y="335.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (1,428,614 samples, 0.03%)</title><rect x="942.9" y="405" width="0.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="945.92" y="415.5" ></text>
</g>
<g >
<title>madvise_vma_behavior (1,502,420 samples, 0.03%)</title><rect x="1188.4" y="677" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1191.35" y="687.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (1,406,328 samples, 0.03%)</title><rect x="856.0" y="533" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="858.96" y="543.5" ></text>
</g>
<g >
<title>psi_task_change (557,455 samples, 0.01%)</title><rect x="293.9" y="405" width="0.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="296.88" y="415.5" ></text>
</g>
<g >
<title>handle_mm_fault (528,819 samples, 0.01%)</title><rect x="1189.7" y="661" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1192.74" y="671.5" ></text>
</g>
<g >
<title>exc_page_fault (670,398 samples, 0.01%)</title><rect x="573.9" y="373" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="576.89" y="383.5" ></text>
</g>
<g >
<title>post_alloc_hook (776,598 samples, 0.02%)</title><rect x="753.1" y="277" width="0.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="756.07" y="287.5" ></text>
</g>
<g >
<title>free_pages_and_swap_cache (10,989,219 samples, 0.23%)</title><rect x="58.1" y="453" width="2.7" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="61.11" y="463.5" ></text>
</g>
<g >
<title>__folio_alloc (774,526 samples, 0.02%)</title><rect x="563.9" y="341" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="566.93" y="351.5" ></text>
</g>
<g >
<title>handle_pte_fault (9,634,855 samples, 0.20%)</title><rect x="685.4" y="405" width="2.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="688.40" y="415.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (640,577 samples, 0.01%)</title><rect x="15.2" y="581" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="18.24" y="591.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (773,268 samples, 0.02%)</title><rect x="609.0" y="277" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="612.01" y="287.5" ></text>
</g>
<g >
<title>radix_tree_node_alloc.constprop.0 (2,724,060 samples, 0.06%)</title><rect x="1035.1" y="453" width="0.6" height="15.0" fill="rgb(250,209,49)" rx="2" ry="2" />
<text x="1038.08" y="463.5" ></text>
</g>
<g >
<title>runtime.newobject (30,127,365 samples, 0.62%)</title><rect x="645.5" y="469" width="7.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="648.46" y="479.5" ></text>
</g>
<g >
<title>pick_next_task_fair (609,276 samples, 0.01%)</title><rect x="14.1" y="453" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="17.10" y="463.5" ></text>
</g>
<g >
<title>free_slab (2,220,504 samples, 0.05%)</title><rect x="497.8" y="357" width="0.5" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="500.79" y="367.5" ></text>
</g>
<g >
<title>sched_clock_cpu (11,420,715 samples, 0.24%)</title><rect x="406.2" y="373" width="2.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="409.23" y="383.5" ></text>
</g>
<g >
<title>runtime.greyobject (1,070,700 samples, 0.02%)</title><rect x="573.3" y="309" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="576.28" y="319.5" ></text>
</g>
<g >
<title>do_wp_page (2,131,006 samples, 0.04%)</title><rect x="624.6" y="357" width="0.5" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="627.61" y="367.5" ></text>
</g>
<g >
<title>runtime.gcmarknewobject (731,616 samples, 0.02%)</title><rect x="702.2" y="453" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="705.20" y="463.5" ></text>
</g>
<g >
<title>scheduler_tick (772,957 samples, 0.02%)</title><rect x="639.4" y="325" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="642.36" y="335.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (2,487,763 samples, 0.05%)</title><rect x="366.9" y="389" width="0.6" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="369.90" y="399.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (475,409 samples, 0.01%)</title><rect x="1188.2" y="501" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1191.15" y="511.5" ></text>
</g>
<g >
<title>runtime.findObject (730,498 samples, 0.02%)</title><rect x="715.3" y="389" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="718.33" y="399.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (654,949 samples, 0.01%)</title><rect x="1174.8" y="469" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1177.81" y="479.5" ></text>
</g>
<g >
<title>mtree_range_walk (753,612 samples, 0.02%)</title><rect x="857.6" y="565" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="860.62" y="575.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (772,384 samples, 0.02%)</title><rect x="856.1" y="501" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="859.12" y="511.5" ></text>
</g>
<g >
<title>get_page_from_freelist (6,933,750 samples, 0.14%)</title><rect x="607.5" y="309" width="1.7" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="610.51" y="319.5" ></text>
</g>
<g >
<title>update_curr (746,945 samples, 0.02%)</title><rect x="852.4" y="469" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="855.38" y="479.5" ></text>
</g>
<g >
<title>perf_event_task_tick (771,817 samples, 0.02%)</title><rect x="1040.7" y="373" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="1043.69" y="383.5" ></text>
</g>
<g >
<title>try_to_wake_up (421,111 samples, 0.01%)</title><rect x="412.3" y="325" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="415.29" y="335.5" ></text>
</g>
<g >
<title>mas_walk (767,589 samples, 0.02%)</title><rect x="799.2" y="437" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="802.20" y="447.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (983,885,207 samples, 20.40%)</title><rect x="294.1" y="581" width="240.6" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="297.05" y="591.5" >syscall_exit_to_user_mode</text>
</g>
<g >
<title>internal/poll.(*FD).Close (771,505 samples, 0.02%)</title><rect x="841.6" y="629" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="844.55" y="639.5" ></text>
</g>
<g >
<title>runtime.newobject (16,538,256 samples, 0.34%)</title><rect x="1178.9" y="613" width="4.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1181.92" y="623.5" ></text>
</g>
<g >
<title>runtime.casgstatus (4,393,482 samples, 0.09%)</title><rect x="245.0" y="597" width="1.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="248.05" y="607.5" ></text>
</g>
<g >
<title>wake_up_process (594,979 samples, 0.01%)</title><rect x="1174.5" y="437" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="1177.48" y="447.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (1,550,694 samples, 0.03%)</title><rect x="771.1" y="469" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="774.10" y="479.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer (1,985,964 samples, 0.04%)</title><rect x="557.9" y="677" width="0.5" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="560.94" y="687.5" ></text>
</g>
<g >
<title>__cond_resched (679,556 samples, 0.01%)</title><rect x="330.8" y="485" width="0.2" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="333.85" y="495.5" ></text>
</g>
<g >
<title>clockevents_program_event (426,090 samples, 0.01%)</title><rect x="435.6" y="341" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="438.58" y="351.5" ></text>
</g>
<g >
<title>runtime.(*mheap).grow (747,206 samples, 0.02%)</title><rect x="571.4" y="341" width="0.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="574.44" y="351.5" ></text>
</g>
<g >
<title>testing.(*B).Run.func1 (540,979 samples, 0.01%)</title><rect x="213.7" y="629" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="216.66" y="639.5" ></text>
</g>
<g >
<title>handle_mm_fault (5,350,018 samples, 0.11%)</title><rect x="709.7" y="421" width="1.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="712.74" y="431.5" ></text>
</g>
<g >
<title>sync.(*Once).doSlow (540,979 samples, 0.01%)</title><rect x="213.7" y="645" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="216.66" y="655.5" ></text>
</g>
<g >
<title>schedule (1,401,444 samples, 0.03%)</title><rect x="196.4" y="501" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="199.40" y="511.5" ></text>
</g>
<g >
<title>__rcu_read_lock (721,014 samples, 0.01%)</title><rect x="970.6" y="389" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="973.62" y="399.5" ></text>
</g>
<g >
<title>clear_page_erms (1,540,535 samples, 0.03%)</title><rect x="987.7" y="341" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="990.74" y="351.5" ></text>
</g>
<g >
<title>runtime.wirep (744,805 samples, 0.02%)</title><rect x="875.3" y="565" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="878.30" y="575.5" ></text>
</g>
<g >
<title>vma_alloc_folio (774,526 samples, 0.02%)</title><rect x="563.9" y="357" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="566.93" y="367.5" ></text>
</g>
<g >
<title>hpage_collapse_scan_pmd (5,280,578 samples, 0.11%)</title><rect x="860.8" y="325" width="1.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="863.79" y="335.5" ></text>
</g>
<g >
<title>[unknown] (2,311,308 samples, 0.05%)</title><rect x="10.0" y="693" width="0.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="703.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).push (883,938 samples, 0.02%)</title><rect x="62.8" y="565" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="65.79" y="575.5" ></text>
</g>
<g >
<title>x64_setup_rt_frame (772,321 samples, 0.02%)</title><rect x="1084.6" y="405" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1087.65" y="415.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (438,758 samples, 0.01%)</title><rect x="228.5" y="581" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="231.45" y="591.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (736,533 samples, 0.02%)</title><rect x="210.2" y="373" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="213.21" y="383.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (894,132 samples, 0.02%)</title><rect x="30.1" y="533" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="33.15" y="543.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (598,093 samples, 0.01%)</title><rect x="214.4" y="549" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="217.38" y="559.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (4,398,560 samples, 0.09%)</title><rect x="686.5" y="293" width="1.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="689.49" y="303.5" ></text>
</g>
<g >
<title>__folio_alloc (1,495,537 samples, 0.03%)</title><rect x="633.2" y="293" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="636.17" y="303.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (8,066,417 samples, 0.17%)</title><rect x="715.5" y="389" width="2.0" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="718.51" y="399.5" ></text>
</g>
<g >
<title>__bpf_map_inc_not_zero (7,474,557 samples, 0.15%)</title><rect x="826.5" y="421" width="1.8" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="829.50" y="431.5" ></text>
</g>
<g >
<title>runtime.lock2 (707,997 samples, 0.01%)</title><rect x="632.3" y="357" width="0.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="635.28" y="367.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (774,959 samples, 0.02%)</title><rect x="638.4" y="245" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="641.44" y="255.5" ></text>
</g>
<g >
<title>collapse_huge_page (4,525,894 samples, 0.09%)</title><rect x="861.0" y="309" width="1.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="863.97" y="319.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (740,337 samples, 0.02%)</title><rect x="1041.4" y="533" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1044.37" y="543.5" ></text>
</g>
<g >
<title>wp_page_copy (7,318,241 samples, 0.15%)</title><rect x="609.4" y="357" width="1.8" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="612.39" y="367.5" ></text>
</g>
<g >
<title>runtime.itabsinit (528,819 samples, 0.01%)</title><rect x="1189.7" y="741" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1192.74" y="751.5" ></text>
</g>
<g >
<title>runtime.memmove (1,556,589 samples, 0.03%)</title><rect x="836.7" y="645" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="839.71" y="655.5" ></text>
</g>
<g >
<title>psi_group_change (1,931,706 samples, 0.04%)</title><rect x="211.4" y="437" width="0.5" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="214.41" y="447.5" ></text>
</g>
<g >
<title>clear_page_erms (10,006,745 samples, 0.21%)</title><rect x="750.6" y="277" width="2.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="753.63" y="287.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (10,580,343 samples, 0.22%)</title><rect x="1003.4" y="421" width="2.6" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="1006.39" y="431.5" ></text>
</g>
<g >
<title>ptep_clear_flush (2,787,599 samples, 0.06%)</title><rect x="586.6" y="325" width="0.7" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="589.62" y="335.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (767,828 samples, 0.02%)</title><rect x="798.8" y="405" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="801.83" y="415.5" ></text>
</g>
<g >
<title>runtime.memmove (1,519,115 samples, 0.03%)</title><rect x="642.1" y="453" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="645.11" y="463.5" ></text>
</g>
<g >
<title>runtime.typehash (772,302 samples, 0.02%)</title><rect x="789.8" y="501" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="792.77" y="511.5" ></text>
</g>
<g >
<title>array_map_alloc_check (1,524,337 samples, 0.03%)</title><rect x="907.1" y="517" width="0.4" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="910.12" y="527.5" ></text>
</g>
<g >
<title>___slab_alloc (8,226,765 samples, 0.17%)</title><rect x="929.7" y="373" width="2.0" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="932.69" y="383.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (2,787,599 samples, 0.06%)</title><rect x="586.6" y="309" width="0.7" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="589.62" y="319.5" ></text>
</g>
<g >
<title>__folio_throttle_swaprate (764,540 samples, 0.02%)</title><rect x="584.8" y="341" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="587.78" y="351.5" ></text>
</g>
<g >
<title>sched_clock (510,716 samples, 0.01%)</title><rect x="43.4" y="501" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="46.45" y="511.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (3,854,692 samples, 0.08%)</title><rect x="749.5" y="293" width="0.9" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="752.50" y="303.5" ></text>
</g>
<g >
<title>do_vmi_align_munmap (747,206 samples, 0.02%)</title><rect x="571.4" y="149" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="574.44" y="159.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (732,818 samples, 0.02%)</title><rect x="708.1" y="437" width="0.1" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="711.06" y="447.5" ></text>
</g>
<g >
<title>kmem_cache_free (2,312,083 samples, 0.05%)</title><rect x="436.3" y="277" width="0.6" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="439.33" y="287.5" ></text>
</g>
<g >
<title>get_page_from_freelist (2,022,434 samples, 0.04%)</title><rect x="587.3" y="277" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="590.30" y="287.5" ></text>
</g>
<g >
<title>runtime.notesleep (1,401,444 samples, 0.03%)</title><rect x="196.4" y="629" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="199.40" y="639.5" ></text>
</g>
<g >
<title>__alloc_pages (13,860,662 samples, 0.29%)</title><rect x="750.4" y="309" width="3.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="753.44" y="319.5" ></text>
</g>
<g >
<title>irq_exit_rcu (7,751,506 samples, 0.16%)</title><rect x="435.8" y="389" width="1.9" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="438.81" y="399.5" ></text>
</g>
<g >
<title>_raw_spin_lock (726,583 samples, 0.02%)</title><rect x="632.8" y="309" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="635.81" y="319.5" ></text>
</g>
<g >
<title>ktime_get (1,354,427 samples, 0.03%)</title><rect x="30.0" y="565" width="0.4" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="33.04" y="575.5" ></text>
</g>
<g >
<title>tick_sched_timer (772,957 samples, 0.02%)</title><rect x="639.4" y="373" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="642.36" y="383.5" ></text>
</g>
<g >
<title>get_page_from_freelist (12,844,776 samples, 0.27%)</title><rect x="960.2" y="325" width="3.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="963.16" y="335.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (732,963 samples, 0.02%)</title><rect x="696.5" y="341" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="699.47" y="351.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).push (774,187 samples, 0.02%)</title><rect x="658.3" y="421" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="661.32" y="431.5" ></text>
</g>
<g >
<title>_raw_spin_lock (1,096,181 samples, 0.02%)</title><rect x="209.9" y="357" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="212.94" y="367.5" ></text>
</g>
<g >
<title>runtime.(*mcache).releaseAll (1,436,948 samples, 0.03%)</title><rect x="1188.9" y="613" width="0.4" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1191.92" y="623.5" ></text>
</g>
<g >
<title>wp_page_copy (760,047 samples, 0.02%)</title><rect x="759.3" y="309" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="762.29" y="319.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,119,504,804 samples, 23.21%)</title><rect x="261.4" y="613" width="273.9" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="264.44" y="623.5" >entry_SYSCALL_64_after_hwframe</text>
</g>
<g >
<title>runtime.doInit1 (1,849,322 samples, 0.04%)</title><rect x="213.9" y="741" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="216.92" y="751.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.splitNull (762,852 samples, 0.02%)</title><rect x="12.9" y="757" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="15.94" y="767.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (775,283 samples, 0.02%)</title><rect x="54.3" y="485" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="57.31" y="495.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (670,708 samples, 0.01%)</title><rect x="954.7" y="437" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="957.72" y="447.5" ></text>
</g>
<g >
<title>do_tkill (739,021 samples, 0.02%)</title><rect x="62.5" y="581" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="65.49" y="591.5" ></text>
</g>
<g >
<title>common_interrupt (485,085 samples, 0.01%)</title><rect x="287.3" y="517" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="290.34" y="527.5" ></text>
</g>
<g >
<title>allocate_slab (7,455,478 samples, 0.15%)</title><rect x="929.9" y="341" width="1.8" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="932.88" y="351.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (664,495 samples, 0.01%)</title><rect x="53.3" y="741" width="0.2" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="56.35" y="751.5" ></text>
</g>
<g >
<title>runtime.mallocgc (1,464,384 samples, 0.03%)</title><rect x="712.2" y="469" width="0.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="715.18" y="479.5" ></text>
</g>
<g >
<title>runtime.bulkBarrierPreWrite (3,692,223 samples, 0.08%)</title><rect x="704.9" y="469" width="0.9" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="707.89" y="479.5" ></text>
</g>
<g >
<title>runtime.newobject (1,464,384 samples, 0.03%)</title><rect x="712.2" y="485" width="0.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="715.18" y="495.5" ></text>
</g>
<g >
<title>hrtimer_active (1,130,946 samples, 0.02%)</title><rect x="49.1" y="613" width="0.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="52.06" y="623.5" ></text>
</g>
<g >
<title>do_wp_page (4,410,357 samples, 0.09%)</title><rect x="700.0" y="373" width="1.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="703.01" y="383.5" ></text>
</g>
<g >
<title>put_prev_task_fair (1,599,660 samples, 0.03%)</title><rect x="45.2" y="549" width="0.4" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="48.18" y="559.5" ></text>
</g>
<g >
<title>__rdgsbase_inactive (429,892 samples, 0.01%)</title><rect x="52.7" y="773" width="0.1" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="55.69" y="783.5" ></text>
</g>
<g >
<title>__handle_mm_fault (2,342,159 samples, 0.05%)</title><rect x="839.7" y="565" width="0.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="842.68" y="575.5" ></text>
</g>
<g >
<title>folio_add_lru (748,175 samples, 0.02%)</title><rect x="861.0" y="229" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="863.97" y="239.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (1,556,275 samples, 0.03%)</title><rect x="460.5" y="389" width="0.4" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="463.55" y="399.5" ></text>
</g>
<g >
<title>vma_alloc_folio (2,305,008 samples, 0.05%)</title><rect x="654.3" y="357" width="0.6" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="657.34" y="367.5" ></text>
</g>
<g >
<title>dput (850,792 samples, 0.02%)</title><rect x="61.5" y="645" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="64.49" y="655.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (739,448 samples, 0.02%)</title><rect x="681.7" y="453" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="684.70" y="463.5" ></text>
</g>
<g >
<title>vma_alloc_folio (5,401,000 samples, 0.11%)</title><rect x="787.7" y="357" width="1.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="790.69" y="367.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (767,589 samples, 0.02%)</title><rect x="799.2" y="453" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="802.20" y="463.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (8,796,915 samples, 0.18%)</title><rect x="715.3" y="437" width="2.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="718.33" y="447.5" ></text>
</g>
<g >
<title>do_wp_page (6,621,495 samples, 0.14%)</title><rect x="685.9" y="389" width="1.7" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="688.94" y="399.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocMSpanLocked (770,915 samples, 0.02%)</title><rect x="648.8" y="309" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="651.78" y="319.5" ></text>
</g>
<g >
<title>runtime.usleep.abi0 (1,598,926 samples, 0.03%)</title><rect x="12.0" y="677" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="14.99" y="687.5" ></text>
</g>
<g >
<title>runtime.rt0_go.abi0 (2,111,003 samples, 0.04%)</title><rect x="1189.4" y="773" width="0.6" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="1192.45" y="783.5" ></text>
</g>
<g >
<title>runtime.mcall (496,097 samples, 0.01%)</title><rect x="1187.9" y="709" width="0.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="1190.91" y="719.5" ></text>
</g>
<g >
<title>do_anonymous_page (2,342,159 samples, 0.05%)</title><rect x="839.7" y="533" width="0.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="842.68" y="543.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (770,714 samples, 0.02%)</title><rect x="645.1" y="389" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="648.09" y="399.5" ></text>
</g>
<g >
<title>runtime.makeslice (1,523,357 samples, 0.03%)</title><rect x="682.1" y="485" width="0.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="685.06" y="495.5" ></text>
</g>
<g >
<title>do_user_addr_fault (9,675,817 samples, 0.20%)</title><rect x="855.4" y="613" width="2.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="858.44" y="623.5" ></text>
</g>
<g >
<title>do_user_addr_fault (767,277 samples, 0.02%)</title><rect x="658.5" y="373" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="661.51" y="383.5" ></text>
</g>
<g >
<title>madvise_walk_vmas (435,058 samples, 0.01%)</title><rect x="1189.5" y="437" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1192.52" y="447.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (750,505 samples, 0.02%)</title><rect x="131.4" y="629" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="134.42" y="639.5" ></text>
</g>
<g >
<title>handle_pte_fault (981,773 samples, 0.02%)</title><rect x="1188.0" y="581" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1191.03" y="591.5" ></text>
</g>
<g >
<title>exc_page_fault (624,343 samples, 0.01%)</title><rect x="213.4" y="709" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="216.36" y="719.5" ></text>
</g>
<g >
<title>runtime.sysmon (9,123,382 samples, 0.19%)</title><rect x="14.8" y="693" width="2.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="17.77" y="703.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (10,543,828 samples, 0.22%)</title><rect x="29.7" y="597" width="2.6" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="32.67" y="607.5" ></text>
</g>
<g >
<title>rcu_core (6,280,492 samples, 0.13%)</title><rect x="435.9" y="325" width="1.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="438.85" y="335.5" ></text>
</g>
<g >
<title>__folio_alloc (2,271,907 samples, 0.05%)</title><rect x="760.6" y="373" width="0.5" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="763.58" y="383.5" ></text>
</g>
<g >
<title>runtime.scanblock (1,516,737 samples, 0.03%)</title><rect x="862.9" y="485" width="0.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="865.88" y="495.5" ></text>
</g>
<g >
<title>runtime.mapassign_faststr (41,661,007 samples, 0.86%)</title><rect x="790.1" y="517" width="10.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="793.14" y="527.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (1,531,622 samples, 0.03%)</title><rect x="1058.0" y="517" width="0.4" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1061.01" y="527.5" ></text>
</g>
<g >
<title>handle_pte_fault (2,952,976 samples, 0.06%)</title><rect x="632.8" y="341" width="0.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="635.81" y="351.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).push (1,436,948 samples, 0.03%)</title><rect x="1188.9" y="565" width="0.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1191.92" y="575.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (705,104 samples, 0.01%)</title><rect x="293.8" y="533" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="296.84" y="543.5" ></text>
</g>
<g >
<title>get_partial_node.part.0 (671,881 samples, 0.01%)</title><rect x="959.8" y="389" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="962.81" y="399.5" ></text>
</g>
<g >
<title>dentry_free (2,791,134 samples, 0.06%)</title><rect x="513.4" y="469" width="0.7" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="516.39" y="479.5" ></text>
</g>
<g >
<title>exc_page_fault (6,140,462 samples, 0.13%)</title><rect x="782.1" y="485" width="1.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="785.05" y="495.5" ></text>
</g>
<g >
<title>runtime.makeslice (11,405,817 samples, 0.24%)</title><rect x="642.5" y="469" width="2.8" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="645.48" y="479.5" ></text>
</g>
<g >
<title>get_random_u32 (759,815 samples, 0.02%)</title><rect x="931.3" y="293" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="934.33" y="303.5" ></text>
</g>
<g >
<title>do_syscall_64 (21,309,404 samples, 0.44%)</title><rect x="19.7" y="597" width="5.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="22.73" y="607.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (438,758 samples, 0.01%)</title><rect x="228.5" y="517" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="231.45" y="527.5" ></text>
</g>
<g >
<title>__count_memcg_events (753,712 samples, 0.02%)</title><rect x="734.6" y="405" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="737.63" y="415.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (628,186 samples, 0.01%)</title><rect x="930.2" y="261" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="933.25" y="271.5" ></text>
</g>
<g >
<title>ihold (4,530,714 samples, 0.09%)</title><rect x="980.1" y="469" width="1.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="983.10" y="479.5" ></text>
</g>
<g >
<title>vma_alloc_folio (755,265 samples, 0.02%)</title><rect x="622.3" y="325" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="625.28" y="335.5" ></text>
</g>
<g >
<title>__handle_mm_fault (10,351,505 samples, 0.21%)</title><rect x="597.2" y="405" width="2.6" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="600.24" y="415.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (506,364 samples, 0.01%)</title><rect x="1188.0" y="501" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1191.03" y="511.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*collectionLoader).loadProgram (994,763,400 samples, 20.62%)</title><rect x="559.4" y="613" width="243.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="562.44" y="623.5" >github.com/cilium/ebpf.(*collect..</text>
</g>
<g >
<title>__sigqueue_alloc (739,021 samples, 0.02%)</title><rect x="62.5" y="501" width="0.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="65.49" y="511.5" ></text>
</g>
<g >
<title>vma_alloc_folio (1,579,172 samples, 0.03%)</title><rect x="215.8" y="597" width="0.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="218.77" y="607.5" ></text>
</g>
<g >
<title>folio_add_lru (761,318 samples, 0.02%)</title><rect x="1082.2" y="421" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1085.21" y="431.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (459,526 samples, 0.01%)</title><rect x="1010.4" y="229" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="1013.37" y="239.5" ></text>
</g>
<g >
<title>runtime.goschedIfBusy (2,160,834 samples, 0.04%)</title><rect x="196.7" y="725" width="0.6" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="199.74" y="735.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (766,622 samples, 0.02%)</title><rect x="563.6" y="325" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="566.59" y="335.5" ></text>
</g>
<g >
<title>runtime.newInlineUnwinder (772,320 samples, 0.02%)</title><rect x="652.3" y="341" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="655.27" y="351.5" ></text>
</g>
<g >
<title>__slab_free (1,002,164 samples, 0.02%)</title><rect x="436.5" y="261" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="439.49" y="271.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (636,619 samples, 0.01%)</title><rect x="214.2" y="533" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="217.22" y="543.5" ></text>
</g>
<g >
<title>lru_add_fn (671,910 samples, 0.01%)</title><rect x="622.1" y="277" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="625.12" y="287.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.newFD (425,003,278 samples, 8.81%)</title><rect x="1079.2" y="629" width="103.9" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1082.17" y="639.5" >github.com/c..</text>
</g>
<g >
<title>enqueue_entity (746,945 samples, 0.02%)</title><rect x="852.4" y="485" width="0.2" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="855.38" y="495.5" ></text>
</g>
<g >
<title>filp_close (38,773,550 samples, 0.80%)</title><rect x="281.3" y="549" width="9.5" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="284.29" y="559.5" ></text>
</g>
<g >
<title>check_preempt_curr (808,267 samples, 0.02%)</title><rect x="370.4" y="389" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="373.35" y="399.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (777,740 samples, 0.02%)</title><rect x="584.1" y="389" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="587.06" y="399.5" ></text>
</g>
<g >
<title>__alloc_pages (775,259 samples, 0.02%)</title><rect x="866.4" y="485" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="869.44" y="495.5" ></text>
</g>
<g >
<title>syscall.Syscall6 (6,974,464 samples, 0.14%)</title><rect x="656.2" y="389" width="1.7" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="659.23" y="399.5" ></text>
</g>
<g >
<title>runtime.gcStart.func3 (757,125 samples, 0.02%)</title><rect x="863.6" y="581" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="866.58" y="591.5" ></text>
</g>
<g >
<title>handle_pte_fault (688,211 samples, 0.01%)</title><rect x="188.2" y="549" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="191.19" y="559.5" ></text>
</g>
<g >
<title>clear_page_erms (4,364,233 samples, 0.09%)</title><rect x="610.1" y="277" width="1.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="613.12" y="287.5" ></text>
</g>
<g >
<title>error_entry (732,926 samples, 0.02%)</title><rect x="17.0" y="741" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="20.00" y="751.5" ></text>
</g>
<g >
<title>wake_up_process (992,101 samples, 0.02%)</title><rect x="416.1" y="357" width="0.3" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="419.13" y="367.5" ></text>
</g>
<g >
<title>runtime.gcmarknewobject (739,104 samples, 0.02%)</title><rect x="696.8" y="453" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="699.84" y="463.5" ></text>
</g>
<g >
<title>____fput (850,792 samples, 0.02%)</title><rect x="61.5" y="677" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="64.49" y="687.5" ></text>
</g>
<g >
<title>runtime.memmove (16,834,223 samples, 0.35%)</title><rect x="843.8" y="677" width="4.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="846.75" y="687.5" ></text>
</g>
<g >
<title>vma_alloc_folio (5,067,855 samples, 0.11%)</title><rect x="598.5" y="341" width="1.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="601.53" y="351.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (11,298,190 samples, 0.23%)</title><rect x="401.2" y="357" width="2.8" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="404.22" y="367.5" ></text>
</g>
<g >
<title>enqueue_task_fair (606,417 samples, 0.01%)</title><rect x="530.1" y="325" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="533.08" y="335.5" ></text>
</g>
<g >
<title>exc_page_fault (772,354 samples, 0.02%)</title><rect x="652.6" y="421" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="655.64" y="431.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Read (81,753,854 samples, 1.69%)</title><rect x="816.7" y="613" width="20.0" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="819.71" y="623.5" ></text>
</g>
<g >
<title>rmqueue (760,634 samples, 0.02%)</title><rect x="1185.9" y="501" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1188.93" y="511.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (1,493,170 samples, 0.03%)</title><rect x="205.2" y="469" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="208.17" y="479.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (1,473,902 samples, 0.03%)</title><rect x="962.9" y="293" width="0.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="965.94" y="303.5" ></text>
</g>
<g >
<title>try_to_wake_up (594,979 samples, 0.01%)</title><rect x="1174.5" y="421" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="1177.48" y="431.5" ></text>
</g>
<g >
<title>gcWriteBarrier (728,809 samples, 0.02%)</title><rect x="713.1" y="469" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="716.10" y="479.5" ></text>
</g>
<g >
<title>memset_orig (1,541,145 samples, 0.03%)</title><rect x="656.4" y="245" width="0.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="659.42" y="255.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (636,619 samples, 0.01%)</title><rect x="214.2" y="517" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="217.22" y="527.5" ></text>
</g>
<g >
<title>down_read_trylock (774,040 samples, 0.02%)</title><rect x="796.7" y="453" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="799.74" y="463.5" ></text>
</g>
<g >
<title>clear_buddies (862,007 samples, 0.02%)</title><rect x="460.9" y="389" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="463.93" y="399.5" ></text>
</g>
<g >
<title>__handle_mm_fault (759,478 samples, 0.02%)</title><rect x="706.2" y="421" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="709.17" y="431.5" ></text>
</g>
<g >
<title>wp_page_copy (670,398 samples, 0.01%)</title><rect x="573.9" y="277" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="576.89" y="287.5" ></text>
</g>
<g >
<title>handle_pte_fault (589,552 samples, 0.01%)</title><rect x="214.1" y="597" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="217.08" y="607.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.ProgLoad (3,844,439 samples, 0.08%)</title><rect x="801.8" y="581" width="1.0" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="804.85" y="591.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (758,352 samples, 0.02%)</title><rect x="943.3" y="341" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="946.27" y="351.5" ></text>
</g>
<g >
<title>runtime.(*pageAlloc).update (487,287 samples, 0.01%)</title><rect x="1189.6" y="517" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="1192.62" y="527.5" ></text>
</g>
<g >
<title>call_rcu (12,573,740 samples, 0.26%)</title><rect x="414.3" y="485" width="3.0" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="417.27" y="495.5" ></text>
</g>
<g >
<title>update_load_avg (476,818 samples, 0.01%)</title><rect x="16.3" y="501" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="19.34" y="511.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Array).copy (2,328,856 samples, 0.05%)</title><rect x="680.9" y="501" width="0.6" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="683.95" y="511.5" ></text>
</g>
<g >
<title>x86_pmu_enable (443,731 samples, 0.01%)</title><rect x="209.4" y="405" width="0.1" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="212.40" y="415.5" ></text>
</g>
<g >
<title>runtime.mallocgc (2,285,397 samples, 0.05%)</title><rect x="773.2" y="469" width="0.5" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="776.18" y="479.5" ></text>
</g>
<g >
<title>security_file_permission (1,483,939 samples, 0.03%)</title><rect x="641.4" y="261" width="0.4" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="644.39" y="271.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (3,854,692 samples, 0.08%)</title><rect x="749.5" y="277" width="0.9" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="752.50" y="287.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (1,507,271 samples, 0.03%)</title><rect x="631.6" y="341" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="634.56" y="351.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (713,562 samples, 0.01%)</title><rect x="685.8" y="293" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="688.77" y="303.5" ></text>
</g>
<g >
<title>update_curr (2,577,657 samples, 0.05%)</title><rect x="462.3" y="405" width="0.7" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="465.34" y="415.5" ></text>
</g>
<g >
<title>vma_alloc_folio (418,342 samples, 0.01%)</title><rect x="74.2" y="469" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="77.20" y="479.5" ></text>
</g>
<g >
<title>tick_program_event (752,964 samples, 0.02%)</title><rect x="1174.6" y="469" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1177.63" y="479.5" ></text>
</g>
<g >
<title>__pte_offset_map (779,331 samples, 0.02%)</title><rect x="687.6" y="373" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="690.56" y="383.5" ></text>
</g>
<g >
<title>wake_up_process (459,526 samples, 0.01%)</title><rect x="1010.4" y="309" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="1013.37" y="319.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (1,360,386 samples, 0.03%)</title><rect x="902.2" y="501" width="0.3" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="905.15" y="511.5" ></text>
</g>
<g >
<title>runtime.callers.func1 (770,714 samples, 0.02%)</title><rect x="645.1" y="373" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="648.09" y="383.5" ></text>
</g>
<g >
<title>kmem_cache_free (634,262 samples, 0.01%)</title><rect x="517.5" y="485" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="520.55" y="495.5" ></text>
</g>
<g >
<title>vma_alloc_folio (775,002 samples, 0.02%)</title><rect x="772.2" y="373" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="775.23" y="383.5" ></text>
</g>
<g >
<title>idr_get_free (735,729 samples, 0.02%)</title><rect x="1036.1" y="485" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="1039.12" y="495.5" ></text>
</g>
<g >
<title>__mod_zone_page_state (777,958 samples, 0.02%)</title><rect x="55.1" y="437" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="58.07" y="447.5" ></text>
</g>
<g >
<title>clear_page_erms (586,737 samples, 0.01%)</title><rect x="1001.6" y="245" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1004.63" y="255.5" ></text>
</g>
<g >
<title>__cond_resched (850,792 samples, 0.02%)</title><rect x="61.5" y="629" width="0.2" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="64.49" y="639.5" ></text>
</g>
<g >
<title>runtime.(*gcWork).tryGet (757,349 samples, 0.02%)</title><rect x="67.4" y="693" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="70.42" y="703.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (773,372 samples, 0.02%)</title><rect x="801.7" y="373" width="0.1" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="804.66" y="383.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Pread (6,974,464 samples, 0.14%)</title><rect x="656.2" y="421" width="1.7" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="659.23" y="431.5" ></text>
</g>
<g >
<title>update_load_avg (4,847,574 samples, 0.10%)</title><rect x="463.0" y="405" width="1.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="465.97" y="415.5" ></text>
</g>
<g >
<title>rmqueue_bulk (2,111,438 samples, 0.04%)</title><rect x="939.6" y="277" width="0.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="942.64" y="287.5" ></text>
</g>
<g >
<title>update_process_times (772,957 samples, 0.02%)</title><rect x="639.4" y="341" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="642.36" y="351.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap (15,400,225 samples, 0.32%)</title><rect x="848.4" y="677" width="3.8" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="851.42" y="687.5" ></text>
</g>
<g >
<title>runtime.notetsleep_internal (487,588 samples, 0.01%)</title><rect x="18.7" y="677" width="0.1" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="21.73" y="687.5" ></text>
</g>
<g >
<title>runtime.getempty (754,513 samples, 0.02%)</title><rect x="678.4" y="405" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="681.42" y="415.5" ></text>
</g>
<g >
<title>__alloc_pages (2,107,894 samples, 0.04%)</title><rect x="866.6" y="469" width="0.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="869.63" y="479.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (771,505 samples, 0.02%)</title><rect x="841.6" y="501" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="844.55" y="511.5" ></text>
</g>
<g >
<title>idr_get_next (780,641 samples, 0.02%)</title><rect x="829.8" y="437" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="832.84" y="447.5" ></text>
</g>
<g >
<title>hrtimer_update_next_event (777,740 samples, 0.02%)</title><rect x="584.1" y="341" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="587.06" y="351.5" ></text>
</g>
<g >
<title>runtime.mallocgc (8,346,768 samples, 0.17%)</title><rect x="569.0" y="469" width="2.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="572.02" y="479.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (1,762,779 samples, 0.04%)</title><rect x="444.9" y="389" width="0.4" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="447.88" y="399.5" ></text>
</g>
<g >
<title>__x64_sys_madvise (1,502,420 samples, 0.03%)</title><rect x="1188.4" y="725" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1191.35" y="735.5" ></text>
</g>
<g >
<title>irqentry_exit (665,534 samples, 0.01%)</title><rect x="53.2" y="741" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="56.18" y="751.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (4,365,161 samples, 0.09%)</title><rect x="864.3" y="597" width="1.0" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="867.26" y="607.5" ></text>
</g>
<g >
<title>syscall.Syscall (540,979 samples, 0.01%)</title><rect x="213.7" y="549" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="216.66" y="559.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (773,978 samples, 0.02%)</title><rect x="948.3" y="357" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="951.33" y="367.5" ></text>
</g>
<g >
<title>_raw_spin_lock (774,669 samples, 0.02%)</title><rect x="748.4" y="341" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="751.36" y="351.5" ></text>
</g>
</g>
</svg>
This file has been truncated, but you can view the full file.
mapgauge.test;[unknown];[unknown];[unknown];[unknown];[unknown];[unknown];runtime.memmove;error_entry 2311308
mapgauge.test;[unknown];[unknown];[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.gettid.abi0;asm_sysvec_apic_timer_interrupt 173834
mapgauge.test;[unknown];[unknown];[unknown];[unknown];runtime/internal/syscall.Syscall6;asm_exc_page_fault 2240237
mapgauge.test;[unknown];[unknown];[unknown];[unknown];runtime/internal/syscall.Syscall6;asm_sysvec_apic_timer_interrupt 521735
mapgauge.test;[unknown];[unknown];[unknown];runtime.clone.abi0;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;__rcu_read_unlock 55112
mapgauge.test;[unknown];[unknown];[unknown];runtime.memmove;asm_exc_page_fault 758752
mapgauge.test;[unknown];[unknown];[unknown];syscall.Syscall;runtime/internal/syscall.Syscall6;asm_exc_page_fault 1279724
mapgauge.test;[unknown];[unknown];runtime.clone.abi0;ret_from_fork_asm;ret_from_fork;schedule_tail;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 17809
mapgauge.test;[unknown];[unknown];runtime.clone.abi0;ret_from_fork_asm;ret_from_fork;schedule_tail;finish_task_switch.isra.0;asm_sysvec_call_function_single;sysvec_call_function_single;__sysvec_call_function_single;native_apic_msr_eoi_write 23685
mapgauge.test;[unknown];[unknown];runtime.mallocgc;runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;_raw_spin_lock 117629
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;[[vdso]] 639463
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;get_timespec64;rep_movs_alternative 112820
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule 60777
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair 734300
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 661125
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;asm_sysvec_call_function_single;sysvec_call_function_single;__sysvec_call_function_single;generic_smp_call_function_single_interrupt;__flush_smp_call_function_queue;sched_ttwu_pending;ttwu_do_activate;enqueue_task;psi_task_change;psi_group_change 29904
mapgauge.test;[unknown];[unknown];runtime.newm;runtime.newm1;runtime.newosproc;runtime.retryOnEAGAIN;runtime.clone.abi0;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;lock_vma_under_rcu;mas_walk;mtree_range_walk 613839
mapgauge.test;[unknown];[unknown];runtime.newm;runtime.newm1;runtime.newosproc;runtime.retryOnEAGAIN;runtime.clone.abi0;ret_from_fork_asm;ret_from_fork;schedule_tail;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;__intel_pmu_enable_all.isra.0 226182
mapgauge.test;[unknown];[unknown];syscall.Syscall.abi0;syscall.Syscall;runtime/internal/syscall.Syscall6;asm_sysvec_apic_timer_interrupt 74552
mapgauge.test;[unknown];[unknown];syscall.Syscall;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.stopm;runtime.lock2;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;asm_sysvec_call_function_single 241184
mapgauge.test;[unknown];[unknown];syscall.pread;syscall.Syscall6;runtime/internal/syscall.Syscall6;error_entry 766773
mapgauge.test;[unknown];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_execve;do_execveat_common.isra.0;bprm_execve;bprm_execve.part.0;exec_binprm;search_binary_handler;load_elf_binary;kfree;__kmem_cache_free 192373
mapgauge.test;[unknown];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_execve;do_execveat_common.isra.0;bprm_execve;bprm_execve.part.0;exec_binprm;search_binary_handler;load_elf_binary;setup_arg_pages;shift_arg_pages;tlb_finish_mmu;flush_tlb_mm_range;flush_tlb_func;native_flush_tlb_local 104646
mapgauge.test;[unknown];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_execve;do_execveat_common.isra.0;bprm_execve;bprm_execve.part.0;exec_binprm;search_binary_handler;load_elf_binary;setup_new_exec;mmap_base.isra.0 46955
mapgauge.test;[unknown];github.com/cilium/ebpf/btf.splitNull;os.(*File).ReadAt;internal/poll.(*FD).Pread;syscall.pread;syscall.Syscall6;runtime/internal/syscall.Syscall6;asm_exc_page_fault 762852
mapgauge.test;[unknown];github.com/cilium/ebpf/internal/sys.newFD;runtime.SetFinalizer;runtime.systemstack.abi0;runtime.SetFinalizer.func2;runtime.addfinalizer;entry_SYSCALL_64 771599
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable 99473
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.checkRunqsNoP 132712
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.pidleput 86632
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.pidleput;runtime.nanotime1.abi0;[[vdso]] 94991
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.pidleput;runtime.updateTimerPMask 203269
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stealWork 341547
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm 99845
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.lock2 80179
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep 119096
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0 85103
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64 83465
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe 301324
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait 403436
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule 111324
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_curr;cpuacct_charge 94304
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_curr;update_min_vruntime 120071
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;dequeue_task;dequeue_task_fair;update_cfs_group 114758
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;dequeue_task;dequeue_task_fair;update_load_avg 156192
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_disable;x86_pmu_disable;native_write_msr 96163
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;finish_task_switch.isra.0;_raw_spin_unlock 87645
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;__rcu_read_lock 185877
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock 122493
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;pick_next_task;pick_next_task_fair 176307
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;find_busiest_group;update_sd_lb_stats.constprop.0;_find_next_and_bit 92306
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;pick_next_task;pick_next_task_fair;pick_next_entity 110836
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;pick_next_task;pick_next_task_fair;rb_erase 229827
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;_raw_spin_lock 99759
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_disable;x86_pmu_disable;native_write_msr 184656
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;psi_task_switch;psi_group_change 83140
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;pick_next_task 110202
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;psi_task_switch 104866
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_setup;futex_get_value_locked 119679
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 272816
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop 180528
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;syscall_return_via_sysret 97866
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.unlock2 84827
mapgauge.test;[unknown];runtime.(*spanSet).push;error_entry 777508
mapgauge.test;[unknown];runtime.init.0;[unknown];[unknown];runtime.newm;runtime.newm1;runtime.newosproc;runtime.retryOnEAGAIN;runtime.clone.abi0;ret_from_fork_asm;ret_from_fork;schedule_tail;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 1
mapgauge.test;[unknown];runtime.mallocgc;runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;__vdso_clock_gettime 109896
mapgauge.test;[unknown];runtime.mallocgc;runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.lock2;runtime.futexsleep 360541
mapgauge.test;[unknown];runtime.mallocgc;runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.nanotime1.abi0;[[vdso]] 181318
mapgauge.test;[unknown];runtime.mallocgc;runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe 621339
mapgauge.test;[unknown];runtime.mallocgc;runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;get_timespec64;_copy_from_user 653431
mapgauge.test;[unknown];runtime.mallocgc;runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;clockevents_program_event;lapic_next_deadline 640577
mapgauge.test;[unknown];runtime.mallocgc;runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule 181318
mapgauge.test;[unknown];runtime.mallocgc;runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule 1339195
mapgauge.test;[unknown];runtime.mallocgc;runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity 433739
mapgauge.test;[unknown];runtime.mallocgc;runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_cfs_group 202737
mapgauge.test;[unknown];runtime.mallocgc;runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;set_next_buddy 478117
mapgauge.test;[unknown];runtime.mallocgc;runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0 968684
mapgauge.test;[unknown];runtime.mallocgc;runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 271390
mapgauge.test;[unknown];runtime.mallocgc;runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;set_next_entity;update_load_avg 476818
mapgauge.test;[unknown];runtime.mallocgc;runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;put_prev_task_fair 307064
mapgauge.test;[unknown];runtime.mallocgc;runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;dequeue_task 720067
mapgauge.test;[unknown];runtime.mallocgc;runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 974414
mapgauge.test;[unknown];runtime.mallocgc;runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;syscall_return_via_sysret 202737
mapgauge.test;[unknown];runtime.memmove;error_entry 732926
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.gcTrigger.test 75123
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.lock2 134018
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.retake 538050
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon 1781727
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;[[vdso]] 349226
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;error_return 43909
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.gcTrigger.test 184274
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.nanotime1.abi0 874070
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.nanotime1.abi0;[[vdso]] 1487698
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.nanotime1.abi0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_rebalance_domains;rebalance_domains 93720
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe 72538
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe;do_syscall_64 59418
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_epoll_pwait;do_epoll_pwait.part.0;do_epoll_wait;__fdget;__fget_light 525756
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_epoll_pwait;do_epoll_pwait.part.0;do_epoll_wait;ep_poll 55691
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;syscall_return_via_sysret 70040
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.notetsleep;runtime.notetsleep_internal;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_setup_timer;hrtimer_init_sleeper;__hrtimer_init 106173
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.notetsleep;runtime.notetsleep_internal;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue 125415
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.notetsleep;runtime.notetsleep_internal;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;psi_task_switch;sched_clock_cpu 153418
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.notetsleep;runtime.notetsleep_internal;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 102582
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake 216626
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm 171288
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0 172636
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64 580480
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe 1944776
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;__x64_sys_futex 505836
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64 121811
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex 113134
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;_raw_spin_lock 330746
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_hash 113184
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake 470964
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;futex_wake_mark 226169
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;futex_wake_mark;__futex_unqueue 136409
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;get_futex_key 95525
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;try_to_wake_up 88781
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_q_add_safe 129094
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q 122655
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;raw_spin_rq_lock_nested 283270
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;select_task_rq_fair 85643
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;__rcu_read_unlock 154013
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;_raw_spin_lock 125403
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;_raw_spin_unlock_irqrestore;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;ktime_get_update_offsets_now;pvclock_clocksource_read_nowd 102069
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;raw_spin_rq_lock_nested;_raw_spin_lock;native_queued_spin_lock_slowpath 101441
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;sched_clock_cpu 156830
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;select_task_rq_fair 138071
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;select_task_rq_fair;available_idle_cpu 81480
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;check_preempt_curr;check_preempt_wakeup 62668
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;check_preempt_curr;set_next_buddy 129814
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task 280814
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair 273858
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity 458291
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity;update_curr 84919
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity;update_load_avg 111763
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity;update_load_avg;__update_load_avg_cfs_rq 88400
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;rb_insert_color 80226
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;update_cfs_group 70040
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;update_cfs_group;reweight_entity 384213
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;update_cfs_group;reweight_entity;update_curr;__calc_delta 434853
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;update_cfs_group;reweight_entity;update_min_vruntime 116793
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;update_load_avg 285699
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;update_load_avg;__update_load_avg_cfs_rq 132122
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_group_change 161618
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change 518172
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;psi_group_change 1364734
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;record_times 151636
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 226669
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;update_cfs_group 283290
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task_fair 130595
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_queue_wakelist;__smp_call_single_queue 266625
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;update_rq_clock;sched_clock_cpu 64954
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;update_rq_clock 101323
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;get_futex_key 147356
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;exit_to_user_mode_prepare 88034
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_enter_from_user_mode 44475
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 2032078
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare 537153
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop 249550
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule 79458
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule 519891
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;__switch_to 74844
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;finish_task_switch.isra.0 475869
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in 132983
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;_raw_spin_unlock 125074
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_disable;x86_pmu_disable;native_write_msr 477665
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable 135316
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable 130390
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;__intel_pmu_enable_all.isra.0 134038
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 338532
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;finish_task_switch.isra.0;__rcu_read_unlock 113664
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;tick_program_event;clockevents_program_event;native_write_msr 111049
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;finish_task_switch.isra.0;asm_sysvec_call_function_single;sysvec_call_function_single;__sysvec_call_function_single;generic_smp_call_function_single_interrupt;__flush_smp_call_function_queue;sched_ttwu_pending;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity;update_curr;cpuacct_charge 120688
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;pick_next_task;pick_next_task_fair 914471
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;pick_next_task;pick_next_task_fair;pick_next_entity 258754
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;pick_next_task;pick_next_task_fair;put_prev_entity 259875
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;pick_next_task;pick_next_task_fair;put_prev_entity;update_load_avg 208511
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;pick_next_task;pick_next_task_fair;set_next_entity 823418
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;pick_next_task;pick_next_task_fair;set_next_entity;clear_buddies 128243
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;pick_next_task;pick_next_task_fair;update_curr 120675
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;prepare_task_switch 251522
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out 117727
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_disable 418113
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_disable;x86_pmu_disable;native_write_msr 1102071
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;x86_pmu_disable 62668
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;prepare_task_switch;perf_event_context_sched_out 57238
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;psi_task_switch 103456
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;psi_task_switch;psi_flags_change 63347
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;psi_task_switch;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 290421
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;rcu_note_context_switch 246298
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;psi_task_switch 140821
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;switch_fpu_return;restore_fpregs_from_fpstate 148849
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;switch_fpu_return 84038
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_safe_stack 123122
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;syscall_return_via_sysret 3454288
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futexwakeup 175477
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.unlock2 120687
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.incidlelocked;runtime.checkdead 146262
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.incidlelocked;runtime.lock2 133807
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.incidlelocked;runtime.procyield.abi0 152415
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.incidlelocked;runtime.unlock2 133759
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.lock2 192413
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.getpid.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_enter_from_user_mode 117265
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.getpid.abi0;syscall_return_via_sysret 136824
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe 164847
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;__x64_sys_tgkill 131773
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;check_kill_permission 145202
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;check_kill_permission;security_task_kill 119904
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;do_send_sig_info;__raw_spin_lock_irqsave 73898
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;do_send_sig_info;send_signal_locked;__send_signal_locked;__sigqueue_alloc;kmem_cache_alloc 516750
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;do_send_sig_info;send_signal_locked;__send_signal_locked;__sigqueue_alloc;kmem_cache_alloc;get_obj_cgroup_from_current;__get_obj_cgroup_from_memcg 128533
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;do_send_sig_info;send_signal_locked;complete_signal 53215
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;find_task_by_vpid;idr_find;radix_tree_lookup;__radix_tree_lookup 782449
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;do_tkill 102426
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 72582
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.unlock2 234580
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.unlock2 99324
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0 987821
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;asm_sysvec_apic_timer_interrupt 44275
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64 2606957
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe 3085352
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;__x64_sys_nanosleep 616838
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64 752912
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep 291531
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;_copy_from_user 180369
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;get_timespec64;_copy_from_user 120778
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;get_timespec64;rep_movs_alternative 811236
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep 999580
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;__hrtimer_init 347111
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep 456538
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;_raw_spin_lock_irqsave 73407
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_active 96099
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_reprogram 355831
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns 395946
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;__hrtimer_start_range_ns 190205
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;__hrtimer_start_range_ns;enqueue_hrtimer;rb_insert_color 62252
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;__hrtimer_start_range_ns;enqueue_hrtimer;timerqueue_add 842699
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;__hrtimer_start_range_ns;ktime_get 353361
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;__hrtimer_start_range_ns;ktime_get;kvm_clock_get_cycles 106934
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;__hrtimer_start_range_ns;ktime_get;kvm_clock_get_cycles;pvclock_clocksource_read_nowd 894132
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;__hrtimer_start_range_ns;kvm_clock_get_cycles 224959
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;__raw_spin_lock_irqsave 590857
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave 277590
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;hrtimer_reprogram 270289
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event 453321
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;clockevents_program_event 212315
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;clockevents_program_event;ktime_get 227992
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;clockevents_program_event;ktime_get;kvm_clock_get_cycles;pvclock_clocksource_read_nowd 101021
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;clockevents_program_event;kvm_clock_get_cycles 246667
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;clockevents_program_event;lapic_next_deadline 599816
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;clockevents_program_event;native_write_msr 3473529
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;lapic_next_deadline 713100
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;ktime_get 306843
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule 957376
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule 2323780
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;__perf_event_task_sched_out 272396
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;_raw_spin_lock 272851
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task 429029
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair 658080
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;clear_buddies 86022
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity 1136005
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;__calc_delta 94715
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;__update_load_avg_se 226678
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_cfs_group 521893
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_cfs_group;reweight_entity 441240
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_curr 788782
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_curr;__calc_delta 544975
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_curr;__cgroup_account_cputime 76207
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_curr;cpuacct_charge 615871
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_load_avg 977345
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_load_avg;__update_load_avg_se 505000
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;update_cfs_group 348338
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;update_cfs_group;reweight_entity 668458
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;update_cfs_group;reweight_entity;update_curr;__calc_delta 103089
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;update_curr 123867
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;update_load_avg 349683
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;update_load_avg;__update_load_avg_se 100445
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;update_min_vruntime 413573
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;set_next_buddy 362040
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;update_cfs_group 121275
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task_fair 284683
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0 1205070
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in 175046
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;_raw_spin_unlock 383974
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_disable;x86_pmu_disable;native_write_msr 437675
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable 830199
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable 220946
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all 126965
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;__intel_pmu_enable_all.isra.0 412970
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 1088291
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;x86_pmu_disable 634874
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;__rcu_read_lock 150090
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;__rcu_read_unlock 143141
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;_raw_spin_lock 131887
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;__remove_hrtimer 83820
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;task_tick_fair 74152
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;task_tick_fair;hrtimer_active 88465
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq 362458
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;__rcu_read_lock 83163
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_rebalance_domains;update_rq_clock 84958
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;asm_sysvec_call_function_single;sysvec_call_function_single;__sysvec_call_function_single;generic_smp_call_function_single_interrupt;__flush_smp_call_function_queue;flush_tlb_func;native_flush_tlb_one_user 19079
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;asm_sysvec_call_function_single;sysvec_call_function_single;__sysvec_call_function_single;generic_smp_call_function_single_interrupt;__flush_smp_call_function_queue;sched_ttwu_pending;ttwu_do_activate;enqueue_task;plist_del 138880
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task 328307
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;newidle_balance 63084
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair 322450
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;__msecs_to_jiffies 97941
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;__rcu_read_lock 355242
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance 599637
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;_raw_spin_unlock 66948
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance 327004
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;_find_next_and_bit 622296
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;_raw_spin_rq_lock_irqsave;raw_spin_rq_lock_nested 90093
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;_raw_spin_rq_lock_irqsave;raw_spin_rq_lock_nested;_raw_spin_lock;native_queued_spin_lock_slowpath 17787773
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;detach_tasks 214932
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;detach_tasks;can_migrate_task 284709
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;find_busiest_group 462832
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;find_busiest_group;update_sd_lb_stats.constprop.0 663566
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;find_busiest_group;update_sd_lb_stats.constprop.0;_find_next_and_bit 327711
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;find_busiest_group;update_sd_lb_stats.constprop.0;idle_cpu 105878
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;find_busiest_group;update_sd_lb_stats.constprop.0;update_sd_pick_busiest 117168
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;find_busiest_group;update_sd_lb_stats.constprop.0;update_sg_lb_stats 1323251
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;find_busiest_group;update_sd_lb_stats.constprop.0;update_sg_lb_stats;cpu_util 379339
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;find_busiest_group;update_sd_pick_busiest 174459
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;find_busiest_group;update_sg_lb_stats 79335
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;find_busiest_queue;cpu_util 90097
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;update_rq_clock 131376
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;raw_spin_rq_unlock;_raw_spin_unlock 84454
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 510716
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;update_blocked_averages 536106
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;update_blocked_averages;__update_blocked_fair 2227860
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;update_blocked_averages;__update_blocked_fair;__update_load_avg_cfs_rq 446062
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;update_blocked_averages;__update_blocked_fair;update_load_avg 827953
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;update_blocked_averages;__update_blocked_fair;update_load_avg;__update_load_avg_cfs_rq 89454
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;update_blocked_averages;__update_blocked_fair;update_load_avg;__update_load_avg_se 270296
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;update_blocked_averages;_raw_spin_rq_lock_irqsave;raw_spin_rq_lock_nested 97458
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;update_blocked_averages;update_dl_rq_load_avg 57238
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;update_blocked_averages;update_rq_clock 203015
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;update_blocked_averages;update_rq_clock;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 281523
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;update_blocked_averages;update_rt_rq_load_avg 602790
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;update_dl_rq_load_avg 63951
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;pick_next_entity 264841
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;put_prev_entity 85250
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;raw_spin_rq_lock_nested 70679
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;raw_spin_rq_unlock 72453
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;sched_clock_cpu 364540
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;put_prev_task_fair 641822
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;put_prev_task_fair;put_prev_entity 957838
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task_idle 113444
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;prepare_task_switch 315778
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out 833161
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;_raw_spin_lock 239550
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out 93446
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_disable 435014
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_disable;x86_pmu_disable;native_write_msr 2306576
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;x86_pmu_disable 204044
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;prepare_task_switch;perf_event_context_sched_out 101245
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;psi_group_change 362846
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;psi_task_switch 1345207
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;psi_task_switch;psi_flags_change 110552
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;psi_task_switch;psi_group_change 3617849
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;psi_task_switch;record_times 416036
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;psi_task_switch;sched_clock 116354
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;psi_task_switch;sched_clock_cpu;sched_clock 629366
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;psi_task_switch;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 268271
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;psi_task_switch;sched_clock_cpu;sched_clock;sched_clock_noinstr;pvclock_clocksource_read_nowd 113545
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;psi_task_switch;sched_clock_cpu;sched_clock_noinstr 144645
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;put_prev_task_fair 143832
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;rcu_note_context_switch 327030
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;update_rq_clock 222412
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;update_rq_clock;sched_clock 123773
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;update_rq_clock;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 571012
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;update_rq_clock;sched_clock_cpu;sched_clock_noinstr 57546
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;finish_task_switch.isra.0 110654
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;pick_next_task 432817
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;psi_task_switch 231831
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;raw_spin_rq_lock_nested 126336
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;update_rq_clock 162205
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;hrtimer_active 1130946
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;hrtimer_start_range_ns 98101
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;schedule 93391
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;exit_to_user_mode_prepare 379932
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;hrtimer_nanosleep 75858
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_enter_from_user_mode 127604
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 4729093
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare 185625
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;switch_fpu_return 1113396
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;switch_fpu_return;xfd_validate_state 360583
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;fpregs_assert_state_consistent 172822
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;switch_fpu_return 92849
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;syscall_exit_to_user_mode 367161
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_safe_stack 392652
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;syscall_return_via_sysret 4362960
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.timeSleepUntil 120114
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.usleep.abi0 614101
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.usleep.abi0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;perf_event_task_tick;perf_adjust_freq_unthr_context;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 220434
mapgauge.test;[unknown];syscall.Syscall.abi0;syscall.Syscall;runtime/internal/syscall.Syscall6;asm_sysvec_apic_timer_interrupt 198421
mapgauge.test;__rdgsbase_inactive 429892
mapgauge.test;__switch_to 860507
mapgauge.test;__switch_to_asm 582938
mapgauge.test;__wrgsbase_inactive 136472
mapgauge.test;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule 665534
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;slab_pre_alloc_hook.constprop.0;__cond_resched;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_enable;x86_pmu_enable 664495
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule 254793
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out 211710
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;__intel_pmu_enable_all.isra.0 128940
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 413209
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule 252519
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;prepare_task_switch 535890
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_cgroup_switch 85343
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out 132644
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_enable;x86_pmu_enable 86575
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 394053
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;switch_mm_irqs_off 352469
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__switch_to_asm 135968
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;switch_mm_irqs_off 88619
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mm_update_next_owner 191595
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;tlb_finish_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;__mem_cgroup_uncharge_list;__rcu_read_unlock 775283
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;tlb_finish_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;__mem_cgroup_uncharge_list;uncharge_folio 778191
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;tlb_finish_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;free_unref_page_list;free_unref_page_commit;free_pcppages_bulk;__free_one_page 1554547
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;tlb_finish_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;free_unref_page_list;free_unref_page_commit;free_pcppages_bulk;__free_one_page;__mod_zone_page_state 777958
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;_compound_head 5952343
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range 2188927
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;page_remove_rmap 757905
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;page_remove_rmap;__mod_lruvec_page_state 620783
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;page_remove_rmap;__mod_lruvec_page_state;__mod_lruvec_state;__mod_memcg_lruvec_state 1293584
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;page_remove_rmap;__rcu_read_unlock 191595
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush 643870
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;lru_gen_del_folio.constprop.0 764987
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages 3648234
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;folio_lruvec_lock_irqsave 769355
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;free_unref_page_list;free_unref_page_commit;free_pcppages_bulk;__free_one_page 2231144
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;free_unref_page_prepare 711778
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;lru_gen_del_folio.constprop.0;__mod_lruvec_state 701347
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;lru_gen_del_folio.constprop.0;__mod_lruvec_state;__mod_memcg_lruvec_state 1440835
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;lru_gen_del_folio.constprop.0;__mod_node_page_state 721539
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_swap_cache 753240
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;vm_normal_page 496190
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule 288541
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_cgroup_switch 107561
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all 116917
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;__intel_pmu_enable_all.isra.0 215399
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 388258
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;prepare_task_switch;perf_cgroup_switch 370306
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__switch_to_asm 99706
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;task_work_run;____fput;__fput;dput;__cond_resched;__schedule 133480
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;prepare_task_switch 441279
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all 130645
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;__intel_pmu_enable_all.isra.0 145388
mapgauge.test;native_load_tls 226008
mapgauge.test;os_xsave 340290
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.gcMarkTermination;runtime.systemstack.abi0;runtime.gcMarkTermination.func3;runtime.startTheWorldWithSema;runtime.procresize;runtime.(*mcache).prepareForSweep;runtime.(*mcache).releaseAll;runtime.(*mcentral).uncacheSpan;runtime.(*sweepLocked).sweep;runtime.(*spanSet).push;__irqentry_text_end 742968
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.gcMarkTermination;runtime.systemstack.abi0;runtime.gcMarkTermination.func3;runtime.startTheWorldWithSema;runtime.procresize;runtime.(*mcache).prepareForSweep;runtime.(*mcache).releaseAll;runtime.(*mcentral).uncacheSpan;runtime.(*sweepLocked).sweep;runtime.(*spanSet).push;asm_exc_page_fault;exc_page_fault;do_user_addr_fault 241187
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.gcMarkTermination;runtime.systemstack.abi0;runtime.gcMarkTermination.func3;runtime.startTheWorldWithSema;runtime.procresize;runtime.(*mcache).prepareForSweep;runtime.(*mcache).releaseAll;runtime.(*mcentral).uncacheSpan;runtime.(*sweepLocked).sweep;runtime.(*spanSet).push;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__mem_cgroup_charge;get_mem_cgroup_from_mm 556285
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.gcMarkTermination;runtime.systemstack.abi0;runtime.gcMarkTermination.func3;runtime.startTheWorldWithSema;runtime.unlock2;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 277685
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.gopark 712883
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.systemstack.abi0;runtime.gcMarkDone.func1;runtime.forEachP;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;check_preempt_curr 144729
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.systemstack.abi0;runtime.gcMarkDone.func1;runtime.forEachP;runtime.preemptall;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;do_send_sig_info;send_signal_locked;__send_signal_locked;__sigqueue_alloc;kmem_cache_alloc 739021
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.systemstack.abi0;runtime.gcMarkDone.func1;runtime.forEachP;runtime.unlock2;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 219941
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.pidleput;runtime.updateTimerPMask 257307
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.acquirep;runtime.(*mcache).prepareForSweep;runtime.(*mcache).releaseAll;runtime.(*mcentral).uncacheSpan;runtime.(*sweepLocked).s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment